/* ===========================================================
   Sunray Inova — premium navy/gold marketing site
   =========================================================== */

:root {
  /* Navy ladder */
  --navy-950: #070F1C;
  --navy-900: #0A1628;
  --navy-800: #0D1F3C;
  --navy-700: #142B4F;
  --navy-600: #1A2A4A;
  --navy-500: #233A63;

  /* Neutral / silver */
  --slate-500: #4A5568;
  --slate-400: #6B7A99;
  --slate-300: #9AA3B8;
  --silver-200: #C0C8D8;
  --mist: #EEF2F8;
  --paper: #F6F8FB;
  --white: #FFFFFF;

  /* Gold */
  --gold: #C9A84C;
  --gold-bright: #D8BC66;
  --gold-300: #E8D5A3;
  --gold-700: #A8862F;

  --maxw: 1200px;
  --radius: 16px;
  --radius-lg: 24px;

  --font-display: "Rajdhani", "Segoe UI", sans-serif;
  --font-body: "Outfit", -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--navy-800);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; }

a { color: inherit; text-decoration: none; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

section { position: relative; }

.section-pad { padding: 120px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.on-dark { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }

.h-sec {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--slate-400);
  font-weight: 300;
  max-width: 56ch;
}
.lede.on-dark { color: var(--silver-200); }

.gold { color: var(--gold); }
.text-light { color: var(--mist); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--navy-900);
  box-shadow: 0 8px 28px -10px rgba(201,168,76,0.7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(201,168,76,0.85); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201,168,76,0.45);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.btn-ghost-dark {
  background: transparent;
  color: var(--navy-700);
  border-color: rgba(13,31,60,0.2);
}
.btn-ghost-dark:hover { border-color: var(--navy-700); background: rgba(13,31,60,0.04); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,18,33,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(201,168,76,0.16);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand .word { display: flex; flex-direction: column; line-height: 1; }
.brand .word .t1 { font-family: var(--font-display); font-weight: 300; font-size: 19px; letter-spacing: 0.12em; color: var(--silver-200); }
.brand .word .t2 { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.12em; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; flex: none; }
.nav-links a.link {
  font-size: 15px; font-weight: 400; color: var(--silver-200);
  letter-spacing: 0.01em; transition: color 0.2s ease; position: relative; white-space: nowrap;
}
.nav-links a.link:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 18px; flex: none; }
.nav-cta .signin { font-size: 15px; color: var(--silver-200); transition: color .2s; white-space: nowrap; }
.nav-cta .signin:hover { color: #fff; }
.nav .btn { padding: 11px 22px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--silver-200); margin: 5px 0; transition: 0.3s; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 680px at 72% 8%, rgba(201,168,76,0.16), transparent 60%),
    radial-gradient(900px 700px at 12% 96%, rgba(35,58,99,0.55), transparent 62%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 55%, var(--navy-800));
  color: var(--white);
  overflow: hidden;
  padding-top: 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 80px 0 96px;
}
.hero-copy { max-width: 640px; }
.hero h1 {
  font-size: clamp(46px, 6.2vw, 84px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 26px 0 30px;
}
.hero h1 .accent { color: var(--gold); }
.hero .lede { margin-top: 0; color: var(--silver-200); }
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 30px; display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 14px; color: var(--slate-300); font-weight: 300;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

/* hero starburst visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.hero-burst { width: min(520px, 46vw); aspect-ratio: 1; position: relative; }
.orbit {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(192,200,216,0.12);
}
.orbit.o2 { inset: 12%; border-color: rgba(201,168,76,0.16); }
.orbit.o3 { inset: 26%; border-color: rgba(192,200,216,0.09); }
.orbit-dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); top: -4px; left: 50%; box-shadow: 0 0 14px 2px rgba(201,168,76,0.7); }
.hero-burst .sun { position: absolute; inset: 30%; }

/* spin animations */
.spin-slow { animation: spinOnce 2.6s var(--ease) forwards; transform-origin: 50% 50%; }
.spin-rev { animation: spinOnce 2.6s var(--ease) forwards; transform-origin: 50% 50%; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinOnce { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ---------- problem stats band ---------- */
.band-dark { background: var(--navy-800); color: var(--white); }
.band-darker { background: var(--navy-950); color: var(--white); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat-cell { padding: 14px 36px; border-left: 1px solid rgba(192,200,216,0.12); }
.stat-cell:first-child { border-left: none; padding-left: 0; }
.stat-cell .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(46px, 5vw, 68px); color: var(--gold); line-height: 1; letter-spacing: -0.01em; }
.stat-cell .lab { font-size: 16px; color: var(--white); margin-top: 12px; font-weight: 500; }
.stat-cell .sub { font-size: 14px; color: var(--slate-300); margin-top: 6px; font-weight: 300; line-height: 1.5; }

/* ---------- light sections ---------- */
.band-light { background: var(--paper); color: var(--navy-800); }
.band-white { background: var(--white); color: var(--navy-800); }
.sec-head { max-width: 760px; }
.sec-head h2 { margin-top: 18px; margin-bottom: 0; }
.sec-head .lede { margin-top: 24px; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- products ---------- */
.products { display: grid; gap: 26px; margin-top: 64px; }
.product-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(13,31,60,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -45px rgba(10,22,40,0.5);
}
.product-card .pc-body { padding: 48px; display: flex; flex-direction: column; }
.product-card .pc-index { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--gold-700); letter-spacing: 0.1em; }
.product-card h3 { font-size: clamp(28px, 2.8vw, 38px); margin: 16px 0 10px; color: var(--navy-800); }
.product-card .pc-for { font-size: 15px; color: var(--slate-400); font-weight: 300; line-height: 1.55; max-width: 42ch; }
.pc-features { list-style: none; margin: 26px 0 0; display: grid; gap: 13px; }
.pc-features li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--navy-600); line-height: 1.45; }
.pc-features .ck { flex: none; width: 21px; height: 21px; border-radius: 50%; background: rgba(201,168,76,0.16); color: var(--gold-700); display: grid; place-items: center; margin-top: 1px; }
.pc-features .ck svg { width: 12px; height: 12px; }
.pc-meta { margin-top: auto; padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pc-tam { font-size: 14px; color: var(--slate-400); font-weight: 300; }
.pc-tam b { font-family: var(--font-display); font-weight: 700; color: var(--navy-700); font-size: 19px; display: block; }
.pc-visual {
  position: relative;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  overflow: hidden;
}
.pc-visual .ring { position: absolute; border: 1px solid rgba(201,168,76,0.14); border-radius: 50%; }
.pc-emoji {
  width: 116px; height: 116px; border-radius: 28px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: grid; place-items: center; font-size: 58px;
  position: relative; z-index: 2;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.pc-tag { position: absolute; z-index: 2; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--navy-900); background: var(--gold); padding: 7px 14px; border-radius: 999px; white-space: nowrap; }
.pc-tag.t-top { top: 30px; right: 30px; }

/* ---------- Hanu phone demo ---------- */
.hanu { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); color: #fff; overflow: hidden; }
.hanu-grid { display: grid; grid-template-columns: 1fr 0.86fr; gap: 64px; align-items: center; }
.hanu-copy h2 { color: #fff; margin-top: 18px; }
.hanu-copy .lede { color: var(--silver-200); margin-top: 20px; }
.hanu-points { list-style: none; margin: 32px 0 0; display: grid; gap: 18px; }
.hanu-points li { display: flex; gap: 14px; align-items: flex-start; }
.hanu-points .hp-ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.22); display: grid; place-items: center; }
.hanu-points .hp-ic svg { width: 20px; height: 20px; stroke: var(--gold); }
.hanu-points .hp-t { font-size: 16.5px; font-weight: 600; color: #fff; }
.hanu-points .hp-d { font-size: 14.5px; color: var(--slate-300); font-weight: 300; margin-top: 3px; line-height: 1.5; }

/* phone */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone-glow { position: absolute; inset: -8% -12%; background: radial-gradient(circle at 50% 40%, rgba(201,168,76,0.22), transparent 60%); filter: blur(20px); }
.phone {
  position: relative; z-index: 2;
  width: 340px; max-width: 86vw;
  background: #0b0b10;
  border-radius: 46px;
  padding: 13px;
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.9), 0 0 0 1px rgba(201,168,76,0.18);
}
.phone-screen {
  background: #0a131a;
  border-radius: 34px;
  overflow: hidden;
  height: 620px;
  display: flex; flex-direction: column;
  position: relative;
}
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 130px; height: 26px; background: #0b0b10; border-radius: 0 0 16px 16px; z-index: 5; }
.wa-header {
  background: #1f2c33; color: #fff; padding: 30px 16px 12px; display: flex; align-items: center; gap: 11px; flex: none;
}
.wa-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-700)); display: grid; place-items: center; font-size: 19px; flex: none; }
.wa-meta .nm { font-size: 15px; font-weight: 600; font-family: var(--font-body); }
.wa-meta .st { font-size: 11.5px; color: #8aa6b3; }
.wa-body {
  flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 9px; overflow: hidden;
  background-color: #0b141a;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 18px 18px;
}
.bubble {
  max-width: 80%; padding: 9px 13px; border-radius: 12px; font-size: 13.5px; line-height: 1.45; font-family: var(--font-body);
  opacity: 0; transform: translateY(12px); 
}
.bubble.show { opacity: 1; transform: translateY(0); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.bubble.them { background: #1f2c33; color: #e9eef0; align-self: flex-start; border-top-left-radius: 4px; }
.bubble.me { background: #056162; color: #eafff4; align-self: flex-end; border-top-right-radius: 4px; }
.bubble .bz { font-size: 10px; opacity: 0.6; display: block; text-align: right; margin-top: 3px; }
.bubble .who { font-size: 11px; font-weight: 700; color: var(--gold-300); display: block; margin-bottom: 2px; }
.bubble strong { font-weight: 700; }
.typing { display: inline-flex; gap: 4px; padding: 12px 14px; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: #6c8893; animation: blink 1.2s infinite both; }
.typing i:nth-child(2){ animation-delay: .2s; } .typing i:nth-child(3){ animation-delay: .4s; }
@keyframes blink { 0%,60%,100%{opacity:.3; transform: translateY(0);} 30%{opacity:1; transform: translateY(-3px);} }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 64px; }
.step {
  background: var(--white); border: 1px solid rgba(13,31,60,0.08); border-radius: var(--radius);
  padding: 32px 26px; position: relative;
  box-shadow: 0 20px 44px -38px rgba(10,22,40,0.55);
}
.step .s-num { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--gold-700); letter-spacing: 0.12em; }
.step .s-ic { width: 50px; height: 50px; border-radius: 14px; background: var(--navy-800); display: grid; place-items: center; margin: 16px 0 18px; }
.step .s-ic svg { width: 24px; height: 24px; stroke: var(--gold); }
.step h4 { font-size: 20px; color: var(--navy-800); }
.step p { font-size: 14.5px; color: var(--slate-400); font-weight: 300; line-height: 1.55; margin-top: 9px; }
.step .s-line { position: absolute; top: 56px; right: -13px; width: 26px; height: 1px; background: rgba(201,168,76,0.4); z-index: 3; }
.step:last-child .s-line { display: none; }

/* ---------- architecture ---------- */
.arch { background: radial-gradient(900px 600px at 50% -10%, rgba(35,58,99,0.5), transparent 60%), var(--navy-950); color: #fff; }
.arch-diagram { margin-top: 64px; display: flex; flex-direction: column; align-items: center; gap: 0; }
.arch-layer {
  width: 100%; max-width: 880px;
  border: 1px solid rgba(192,200,216,0.14); border-radius: var(--radius);
  background: rgba(20,43,79,0.4); backdrop-filter: blur(6px);
  padding: 22px 28px; position: relative;
}
.arch-layer .al-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.arch-layer .al-title { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: #fff; margin-top: 4px; }
.arch-layer .al-desc { font-size: 14px; color: var(--slate-300); font-weight: 300; margin-top: 6px; line-height: 1.5; }
.arch-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.arch-chip { font-size: 13px; padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(192,200,216,0.18); color: var(--silver-200); background: rgba(255,255,255,0.03); }
.arch-core { border-color: rgba(201,168,76,0.4); background: linear-gradient(160deg, rgba(201,168,76,0.14), rgba(20,43,79,0.5)); box-shadow: 0 0 50px -18px rgba(201,168,76,0.5); }
.arch-connector { width: 2px; height: 34px; background: linear-gradient(var(--gold), rgba(201,168,76,0.1)); position: relative; }
.arch-connector::after { content: ""; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 8px; height: 8px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.arch-sources { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 880px; }
.arch-source { font-size: 13.5px; padding: 9px 16px; border-radius: 10px; border: 1px solid rgba(192,200,216,0.16); color: var(--silver-200); background: rgba(255,255,255,0.03); display: inline-flex; align-items: center; gap: 8px; }
.arch-source .sd { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ---------- results ---------- */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 60px; background: rgba(192,200,216,0.14); border: 1px solid rgba(192,200,216,0.14); border-radius: var(--radius-lg); overflow: hidden; }
.result {
  background: var(--navy-900); padding: 40px 34px;
}
.result .r-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 4.4vw, 58px); color: var(--gold); line-height: 1; letter-spacing: -0.01em; }
.result .r-t { font-size: 16px; font-weight: 600; color: #fff; margin-top: 14px; }
.result .r-d { font-size: 14px; color: var(--slate-300); font-weight: 300; margin-top: 7px; line-height: 1.55; }

/* ---------- why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.why-card {
  background: var(--white); border: 1px solid rgba(13,31,60,0.08); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: 0 20px 44px -40px rgba(10,22,40,0.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 32px 56px -36px rgba(10,22,40,0.55); }
.why-card .w-ic { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(150deg, var(--navy-800), var(--navy-600)); display: grid; place-items: center; margin-bottom: 22px; }
.why-card .w-ic svg { width: 24px; height: 24px; stroke: var(--gold); }
.why-card h4 { font-size: 21px; color: var(--navy-800); line-height: 1.15; }
.why-card p { font-size: 14.5px; color: var(--slate-400); font-weight: 300; line-height: 1.6; margin-top: 11px; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; align-items: stretch; }
.price-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(192,200,216,0.16); border-radius: var(--radius-lg);
  padding: 38px 32px; display: flex; flex-direction: column; position: relative;
}
.price-card.feat {
  background: linear-gradient(170deg, rgba(201,168,76,0.16), rgba(20,43,79,0.5));
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 40px 80px -40px rgba(201,168,76,0.4);
  transform: translateY(-12px);
}
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-900); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 999px; }
.price-card .p-name { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: #fff; }
.price-card .p-price { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 4px; }
.price-card .p-price .amt { font-family: var(--font-display); font-weight: 700; font-size: 56px; color: var(--gold); line-height: 1; }
.price-card .p-price .per { font-size: 15px; color: var(--slate-300); }
.price-card .p-tier { font-size: 13.5px; color: var(--slate-300); font-weight: 300; min-height: 20px; }
.price-feats { list-style: none; margin: 26px 0 28px; display: grid; gap: 13px; }
.price-feats li { display: flex; gap: 11px; font-size: 14.5px; color: var(--silver-200); line-height: 1.4; }
.price-feats .ck { flex: none; color: var(--gold); }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note { text-align: center; margin-top: 30px; font-size: 14px; color: var(--slate-300); font-weight: 300; }
.price-trial { display: inline-flex; align-items: center; gap: 10px; margin: 0 auto 0; padding: 10px 20px; border-radius: 999px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); color: var(--gold-300); font-size: 14px; font-weight: 500; }

/* ---------- final CTA ---------- */
.cta-final {
  background: radial-gradient(800px 500px at 50% 120%, rgba(201,168,76,0.2), transparent 60%), linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #fff; text-align: center; overflow: hidden; position: relative;
}
.cta-final h2 { font-size: clamp(38px, 5vw, 64px); color: #fff; }
.cta-final .lede { margin: 22px auto 0; color: var(--silver-200); }
.cta-final .hero-actions { justify-content: center; margin-top: 40px; }
.cta-final .hero-trust { justify-content: center; }

/* ---------- footer ---------- */
.footer { background: var(--navy-950); color: var(--slate-300); padding: 70px 0 40px; border-top: 1px solid rgba(201,168,76,0.14); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand .word .t1, .footer .brand .word .t2 { font-size: 18px; }
.footer-about { font-size: 14px; line-height: 1.6; font-weight: 300; margin-top: 18px; max-width: 30ch; color: var(--slate-400); }
.footer-col h5 { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--slate-300); margin-bottom: 11px; transition: color .2s; font-weight: 300; }
.footer-col a:hover { color: #fff; }
.footer-bot { margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(192,200,216,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--slate-400); font-weight: 300; }

/* ---------- reveal (static-visible; entrance kept subtle & transform-only) ----------
   Resting opacity is always 1 so content can never be hidden by a frozen/blocked
   animation. We add only a gentle transform-based settle that, even at animation
   progress 0, leaves the element fully visible (just nudged), never blank. */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  html.anim .reveal { animation: revealUp 0.8s var(--ease) both; }
}

@keyframes revealUp {
  from { transform: translateY(22px); }
  to   { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .spin-slow, .spin-rev { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .section-pad { padding: 88px 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 60px 0 72px; }
  .hero-visual { order: -1; min-height: 300px; }
  .hero-burst { width: 300px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card .pc-visual { min-height: 240px; order: -1; }
  .product-card .pc-body { padding: 38px; }
  .hanu-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step .s-line { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .price-card.feat { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .signin { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .stat-row { grid-template-columns: 1fr; gap: 22px; }
  .stat-cell { border-left: none; padding: 0; border-top: 1px solid rgba(192,200,216,0.12); padding-top: 22px; }
  .stat-cell:first-child { border-top: none; padding-top: 0; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(40px, 12vw, 60px); }
}
