:root {
  --bg: #06101d;
  --bg-2: #091523;
  --panel: rgba(13, 28, 44, .72);
  --panel-solid: #0d1a2b;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);
  --text: #f7f8fb;
  --muted: #9aa9ba;
  --gold: #cba447;
  --gold-2: #f0d988;
  --blue: #2773f4;
  --blue-2: #7fb4ff;
  --shadow: 0 30px 90px rgba(0,0,0,.34);
  --radius: 28px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 25% -10%, rgba(203,164,71,.08), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(39,115,244,.12), transparent 34%),
    linear-gradient(180deg, #050d17 0%, #07111e 42%, #07111d 100%);
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(39,115,244,.45); color: #fff; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: #06101d;
  background: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.page-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .08;
  z-index: -3;
  pointer-events: none;
}
.page-glow--gold { background: var(--gold); top: 35%; left: -320px; }
.page-glow--blue { background: var(--blue); top: 9%; right: -320px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(5, 13, 23, .78);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.domain-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: -.01em;
}
.domain-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  box-shadow: 0 0 22px rgba(39,115,244,.45);
}
.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 26px;
}
.desktop-nav a {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 600;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(203,164,71,.35);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: .75rem;
  font-weight: 700;
  background: rgba(203,164,71,.07);
}

.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
  gap: 54px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 110px;
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .67rem;
  font-weight: 800;
  color: #b8c3d0;
}
.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ee0a0;
  box-shadow: 0 0 0 5px rgba(78,224,160,.10), 0 0 22px rgba(78,224,160,.55);
}
.hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 700;
}
.gold-text {
  color: var(--gold-2);
  text-shadow: 0 0 55px rgba(203,164,71,.12);
}
.blue-text {
  color: var(--blue-2);
  text-shadow: 0 0 55px rgba(39,115,244,.14);
}
.hero-lead {
  margin: 0;
  max-width: 700px;
  color: #adbac9;
  font-size: clamp(.98rem, 1.5vw, 1.1rem);
}
.hero-lead strong { color: #fff; font-weight: 650; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 19px;
  border-radius: 15px;
  font-size: .82rem;
  font-weight: 800;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(135deg, #ebd17b, #b4882d);
  color: #07101d;
  box-shadow: 0 16px 38px rgba(203,164,71,.16);
}
.btn--ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.035);
  color: #fff;
}
.btn--ghost:hover { border-color: rgba(39,115,244,.45); background: rgba(39,115,244,.08); }

.legacy-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 650px;
  margin-top: 24px;
  color: #8292a5;
  font-size: .78rem;
}
.legacy-note strong { color: #c5ced8; }
.legacy-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  color: #07101d;
  background: #4ee0a0;
  font-size: .7rem;
  font-weight: 900;
}

.hero-visual { min-width: 0; }
.scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 660px;
  perspective: 1200px;
  transform-style: preserve-3d;
  isolation: isolate;
}
.scene::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.10), transparent 22%),
    radial-gradient(circle at center, rgba(33,72,113,.28), rgba(5,13,23,0) 64%);
  filter: blur(2px);
  z-index: -2;
}
.scene-grid {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 7%;
  height: 42%;
  transform: rotateX(72deg) translateZ(-90px);
  transform-origin: center bottom;
  background-image:
    linear-gradient(rgba(70,111,160,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70,111,160,.22) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at center, black 0 46%, transparent 78%);
  opacity: .65;
}
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-9deg);
}
.orbit--one { width: 73%; height: 73%; }
.orbit--two { width: 49%; height: 49%; border-color: rgba(203,164,71,.18); transform: translate(-50%, -50%) rotateX(68deg) rotateZ(22deg); }

.core-sphere {
  position: absolute;
  left: 50%;
  top: 49%;
  width: 178px;
  height: 178px;
  transform: translate(-50%, -50%) translateZ(40px);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.20), transparent 18%),
    radial-gradient(circle at 35% 35%, rgba(39,115,244,.22), transparent 40%),
    linear-gradient(145deg, #14263b, #07111e 66%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset -22px -28px 50px rgba(0,0,0,.30),
    inset 16px 15px 42px rgba(255,255,255,.04),
    0 28px 90px rgba(0,0,0,.34),
    0 0 120px rgba(39,115,244,.10);
}
.core-ring {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(127,180,255,.22);
  border-radius: 50%;
  transform: rotateX(68deg);
}
.core-small {
  font-size: .62rem;
  letter-spacing: .22em;
  font-weight: 700;
  color: #8193a7;
}
.core-arrow {
  margin: 2px 0;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 25px rgba(127,180,255,.4);
}

.float-card {
  position: absolute;
  width: 214px;
  min-height: 154px;
  border-radius: 23px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(21,37,58,.93), rgba(8,18,31,.90));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0,0,0,.30);
  transform-style: preserve-3d;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.float-card:hover { border-color: rgba(255,255,255,.25); box-shadow: 0 30px 78px rgba(0,0,0,.40); }
