/* =============================================
   OPENGPC — STYLESHEET v4  (dark space edition)
   ============================================= */

/* ─── SELF-HOSTED FONTS ─── */
@font-face {
  font-family: 'GeistMono';
  src: url('fonts/GeistMono-400.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'GeistMono';
  src: url('fonts/GeistMono-500.woff2') format('woff2');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'GeistMono';
  src: url('fonts/GeistMono-600.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-400.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-600.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-700.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}

/* ─── CSS CUSTOM PROPERTY (animated border) ─── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ─── KEYFRAMES ─── */
@keyframes twinkle {
  0%, 100% { opacity: var(--op, 0.3); transform: scale(1); }
  50%       { opacity: calc(var(--op, 0.3) * 2.4); transform: scale(1.5); }
}
@keyframes orbit-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(0,180,255,.35), inset 0 0 16px rgba(0,180,255,.08); transform: scale(1); }
  50%       { box-shadow: 0 0 38px rgba(0,180,255,.62), inset 0 0 28px rgba(0,180,255,.18); transform: scale(1.03); }
}
@keyframes coin-float-1 {
  from { transform: translateY(0)    rotate(0deg); }
  to   { transform: translateY(-13px) rotate(9deg); }
}
@keyframes coin-float-2 {
  from { transform: translateY(0)   rotate(0deg); }
  to   { transform: translateY(-9px) rotate(-7deg); }
}
@keyframes coin-float-3 {
  from { transform: translateY(0)    rotate(0deg); }
  to   { transform: translateY(-11px) rotate(6deg); }
}
@keyframes coin-stack-bob {
  from { transform: translateY(0); }
  to   { transform: translateY(-7px); }
}
@keyframes rocket-bob {
  0%,100% { transform: translateY(0)   rotate(-8deg); }
  50%     { transform: translateY(-9px) rotate(-4deg); }
}
@keyframes flame-flicker {
  from { transform: scaleY(1)   scaleX(1); }
  to   { transform: scaleY(.82) scaleX(1.15); }
}
@keyframes crt-flicker {
  0%,90%,100% { opacity: 1; }
  92%         { opacity: .88; }
  94%         { opacity: 1; }
  97%         { opacity: .93; }
}
@keyframes feat-pulse {
  0%,100% { --angle: 0deg;   box-shadow: 0 0 22px rgba(0,180,255,.18); }
  50%     { --angle: 180deg; box-shadow: 0 0 48px rgba(0,180,255,.4), 0 0 80px rgba(0,113,254,.12); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bot-eye-blink {
  0%,88%,100% { transform: scaleY(1); }
  92%         { transform: scaleY(.06); }
}
@keyframes float-scene {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
@keyframes dot-pulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50%     { opacity: 1;  transform: scale(1.6); }
}
@keyframes glow-blob {
  0%,100% { opacity: .55; transform: scale(1); }
  50%     { opacity: .8;  transform: scale(1.08); }
}

/* ─── TOKENS ─── */
:root {
  --bg:      #07091A;
  --bg-2:    #0D1226;
  --bg-card: rgba(255,255,255,0.032);
  --blue:    #0171FE;
  --glow:    #00B4FF;
  --text:    #FFFFFF;
  --muted:   #8B9DBF;
  --border:  rgba(255,255,255,0.072);
  --neon:    rgba(0,180,255,0.22);
  --mono:    'GeistMono', monospace;
  --sans:    'Inter', system-ui, sans-serif;
  --w:       1139px;
  --pad:     clamp(18px, 7.25vw, 82px);
  --sec:     clamp(72px, 9vw, 112px);
  --hh:      60px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--mono);
  background: var(--bg);
  color: var(--text);
  padding-top: var(--hh);
}
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea { font-family: var(--mono); }
img { display: block; }

.wrap {
  width: 100%;
  max-width: calc(var(--w) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: #ffffff;
  color: var(--blue);
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 15px);
  border-radius: 6px 28px 6px 28px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,113,254,.12), transparent 60%);
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,113,254,.38), 0 2px 8px rgba(0,0,0,.3);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  border-radius: 100px;
  transition: background .2s, border-color .2s, transform .2s;
  white-space: nowrap;
}
.nav-btn:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.30);
  transform: translateY(-1px);
}

/* =============================================
   SECTION INDICATOR
   ============================================= */
