/*
 * Prop-Folio marketing site — shared stylesheet.
 * Concept 3: App Store Premium  (mobile-optimized)
 * Near-black canvas · gold gradient accent · screenshot-forward · Inter 900 display.
 *
 * Shared classes (.nav__*, .footer__*, .page-header, .faq*, .contact*, .legal)
 * are reused by help/contact/privacy/terms — keep them intact.
 *
 * Fonts (Inter + DM Mono) are loaded via <link> in each page <head>, NOT @import.
 */

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --bg:        #09090E;
  --bg-card:   #111118;
  --bg-mid:    #0F0F16;
  --bg-elev:   #15151D;

  --gold:      #F59E0B;
  --gold-lt:   #E8922A;
  --gold-sub:  rgba(245,158,11,0.10);
  --gold-bdr:  rgba(245,158,11,0.30);
  --gold-glow: rgba(245,158,11,0.15);

  --green:     #22C55E;
  --warn:      #F59E0B;
  --bad:       #EF4444;

  --text:      #FFFFFF;
  --sub:       #9CA3AF;
  --muted:     #4B5563;
  --very-muted:#374151;

  --border:        rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.10);

  --mono: 'DM Mono', ui-monospace, 'SF Mono', monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Reset / base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: var(--gold-lt); text-decoration: none; }
a:hover, a:focus { color: var(--text); text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--gold-lt); outline-offset: 3px; border-radius: 3px; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
:focus { outline: none; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ── Nav (shared) ───────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: 60px;
  background: rgba(9,9,14,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text); text-decoration: none; flex-shrink: 0;
}
.nav__brand:hover { text-decoration: none; color: var(--text); }
.nav__links { display: flex; gap: 24px; font-size: 14px; }
.nav__links a { color: var(--sub); font-weight: 500; text-decoration: none; }
.nav__links a:hover { color: var(--text); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--text); }
.nav__cta {
  display: flex; align-items: center; gap: 7px;
  background: var(--text); color: #09090E;
  font-size: 13px; font-weight: 700; padding: 9px 18px;
  border-radius: 99px; border: none; cursor: pointer; text-decoration: none; flex-shrink: 0;
  transition: background 0.2s ease;
}
.nav__cta:hover { background: #EDEDED; color: #09090E; text-decoration: none; }
.nav__cta svg { flex-shrink: 0; }

/* ── Logo mark ──────────────────────────────────────────────────────────── */
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #09090E; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212,130,10,0.3);
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: all 0.2s ease; line-height: 1.2; font-weight: 700;
}
.btn:hover { text-decoration: none; }
.btn:focus-visible { outline: 2px solid var(--gold-lt); outline-offset: 3px; }
.btn--primary {
  background: var(--text); color: #09090E;
  font-size: 16px; padding: 16px 32px; border-radius: 16px;
  box-shadow: 0 0 40px rgba(255,255,255,0.08);
}
.btn--primary:hover { background: #F0F0F0; color: #09090E; }
.btn--ghost {
  background: rgba(255,255,255,0.06); color: var(--sub);
  font-size: 16px; font-weight: 500; padding: 16px 28px; border-radius: 16px;
  border-color: var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,0.09); color: var(--text); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: #09090E;
  font-size: 15px; padding: 14px 28px; border-radius: 14px;
  box-shadow: 0 4px 20px rgba(212,130,10,0.25);
}
.btn--gold:hover { box-shadow: 0 4px 28px rgba(212,130,10,0.4); color: #09090E; }

/* ── Section heading helpers ────────────────────────────────────────────── */
.sec-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 14px; }
.sec-h2  { font-size: clamp(34px, 5vw, 52px); font-weight: 900; letter-spacing: -0.04em; color: var(--text); line-height: 1.05; }
.sec-sub { font-size: 18px; color: var(--sub); line-height: 1.6; margin-top: 14px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero { text-align: center; padding: 100px 40px 0; position: relative; }
.hero-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,130,10,0.12) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-strong);
  color: var(--sub); font-size: 13px; font-weight: 500;
  padding: 7px 16px; border-radius: 99px; margin-bottom: 28px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--gold-lt); border-radius: 50%; flex-shrink: 0; }
