/* ============================================================
   MF Analyser — Landing styles
   Premium fintech: Bloomberg terminal × Linear/Vercel
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #05111f;
  --bg2: #081929;
  --bg3: #081929;
  --card: #0c2038;
  /* Brand */
  --a: #c9982a;
  --a2: #e8b84b;
  --green: #10b981;
  --red: #ef4444;
  --gold: #e8b84b;
  /* Text */
  --t1: #e4dfd0;
  --t2: #7a8799;
  --t3: #576576;
  /* Lines */
  --line: rgba(228,223,208, 0.10);
  --line-strong: rgba(201,152,42, 0.22);
  /* Glass */
  --glass-bg: rgba(12,32,56, 0.55);
  --glass-border: rgba(201,152,42, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  /* Type */
  --display: 'DM Sans', system-ui, sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 18px;
  --grad: linear-gradient(135deg, var(--a) 0%, var(--a2) 100%);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(232,184,75, 0.35); color: var(--bg); }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--a2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow.gold { color: var(--gold); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 16px;
  text-wrap: balance;
}
.section-head p { color: var(--t2); font-size: clamp(16px, 2vw, 19px); margin-top: 18px; max-width: 620px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 12px;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, border-color .25s;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--grad); color: var(--bg);
  box-shadow: 0 8px 24px rgba(201,152,42, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,152,42, 0.5); }
.btn-ghost {
  border: 1px solid var(--line-strong); color: var(--t1);
  background: rgba(201,152,42, 0.05);
}
.btn-ghost:hover { background: rgba(201,152,42, 0.12); border-color: var(--a); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 15px; color: var(--a2);
  transition: gap .25s, color .25s;
}
.link-arrow:hover { gap: 11px; color: var(--t1); }

/* ---------- Glass ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, backdrop-filter .35s, border-color .35s, box-shadow .35s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(5,17,31, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; display: flex; align-items: center; gap: 2px; }
.logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--a2); margin: 0 1px 3px 2px; box-shadow: 0 0 12px var(--a2); }
.logo .muted { color: var(--t2); font-weight: 500; }
.logo .logo-mark { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center; margin-right: 9px; background: linear-gradient(135deg, var(--a), var(--a2)); box-shadow: 0 2px 12px rgba(201,152,42,0.4); }
.logo .logo-mark svg { width: 16px; height: 16px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--t2); font-size: 14.5px; font-weight: 500; transition: color .2s; position: relative; }
.nav a:hover { color: var(--t1); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .login { font-size: 14.5px; font-weight: 500; color: var(--t2); transition: color .2s; }
.header-cta .login:hover { color: var(--t1); }
.menu-btn { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.menu-btn span { width: 18px; height: 2px; background: var(--t1); position: relative; transition: .2s; }
.menu-btn span::before, .menu-btn span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--t1); transition: .2s; }
.menu-btn span::before { top: -6px; } .menu-btn span::after { top: 6px; }

/* ============================================================
   BACKGROUND FX
   ============================================================ */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(to right, rgba(201,152,42,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201,152,42,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift { to { background-position: 56px 56px; } }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; will-change: transform; }
.orb1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(201,152,42,0.55), transparent 65%); top: -160px; left: -120px; animation: float1 22s ease-in-out infinite; }
.orb2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(232,184,75,0.45), transparent 65%); top: 120px; right: -140px; animation: float2 26s ease-in-out infinite; }
.orb3 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(232,184,75,0.16), transparent 65%); top: 540px; left: 40%; animation: float1 30s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,40px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-50px,50px)} }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 150px; padding-bottom: 80px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(38px, 5.4vw, 68px); line-height: 1.04;
  letter-spacing: -0.03em; margin: 22px 0 0;
  text-wrap: balance;
}
.hero-copy .sub { color: var(--t2); font-size: clamp(16px, 1.9vw, 20px); margin-top: 26px; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.trust-strip { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 13px; color: var(--t2); font-family: var(--mono); }
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip .tick { color: var(--green); }

/* Hero dashboard mockup */
.hero-dash { position: relative; }
.dash-card { border-radius: var(--radius); padding: 22px; position: relative; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-title { font-size: 13px; color: var(--t2); display: flex; align-items: center; gap: 8px; }
.live-pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; color: var(--green); border: 1px solid rgba(16,185,129,0.3); padding: 4px 9px; border-radius: 20px; background: rgba(16,185,129,0.08); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1; box-shadow:0 0 0 0 rgba(16,185,129,0.5)} 50%{opacity:.5; box-shadow:0 0 0 5px rgba(16,185,129,0)} }
.chart-wrap { position: relative; height: 150px; margin: 4px 0 16px; }
.chart-wrap svg { width: 100%; height: 100%; overflow: visible; }
.chart-val { position: absolute; top: 0; right: 0; text-align: right; }
.chart-val .big { font-family: var(--mono); font-weight: 600; font-size: 22px; color: var(--t1); }
.chart-val .chg { font-family: var(--mono); font-size: 12px; color: var(--green); }
.fund-rows { display: flex; flex-direction: column; gap: 2px; }
.fund-row { display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center; padding: 11px 8px; border-radius: 10px; transition: background .2s; }
.fund-row:hover { background: rgba(201,152,42,0.07); }
.fund-rank { font-family: var(--mono); font-size: 12px; color: var(--t3); }
.fund-name { font-size: 13.5px; font-weight: 500; color: var(--t1); }
.fund-name small { display: block; color: var(--t3); font-size: 11px; font-weight: 400; font-family: var(--mono); }
.fund-cagr { font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--green); text-align: right; }
.dash-float {
  position: absolute; bottom: -26px; left: -28px; padding: 14px 18px; border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
}
.dash-float .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; }
.dash-float .lbl { font-size: 11px; color: var(--t2); font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.dash-float .num { font-family: var(--mono); font-weight: 600; font-size: 17px; color: var(--t1); }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { margin-top: 40px; }
.stats-strip { border-radius: var(--radius); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 30px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--mono); font-weight: 600; font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--t2); font-size: 14px; margin-top: 8px; }