#si {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(139,157,191,.25);
  pointer-events: none;
  z-index: 90;
  transition: color .3s, opacity .3s;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hh);
  background: rgba(7,9,26,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(7,9,26,.94);
  border-color: rgba(0,180,255,.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: calc(var(--w) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.nav-logo img {
  width: 40px; height: 40px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .18s, box-shadow .18s;
  letter-spacing: .02em;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--text);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.42);
}
.nav-links .dot { color: rgba(255,255,255,.16); font-size: 10px; padding: 0 2px; }

/* =============================================
   SHARED SECTION ELEMENTS
   ============================================= */
.sec-count {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(139,157,191,.42);
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(0,113,254,.1);
  border: 1px solid rgba(0,113,254,.28);
  color: var(--glow);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: lowercase;
  margin-bottom: 20px;
}
.pill::before { content: '•'; color: var(--blue); }
.pill--w {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.pill--w::before { color: rgba(255,255,255,.6); }
.sh {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 52px);
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 16px;
}
.bline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.bc     { color: rgba(139,157,191,.44); font-weight: 400; }
.bc-blue { color: var(--glow); }
.bc-dim  { color: rgba(255,255,255,.30); font-weight: 400; }
.sub {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  padding: calc(var(--hh) + 32px) 0 var(--sec);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,113,254,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,113,254,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  bottom: -120px; right: -100px;
  width: 640px; height: 520px;
  background: radial-gradient(ellipse at center, rgba(0,113,254,.18) 0%, rgba(0,113,254,.05) 50%, transparent 72%);
  pointer-events: none;
  z-index: 0;
  animation: glow-blob 5.5s ease-in-out infinite;
}
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 185px 1fr 185px;
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: calc(var(--w) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.hero-side {
  font-family: var(--mono);
  font-size: clamp(11px, 1vw, 13px);
  color: var(--muted);
  line-height: 1.78;
}
.hero-side--l { text-align: right; }
.hero-side--r { text-align: left; }

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 66px);
  line-height: 1.04;
  background: linear-gradient(158deg, #ffffff 18%, #a8d0ff 62%, #00B4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.hero-bline {
  font-family: var(--mono);
  font-size: clamp(11px, 1.2vw, 13px);
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.hero-bline .bc { color: rgba(139,157,191,.35); }
.hero-cta { margin-bottom: 52px; }

/* ─── HERO SCENE ─── */
.hero-scene {
  position: relative;
  width: 360px; height: 360px;
  flex-shrink: 0;
  margin: 0 auto;
  animation: float-scene 5.2s ease-in-out infinite;
  background: rgba(255,255,255,.026);
  border: 1px solid rgba(0,180,255,.2);
  border-radius: 28px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    0 28px 88px rgba(0,0,0,.56),
    0 0 44px rgba(0,113,254,.1),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* ─── ORBIT RINGS ─── */
.orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orbit--outer {
  top: 40px; left: 40px;
  width: 280px; height: 280px;
  border: 1.5px solid rgba(0,180,255,.48);
  animation: orbit-pulse 3.4s ease-in-out infinite;
}
.orbit--inner {
  top: 94px; left: 94px;
  width: 172px; height: 172px;
  border: 1px solid rgba(0,180,255,.24);
  animation: orbit-pulse 4.8s ease-in-out infinite reverse;
}

/* ─── CRT TV ─── */
.crt {
  position: absolute;
  top: 108px; left: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.crt-body {
  width: 152px; height: 118px;
  background: linear-gradient(140deg, #d4ddf0, #aeb8d0);
  border-radius: 14px 14px 10px 10px;
  display: flex;
  align-items: stretch;
  padding: 8px;
  gap: 6px;
  box-shadow:
    5px 5px 0 rgba(0,0,0,.38),
    0 10px 34px rgba(0,0,0,.56),
    inset 0 1px 0 rgba(255,255,255,.42),
    inset 0 -1px 0 rgba(0,0,0,.14);
}
.crt-screen {
  flex: 1;
  background: #05101e;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0,180,255,.4);
  box-shadow: 0 0 24px rgba(0,180,255,.38), inset 0 0 24px rgba(0,50,160,.48);
  animation: crt-flicker 6.5s ease-in-out infinite;
}
.crt-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0, transparent 3px,
    rgba(0,0,0,.14) 3px, rgba(0,0,0,.14) 4px
  );
  pointer-events: none;
  z-index: 1;
}
.crt-text {
  position: relative; z-index: 2;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: #00B4FF;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0,180,255,.9), 0 0 24px rgba(0,180,255,.4);
}
.crt-dollar {
  position: relative; z-index: 2;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(0,180,255,.55);
  margin-top: 4px;
  text-shadow: 0 0 8px rgba(0,180,255,.5);
}
.crt-side {
  width: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-shrink: 0;
}
.crt-btn {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b0bac8, #808898);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.35), 0 1px 0 rgba(255,255,255,.22);
}
.crt-dial {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, #808898, #505860);
  box-shadow: 0 1px 3px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
}
.crt-neck {
  width: 18px; height: 7px;
  background: linear-gradient(to right, #a8b2c4, #bcc6d6);
  margin: 0 auto;
  border-radius: 1px;
}
.crt-stand {
  width: 58px; height: 7px;
  background: linear-gradient(135deg, #9ca6b6, #b0bac8);
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,.36);
}

/* ─── ROBOT (scene) ─── */
.bot {
  position: absolute;
  top: 168px; right: 8px;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bot-head {
  width: 46px; height: 42px;
  background: linear-gradient(140deg, #e4eeff, #c2d2f0);
  border-radius: 10px;
  position: relative;
  box-shadow:
    3px 3px 0 rgba(0,0,0,.26),
    0 4px 14px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.55);
}
.bot-antenna {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 13px;
  background: #98a8bc;
  border-radius: 2px;
}
.bot-antenna::after {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00B4FF;
  box-shadow: 0 0 8px #00B4FF, 0 0 18px rgba(0,180,255,.5);
}
.bot-face {
  width: 34px; height: 26px;
  background: #060e1c;
  border-radius: 6px;
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(0,180,255,.3);
  box-shadow: inset 0 0 10px rgba(0,80,200,.4), 0 0 10px rgba(0,180,255,.22);
  position: relative;
}
.bot-eye {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00B4FF;
  box-shadow: 0 0 8px #00B4FF, 0 0 16px rgba(0,180,255,.5);
  animation: bot-eye-blink 4.2s ease-in-out infinite;
}
.bot-eye--r { animation-delay: .15s; }
.bot-mouth {
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 14px;
  border-bottom: 2px solid rgba(0,180,255,.55);
  border-radius: 0 0 6px 6px;
}
.bot-neck {
  width: 12px; height: 5px;
  background: #a6b6c8;
  margin: 0 auto;
  border-radius: 2px;
}
.bot-body {
  width: 48px; height: 38px;
  background: linear-gradient(140deg, #d2def4, #b2c2e0);
  border-radius: 8px;
  position: relative;
  box-shadow:
    3px 3px 0 rgba(0,0,0,.22),
    0 4px 12px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.44);
}
.bot-chest-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 11px; height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle, #0171FE, #003ab0);
  box-shadow: 0 0 12px rgba(0,113,254,.7);
}
.bot-arm-l, .bot-arm-r {
  position: absolute;
  top: 6px;
  width: 9px; height: 28px;
  background: linear-gradient(to bottom, #bac6de, #98a6be);
  border-radius: 5px;
  box-shadow: 2px 2px 0 rgba(0,0,0,.18);
}
.bot-arm-l { left: -10px; transform: rotate(-6deg); }
.bot-arm-r { right: -10px; transform: rotate(6deg); }
.bot-legs {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 2px;
}
.bot-leg {
  width: 13px; height: 18px;
  background: linear-gradient(to bottom, #a8b2c8, #869aae);
  border-radius: 4px 4px 6px 6px;
  box-shadow: 2px 2px 0 rgba(0,0,0,.18);
}

/* ─── GAME CONTROLLER ─── */
.controller {
  position: absolute;
  bottom: 10px; left: 4px;
  width: 88px;
}
.controller svg { width: 100%; height: auto; filter: drop-shadow(0 4px 14px rgba(0,0,0,.6)); }

/* ─── COINS ─── */
.coin {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c840, #e8a018 55%, #b07000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  color: #7a4800;
  box-shadow:
    0 4px 14px rgba(0,0,0,.44),
    0 0 0 2px rgba(255,200,50,.26),
    inset 0 1px 0 rgba(255,230,80,.55);
  flex-shrink: 0;
}
.coin--1 { width: 38px; height: 38px; font-size: 14px; top: 20px; right: 58px; animation: coin-float-1 3.2s ease-in-out infinite alternate; }
.coin--2 { width: 30px; height: 30px; font-size: 11px; top: 76px; left: 14px; animation: coin-float-2 2.8s ease-in-out infinite alternate; }
.coin--3 { width: 34px; height: 34px; font-size: 12px; bottom: 52px; right: 36px; animation: coin-float-3 3.9s ease-in-out infinite alternate; }

/* ─── COIN STACK ─── */
.coin-stack {
  position: absolute;
  top: 146px; left: 6px;
  width: 36px;
  animation: coin-stack-bob 3.7s ease-in-out infinite alternate;
}
.cs-coin {
  width: 36px; height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f5c840, #d08818);
  position: relative;
  box-shadow: 0 1px 0 rgba(0,0,0,.3);
  margin-bottom: -4px;
}
.cs-coin::before {
  content: '';
  position: absolute;
  left: 5px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 5px;
  border-radius: 50%;
  background: rgba(255,215,70,.6);
}

/* ─── ROCKET ─── */
.rocket {
  position: absolute;
  top: 8px; right: 10px;
  width: 36px;
  animation: rocket-bob 4.3s ease-in-out infinite;
}
.rocket-tip {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #ef4444;
  margin: 0 auto;
}
.rocket-body {
  width: 20px; height: 26px;
  background: linear-gradient(to right, #e8eef8, #f4f8ff);
  border-radius: 2px 2px 0 0;
  margin: 0 auto;
  position: relative;
  box-shadow: 2px 2px 0 rgba(0,0,0,.26), 0 2px 8px rgba(0,0,0,.32);
}
.rocket-window {
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #00cfff, #0050d0);
  border: 1.5px solid rgba(255,255,255,.5);
  box-shadow: 0 0 6px rgba(0,180,255,.7);
}
.rocket-fins {
  display: flex;
  justify-content: space-between;
  width: 36px;
  margin: -2px auto 0;
}
.rocket-fin--l { width: 0; height: 0; border-bottom: 11px solid #cc2828; border-right: 8px solid transparent; }
.rocket-fin--r { width: 0; height: 0; border-bottom: 11px solid #cc2828; border-left:  8px solid transparent; }
.rocket-flame {
  width: 20px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2px;
}
.flame { border-radius: 50% 50% 40% 40% / 35% 35% 65% 65%; animation: flame-flicker .14s ease-in-out infinite alternate; }
.f1 { width: 8px;  height: 15px; background: linear-gradient(to top, #ff6600, #ffcc00); }
.f2 { width: 6px;  height: 20px; background: linear-gradient(to top, #ff4400, #ff9900); margin-top: -5px; }
.f3 { width: 4px;  height: 13px; background: linear-gradient(to top, #ff2200, #ffcc00); }

/* ─── ANTENNA DOTS ─── */
.ant-dot {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 8px var(--glow), 0 0 14px rgba(0,180,255,.4);
}
.ant-dot--1 { top: 48px;  left: 54px;  animation: dot-pulse 2.6s ease-in-out infinite; }
.ant-dot--2 { bottom: 82px; right: 4px; animation: dot-pulse 3.5s ease-in-out infinite .9s; }

/* =============================================
   TICKER
   ============================================= */
.ticker {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.ti {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.62);
  letter-spacing: .06em;
  padding: 0 20px;
}
.ti-dot { color: var(--blue); font-size: 8px; flex-shrink: 0; }

/* =============================================
   PROTECT
   ============================================= */
.protect {
  background: var(--bg);
  padding: var(--sec) 0;
}
.protect-head { text-align: center; margin-bottom: 56px; }
.protect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 2.8vw, 36px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  will-change: transform;
}
.pcard:hover {
  transform: translateY(-7px);
  border-color: rgba(0,180,255,.4);
  box-shadow: 0 18px 52px rgba(0,0,0,.42), 0 0 36px rgba(0,180,255,.1);
}
.pcard-icon {
  width: 52px; height: 52px;
  background: rgba(0,113,254,.12);
  border: 1px solid rgba(0,113,254,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--glow);
  margin-bottom: 22px;
}
.pcard-icon svg { width: 26px; height: 26px; }
.pcard h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text);
  margin-bottom: 10px;
}
.pcard p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* =============================================
   INCOME
   ============================================= */
.income {
  background: var(--bg-2);
  padding: var(--sec) 0;
}
.income-head { text-align: center; margin-bottom: 56px; }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
  perspective: 1200px;
}
.tcard {
  background: linear-gradient(160deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.018) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(36px, 4vw, 52px) clamp(28px, 3vw, 42px);
  position: relative;
  will-change: transform;
  /* 3D base shadow stack */
  box-shadow:
    0 2px 0 rgba(255,255,255,.06) inset,
    0 -1px 0 rgba(0,0,0,.4) inset,
    0 20px 60px rgba(0,0,0,.55),
    0 8px 20px rgba(0,0,0,.35),
    4px 8px 24px rgba(0,0,0,.3);
  transform: perspective(900px) rotateX(2deg);
  transition: transform .32s ease, box-shadow .32s ease;
}
.tcard::before {
  /* top-edge highlight — gives the "lid" 3D feel */
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  border-radius: 50%;
}
.tcard::after {
  /* bottom depth shadow */
  content: '';
  position: absolute;
  bottom: -10px; left: 8%; right: 8%;
  height: 20px;
  background: rgba(0,0,0,.45);
  border-radius: 50%;
  filter: blur(14px);
  z-index: -1;
}
.tcard:hover {
  transform: perspective(900px) rotateX(0deg) translateY(-10px) scale(1.02);
  box-shadow:
    0 2px 0 rgba(255,255,255,.08) inset,
    0 -1px 0 rgba(0,0,0,.4) inset,
    0 36px 80px rgba(0,0,0,.62),
    0 12px 32px rgba(0,0,0,.4),
    0 0 40px rgba(0,113,254,.14);
}
/* Featured card */
.tcard--feat {
  border: 1.5px solid rgba(0,180,255,.5);
  background: linear-gradient(160deg, rgba(0,113,254,.12) 0%, rgba(0,180,255,.04) 100%);
  animation: feat-pulse 3.2s ease-in-out infinite;
  transform: perspective(900px) rotateX(2deg) scale(1.04);
  margin-top: -20px;
  padding-top: calc(clamp(36px, 4vw, 52px) + 20px);
  box-shadow:
    0 2px 0 rgba(0,180,255,.18) inset,
    0 -1px 0 rgba(0,0,0,.4) inset,
    0 28px 70px rgba(0,0,0,.6),
    0 0 60px rgba(0,113,254,.2),
    0 0 120px rgba(0,180,255,.08);
}
.tcard--feat::before {
  background: linear-gradient(90deg, transparent, rgba(0,180,255,.35), transparent);
}
.tcard--feat:hover {
  transform: perspective(900px) rotateX(0deg) translateY(-12px) scale(1.06);
}
.tcard-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse 80% 45% at 50% 0%, rgba(0,180,255,.1), transparent);
  pointer-events: none;
}
.tcard-feat-label {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--bg);
  background: var(--glow);
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: .06em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,180,255,.45);
}
.tcard-icon {
  width: 52px; height: 52px;
  background: rgba(0,113,254,.12);
  border: 1px solid rgba(0,113,254,.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(0,113,254,.18), inset 0 1px 0 rgba(255,255,255,.08);
}
.tcard-icon svg { width: 24px; height: 24px; }
.tcard-badge {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 23px);
  color: var(--text);
  margin-bottom: 6px;
}
.tcard-yrs {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(0,180,255,.72);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.tcard-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.tcard-price {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(18px, 2.1vw, 26px);
  color: var(--glow);
  line-height: 1.3;
  text-shadow: 0 0 24px rgba(0,180,255,.3);
}
.tcard-price sup { font-size: .52em; font-weight: 400; color: var(--muted); }

/* =============================================
   DATA PICKER — step-by-step
   ============================================= */
.dialer-wrap { display:flex; justify-content:center; padding:0 12px; }
.dialer {
  width:100%; max-width:420px;
  background:linear-gradient(160deg,rgba(255,255,255,.055) 0%,rgba(255,255,255,.018) 100%);
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px 18px 24px;
  box-shadow:
    0 2px 0 rgba(255,255,255,.06) inset,
    0 -1px 0 rgba(0,0,0,.4) inset,
    0 20px 60px rgba(0,0,0,.55),
    0 0 50px rgba(0,113,254,.07);
}

/* progress dots */
.dp-progress { display:flex; gap:7px; justify-content:center; margin-bottom:20px; }
.dp-dot {
  width:7px; height:7px; border-radius:50%;
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.1);
  transition:background .3s, transform .3s;
}
.dp-dot--active { background:var(--glow); border-color:var(--glow); box-shadow:0 0 8px rgba(0,180,255,.6); transform:scale(1.3); }
.dp-dot--done   { background:rgba(0,180,255,.4); border-color:rgba(0,180,255,.3); }

/* screens */
.dialer-screens {}
.dialer-screen { display:none; animation:dialerFadeIn .22s ease; }
.dialer-screen.active { display:block; }
@keyframes dialerFadeIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }

/* question heading */
.dp-q {
  font-family:var(--sans); font-size:clamp(15px,2vw,18px); font-weight:600;
  color:var(--text); line-height:1.4; margin-bottom:18px; text-align:center;
}

/* ── SCROLL WHEEL (year only) ──
   ITEM_H = 36px · 3 visible = 108px · padding = 36px each side */
.picker-outer {
  position:relative; height:108px; overflow:hidden;
  border-radius:12px; background:rgba(0,0,0,.28);
  margin-bottom:16px;
}
.picker-scroll {
  height:108px; padding:36px 0;
  overflow-y:scroll; scroll-snap-type:y mandatory;
  -webkit-overflow-scrolling:touch; scrollbar-width:none;
  box-sizing:content-box;
}
.picker-scroll::-webkit-scrollbar { display:none; }
.picker-item {
  height:36px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-size:11px; color:rgba(255,255,255,.2);
  user-select:none; scroll-snap-align:center; overflow:hidden;
  transition:color .1s;
}
.picker-item.pk-1   { font-size:13px; color:rgba(255,255,255,.48); }
.picker-item.pk-sel { font-size:20px; color:var(--text); font-weight:700; }
.picker-fade {
  position:absolute; left:0; right:0; height:36px;
  pointer-events:none; z-index:3;
}
.picker-fade--t { top:0;    background:linear-gradient(to bottom, var(--bg-2), transparent); }
.picker-fade--b { bottom:0; background:linear-gradient(to top,   var(--bg-2), transparent); }
.picker-sel {
  position:absolute; top:50%; left:0; right:0; height:36px;
  transform:translateY(-50%);
  border-top:1px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18);
  pointer-events:none; z-index:2;
}

/* ── STEPPERS (app counts) ── */
.dp-steppers { display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
.dp-stepper { display:flex; align-items:center; justify-content:space-between; }
.dp-stepper-lbl { font-family:var(--mono); font-size:12px; color:var(--muted); letter-spacing:.05em; min-width:72px; }
.dp-stepper-ctrl { display:flex; align-items:center; gap:16px; }
.dp-step-btn {
  width:36px; height:36px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,.14); background:rgba(255,255,255,.05);
  color:var(--text); font-size:18px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .15s, border-color .15s, transform .1s;
  flex-shrink:0;
}
.dp-step-btn:hover { background:rgba(0,113,254,.2); border-color:rgba(0,180,255,.5); }
.dp-step-btn:active { transform:scale(.9); }
.dp-step-val {
  font-family:var(--mono); font-size:26px; font-weight:700;
  color:var(--text); min-width:32px; text-align:center; line-height:1;
}

/* ── CHOICE CARDS (type + installs) ── */
.dp-choices { display:flex; gap:10px; margin-bottom:18px; }
.dp-choices--2 { flex-direction:row; }
.dp-choices--col { flex-direction:column; gap:8px; }
.dp-choice {
  flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:6px; padding:18px 10px;
  background:rgba(255,255,255,.04); border:1.5px solid rgba(255,255,255,.1);
  border-radius:14px; cursor:pointer;
  transition:background .18s, border-color .18s, transform .15s;
}
.dp-choice--wide { flex-direction:row; justify-content:space-between; padding:14px 18px; }
.dp-choice:hover { background:rgba(0,113,254,.12); border-color:rgba(0,180,255,.35); }
.dp-choice:active { transform:scale(.97); }
.dp-choice--selected { background:rgba(0,113,254,.2); border-color:var(--glow); box-shadow:0 0 16px rgba(0,180,255,.2); }
.dp-choice-icon { font-size:28px; line-height:1; }
.dp-choice-lbl { font-family:var(--mono); font-size:13px; font-weight:600; color:var(--text); }
.dp-choice-bonus { font-size:10px; color:var(--glow); margin-left:6px; font-weight:400; }

/* ── SHARED BUTTONS ── */
.d-btn-primary {
  display:block; width:100%;
  font-family:var(--mono); font-size:13px; font-weight:700; letter-spacing:.04em;
  color:var(--bg); background:var(--glow); border:none; border-radius:10px;
  padding:13px; cursor:pointer; text-align:center;
  box-shadow:0 4px 20px rgba(0,180,255,.4);
  transition:opacity .2s, transform .15s;
}
.d-btn-primary:hover { opacity:.88; transform:translateY(-1px); }
.d-btn-ghost {
  font-family:var(--mono); font-size:12px; color:var(--muted);
  background:none; border:1px solid rgba(255,255,255,.1); border-radius:10px;
  padding:11px 18px; cursor:pointer; white-space:nowrap;
  transition:border-color .2s, color .2s;
}
.d-btn-ghost:hover { border-color:rgba(255,255,255,.28); color:var(--text); }

/* nav row */
.dp-nav { display:flex; gap:10px; margin-top:4px; }
.dp-nav--c { justify-content:center; }

/* accent */
.d-accent { color:var(--glow); }
.d-warn   { color:#ff6b6b; }

/* ── RESULT ── */
.dr-total {
  font-family:var(--sans); font-weight:800;
  font-size:clamp(48px,13vw,76px); color:var(--glow);
  line-height:1; text-shadow:0 0 40px rgba(0,180,255,.5);
  text-align:center; margin-bottom:16px;
  animation:dialerFadeIn .4s ease;
}
.dr-breakdown {
  display:flex; flex-direction:column;
  font-family:var(--mono); font-size:11px; color:var(--muted);
  margin:0 0 14px;
}
.dr-row { display:flex; justify-content:space-between; padding:5px 0; border-bottom:1px solid rgba(255,255,255,.05); }
.dr-row:last-child { border-bottom:none; }
.dr-row span:last-child { color:var(--text); }
.dr-disclaimer {
  font-family:var(--mono); font-size:10.5px; color:var(--muted);
  text-align:center; line-height:1.7; margin-bottom:16px;
  padding:9px 12px;
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); border-radius:8px;
}

/* =============================================
   STEPS
   ============================================= */
.steps { background: var(--bg); padding: var(--sec) 0; }
.steps-head { text-align: center; margin-bottom: 56px; }
.steps-list { position: relative; }
.steps-list::before {
  content: '';
  position: absolute;
  left: 22px; top: 32px; bottom: 32px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,180,255,.22) 0, rgba(0,180,255,.22) 6px,
    transparent 6px, transparent 12px
  );
}
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: border-bottom-color .22s;
}
.step:hover { border-bottom-color: rgba(0,180,255,.2); }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(0,180,255,.6);
  letter-spacing: .14em;
  display: block;
  margin-bottom: 10px;
}
.step-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.step-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.step:hover .step-box {
  border-color: rgba(0,180,255,.32);
  box-shadow: 0 0 26px rgba(0,180,255,.1);
  transform: scale(1.04);
}
.step-box-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
.step-box-icon svg { width: 52px; height: 52px; }
.steps-cta { text-align: center; margin-top: 52px; }

/* =============================================
   CTA FORM
   ============================================= */
.ctaform { position: relative; overflow: hidden; padding: var(--sec) 0; }
.ctaform-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #001a60, #0050cc 48%, #0077cc 100%);
  z-index: 0;
}
.ctaform-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0,0,60,.5), transparent),
              linear-gradient(to top, rgba(0,0,40,.3), transparent 50%);
}
.ctaform-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 44px 44px;
}
.ctaform-stars { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

.robot {
  position: absolute;
  left: clamp(20px, 5vw, 80px);
  bottom: 0; z-index: 2; pointer-events: none;
}
.robot-wrap { display: flex; flex-direction: column; align-items: center; }
.robot-head {
  width: clamp(60px, 7vw, 80px); height: clamp(50px, 6vw, 64px);
  background: linear-gradient(140deg, #e0eaff, #c0d0f0);
  border-radius: 10px; position: relative;
  box-shadow: 4px 4px 0 rgba(0,0,0,.28), 0 4px 16px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.5);
}
.robot-ear {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: clamp(8px, 1vw, 11px); height: clamp(20px, 2.5vw, 26px);
  background: #b0c0d8; border-radius: 4px;
  box-shadow: 2px 2px 0 rgba(0,0,0,.18);
}
.robot-ear--l { left: -9px; }
.robot-ear--r { right: -9px; }
.robot-screen {
  width: 65%; height: 55%;
  background: #050d1c;
  border-radius: 6px;
  margin: 10% auto 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,180,255,.28);
  box-shadow: inset 0 0 10px rgba(0,60,200,.4), 0 0 10px rgba(0,180,255,.2);
  font-size: clamp(10px, 1.2vw, 13px);
  color: #00B4FF;
  letter-spacing: 4px;
  text-shadow: 0 0 8px #00B4FF;
}
.robot-screen::before { content: '• •'; }
.robot-body {
  width: clamp(55px, 7vw, 72px);
  background: linear-gradient(140deg, #ccd8f0, #a8b8d8);
  border-radius: 8px;
  padding: 10px 8px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.4);
}
.robot-chest {
  width: clamp(20px, 2.5vw, 28px); height: clamp(14px, 1.8vw, 18px);
  background: rgba(0,113,254,.15);
  border: 1px solid rgba(0,113,254,.3);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,113,254,.4);
}
.robot-arm-row { display: flex; align-items: center; }
.robot-arm {
  width: clamp(8px, 1vw, 10px); height: clamp(22px, 3vw, 30px);
  background: linear-gradient(to bottom, #b8c8e0, #98a8c0);
  border-radius: 4px;
  box-shadow: 2px 2px 0 rgba(0,0,0,.15);
}
.robot-legs { display: flex; gap: clamp(6px, .8vw, 10px); margin-top: 2px; }
.robot-leg {
  width: clamp(14px, 1.8vw, 18px); height: clamp(20px, 2.5vw, 28px);
  background: linear-gradient(to bottom, #a8b8d0, #8898b0);
  border-radius: 4px 4px 6px 6px;
  box-shadow: 2px 2px 0 rgba(0,0,0,.18);
}

.ctaform .wrap { position: relative; z-index: 3; }
.ctaform-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.ctaform-h2 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(26px, 4vw, 46px); color: #fff; line-height: 1.1; margin-bottom: 6px;
}
.ctaform-bline {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(26px, 4vw, 46px); color: #fff; line-height: 1.1; margin-bottom: 18px;
}
.ctaform-sub { font-size: clamp(13px, 1.3vw, 15px); color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: 36px; }

.form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fi, .fi-full {
  width: 100%;
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.fi:focus, .fi-full:focus {
  border-color: var(--glow);
  box-shadow: 0 0 0 3px rgba(0,180,255,.12);
}
.fi::placeholder, .fi-full::placeholder { color: rgba(255,255,255,.3); }
.form-or {
  text-align: center;
  font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.32);
  letter-spacing: .1em; position: relative;
}
.form-or::before, .form-or::after {
  content: '';
  position: absolute; top: 50%; height: 1px; width: 44%;
  background: rgba(255,255,255,.1);
}
.form-or::before { left: 0; }
.form-or::after  { right: 0; }
.fi-upload {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: rgba(0,0,0,.24);
  border: 1.5px dashed rgba(255,255,255,.16);
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,.48);
  transition: border-color .2s, color .2s;
}
.fi-upload:hover { border-color: var(--glow); color: rgba(255,255,255,.8); }
.fi-upload input[type="file"] { display: none; }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,.48); line-height: 1.5; cursor: pointer;
}
.form-check input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.form-check a { color: rgba(255,255,255,.72); text-decoration: underline; }
/* Field wrapper with label */
.fi-wrap { display: flex; flex-direction: column; gap: 7px; }
.fi-label {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fi-req { color: var(--glow); }

/* Upload zone */
.fi-upload {
  display: block;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.fi-upload-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(0,0,0,.28);
  border: 1.5px dashed rgba(255,255,255,.15);
  border-radius: 12px;
  transition: border-color .2s, background .2s;
}
.fi-upload:hover .fi-upload-inner,
.fi-upload:focus-within .fi-upload-inner {
  border-color: var(--glow);
  background: rgba(0,180,255,.05);
}
.fi-upload input[type="file"] { display: none; }
.fi-upload-icon {
  width: 32px; height: 32px;
  color: var(--glow);
  flex-shrink: 0;
}
.fi-upload-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fi-upload-text span:first-child {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,.75);
}
.fi-upload-hint {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.32);
}