.float-card--valron {
  top: 13%;
  right: 1%;
  transform: rotateY(-12deg) rotateZ(3deg) translateZ(80px);
}
.float-card--imara {
  bottom: 16%;
  left: 0;
  transform: rotateY(13deg) rotateZ(-4deg) translateZ(74px);
}
.float-kicker {
  display: inline-block;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .18em;
  color: #788da5;
  margin-bottom: 10px;
}
.float-card--valron img {
  width: 87px;
  height: 87px;
  object-fit: contain;
  margin: -4px auto -1px;
}
.imara-logo-wrap {
  display: flex;
  align-items: center;
  padding: 19px 13px;
  border-radius: 15px;
  background: white;
}
.imara-logo-wrap img { width: 100%; height: auto; }
.float-label {
  display: block;
  margin-top: 10px;
  color: #9dafc0;
  text-align: center;
  font-size: .58rem;
  font-weight: 600;
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.orbit-dot--gold {
  top: 31%;
  left: 17%;
  background: var(--gold);
  box-shadow: 0 0 25px rgba(203,164,71,.65);
}
.orbit-dot--blue {
  right: 15%;
  bottom: 27%;
  background: var(--blue);
  box-shadow: 0 0 25px rgba(39,115,244,.7);
}
.floating-chip {
  position: absolute;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10,24,40,.68);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  color: #8192a4;
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .05em;
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
}
.floating-chip--one { top: 32%; left: 3%; }
.floating-chip--two { top: 8%; left: 37%; }
.floating-chip--three { bottom: 8%; right: 17%; }

.route-section { padding: 72px 0 120px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}
.section-head h2,
.decision-card h2,
.seo-copy h2,
.final-cta h2 {
  margin: 9px 0 0;
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.section-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.route-card {
  position: relative;
  overflow: hidden;
  min-height: 665px;
  padding: 27px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(16,33,51,.92), rgba(8,18,30,.82));
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .7;
}
.route-card--valron::before {
  background: radial-gradient(circle at 100% 0, rgba(203,164,71,.16), transparent 36%);
}
.route-card--imara::before {
  background: radial-gradient(circle at 100% 0, rgba(39,115,244,.19), transparent 37%);
}
.route-card:hover { border-color: rgba(255,255,255,.19); }

.route-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.route-number {
  color: #617387;
  font-weight: 800;
  font-size: .7rem;
}
.route-pill {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #a2afbd;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.route-logo {
  height: 150px;
  display: grid;
  place-items: center;
  margin: 28px 0 22px;
  border-radius: 22px;
  position: relative;
  z-index: 1;
}
.route-logo--valron {
  background: linear-gradient(145deg, rgba(203,164,71,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(203,164,71,.12);
}
.route-logo--valron img { width: 130px; height: 130px; object-fit: contain; }
.route-logo--imara {
  padding: 26px 36px;
  background: #fff;
}
.route-logo--imara img { width: min(360px, 100%); height: auto; }

.route-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.route-card > p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: .87rem;
}
.route-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}
.route-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #c2ccd6;
  font-size: .78rem;
}
.route-card li::before {
  content: "•";
  color: var(--gold);
}
.route-card--imara li::before { color: var(--blue-2); }

.route-link {
  position: absolute;
  z-index: 2;
  left: 27px;
  right: 27px;
  bottom: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease;
}
.route-card--valron .route-link:hover { background: rgba(203,164,71,.08); border-color: rgba(203,164,71,.28); }
.route-card--imara .route-link:hover { background: rgba(39,115,244,.08); border-color: rgba(39,115,244,.34); }

.price-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -5px 0 86px;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(39,115,244,.08);
  border: 1px solid rgba(39,115,244,.16);
  color: #9fb7d4;
  font-size: .7rem;
}
.price-strip strong { color: #dce9ff; }

.split-section {
  padding: 110px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(90deg, rgba(203,164,71,.025), transparent 30%, transparent 70%, rgba(39,115,244,.025)),
    rgba(255,255,255,.01);
}
.transition-map {
  display: grid;
  grid-template-columns: 1fr 190px 1.15fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 40px;
}
.transition-origin,
.transition-destinations a {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(12,27,43,.62);
  padding: 24px;
}
.transition-origin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}
.transition-label {
  color: #6f8194;
  letter-spacing: .16em;
  font-size: .55rem;
  font-weight: 900;
}
.transition-origin strong,
.transition-destinations strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}
.transition-origin small,
.transition-destinations small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .72rem;
}
.transition-connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.transition-connector::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(203,164,71,.5), rgba(39,115,244,.55));
}
.transition-connector span {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  margin: 0 11px;
  border-radius: 50%;
  background: #9bb6d9;
  box-shadow: 0 0 0 5px #07111d;
}
.transition-destinations {
  display: grid;
  gap: 13px;
}
.transition-destinations a {
  transition: transform .2s ease, border-color .2s ease;
}
.transition-destinations a:first-child { border-color: rgba(203,164,71,.15); }
.transition-destinations a:last-child { border-color: rgba(39,115,244,.17); }
.transition-destinations a:hover { transform: translateX(4px); border-color: rgba(255,255,255,.24); }