.hero h1 {
  font-size: clamp(44px, 9vw, 80px); font-weight: 900; line-height: 1.0;
  letter-spacing: -0.04em; color: var(--text); margin-bottom: 24px;
}
.hero h1 .gold-word {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: clamp(17px, 2.2vw, 20px); line-height: 1.65; color: var(--sub); max-width: 540px; margin: 0 auto 40px; }
.hero-ctas { display: flex; justify-content: center; gap: 12px; margin-bottom: 28px; }
.hero-fine { font-size: 13px; color: var(--muted); }

/* ── HERO PHONES ────────────────────────────────────────────────────────── */
.hero-phones {
  position: relative; display: flex; justify-content: center; align-items: flex-end;
  gap: 24px; padding-top: 60px;
}
.hero-phones::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 900px; max-width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
}
.phone-frame {
  border-radius: 44px; border: 2px solid var(--border-strong);
  overflow: hidden; position: relative; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 40px 80px rgba(0,0,0,0.6);
}
.phone-frame.center { width: 300px; height: 620px; background: linear-gradient(160deg, #111118, #09090E); z-index: 2; }
.phone-frame.side   { width: 240px; height: 500px; background: linear-gradient(160deg, #111118, #09090E); opacity: 0.7; margin-bottom: -20px; }
.phone-frame.left   { transform: rotate(-6deg) translateX(20px); }
.phone-frame.right  { transform: rotate(6deg) translateX(-20px); }

/* phone screen primitives */
.pf-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 88px; height: 26px; background: #000; border-radius: 20px; z-index: 10; }
.pf-inner { padding-top: 50px; height: 100%; }
.pf-topbar { padding: 10px 18px; display: flex; align-items: center; justify-content: space-between; }
.pf-chip { font-size: 9px; font-weight: 600; font-family: var(--mono); background: var(--gold-sub); color: var(--gold-lt); padding: 3px 8px; border-radius: 5px; border: 1px solid var(--gold-bdr); }

.cp-score-hero { text-align: center; padding: 22px 20px 14px; }
.cp-score-circle { width: 104px; height: 104px; border-radius: 50%; border: 6px solid rgba(212,130,10,0.2); position: relative; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.cp-score-circle::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 6px solid transparent; border-top-color: var(--gold-lt); border-right-color: var(--gold-lt); border-bottom-color: rgba(212,130,10,0.3); transform: rotate(-20deg); }
.cp-score-val { font-size: 40px; font-weight: 900; color: var(--gold-lt); font-family: var(--mono); line-height: 1; }
.cp-score-sublabel { font-size: 9px; color: var(--muted); letter-spacing: 0.08em; font-family: var(--mono); }
.cp-tag { display: inline-block; font-size: 11px; font-weight: 700; color: var(--green); background: rgba(52,211,153,0.1); padding: 4px 12px; border-radius: 6px; margin-bottom: 10px; }
.cp-addr { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.cp-addr-sub { font-size: 10px; color: var(--sub); }
.cp-metrics { margin: 12px 16px 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border); border-radius: 12px; overflow: hidden; }
.cp-metric { background: var(--bg-mid); padding: 10px 8px; text-align: center; }
.cp-mv { font-size: 15px; font-weight: 700; color: var(--text); font-family: var(--mono); }
.cp-mv.g { color: var(--green); }
.cp-ml { font-size: 7px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.cp-strategy-row { display: flex; gap: 4px; margin: 12px 16px 0; }
.cp-strat { flex: 1; text-align: center; font-size: 9px; font-weight: 600; padding: 7px 0; border-radius: 7px; }
.cp-strat.active { background: var(--gold-lt); color: #09090E; }
.cp-strat.idle { background: rgba(255,255,255,0.05); color: var(--sub); }

.sp-rows { padding: 0 14px; display: flex; flex-direction: column; gap: 7px; }
.sp-row { background: rgba(255,255,255,0.04); border-radius: 9px; padding: 9px 12px; display: flex; align-items: center; justify-content: space-between; }
.sp-lbl { font-size: 10px; color: var(--sub); }
.sp-val { font-size: 11px; font-weight: 600; color: var(--text); font-family: var(--mono); }

.rp-bars { padding: 0 14px; display: flex; flex-direction: column; gap: 8px; }
.rp-bar-top { display: flex; justify-content: space-between; font-size: 9px; margin-bottom: 4px; color: var(--sub); }
.rp-bar-top span:last-child { font-family: var(--mono); color: var(--text); }
.rp-bar-track { height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; }
.rp-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-lt), var(--gold)); border-radius: 3px; }

/* ── CALLOUT STRIP ──────────────────────────────────────────────────────── */
.callout-strip {
  display: flex; justify-content: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-top: 80px;
}
.callout-item { flex: 1; max-width: 240px; padding: 32px 28px; text-align: center; border-right: 1px solid var(--border); }
.callout-item:last-child { border-right: none; }
.callout-num { font-size: 40px; font-weight: 900; color: var(--gold-lt); font-family: var(--mono); letter-spacing: -0.03em; margin-bottom: 6px; }
.callout-lbl { font-size: 13px; color: var(--sub); }

/* ── FEATURE SHOWCASE ───────────────────────────────────────────────────── */
.features-section { padding: 120px 40px; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.fs-heading { text-align: center; margin-bottom: 80px; }

.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.fr:last-child { margin-bottom: 0; }
.fr.flip .fr-phone { order: 2; }
.fr.flip .fr-copy { order: 1; }
.fr-phone { display: flex; justify-content: center; }
.showcase-phone {
  width: 260px; height: 540px; border-radius: 44px;
  border: 2px solid var(--border-strong); overflow: hidden;
  background: linear-gradient(160deg, #111118, #09090E);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px var(--gold-glow);
}
.fr-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 14px; }
.fr-h3 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 900; letter-spacing: -0.03em; color: var(--text); line-height: 1.1; margin-bottom: 16px; }
.fr-desc { font-size: 16px; color: var(--sub); line-height: 1.7; margin-bottom: 28px; }
.fr-bullets { display: flex; flex-direction: column; gap: 12px; }
.fr-bullet { display: flex; align-items: flex-start; gap: 12px; }
.fr-bullet-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--gold-sub); border: 1px solid var(--gold-bdr); display: flex; align-items: center; justify-content: center; color: var(--gold-lt); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.fr-bullet-text { font-size: 14px; color: var(--sub); line-height: 1.5; }
.fr-bullet-text strong { color: var(--text); font-weight: 600; }

/* deal score phone */
.dsp { padding: 48px 0 0; height: 100%; }
.dsp-bar { padding: 8px 18px; display: flex; justify-content: space-between; align-items: center; }
.dsp-bar-title { font-size: 13px; font-weight: 700; }
.dsp-chip { font-size: 9px; font-family: var(--mono); background: var(--gold-sub); color: var(--gold-lt); padding: 3px 8px; border-radius: 5px; border: 1px solid var(--gold-bdr); }
.dsp-ring-wrap { display: flex; justify-content: center; padding: 22px 0 12px; }
.dsp-ring { width: 124px; height: 124px; border-radius: 50%; border: 7px solid rgba(212,130,10,0.15); position: relative; display: flex; align-items: center; justify-content: center; }
.dsp-ring::after { content: ''; position: absolute; inset: -7px; border-radius: 50%; border: 7px solid transparent; border-top-color: var(--gold-lt); border-right-color: var(--gold-lt); transform: rotate(-25deg); }
.dsp-ring-val { font-size: 42px; font-weight: 900; color: var(--gold-lt); font-family: var(--mono); }
.dsp-center-lbl { text-align: center; font-size: 9px; color: var(--muted); letter-spacing: 0.08em; font-family: var(--mono); }
.dsp-tag { text-align: center; padding: 4px 0 14px; }
.dsp-tag span { display: inline-block; font-size: 11px; font-weight: 700; color: var(--green); background: rgba(52,211,153,0.1); padding: 4px 12px; border-radius: 6px; }
.dsp-rows { padding: 0 16px; display: flex; flex-direction: column; gap: 7px; }
.dsp-row { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px 14px; display: flex; justify-content: space-between; align-items: center; }
.dsp-row-lbl { font-size: 10px; color: var(--sub); }
.dsp-row-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin: 0 10px; }
.dsp-row-fill { height: 100%; border-radius: 2px; }
.dsp-row-val { font-size: 10px; font-weight: 600; font-family: var(--mono); }

/* comps phone */
.comp-screen { padding: 48px 0 0; height: 100%; }
.comp-bar { padding: 8px 18px 10px; display: flex; justify-content: space-between; align-items: center; }
.comp-title { font-size: 13px; font-weight: 700; }
.comp-unit-row { display: flex; gap: 6px; padding: 0 16px 12px; }
.comp-unit-chip { font-size: 9px; font-weight: 600; padding: 5px 10px; border-radius: 6px; }
.comp-unit-chip.active { background: var(--gold-lt); color: #09090E; }
.comp-unit-chip.idle { background: rgba(255,255,255,0.06); color: var(--sub); }
.comp-cards { padding: 0 16px; display: flex; flex-direction: column; gap: 8px; }
.comp-card { background: rgba(255,255,255,0.04); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 12px; }
.comp-card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-lt); flex-shrink: 0; }
.comp-card-body { flex: 1; }
.comp-card-addr { font-size: 10px; font-weight: 600; color: var(--text); }
.comp-card-dist { font-size: 9px; color: var(--sub); }
.comp-card-rent { font-size: 13px; font-weight: 700; color: var(--text); font-family: var(--mono); }
.comp-gross { margin: 12px 16px 0; padding: 12px 14px; background: var(--gold-sub); border: 1px solid var(--gold-bdr); border-radius: 12px; display: flex; justify-content: space-between; align-items: center; }
.comp-gross-lbl { font-size: 10px; color: var(--gold-lt); }
.comp-gross-val { font-size: 18px; font-weight: 700; color: var(--gold-lt); font-family: var(--mono); }