/* Image preview */
.fi-preview-wrap {
  margin-top: 10px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,180,255,.3);
  max-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
}
.fi-preview-wrap img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 10px;
}
.fi-preview-remove {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .18s;
}
.fi-preview-remove:hover { background: rgba(220,50,50,.7); color: #fff; }

/* Error message */
.form-error {
  font-family: var(--mono);
  font-size: 12px;
  color: #ff6b6b;
  text-align: center;
  min-height: 18px;
}

/* Spinner animation */
@keyframes spin { to { transform: rotate(360deg); } }
.submit-spinner { animation: spin .8s linear infinite; width: 18px; height: 18px; }

.form-submit-wrap { text-align: center; }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none !important; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-sec { padding: var(--sec) 0; background: var(--white); }
.faq-head { text-align: center; margin-bottom: 52px; }
.faq-head .sub { font-size: clamp(13px,1.3vw,15px); color: var(--muted); line-height: 1.7; margin-top: 12px; }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--mono); font-size: clamp(13px,1.2vw,15px);
  color: var(--text); text-align: left;
  transition: color .18s;
}
.faq-q:hover { color: var(--blue); }
.faq-q[aria-expanded="true"] { color: var(--text); }

.faq-pill-btn {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #1a1a1a; color: #fff;
  font-size: 20px; line-height: 1;
  font-family: var(--sans); font-weight: 400;
  transition: background .18s;
}
.faq-q:hover .faq-pill-btn { background: var(--blue); }
.faq-q[aria-expanded="true"] .faq-pill-btn { background: #1a1a1a; }

.faq-a {
  display: none;
  padding: 0 0 22px;
  padding-right: 56px;
}
.faq-a p {
  font-family: var(--mono); font-size: clamp(12.5px,1.1vw,14px);
  color: var(--muted); line-height: 1.8;
}
.faq-a strong { color: var(--text); }

/* =============================================
   GET AN OFFER SECTION
   ============================================= */
.offer-sec { position: relative; overflow: hidden; padding: var(--sec) 0; }
.offer-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 3; }
.offer-step { width: 100%; }