/* ============================================================
   FEATURES
   ============================================================ */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px);
  align-items: center; margin-bottom: clamp(56px, 8vw, 110px);
}
.feature:last-child { margin-bottom: 0; }
.feature.flip .feature-text { order: 2; }
.feat-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(201,152,42,0.12); border: 1px solid var(--line-strong); margin-bottom: 22px; }
.feat-icon svg { width: 26px; height: 26px; stroke: var(--a2); }
.feature-text h3 { font-family: var(--display); font-weight: 600; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.02em; line-height: 1.12; text-wrap: balance; }
.feature-text .star { color: var(--gold); }
.feature-text p { color: var(--t2); font-size: 17px; margin: 16px 0 22px; max-width: 480px; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.tag { font-family: var(--mono); font-size: 12px; color: var(--t2); padding: 6px 11px; border-radius: 8px; background: rgba(228,223,208,0.07); border: 1px solid var(--line); }

/* feature mockups */
.mock { border-radius: var(--radius); padding: 18px; overflow: hidden; }
.mock-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.mock-bar .d { width: 10px; height: 10px; border-radius: 50%; }
.mock-bar .d:nth-child(1){background:#ef4444}.mock-bar .d:nth-child(2){background:#e8b84b}.mock-bar .d:nth-child(3){background:#10b981}
.mock-bar .url { margin-left: 10px; font-family: var(--mono); font-size: 11px; color: var(--t3); background: rgba(0,0,0,0.25); padding: 4px 10px; border-radius: 6px; }
/* compare mock */
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 8px; align-items: center; }
.cmp-head { padding: 0 10px 10px; border-bottom: 1px solid var(--line); }
.cmp-head span { font-family: var(--mono); font-size: 10px; color: var(--t3); text-transform: uppercase; letter-spacing: .05em; }
.cmp-row { padding: 11px 10px; border-radius: 8px; }
.cmp-row:nth-child(even){ background: rgba(228,223,208,0.04); }
.cmp-fund { font-size: 12.5px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.cmp-fund .swatch { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.cmp-val { font-family: var(--mono); font-size: 12.5px; font-weight: 600; }
.pos { color: var(--green); } .neg { color: var(--red); }
/* ranking mock */
.rank-cat { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.rank-cat .c { font-size: 11px; font-family: var(--mono); padding: 5px 10px; border-radius: 20px; border: 1px solid var(--line); color: var(--t2); }
.rank-cat .c.on { background: var(--grad); border-color: transparent; color: var(--bg); }
.bar-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; padding: 9px 4px; }
.bar-row .nm { font-size: 12.5px; }
.bar-track { grid-column: 1 / -1; height: 6px; border-radius: 4px; background: rgba(228,223,208,0.1); overflow: hidden; margin-top: 2px; }
.bar-fill { height: 100%; border-radius: 4px; background: var(--grad); }
.bar-row .pct { font-family: var(--mono); font-size: 12.5px; font-weight: 600; color: var(--green); }
/* detail mock */
.det-tabs { display: flex; gap: 4px; margin-bottom: 16px; overflow-x: auto; }
.det-tabs .t { font-size: 11.5px; padding: 6px 11px; border-radius: 7px; color: var(--t2); white-space: nowrap; }
.det-tabs .t.on { background: rgba(201,152,42,0.16); color: var(--t1); border: 1px solid var(--line-strong); }
.heat { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; margin-top: 4px; }
.heat .cell { aspect-ratio: 1; border-radius: 3px; }
.det-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.det-stat { background: rgba(228,223,208,0.05); border-radius: 10px; padding: 12px; }
.det-stat .k { font-size: 10px; color: var(--t3); font-family: var(--mono); text-transform: uppercase; }
.det-stat .v { font-family: var(--mono); font-weight: 600; font-size: 18px; margin-top: 4px; }
/* sip mock */
.sip-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; }
.sip-top .v { font-family: var(--mono); font-weight: 600; font-size: 26px; }
.sip-bars { display: flex; align-items: flex-end; gap: 6px; height: 110px; }
.sip-bars .b { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(to top, var(--a), var(--a2)); position: relative; }
.sip-bars .b .inv { position: absolute; inset: auto 0 0 0; background: rgba(228,223,208,0.2); border-radius: 0 0 5px 5px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { border-radius: var(--radius); padding: 28px; transition: transform .3s, border-color .3s, box-shadow .3s; }
.why-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.why-emoji { font-size: 26px; margin-bottom: 16px; display: block; }
.why-card h3 { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.why-card p { color: var(--t2); font-size: 14.5px; margin-top: 10px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step { position: relative; }
.step-num { font-family: var(--display); font-weight: 700; font-size: 16px; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad); color: var(--bg); margin-bottom: 20px; box-shadow: 0 8px 20px rgba(201,152,42,0.35); }
.step h3 { font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -0.01em; }
.step p { color: var(--t2); font-size: 15.5px; margin-top: 10px; max-width: 300px; }
.step-connector { position: absolute; top: 22px; left: 60px; right: -24px; height: 1px; background: linear-gradient(90deg, var(--line-strong), transparent); }

/* ============================================================
   SEO LONG-FORM
   ============================================================ */
.prose { max-width: 820px; }
.prose h2 { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 3.5vw, 40px); letter-spacing: -0.02em; line-height: 1.12; text-wrap: balance; }
.prose h3 { font-family: var(--display); font-weight: 600; font-size: 21px; margin-top: 40px; letter-spacing: -0.01em; }
.prose p { color: var(--t2); font-size: 16.5px; margin-top: 16px; }
.prose p a { color: var(--a2); font-weight: 500; border-bottom: 1px solid rgba(232,184,75,0.3); transition: border-color .2s; }
.prose p a:hover { border-color: var(--a2); }
.prose strong { color: var(--t1); font-weight: 600; }
.prose .lead { font-size: 19px; color: var(--t1); margin-top: 22px; }

/* ============================================================
   CATEGORY EXPLORER
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat-card { border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: rgba(12,32,56,0.4); transition: transform .25s, border-color .25s, background .25s; }
.cat-card:hover { transform: translateY(-3px); border-color: var(--line-strong); background: rgba(201,152,42,0.07); }
.cat-card .nm { font-family: var(--display); font-weight: 600; font-size: 17px; display: flex; align-items: center; justify-content: space-between; }
.cat-card .nm .ar { color: var(--t3); transition: color .2s, transform .2s; }
.cat-card:hover .nm .ar { color: var(--a2); transform: translateX(3px); }
.cat-card .meta { display: flex; justify-content: space-between; margin-top: 14px; }
.cat-card .meta .funds { font-family: var(--mono); font-size: 12px; color: var(--t3); }
.cat-card .meta .ret { font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--green); }

/* ============================================================
   POPULAR FUNDS
   ============================================================ */
.pop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pop-card { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: rgba(12,32,56,0.4); transition: transform .25s, border-color .25s, background .25s; }
.pop-card:hover { transform: translateY(-3px); border-color: var(--line-strong); background: rgba(201,152,42,0.07); }
.pop-logo { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 17px; color: #fff; flex: none; }
.pop-info .nm { font-weight: 600; font-size: 15px; }
.pop-info .cat { font-family: var(--mono); font-size: 12px; color: var(--t3); margin-top: 3px; }
.pop-ret { text-align: right; }
.pop-ret .v { font-family: var(--mono); font-weight: 600; font-size: 17px; color: var(--green); }
.pop-ret .k { font-size: 11px; color: var(--t3); font-family: var(--mono); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.test-card { border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--gold); }
.test-card blockquote { font-size: 16px; color: var(--t1); line-height: 1.65; flex: 1; }
.test-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.test-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 600; font-family: var(--display); color: #fff; flex: none; }
.test-author .nm { font-weight: 600; font-size: 14.5px; }
.test-author .role { font-size: 12.5px; color: var(--t2); font-family: var(--mono); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: rgba(12,32,56,0.4); overflow: hidden; transition: border-color .25s; }
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--display); font-weight: 500; font-size: 17px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus { flex: none; width: 22px; height: 22px; position: relative; transition: transform .3s; }
.faq-item .plus::before, .faq-item .plus::after { content: ''; position: absolute; background: var(--a2); border-radius: 2px; }
.faq-item .plus::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-item .plus::after { top: 0; left: 10px; width: 2px; height: 22px; transition: transform .3s; }
.faq-item[open] .plus::after { transform: rotate(90deg); }
.faq-item .ans { padding: 0 24px 24px; color: var(--t2); font-size: 15.5px; line-height: 1.7; }
.faq-item .ans a { color: var(--a2); border-bottom: 1px solid rgba(232,184,75,0.3); }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.price-card { border-radius: var(--radius); padding: 34px; position: relative; }
.price-card.pro { border-color: var(--line-strong); box-shadow: 0 0 0 1px var(--line-strong), 0 20px 50px rgba(201,152,42,0.18); }
.price-badge { position: absolute; top: 22px; right: 22px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); border: 1px solid rgba(232,184,75,0.3); padding: 4px 10px; border-radius: 20px; background: rgba(232,184,75,0.08); }
.price-card .plan { font-family: var(--display); font-weight: 600; font-size: 20px; }
.price-card .amt { font-family: var(--mono); font-weight: 600; font-size: 40px; margin: 16px 0 4px; letter-spacing: -0.02em; }
.price-card .amt small { font-size: 15px; color: var(--t2); font-weight: 400; }
.price-card .desc { color: var(--t2); font-size: 14.5px; margin-bottom: 24px; }
.price-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-feats li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--t1); list-style: none; }
.price-feats .ck { color: var(--green); flex: none; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { border-radius: 28px; padding: clamp(48px, 7vw, 84px); text-align: center; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(201,152,42,0.18), rgba(232,184,75,0.12)); border: 1px solid var(--line-strong); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(232,184,75,0.25), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-family: var(--display); font-weight: 600; font-size: clamp(30px, 4.5vw, 52px); letter-spacing: -0.02em; line-height: 1.08; text-wrap: balance; max-width: 720px; margin: 0 auto; }
.cta-band .ctas { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.cta-band .trust { font-family: var(--mono); font-size: 13px; color: var(--t2); margin-top: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-top: 72px; padding-bottom: 40px; margin-top: clamp(60px, 9vw, 120px); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--t2); font-size: 14px; max-width: 280px; }
.footer-news { margin-top: 22px; }
.footer-news .row { display: flex; gap: 8px; margin-top: 10px; max-width: 320px; }
.footer-news input { flex: 1; background: rgba(228,223,208,0.06); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; color: var(--t1); font-family: var(--body); font-size: 14px; }
.footer-news input::placeholder { color: var(--t3); }
.footer-news input:focus { outline: none; border-color: var(--a); }
.footer-news label { font-family: var(--mono); font-size: 12px; color: var(--t3); text-transform: uppercase; letter-spacing: .06em; }
.footer-col h4 { font-family: var(--display); font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--t2); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--t1); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom .copy { font-size: 13px; color: var(--t3); max-width: 640px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--t2); transition: .2s; }
.footer-social a:hover { color: var(--t1); border-color: var(--line-strong); background: rgba(201,152,42,0.08); }
.footer-social svg { width: 18px; height: 18px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
.mobile-nav { display: none; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-dash { max-width: 520px; }
  .feature, .feature.flip { grid-template-columns: 1fr; gap: 36px; }
  .feature.flip .feature-text { order: 0; }
  .why-grid, .test-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav, .header-cta .login, .header-cta .btn { display: none; }
  .menu-btn { display: flex; }
  .header-cta .btn.mobile-show { display: inline-flex; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .why-grid, .test-grid, .steps, .pop-grid, .price-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-nav.open { display: flex; }
  .mobile-nav {
    flex-direction: column; gap: 4px; padding: 16px var(--gutter) 24px;
    background: rgba(5,17,31,0.96); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav a { padding: 13px 4px; color: var(--t2); font-weight: 500; border-bottom: 1px solid var(--line); }
  .mobile-nav .btn { margin-top: 14px; justify-content: center; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .dash-float { left: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