/* reno phone (feature 3) */
.reno-screen { padding: 48px 0 0; height: 100%; }
.reno-bar { padding: 8px 18px; display: flex; justify-content: space-between; align-items: center; }
.reno-sublbl { padding: 4px 18px 10px; font-size: 10px; color: var(--muted); font-family: var(--mono); }

/* ── STRATEGIES ─────────────────────────────────────────────────────────── */
.strats-section { padding: 0 40px 120px; }
.strats-inner { max-width: 1100px; margin: 0 auto; }
.strats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.strat-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s, border-color 0.2s; }
.strat-card:hover { transform: translateY(-4px); border-color: var(--gold-bdr); }
.strat-top-bar { height: 160px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.strat-top-bar.bh { background: linear-gradient(135deg, #0D1A0F, #0A140C); }
.strat-top-bar.br { background: linear-gradient(135deg, #1A100D, #140A0C); }
.strat-top-bar.ff { background: linear-gradient(135deg, #0D101A, #0A0D14); }
.strat-top-bar.str { background: linear-gradient(135deg, #0D1A18, #0A1714); }
.strat-top-bar.str .strat-glow { background: radial-gradient(circle at center, rgba(45,212,191,0.12) 0%, transparent 70%); }
.strat-top-bar.str + .strat-body .strat-sub { color: #2DD4BF; }
.strat-icon { font-size: 52px; opacity: 0.92; position: relative; }
.strat-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(212,130,10,0.10) 0%, transparent 70%); }
.strat-body { padding: 24px; background: var(--bg-card); }
.strat-name { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 4px; letter-spacing: -0.02em; }
.strat-sub { font-size: 11px; font-weight: 700; color: var(--gold-lt); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.strat-desc { font-size: 14px; color: var(--sub); line-height: 1.6; margin-bottom: 18px; }
.strat-metrics { display: flex; flex-wrap: wrap; gap: 6px; }
.strat-metric { font-size: 11px; color: var(--sub); background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border); }

/* ── HOW IT WORKS ───────────────────────────────────────────────────────── */
.hiw-section { padding: 0 40px 120px; }
.hiw-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.hiw-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
.hiw-step { position: relative; }
.hiw-step:not(:last-child)::after { content: '→'; position: absolute; top: 22px; right: -14px; font-size: 18px; color: var(--muted); }
.hiw-num { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--gold-lt), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; color: #09090E; margin: 0 auto 16px; font-family: var(--mono); }
.hiw-step-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.hiw-step-desc { font-size: 13px; color: var(--sub); line-height: 1.6; }

/* ── PRICING ────────────────────────────────────────────────────────────── */
.pricing-section { padding: 0 40px 120px; }
.pricing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; text-align: left; }
.pc { border-radius: 20px; padding: 30px 26px; border: 1px solid var(--border); background: var(--bg-card); }
.pc.featured { border-color: var(--gold-bdr); background: linear-gradient(135deg, #111118, #0F0F16); box-shadow: 0 0 60px rgba(212,130,10,0.08); }
.pc-popular { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: #09090E; padding: 4px 10px; border-radius: 6px; margin-bottom: 16px; }
.pc-name { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pc-price { font-size: 40px; font-weight: 900; color: var(--text); font-family: var(--mono); letter-spacing: -0.03em; }
.pc-period { font-size: 15px; font-weight: 400; color: var(--sub); }
.pc-desc { font-size: 14px; color: var(--sub); margin: 10px 0 22px; line-height: 1.55; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.pc-list li { position: relative; padding-left: 24px; font-size: 14px; color: var(--sub); line-height: 1.5; }
.pc-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.pc-btn-white { display: block; text-align: center; padding: 12px; border-radius: 12px; border: 1px solid var(--border-strong); background: transparent; color: var(--sub); font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.2s; }
.pc-btn-white:hover { border-color: var(--sub); color: var(--text); text-decoration: none; }
.pc-btn-gold { display: block; text-align: center; padding: 12px; border-radius: 12px; border: none; background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: #09090E; font-size: 14px; font-weight: 700; text-decoration: none; cursor: pointer; box-shadow: 0 4px 20px rgba(212,130,10,0.25); transition: box-shadow 0.2s; }
.pc-btn-gold:hover { box-shadow: 0 4px 28px rgba(212,130,10,0.4); color: #09090E; text-decoration: none; }
.pricing-fn { font-size: 13px; color: var(--muted); margin-top: 18px; }

/* ── AirTokens block — sits below the two subscription plan cards ──────── */
.airtokens-block { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); text-align: left; }
.airtokens-head { text-align: center; margin-bottom: 28px; }
.airtokens-pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: #2DD4BF; background: rgba(45,212,191,0.10); border: 1px solid rgba(45,212,191,0.32); padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.airtokens-h3 { font-size: 30px; font-weight: 900; color: var(--text); letter-spacing: -0.02em; margin: 0 0 10px 0; }
.airtokens-sub { font-size: 15px; color: var(--sub); line-height: 1.55; max-width: 680px; margin: 0 auto; }
.airtokens-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 4px; }
.at-pack { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 22px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.at-pack-best { border-color: #2DD4BF; box-shadow: 0 0 40px rgba(45,212,191,0.10); padding-top: 32px; }
.at-pack-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: #2DD4BF; color: #0A1612; font-size: 10px; font-weight: 900; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 6px; white-space: nowrap; }
.at-pack-count { font-size: 38px; font-weight: 900; color: #2DD4BF; font-family: var(--mono); letter-spacing: -0.03em; line-height: 1; }
.at-pack-name { font-size: 12px; font-weight: 700; color: var(--sub); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.at-pack-price { font-size: 22px; font-weight: 800; color: var(--text); font-family: var(--mono); letter-spacing: -0.02em; margin-top: 4px; }
.at-pack-save { font-size: 11px; font-weight: 700; color: var(--green); margin-top: 4px; }

/* ── FINAL CTA ──────────────────────────────────────────────────────────── */
.final-section { padding: 0 40px 80px; }
.final-inner {
  max-width: 1100px; margin: 0 auto; border-radius: 28px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #111118 0%, #0F0F16 100%); border: 1px solid var(--border);
  padding: 96px 40px; text-align: center;
}
.final-inner::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,130,10,0.10) 0%, transparent 65%); pointer-events: none; }
.final-h2 { font-size: clamp(30px, 5vw, 56px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 16px; position: relative; }
.final-p { font-size: 18px; color: var(--sub); margin-bottom: 40px; position: relative; }
.final-btns { display: flex; justify-content: center; gap: 12px; position: relative; }
.final-fine { font-size: 13px; color: var(--muted); margin-top: 20px; position: relative; }

/* ── FOOTER (shared) ────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); background: var(--bg); }
.footer__grid { max-width: 1100px; margin: 0 auto; padding: 60px 40px 0; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer__tagline { font-size: 13px; color: var(--muted); margin-top: 12px; font-style: italic; }
.footer__brand { font-size: 12px; color: var(--muted); line-height: 1.65; max-width: 260px; margin-top: 10px; }
.footer__col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sub); margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--muted); text-decoration: none; }
.footer__col a:hover { color: var(--text); }
.footer__base { max-width: 1100px; margin: 0 auto; border-top: 1px solid var(--border); margin-top: 40px; padding: 20px 40px 40px; display: flex; justify-content: space-between; }
.footer__base span { font-size: 12px; color: var(--muted); }

/* ── PAGE HEADER (sub-pages) ────────────────────────────────────────────── */
.page-header { padding: 60px 0 40px; background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%); border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; color: var(--text); }
.page-header p { font-size: 17px; color: var(--sub); max-width: 600px; line-height: 1.65; }

/* ── SECTION wrapper (sub-pages) ────────────────────────────────────────── */
.section { padding: 64px 0; }

/* ── LEGAL copy (sub-pages) ─────────────────────────────────────────────── */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 40px 0 12px; color: var(--text); scroll-margin-top: 80px; letter-spacing: -0.01em; }
.legal h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; color: var(--text); }
.legal p, .legal li { font-size: 15px; color: var(--sub); line-height: 1.7; margin: 0 0 12px; }
.legal ul, .legal ol { padding-left: 22px; margin: 0 0 12px; }
.placeholder-banner { background: rgba(248,113,113,0.07); border: 1px solid rgba(248,113,113,0.3); border-radius: 12px; padding: 16px; margin: 24px 0 40px; font-size: 14px; color: #FCA5A5; line-height: 1.55; }

/* Legal extras: effective line, summary box, table of contents, data tables */
.legal-effective { font-size: 14px; color: var(--muted); margin-top: 6px; }
.legal-summary { background: var(--bg-card); border: 1px solid var(--gold-bdr); border-radius: 14px; padding: 20px 22px; margin: 8px 0 28px; }
.legal-summary .legal-summary__title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-lt); margin: 0 0 12px; }
.legal-summary p { font-size: 15px; color: var(--sub); margin: 0 0 10px; line-height: 1.65; }
.legal-summary p:last-child { margin-bottom: 0; }
.legal-summary strong { color: var(--text); }
.legal-toc { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 18px 22px 8px; margin: 0 0 36px; }
.legal-toc__title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sub); margin: 0 0 12px; }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.legal-toc li { margin-bottom: 8px; font-size: 14px; break-inside: avoid; }
.legal-toc a { color: var(--gold-lt); text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }
.legal-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 14px 0 22px; }
.legal-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 13px; }
.legal-table th, .legal-table td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; color: var(--sub); line-height: 1.55; }
.legal-table th { background: var(--bg-card); color: var(--text); font-weight: 600; white-space: nowrap; }

/* ── FAQ accordion (sub-pages) ──────────────────────────────────────────── */
.faq-group { margin-bottom: 40px; }
.faq-group__title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 12px; }
.faq { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px; overflow: hidden; transition: border-color 0.15s ease; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 16px; font-weight: 600; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-lt); font-size: 22px; font-weight: 400; flex-shrink: 0; line-height: 1; }
.faq[open] summary::after { content: "−"; }
.faq[open] { border-color: var(--gold-bdr); }
.faq__body { padding: 0 24px 16px; font-size: 15px; color: var(--sub); line-height: 1.65; }
.faq__body p { margin: 0 0 8px; }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body ul { padding-left: 20px; margin: 0 0 8px; }
.faq__body li { margin-bottom: 4px; }
.faq__body a { color: var(--gold-lt); }
.faq__draft { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; background: var(--gold-sub); color: var(--gold-lt); padding: 1px 6px; border-radius: 4px; margin-left: 8px; vertical-align: 2px; }

/* ── CONTACT form (sub-pages) ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; }
.contact-form label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.contact-form input, .contact-form textarea { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; font-family: inherit; font-size: 15px; color: var(--text); margin-bottom: 16px; transition: border-color 0.15s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold-lt); outline: 2px solid var(--gold-glow); outline-offset: 1px; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form__row { display: flex; flex-direction: column; gap: 0; }
.contact-form__submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact-form__msg { font-size: 13px; color: var(--muted); }
.contact-form__msg--ok  { color: var(--green); }
.contact-form__msg--err { color: var(--bad); }
.contact-aside { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; }
.contact-aside h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); letter-spacing: -0.01em; }
.contact-aside p { font-size: 14px; color: var(--sub); line-height: 1.6; margin-bottom: 12px; }
.contact-aside a { color: var(--gold-lt); word-break: break-all; }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ═════════════════════════════════════════════════════════════════════════
   TABLET  (max-width: 980px)
   ═════════════════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .strats-grid { grid-template-columns: repeat(2,1fr); max-width: 720px; margin: 0 auto; }
  .hiw-steps { grid-template-columns: repeat(2,1fr); gap: 32px 20px; }
  .hiw-step:not(:last-child)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .airtokens-grid { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin: 4px auto 0; }
}
@media (max-width: 600px) {
  .strats-grid { grid-template-columns: 1fr; max-width: 440px; }
  .airtokens-grid { grid-template-columns: 1fr; max-width: 320px; }
  .airtokens-h3 { font-size: 24px; }
}

/* ═════════════════════════════════════════════════════════════════════════
   MOBILE  (max-width: 767px)
   ═════════════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  .container { padding: 0 20px; }

  /* ── Nav ─────────────────────────────────────────────────────────────── */
  .nav { padding: 0; }
  .nav__links { display: none; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }

  /* ── Hero ────────────────────────────────────────────────────────────── */
  .hero { padding: 48px 20px 0; }
  .hero-eyebrow { font-size: 12px; padding: 6px 14px; margin-bottom: 22px; }
  .hero h1 { margin-bottom: 18px; }
  .hero-sub { font-size: 16px; margin-bottom: 30px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; }

  /* Single phone only on mobile */
  .hero-phones { gap: 0; padding-top: 48px; }
  .phone-frame.side { display: none; }
  .phone-frame.center { width: 270px; height: 560px; transform: none; }

  /* ── Callout strip → horizontal scroll, keeps the big-number premium feel ─ */
  .callout-strip { margin-top: 56px; overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; }
  .callout-item { flex: 0 0 auto; min-width: 124px; max-width: none; padding: 22px 20px; }
  .callout-num { font-size: 30px; }
  .callout-lbl { font-size: 12px; }

  /* ── Features ────────────────────────────────────────────────────────── */
  .features-section { padding: 56px 20px; }
  .fs-heading { margin-bottom: 44px; }
  .fr { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  /* phone always above copy, even on flipped rows */
  .fr.flip .fr-phone { order: 0; }
  .fr.flip .fr-copy { order: 0; }
  .showcase-phone { width: 248px; height: 500px; }
  .fr-desc { font-size: 15px; }

  /* ── Strategies ──────────────────────────────────────────────────────── */
  .strats-section { padding: 0 20px 56px; }
  .strat-top-bar { height: 120px; }
  .strat-icon { font-size: 44px; }

  /* ── How it works ────────────────────────────────────────────────────── */
  .hiw-section { padding: 0 20px 56px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; text-align: left; }
  .hiw-step { display: flex; align-items: flex-start; gap: 16px; }
  .hiw-num { margin: 0; width: 44px; height: 44px; font-size: 18px; flex-shrink: 0; }
  .hiw-step-title { font-size: 16px; }
  .hiw-step-desc { font-size: 14px; }

  /* ── Pricing ─────────────────────────────────────────────────────────── */
  .pricing-section { padding: 0 20px 56px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .pc { padding: 26px 22px; }

  /* ── Final CTA ───────────────────────────────────────────────────────── */
  .final-section { padding: 0 20px 56px; }
  .final-inner { padding: 48px 24px; border-radius: 24px; }
  .final-p { font-size: 16px; margin-bottom: 30px; }
  .final-btns .btn { width: 100%; }

  /* ── Footer ──────────────────────────────────────────────────────────── */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 44px 20px 0; }
  .footer__base { flex-direction: column; gap: 8px; padding: 20px 20px 32px; margin-top: 28px; }

  /* ── Section heads ───────────────────────────────────────────────────── */
  .sec-h2 { font-size: clamp(26px, 8vw, 34px); }
  .sec-sub { font-size: 16px; }

  /* ── Sub-pages ───────────────────────────────────────────────────────── */
  .section { padding: 48px 0; }
  .page-header { padding: 44px 0 32px; }
  .legal-toc ol { columns: 1; }
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