/* Step indicator */
.offer-indicator {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin: 28px auto 36px; width: 280px;
  pointer-events: none;
}
.offer-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s;
}
.offer-dot--active {
  background: var(--blue); border-color: var(--glow);
  color: #fff; box-shadow: 0 0 16px rgba(0,180,255,.4);
}
.offer-dot--done {
  background: rgba(0,180,255,.2); border-color: rgba(0,180,255,.4);
  color: var(--glow);
}
.offer-line {
  flex: 1; height: 1px; background: rgba(255,255,255,.12);
  transition: background .3s;
}
.offer-line--done { background: rgba(0,180,255,.4); }

/* Tier grid in offer section */
.offer-tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 0 0 24px; text-align: left;
  perspective: 1200px;
}
.offer-tcard {
  background: linear-gradient(160deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.018) 100%);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative; cursor: pointer;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  transform: perspective(900px) rotateX(2deg);
  transition: transform .28s ease, box-shadow .28s ease, border-color .2s;
  will-change: transform;
}
.offer-tcard::before {
  content: ''; position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.offer-tcard:hover {
  transform: perspective(900px) rotateX(0deg) translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 30px rgba(0,113,254,.15);
}
.offer-tcard--feat {
  border-color: rgba(0,180,255,.5);
  background: linear-gradient(160deg, rgba(0,113,254,.14) 0%, rgba(0,180,255,.04) 100%);
  transform: perspective(900px) rotateX(2deg) scale(1.03);
  box-shadow: 0 16px 50px rgba(0,0,0,.5), 0 0 50px rgba(0,113,254,.18);
}
.offer-tcard--feat:hover {
  transform: perspective(900px) rotateX(0deg) translateY(-8px) scale(1.03);
}
.offer-tcard--selected {
  border-color: var(--glow) !important;
  box-shadow: 0 0 0 2px rgba(0,180,255,.35), 0 20px 50px rgba(0,0,0,.5), 0 0 40px rgba(0,180,255,.2) !important;
}
.offer-tcard--selected .offer-tcard-check {
  background: var(--blue); border-color: var(--glow); color: #fff;
}

/* Check circle on tier cards */
.offer-tcard-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  margin-left: auto; margin-bottom: 16px;
  transition: all .2s;
}
.offer-tcard-check svg { width: 11px; height: 11px; opacity: 0; transition: opacity .2s; }
.offer-tcard--selected .offer-tcard-check svg { opacity: 1; }

