:root {
  --bg: #020812;
  --surface: #091a2f;
  --surface-soft: #0b1f37;
  --line: #1f3b5f;
  --text: #e7f4ff;
  --muted: #abc0d5;
  --accent: #74ddff;
  --accent-strong: #52c7ef;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(3, 12, 24, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.brand-text {
  letter-spacing: 0.08em;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.4rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.66rem 1rem;
  font-size: 0.92rem;
  cursor: pointer;
}

.btn-outline {
  color: var(--accent);
  border-color: var(--line);
  background: transparent;
}

.btn-primary {
  color: #042741;
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.hero-wrap {
  position: relative;
  min-height: 66vh;
  display: grid;
  align-items: center;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/fluoroscopy-room.jpg")
    center/cover no-repeat;
}

.hero-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 6, 14, 0.94) 0%,
    rgba(1, 6, 14, 0.84) 45%,
    rgba(1, 6, 14, 0.72) 100%
  );
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding: 6.8rem 0 6.1rem;
  max-width: 760px;
}

.hero-kicker {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  line-height: 1.04;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.hero-caption {
  margin: 0.8rem 0 1.4rem;
  color: #d6e9f8;
  font-size: 1.08rem;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.section-divider {
  margin: 0 auto 2rem;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

h2 {
  margin: 0 0 0.65rem;
  line-height: 1.2;
  font-size: 1.55rem;
}

h3 {
  margin: 0.3rem 0 0.5rem;
  font-size: 1.15rem;
}

.spotlight-section {
  margin-bottom: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.spotlight-media {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background-size: cover;
  background-position: center;
}

.problem-media {
  background-image: url("/images/interventional-radiology-suite.jpg");
  background-position: center right;
}

.spotlight-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 1.2rem;
}

.spotlight-copy p {
  margin: 0;
  color: var(--muted);
}

.value-section {
  margin-bottom: 2.2rem;
}

.value-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.value-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 1rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.workflow {
  margin-bottom: 2.2rem;
}

.workflow-grid-cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.workflow-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 1.2rem 1rem;
  min-height: 260px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  justify-items: center;
}

.step-number {
  margin: 0.2rem 0 0;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #2d4f75;
  background: radial-gradient(circle at 30% 25%, rgba(116, 221, 255, 0.22), rgba(8, 24, 43, 0.85));
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(2.7rem, 6vw, 4.1rem);
  text-align: center;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.32);
}

.step-text {
  margin: 1.45rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.35;
  text-align: center;
  max-width: 245px;
}

.platform {
  margin-bottom: 2.2rem;
}

.platform-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.platform-image {
  min-height: 330px;
  border-radius: 0.7rem;
  border: 1px solid #173352;
  background: radial-gradient(circle at 50% 48%, rgba(34, 84, 130, 0.35), rgba(4, 13, 24, 0.98) 72%),
    #071426;
  display: grid;
  place-items: center;
}

.platform-image-device {
  width: min(92%, 620px);
  height: auto;
  filter: brightness(1.35) contrast(1.22) saturate(1.05)
    drop-shadow(0 20px 35px rgba(0, 0, 0, 0.45));
}

.platform-points {
  display: grid;
  gap: 0.8rem;
}

.platform-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 1rem;
}

.platform-card h3 {
  margin: 0;
}

.platform-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.market {
  margin-bottom: 2.2rem;
}

.market-snapshot {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 1rem;
}

.metric-value {
  margin: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.metric-title {
  margin: 0.25rem 0 0;
  color: #d9ecff;
  font-weight: 700;
}

.metric-note {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.tam-banner {
  margin-top: 0.9rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 1rem;
}

.tam-label {
  margin: 0;
  color: #b9d2e8;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  font-weight: 700;
}

.tam-value-large {
  margin: 0.35rem 0 0;
  color: var(--accent);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
}

.tam-caption {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.contact {
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-copy p {
  color: var(--muted);
  margin: 0;
}

.contact-form {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 1.2rem;
  display: grid;
  gap: 0.58rem;
}

label {
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: #071426;
  border: 1px solid #2a486f;
  border-radius: 0.35rem;
  padding: 0.7rem;
}

input:focus,
textarea:focus {
  outline: 2px solid #2f83ac;
  border-color: var(--accent);
}

.form-status {
  margin: 0.2rem 0 0;
  color: var(--muted);
  min-height: 1.35em;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  left: -9999px;
  opacity: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #041124;
}

.footer-content {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .spotlight-section,
  .value-grid,
  .workflow-grid-cards,
  .platform-layout,
  .market-snapshot,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-wrap {
    min-height: 58vh;
  }
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .topbar {
    justify-content: space-between;
  }

  h2 {
    font-size: 1.35rem;
  }

  .bar {
    width: 56px;
  }
}