.decision-section { padding: 110px 0; }
.decision-card {
  overflow: hidden;
  position: relative;
  border-radius: 32px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 0 0, rgba(203,164,71,.12), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(39,115,244,.15), transparent 32%),
    linear-gradient(145deg, rgba(16,32,49,.95), rgba(7,16,28,.92));
  box-shadow: var(--shadow);
}
.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}
.decision-grid a {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.decision-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.23);
  background: rgba(255,255,255,.05);
}
.decision-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: auto;
  border-radius: 11px;
  background: rgba(255,255,255,.07);
  font-weight: 900;
}
.decision-grid strong {
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.35;
}
.decision-grid small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .72rem;
}

.seo-copy {
  padding: 72px 0 105px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.seo-copy h2 { max-width: 940px; }
.seo-copy p {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.faq-section { padding: 90px 0 120px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 25px 52px 25px 0;
  font-weight: 700;
  font-size: .92rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: #96a7b8;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  max-width: 820px;
  margin: -5px 0 25px;
  color: var(--muted);
  font-size: .83rem;
}

.final-cta {
  border-top: 1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(110deg, rgba(203,164,71,.07), transparent 38%, transparent 66%, rgba(39,115,244,.08)),
    #081421;
}
.final-cta-inner {
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.final-actions {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 280px;
}

.site-footer {
  padding: 52px 0 24px;
  background: #050c15;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.footer-grid > div:first-child p {
  max-width: 500px;
  margin-top: 15px;
  color: #718398;
  font-size: .75rem;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.footer-links > div { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong { font-size: .74rem; }
.footer-links a {
  width: fit-content;
  color: #7f91a4;
  font-size: .7rem;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #56697e;
  font-size: .61rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.75,.2,1), transform .7s cubic-bezier(.2,.75,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .hero {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 70px;
    min-height: auto;
  }
  .hero-copy { max-width: 780px; }
  .hero-visual {
    width: min(720px, 100%);
    margin: 0 auto;
  }
  .route-grid { grid-template-columns: 1fr 1fr; }
  .transition-map { grid-template-columns: 1fr 120px 1.1fr; }
}

@media (max-width: 800px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .site-header { padding: 11px 0; }
  .domain-mark { font-size: .72rem; }
  .nav-cta { padding: 9px 11px; font-size: 0; }
  .nav-cta::before { content: "Valron"; font-size: .68rem; }
  .nav-cta span { font-size: .7rem; }

  .hero { padding: 54px 0 76px; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 4.2rem); }
  .hero-lead { font-size: .92rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .legacy-note { font-size: .72rem; }

  .scene { max-height: none; }
  .float-card { width: 190px; min-height: 138px; }
  .float-card--valron { right: 2%; }
  .float-card--imara { left: 1%; }
  .core-sphere { width: 150px; height: 150px; }
  .floating-chip { display: none; }

  .section-head { display: block; margin-bottom: 30px; }
  .section-head > p { margin-top: 16px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 650px; }

  .transition-map { grid-template-columns: 1fr; }
  .transition-connector { min-height: 80px; }
  .transition-connector::before { top: 0; bottom: 0; left: 50%; right: auto; width: 1px; height: auto; background: linear-gradient(rgba(203,164,71,.5), rgba(39,115,244,.55)); }
  .transition-connector span { margin: 0 9px; box-shadow: 0 0 0 5px #07111d; }

  .decision-grid { grid-template-columns: 1fr; }
  .decision-grid a { min-height: 160px; }

  .final-cta-inner { min-height: 430px; flex-direction: column; justify-content: center; align-items: stretch; }
  .final-actions { min-width: 0; width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 540px) {
  .hero { overflow: hidden; }
  .hero h1 { letter-spacing: -.055em; }
  .eyebrow { font-size: .6rem; }
  .hero-visual { margin-top: 6px; }
  .scene {
    width: 115%;
    margin-left: -7.5%;
    aspect-ratio: .92 / 1;
  }
  .core-sphere { width: 128px; height: 128px; }
  .core-ring { inset: -15px; }
  .float-card { width: 164px; min-height: 120px; border-radius: 18px; padding: 11px; }
  .float-card--valron { top: 13%; right: 0; }
  .float-card--imara { bottom: 14%; left: 1%; }
  .float-card--valron img { width: 69px; height: 69px; }
  .imara-logo-wrap { padding: 14px 10px; border-radius: 11px; }
  .float-label { font-size: .49rem; margin-top: 7px; }
  .orbit-dot { width: 9px; height: 9px; }

  .route-section { padding: 54px 0 80px; }
  .split-section { padding: 80px 0; }
  .decision-section { padding: 80px 0; }
  .seo-copy { padding: 70px 0 82px; }
  .faq-section { padding: 72px 0 90px; }

  .route-card { min-height: 635px; padding: 20px; border-radius: 23px; }
  .route-link { left: 20px; right: 20px; bottom: 20px; }
  .route-logo { height: 130px; margin-top: 22px; }
  .route-logo--valron img { width: 110px; height: 110px; }
  .route-logo--imara { padding: 20px 25px; }
  .route-card li { font-size: .73rem; }
  .price-strip { flex-direction: column; align-items: flex-start; gap: 2px; }

  .decision-card { border-radius: 25px; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