/* Step nav (back + continue) */
/* Dialer autofill banner (shown in step 3 when dialer was used) */
/* Data summary grid — step 2 when estimator was used */
.ds-grid {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ds-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: var(--mono);
  font-size: 13px;
}
.ds-row:last-child { border-bottom: none; }
.ds-lbl { color: var(--muted); }
.ds-val { color: var(--text); font-weight: 600; }

/* Embedded calculator in offer step 2 */
.c2-dialer { margin-bottom: 4px; }
.c2-screen { display: none; animation: dialerFadeIn .22s ease; }
.c2-screen.active { display: block; }

/* ── Escrow Infographic — step 6 ── */

/* Shield banner */
.escrow-banner {
  display: flex; align-items: center; gap: 10px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 10px; padding: 12px 16px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
  margin-bottom: 20px;
}
.escrow-banner strong { color: #22c55e; }

/* Card flow */
.escrow-flow {
  display: flex; align-items: stretch; gap: 0;
  margin-bottom: 16px;
}
@media (max-width: 580px) {
  .escrow-flow { flex-direction: column; }
}

.escrow-card {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 22px 16px 18px;
  position: relative;
}
.escrow-card--blue  { border-top: 3px solid #2563eb; }
.escrow-card--green { border-top: 3px solid #22c55e; }
.escrow-card--gold  { border-top: 3px solid #eab308; }

.escrow-card-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 20px; font-family: var(--mono);
}
.escrow-card--blue  .escrow-card-badge { background: #2563eb; color: #fff; }
.escrow-card--green .escrow-card-badge { background: #22c55e; color: #fff; }
.escrow-card--gold  .escrow-card-badge { background: #eab308; color: #000; }

.escrow-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 6px;
}
.escrow-card-icon svg { width: 26px; height: 26px; }
.escrow-card--blue  .escrow-card-icon { background: rgba(37,99,235,.15); color: #60a5fa; }
.escrow-card--green .escrow-card-icon { background: rgba(34,197,94,.15); color: #4ade80; }
.escrow-card--gold  .escrow-card-icon { background: rgba(234,179,8,.15);  color: #facc15; }

.escrow-card-title { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.3; }
.escrow-card-desc  { font-size: 11.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.escrow-card-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; font-family: var(--mono);
}
.escrow-card--blue  .escrow-card-tag { background: rgba(37,99,235,.15);  color: #60a5fa; }
.escrow-card--green .escrow-card-tag { background: rgba(34,197,94,.15);  color: #4ade80; }
.escrow-card--gold  .escrow-card-tag { background: rgba(234,179,8,.15);  color: #facc15; }

/* Arrow connectors between cards */
.escrow-connector {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 28px; color: rgba(255,255,255,.2);
}
.escrow-connector svg { width: 18px; height: 18px; }
@media (max-width: 580px) {
  .escrow-connector { width: auto; height: 24px; transform: rotate(90deg); }
}

/* Trust badges row */
.escrow-trust {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.escrow-trust-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--muted); font-family: var(--mono);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 5px 12px;
}

/* ── Paper actions row ── */
.paper-actions {
  display: flex; gap: 10px; align-items: center; margin-top: 16px;
}
.paper-dl-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 20px; border-radius: 10px; border: none; cursor: pointer;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.07); color: var(--text);
  border: 1px solid rgba(255,255,255,.12); transition: background .18s;
  white-space: nowrap;
}
.paper-dl-btn:hover { background: rgba(255,255,255,.13); }

/* ── @media print — only show the declaration ── */
@media print {
  @page { margin: 1cm; size: A4; }

  /* Hide every direct body child except the moved #legalDoc */
  body.printing-declaration > *:not(#legalDoc) { display: none !important; }

  body.printing-declaration #legalDoc {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    font-size: 11pt !important;
    overflow: visible !important;
  }
  body.printing-declaration #legalDoc * { visibility: visible !important; }
  body.printing-declaration .paper-watermark { color: rgba(180,140,0,.08) !important; }
  body.printing-declaration .paper-sig-clear { display: none !important; }
  body.printing-declaration .paper-sig-placeholder { display: none !important; }
  body.printing-declaration .paper-sig-pad-wrap {
    border: 1px solid rgba(184,134,11,.3) !important;
    background: transparent !important;
  }
}

/* ── Paper Protection Letter ── */
.paper-doc {
  position: relative;
  background: #fefcf7;
  border-radius: 4px;
  box-shadow:
    0 1px 1px rgba(0,0,0,.15),
    0 4px 12px rgba(0,0,0,.25),
    0 20px 40px rgba(0,0,0,.3),
    inset 0 0 0 1px rgba(0,0,0,.06);
  overflow: hidden;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1a1208;
  margin-bottom: 4px;
}

/* Subtle paper texture lines */
.paper-doc::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    transparent 0px, transparent 27px,
    rgba(0,0,0,.025) 27px, rgba(0,0,0,.025) 28px
  );
  pointer-events: none; z-index: 0;
}

/* Watermark */
.paper-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 64px; font-weight: 900;
  color: rgba(180,140,0,.06);
  letter-spacing: .2em; white-space: nowrap;
  pointer-events: none; z-index: 0;
  font-family: 'Arial Black', sans-serif;
}

/* Gold top border */
.paper-doc > * { position: relative; z-index: 1; }
.paper-doc > .paper-letterhead { border-top: 4px solid #b8860b; }

/* Letterhead */
.paper-letterhead {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; padding: 24px 28px 16px;
  border-bottom: 2px solid #b8860b;
  background: linear-gradient(180deg, rgba(184,134,11,.06) 0%, transparent 100%);
}
.paper-letterhead-left { display: flex; flex-direction: column; gap: 2px; }
.paper-logo-wrap { display: flex; align-items: center; gap: 8px; }
.paper-logo-img { width: 36px; height: 36px; object-fit: contain; }
.paper-logo-name {
  font-size: 22px; font-weight: 700; color: #1a1208;
  font-family: 'Arial Black', 'Arial', sans-serif; letter-spacing: -.01em;
}
.paper-logo-sub { font-size: 10px; color: #7a6030; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.paper-contact-block { font-size: 10px; color: #5a4a20; line-height: 1.8; font-family: Arial, sans-serif; }

.paper-letterhead-right { text-align: right; flex-shrink: 0; }
.paper-doc-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #b8860b; margin-bottom: 4px; font-family: Arial, sans-serif;
}
.paper-doc-ref { font-size: 11px; color: #5a4a20; font-family: 'Courier New', monospace; margin-bottom: 3px; }
.paper-doc-date { font-size: 11px; color: #5a4a20; font-family: Arial, sans-serif; }

.paper-divider { height: 1px; background: linear-gradient(90deg, transparent, #b8860b55, transparent); margin: 0 28px; }

/* Recipient */
.paper-recipient { padding: 16px 28px 0; }
.paper-recipient-label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: #7a6030; font-family: Arial, sans-serif; margin-bottom: 2px; }
.paper-recipient-name { font-size: 14px; font-weight: 700; color: #1a1208; }

/* Subject */
.paper-subject {
  margin: 10px 28px 0;
  padding: 10px 14px;
  background: rgba(184,134,11,.07);
  border-left: 3px solid #b8860b;
  font-size: 12px; color: #2a1e04;
  font-family: Arial, sans-serif; line-height: 1.5;
}

/* Body */
.paper-body {
  padding: 18px 28px 0;
  font-size: 12.5px; line-height: 1.85; color: #2a1e04;
}
.paper-body p { margin: 0 0 12px; }
.paper-inline-name { font-weight: 700; }
.paper-closing { margin-top: 14px; }

/* Clauses */
.paper-clauses { margin: 4px 0 16px; display: flex; flex-direction: column; gap: 10px; }
.paper-clause { display: flex; gap: 10px; align-items: flex-start; }
.paper-clause-num {
  flex-shrink: 0; font-size: 12px; font-weight: 700;
  color: #b8860b; width: 22px; padding-top: 1px;
  font-family: 'Georgia', serif;
}
.paper-clause-text { font-size: 12px; line-height: 1.75; color: #2a1e04; }
.paper-clause-text strong { font-weight: 700; color: #1a1208; }

/* Account summary table */
.paper-account-table { margin: 12px 0 14px; }
.paper-table-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: #7a6030; margin-bottom: 6px; font-family: Arial, sans-serif;
}
.paper-table { width: 100%; border-collapse: collapse; font-size: 11.5px; font-family: Arial, sans-serif; }
.paper-td-lbl { padding: 5px 8px; color: #5a4a20; border: 1px solid rgba(184,134,11,.2); background: rgba(184,134,11,.04); width: 45%; }
.paper-td-val { padding: 5px 8px; color: #1a1208; font-weight: 700; border: 1px solid rgba(184,134,11,.2); }

/* Signature block */
.paper-sig-block {
  position: relative;
  padding: 18px 28px 16px;
  display: flex; flex-direction: row; gap: 24px; align-items: flex-end;
}
.paper-sig-col { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.paper-sig-pre { height: 60px; display: flex; align-items: flex-end; }
.paper-presig-svg { width: 160px; height: 52px; }
.paper-sig-line {
  width: 100%; height: 1px;
  background: #1a1208; margin-bottom: 6px;
}
.paper-sig-name { font-size: 12px; font-weight: 700; color: #1a1208; font-family: Arial, sans-serif; }
.paper-sig-company { font-size: 11px; color: #5a4a20; font-family: Arial, sans-serif; }

/* Signature pad */
.paper-sig-pad-wrap {
  position: relative;
  width: 100%; height: 80px;
  border: 1.5px dashed rgba(184,134,11,.5);
  border-radius: 6px;
  background: rgba(255,255,255,.6);
  margin-bottom: 6px; overflow: hidden;
  cursor: crosshair;
}
.paper-sig-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  touch-action: none;
}
.paper-sig-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(90,74,32,.45);
  font-family: Arial, sans-serif; pointer-events: none;
  text-align: center; padding: 0 8px;
}
.paper-sig-clear {
  position: absolute; top: 4px; right: 4px;
  background: rgba(184,134,11,.15); border: 1px solid rgba(184,134,11,.3);
  border-radius: 4px; padding: 2px 7px;
  font-size: 10px; color: #7a6030; cursor: pointer;
  font-family: Arial, sans-serif; display: inline-flex; align-items: center;
}
.paper-sig-clear:hover { background: rgba(184,134,11,.25); }

/* Official Stamp */
.paper-seal {
  position: absolute; right: 12px; bottom: 8px;
  width: 120px; height: 120px; flex-shrink: 0;
  opacity: .90;
}
.paper-seal-svg { width: 100%; height: 100%; }

/* Footer bar */
.paper-footer-bar {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 28px 16px;
  border-top: 2px solid #b8860b;
  background: linear-gradient(0deg, rgba(184,134,11,.06) 0%, transparent 100%);
  font-size: 9.5px; color: #7a6030;
  font-family: Arial, sans-serif; line-height: 1.5;
}

/* WhatsApp notice */
.legal-wa-notice {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); line-height: 1.5;
  background: rgba(37,211,102,.07); border: 1px solid rgba(37,211,102,.18);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 18px;
}

.offer-step-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 8px;
}
.offer-back-btn {
  font-family: var(--mono); font-size: 12px;
  color: rgba(255,255,255,.4); background: none; border: none;
  cursor: pointer; transition: color .18s; padding: 8px 4px;
}
.offer-back-btn:hover { color: rgba(255,255,255,.75); }

/* Sample screenshot in step 3 */
.offer-sample-wrap {
  margin: 0 0 20px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,180,255,.2);
  background: rgba(0,0,0,.2);
}
.offer-sample-label {
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,.38); letter-spacing: .06em;
  padding: 12px 16px 8px; text-align: left;
}
.offer-sample-img { width: 100%; display: block; }

/* Compact form layout for step 1 */
.form-offer { max-width: 520px; margin: 0 auto; }

/* Floating brand icons */
.offer-float {
  position: absolute; top: 50%; z-index: 2;
  transform: translateY(-50%);
  pointer-events: none;
}
.offer-float--l { left: clamp(16px, 5vw, 72px); }
.offer-float--r { right: clamp(16px, 5vw, 72px); }
.offer-float svg {
  width: clamp(64px, 7vw, 96px); height: clamp(64px, 7vw, 96px);
  display: block; border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #040609;
  padding: 56px 0 36px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: 32px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 16px; color: var(--text);
}
.footer-logo img { width: 40px; height: 40px; object-fit: contain; mix-blend-mode: screen; }
.footer-tag { font-family: var(--mono); font-size: 11px; color: rgba(139,157,191,.38); letter-spacing: .06em; }
.footer-cols { display: flex; gap: clamp(32px, 5vw, 80px); margin-bottom: 36px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-label { font-family: var(--mono); font-size: 10px; color: rgba(139,157,191,.4); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 4px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,.52); transition: color .18s; }
.footer-link:hover { color: var(--text); }
.footer-contact, .footer-phone, .footer-addr { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.5; }
.footer-disc { font-size: 12px; color: rgba(139,157,191,.34); line-height: 1.65; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); margin-bottom: 20px; }
.footer-disc b { color: rgba(255,255,255,.5); }
.footer-copy { font-family: var(--mono); font-size: 10px; color: rgba(139,157,191,.26); letter-spacing: .1em; text-transform: uppercase; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-side { display: none; }
  .protect-grid, .tier-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .tcard--feat { margin-top: 0; transform: perspective(900px) rotateX(2deg); }
  .offer-tier-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .offer-tcard--feat { transform: perspective(900px) rotateX(2deg); }
  .step { grid-template-columns: 1fr; }
  .step-right { order: -1; max-width: 180px; margin: 0 auto; }
  .steps-list::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .robot { display: none; }
  .offer-float { display: none; }
}

@media (max-width: 640px) {
  /* hide section indicator on mobile */
  #si { display: none; }

  /* tighten section vertical padding */
  :root { --sec: 56px; }

  /* nav */
  .nav-links { display: none; }

  /* ── hero ── */
  .hero {
    min-height: unset;
    padding-top: calc(var(--hh) + 20px);
    padding-bottom: 32px;
    align-items: flex-start;
  }
  .hero-inner { padding: 0 20px; }
  .hero-h1 { font-size: clamp(30px, 9vw, 44px); margin-bottom: 10px; }
  .hero-bline { margin-bottom: 22px; }
  .hero-cta { margin-bottom: 28px; width: 100%; max-width: 340px; }

  /* scene: scale it down so internal absolute elements stay proportional */
  .hero-scene {
    transform: scale(0.78);
    transform-origin: top center;
    margin-bottom: -72px;
  }

  /* section headings */
  .sh { font-size: clamp(26px, 7vw, 38px); }

  /* offer form */
  .offer-inner { padding: 0 4px; }
  .offer-indicator { width: 240px; }
  .offer-sample-img { max-width: 100%; }
  .fi-upload { padding: 14px 16px; }
  .offer-step-nav { gap: 10px; }

  /* cards */
  .pcard, .tcard, .offer-tcard { padding: 20px 16px; }

  /* footer */
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-cols { flex-direction: column; gap: 24px; }
}

@media (max-width: 420px) {
  :root { --sec: 44px; }
  .hero-h1 { font-size: clamp(26px, 8vw, 34px); }
  .hero-scene { transform: scale(0.65); margin-bottom: -120px; }
  .offer-indicator { width: 200px; }
}
