/* ============================================================
   ANCHORD V2 — dark / bold / cinematic design system
   Base: deep navy-black. Accent: brand gradient used like electricity.
   No frameworks. System font stack. Mobile-first.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:      #070F24;   /* page base */
  --ink-2:    #0A1F47;   /* raised section */
  --ink-3:    #0F2F6B;   /* highlight surface */
  --ink-deep: #040A1A;   /* footer / depths */
  --line:     rgba(143,178,240,0.16);
  --line-2:   rgba(143,178,240,0.30);
  --text:     #EDF2FC;
  --muted:    #A7B7D8;
  --dim:      #67779E;
  --blue:     #3A72D8;
  --blue-hi:  #6E9EE8;
  --blue-deep:#1B4F9E;
  --purple:   #6B2FBE;
  --violet:   #A78BFA;
  --green:    #2EE08C;
  --red:      #F87171;
  --grad:       linear-gradient(135deg, #1B4F9E 0%, #6B2FBE 100%);
  --grad-text:  linear-gradient(135deg, #7FA8E8 0%, #B58CF0 100%);
  --grad-hot:   linear-gradient(135deg, #3A72D8 0%, #8B5CF6 100%);
  --glow:       0 0 40px rgba(107,47,190,0.45), 0 0 12px rgba(58,114,216,0.35);
  --radius: 14px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--ink); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; }
::selection { background: rgba(107,47,190,0.55); color: #fff; }

/* ---------- type ---------- */
h1 { font-size: clamp(38px, 7vw, 76px); font-weight: 900; line-height: 1.02; letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 900; line-height: 1.08; letter-spacing: -0.025em; color: var(--text); margin-bottom: 16px; }
h3 { color: var(--text); }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue-hi); margin-bottom: 18px; }
.kicker::before { content: ''; width: 22px; height: 2px; background: var(--grad-hot); border-radius: 2px; }
.sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 620px; line-height: 1.65; }

/* ---------- shells ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }
.band { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 640px) { .section { padding: 64px 0; } .section-tight { padding: 44px 0; } }

/* ---------- reveal motion ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); transition-delay: var(--d, 0s); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
.pulse-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(1.35)} }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 30px; border-radius: 12px; font-size: 16px; font-weight: 800; text-decoration: none; cursor: pointer; border: none; font-family: inherit; transition: transform .15s, box-shadow .15s, border-color .15s, opacity .15s; }
.btn:active { transform: scale(.98); }
.btn-grad { background: var(--grad-hot); color: #fff; box-shadow: 0 4px 24px rgba(107,47,190,0.45); }
.btn-grad:hover { box-shadow: var(--glow); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--ink-3); box-shadow: 0 4px 20px rgba(0,0,0,0.35); }
.btn-white:hover { opacity: .92; }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line-2); font-weight: 700; }
.btn-ghost:hover { border-color: var(--blue-hi); }
.risk-line { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--dim); }
.risk-line strong { color: var(--muted); }

/* ---------- glass card ---------- */
.card { background: rgba(143,178,240,0.05); border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px; }
.card:hover { border-color: var(--line-2); }
.card-hot { border: 1px solid rgba(139,92,246,0.45); background: linear-gradient(160deg, rgba(107,47,190,0.16) 0%, rgba(143,178,240,0.04) 60%); box-shadow: 0 0 60px rgba(107,47,190,0.18); }

/* ---------- NAV ---------- */
.v2nav { position: sticky; top: 0; z-index: 100; background: rgba(7,15,36,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.v2nav .nav-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 24px; padding: 0 24px; }
.logo-pill { background: #fff; border-radius: 999px; padding: 5px 16px; display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-pill img { height: 38px; display: block; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links > li > a { font-size: 14.5px; font-weight: 600; color: var(--muted); text-decoration: none; transition: color .15s; white-space: nowrap; }
.nav-links > li > a:hover { color: #fff; }
.nav-demo { color: var(--blue-hi) !important; font-weight: 800 !important; }
.nav-cta { background: var(--grad-hot); color: #fff !important; padding: 9px 18px; border-radius: 9px; font-weight: 800 !important; box-shadow: 0 2px 14px rgba(107,47,190,0.4); }
@media (max-width: 980px) { .nav-links { display: none; } }

/* nav dropdown */
.nav-dd-parent { position: relative; }
.nav-dd-trigger { cursor: pointer; display: flex !important; align-items: center; gap: 5px; }
.nav-dd-caret { font-size: 10px; color: var(--dim); transition: transform .2s; display: inline-block; }
.nav-dd-parent.open .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-menu { display: none; position: absolute; top: calc(100% + 12px); left: -16px; background: var(--ink-2); border: 1px solid var(--line-2); border-radius: 16px; box-shadow: 0 24px 64px rgba(0,0,0,0.55); padding: 8px; min-width: 330px; list-style: none; z-index: 200; }
.nav-dd-parent.open .nav-dd-menu { display: block; }
.nav-dd-menu li a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: var(--text); transition: background .15s; }
.nav-dd-menu li a:hover { background: rgba(143,178,240,0.08); }
.dd-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(143,178,240,0.10); border-radius: 9px; flex-shrink: 0; }
.dd-text { flex: 1; }
.dd-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.dd-text em { display: block; font-size: 12px; font-style: normal; color: var(--dim); margin-top: 1px; }

/* hamburger + mobile nav */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .22s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 980px) { .nav-hamburger { display: flex; } }
.mobile-nav { display: none; position: fixed; top: 66px; left: 0; right: 0; bottom: 0; background: var(--ink); z-index: 99; overflow-y: auto; border-top: 1px solid var(--line); }
.mobile-nav.open { display: block; }
.mobile-nav-primary { display: flex; align-items: center; gap: 8px; padding: 16px 20px; text-decoration: none; font-size: 15px; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--line); }
.mobile-nav-primary em { font-style: normal; font-size: 12px; font-weight: 500; color: var(--dim); }
.mobile-nav-cta { color: var(--blue-hi); background: rgba(58,114,216,0.10); font-size: 16px; }
.mobile-nav-simple { display: flex; align-items: center; padding: 14px 20px; text-decoration: none; font-size: 15px; font-weight: 600; color: var(--muted); border-bottom: 1px solid var(--line); }
.mobile-nav-accordion { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 20px; background: none; border: none; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 700; color: var(--text); cursor: pointer; font-family: inherit; }
.mn-caret { font-size: 12px; color: var(--dim); transition: transform .2s; }
.mobile-nav-accordion[aria-expanded="true"] .mn-caret { transform: rotate(180deg); }
.mobile-nav-svc-list { display: none; background: var(--ink-2); border-bottom: 1px solid var(--line); }
.mobile-nav-svc-list.open { display: block; }
.mobile-nav-svc-list a { display: flex; align-items: center; gap: 12px; padding: 11px 20px; text-decoration: none; color: var(--text); border-bottom: 1px solid var(--line); }
.mobile-nav-svc-list a:last-child { border-bottom: none; }
.mobile-nav-svc-list .dd-text strong { font-size: 14px; }

/* mobile sticky call bar */
.callbar { display: none; }
@media (max-width: 768px) {
  .callbar { display: flex; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 95; background: var(--grad-hot); border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 24px rgba(107,47,190,0.4); align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; text-decoration: none; color: #fff; font-weight: 800; font-size: clamp(12.5px, 3.8vw, 15.5px); white-space: nowrap; }
  .callbar svg { flex-shrink: 0; }
  body.has-callbar { padding-bottom: 76px; }
}

/* ---------- HERO ---------- */
.hero-cine { position: relative; padding: 84px 0 72px; overflow: hidden; background:
  radial-gradient(1100px 520px at 78% -10%, rgba(107,47,190,0.32) 0%, transparent 60%),
  radial-gradient(900px 500px at 8% 8%, rgba(27,79,158,0.38) 0%, transparent 55%),
  var(--ink); }
.hero-cine::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(800px 360px at 60% 110%, rgba(58,114,216,0.16) 0%, transparent 60%); }
.hero-wire { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-hot); opacity: .9; box-shadow: 0 0 18px rgba(139,92,246,0.8); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: start; position: relative; z-index: 2; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(143,178,240,0.08); border: 1px solid var(--line-2); color: var(--muted); font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 100px; margin-bottom: 26px; }
.hero-sub { font-size: clamp(16.5px, 2vw, 19px); color: var(--muted); max-width: 560px; margin: 22px 0 30px; line-height: 1.65; }

/* phone number as hero */
.demo-line { margin: 4px 0 8px; }
.demo-line-label { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.demo-number { display: inline-block; font-size: clamp(40px, 7.5vw, 64px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; text-decoration: none; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 22px rgba(139,92,246,0.45)); transition: filter .2s; }
.demo-number:hover { filter: drop-shadow(0 0 34px rgba(139,92,246,0.75)); }
.demo-line-note { font-size: 13.5px; color: var(--dim); margin-top: 6px; max-width: 460px; }

/* text-me-the-demo */
.textme { margin-top: 26px; max-width: 460px; }
.textme-label { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 9px; }
.textme-row { display: flex; gap: 10px; }
.textme input { flex: 1; min-width: 0; background: rgba(143,178,240,0.07); border: 1.5px solid var(--line-2); border-radius: 12px; color: var(--text); font-size: 16px; font-family: inherit; padding: 14px 16px; outline: none; transition: border-color .15s, box-shadow .15s; }
.textme input::placeholder { color: var(--dim); }
.textme input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,114,216,0.25); }
.textme button { white-space: nowrap; }
.textme-msg { font-size: 13.5px; font-weight: 600; margin-top: 9px; min-height: 20px; color: var(--muted); }
.textme-msg.ok { color: var(--green); }
.textme-msg.err { color: var(--red); }
.textme-msg a { color: var(--blue-hi); }
@media (max-width: 520px) { .textme-row { flex-direction: column; } .textme button { width: 100%; } }

/* ---------- money-leak calculator ---------- */
.leak { background: linear-gradient(165deg, rgba(15,47,107,0.55) 0%, rgba(10,31,71,0.65) 100%); border: 1px solid var(--line-2); border-radius: 22px; padding: 30px 28px 26px; box-shadow: 0 30px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(143,178,240,0.12); position: relative; }
.leak::before { content: ''; position: absolute; top: -1px; left: 24px; right: 24px; height: 2px; background: var(--grad-hot); border-radius: 2px; box-shadow: 0 0 14px rgba(139,92,246,0.7); }
.leak h3 { font-size: 21px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 4px; }
.leak-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.leak-field { margin-bottom: 16px; }
.leak-field label { display: block; font-size: 12px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--dim); margin-bottom: 7px; }
.leak-field select, .leak-field input { width: 100%; background: rgba(7,15,36,0.6); border: 1.5px solid var(--line-2); border-radius: 11px; color: var(--text); font-size: 16px; font-weight: 700; font-family: inherit; padding: 13px 14px; outline: none; appearance: none; -webkit-appearance: none; }
.leak-field select:focus, .leak-field input:focus { border-color: var(--blue); }
.leak-select-wrap { position: relative; }
.leak-select-wrap::after { content: '▾'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--dim); pointer-events: none; font-size: 13px; }
.leak-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.leak-out { text-align: center; padding: 18px 0 4px; border-top: 1px dashed var(--line-2); margin-top: 18px; }
.leak-out-label { font-size: 12px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--dim); }
.leak-amount { font-size: clamp(40px, 6vw, 56px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin: 4px 0 2px; background: linear-gradient(135deg, #F87171 0%, #B58CF0 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-variant-numeric: tabular-nums; }
.leak-out-sub { font-size: 12.5px; color: var(--dim); margin-bottom: 16px; }
.leak .btn { width: 100%; }
.leak-assume { font-size: 11.5px; color: var(--dim); margin-top: 12px; text-align: center; line-height: 1.5; }

/* ---------- ticker ---------- */
.ticker { display: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.ticker.live { display: block; }
.ticker-inner { max-width: 1180px; margin: 0 auto; padding: 22px 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 48px; }
.ticker-item { text-align: center; min-width: 130px; }
.ticker-num { font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-variant-numeric: tabular-nums; }
.ticker-label { font-size: 12px; color: var(--dim); font-weight: 600; line-height: 1.35; margin-top: 3px; }
.ticker-tag { width: 100%; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--dim); display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ---------- call theater ---------- */
.theater { max-width: 680px; margin: 0 auto; }
.theater-shell { background: rgba(4,10,26,0.85); border: 1px solid var(--line-2); border-radius: 22px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.55); }
.theater-bar { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: rgba(143,178,240,0.06); border-bottom: 1px solid var(--line); }
.theater-bar-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); animation: pulse-dot 1.6s ease-in-out infinite; }
.theater-bar-title { font-size: 13px; font-weight: 800; color: var(--text); }
.theater-bar-sub { font-size: 11.5px; color: var(--dim); margin-left: auto; }
.theater-body { padding: 22px 20px 26px; display: flex; flex-direction: column; gap: 12px; min-height: 380px; }
.tmsg { max-width: 86%; opacity: 0; transform: translateY(10px); transition: opacity .35s, transform .35s; }
.tmsg.on { opacity: 1; transform: none; }
.tmsg-meta { font-size: 10.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--dim); margin-bottom: 4px; }
.tmsg-bubble { padding: 12px 16px; border-radius: 16px; font-size: 14.5px; line-height: 1.55; }
.tmsg.caller { align-self: flex-start; }
.tmsg.caller .tmsg-bubble { background: rgba(143,178,240,0.10); border: 1px solid var(--line); color: var(--text); border-bottom-left-radius: 5px; }
.tmsg.ai { align-self: flex-end; text-align: left; }
.tmsg.ai .tmsg-meta { text-align: right; color: var(--blue-hi); }
.tmsg.ai .tmsg-bubble { background: linear-gradient(135deg, rgba(27,79,158,0.85) 0%, rgba(107,47,190,0.85) 100%); color: #fff; border-bottom-right-radius: 5px; box-shadow: 0 4px 20px rgba(107,47,190,0.3); }
.tmsg-outcome { align-self: center; max-width: 100%; }
.tmsg-outcome .tmsg-bubble { background: rgba(46,224,140,0.10); border: 1px solid rgba(46,224,140,0.35); color: var(--green); font-weight: 700; font-size: 13px; text-align: center; border-radius: 12px; }
.theater-caret { display: inline-block; width: 2px; height: 1em; background: currentColor; vertical-align: -2px; animation: tcaret .8s steps(2) infinite; }
@keyframes tcaret { 0%,100%{opacity:1} 50%{opacity:0} }
.theater-note { text-align: center; font-size: 12.5px; color: var(--dim); margin-top: 16px; }
.theater-note a { color: var(--blue-hi); font-weight: 700; text-decoration: none; }

/* ---------- stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.stat-card { text-align: center; padding: 28px 18px; background: rgba(143,178,240,0.04); border: 1px solid var(--line); border-radius: 16px; }
.stat-num { font-size: clamp(34px, 4.5vw, 48px); font-weight: 900; letter-spacing: -0.02em; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-variant-numeric: tabular-nums; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.45; }
.stat-source { font-size: 10.5px; color: var(--dim); margin-top: 5px; display: block; }

/* ---------- product grid ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.prod-card { background: rgba(143,178,240,0.045); border: 1px solid var(--line); border-radius: 18px; padding: 32px 28px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: border-color .2s, transform .2s, box-shadow .2s, background .2s; position: relative; overflow: hidden; }
.prod-card:hover { border-color: rgba(139,92,246,0.55); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(107,47,190,0.15); }
.prod-card.featured { border-color: rgba(139,92,246,0.5); background: linear-gradient(165deg, rgba(107,47,190,0.18) 0%, rgba(143,178,240,0.04) 65%); }
.prod-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-hot); box-shadow: 0 0 12px rgba(139,92,246,0.7); }
.prod-icon { width: 52px; height: 52px; background: var(--grad); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 4px 18px rgba(107,47,190,0.35); }
.prod-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 9px; }
.prod-card p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.prod-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--blue-hi); }

/* ---------- proof ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.proof-card { background: rgba(143,178,240,0.05); border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px; }
.proof-stat { font-size: clamp(28px, 3.5vw, 38px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 10px; }
.proof-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.proof-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.proof-card a { color: var(--blue-hi); font-weight: 700; text-decoration: none; }

/* ---------- steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.step-card { padding: 26px 22px; background: rgba(143,178,240,0.04); border: 1px solid var(--line); border-radius: 16px; }
.step-num { width: 36px; height: 36px; background: var(--grad); border-radius: 10px; color: #fff; font-size: 15px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: 0 3px 14px rgba(107,47,190,0.4); }
.step-card h4 { font-size: 15.5px; font-weight: 800; margin-bottom: 7px; color: var(--text); }
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.faq-item { background: rgba(143,178,240,0.045); border: 1px solid var(--line); border-radius: 16px; padding: 24px 26px; }
.faq-item h3 { font-size: 16px; font-weight: 800; margin-bottom: 9px; }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---------- trades marquee ---------- */
.trades-strip { background: var(--ink-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 0; overflow: hidden; display: flex; align-items: stretch; }
.trades-label { font-size: 11px; font-weight: 800; color: var(--dim); letter-spacing: 1.5px; text-transform: uppercase; flex-shrink: 0; padding: 14px 20px 14px 28px; z-index: 2; border-right: 1px solid var(--line); display: flex; align-items: center; white-space: nowrap; }
.trades-marquee-wrap { flex: 1; overflow: hidden; position: relative; }
.trades-marquee-wrap::before, .trades-marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none; }
.trades-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--ink-deep), transparent); }
.trades-marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--ink-deep), transparent); }
.trades-marquee { display: flex; align-items: center; gap: 12px; width: max-content; animation: marquee-trades 40s linear infinite; padding: 13px 0; }
.trades-chip { font-size: 13px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.trades-dot-sep { color: var(--dim); font-size: 10px; }
@keyframes marquee-trades { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--grad); border-radius: 24px; padding: 64px 48px; text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: 0 30px 90px rgba(107,47,190,0.35); }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 300px at 70% -20%, rgba(255,255,255,0.18) 0%, transparent 60%); pointer-events: none; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 17px; max-width: 540px; margin: 0 auto 32px; line-height: 1.6; }
.cta-banner .risk-line { color: rgba(255,255,255,0.75); }
.cta-banner .risk-line strong { color: rgba(255,255,255,0.9); }
@media (max-width: 600px) { .cta-banner { padding: 44px 22px; } }

/* ---------- footer ---------- */
.v2footer { background: var(--ink-deep); border-top: 1px solid var(--line); color: var(--dim); padding: 52px 24px 88px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-text { font-size: 13px; line-height: 1.7; }
.footer-text a { color: var(--muted); text-decoration: none; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--dim); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { color: var(--dim); transition: color .2s; }
.footer-social a:hover { color: var(--text); }
@media (max-width: 640px) { .footer-inner { flex-direction: column; text-align: center; } .footer-links { justify-content: center; } .footer-col-right { align-items: center !important; } }

/* ---------- founding rate ribbon ---------- */
.founding { display: flex; align-items: center; gap: 14px; background: rgba(46,224,140,0.08); border: 1px solid rgba(46,224,140,0.35); border-radius: 14px; padding: 16px 20px; }
.founding-tag { flex-shrink: 0; background: var(--green); color: #04240F; font-size: 11px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 5px 10px; border-radius: 7px; }
.founding p { font-size: 14px; color: var(--text); line-height: 1.55; }
.founding p strong { color: var(--green); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; align-items: stretch; }
.price-card { background: rgba(143,178,240,0.045); border: 1px solid var(--line); border-radius: 20px; padding: 34px 28px; display: flex; flex-direction: column; position: relative; }
.price-card.popular { border-color: rgba(139,92,246,0.55); background: linear-gradient(170deg, rgba(107,47,190,0.16) 0%, rgba(143,178,240,0.04) 60%); box-shadow: 0 0 50px rgba(107,47,190,0.2); }
.price-pop-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-hot); color: #fff; font-size: 11px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; box-shadow: 0 4px 16px rgba(107,47,190,0.5); white-space: nowrap; }
.price-name { font-size: 17px; font-weight: 800; color: var(--text); }
.price-for { font-size: 12.5px; color: var(--dim); margin: 3px 0 16px; }
.price-amount { font-size: 46px; font-weight: 900; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.price-amount span { font-size: 15px; font-weight: 600; color: var(--dim); letter-spacing: 0; }
.price-feats { list-style: none; margin: 22px 0 26px; flex: 1; }
.price-feats li { font-size: 14px; color: var(--muted); padding: 7px 0 7px 26px; position: relative; line-height: 1.5; border-bottom: 1px solid rgba(143,178,240,0.07); }
.price-feats li:last-child { border-bottom: none; }
.price-feats li::before { content: ''; position: absolute; left: 0; top: 12px; width: 15px; height: 15px; background: var(--grad); border-radius: 50%; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; }
.price-fine { font-size: 12px; color: var(--dim); margin-top: 12px; text-align: center; }

/* ---------- prose (blog/legal reading) ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h1 { font-size: clamp(30px, 5vw, 44px); margin-bottom: 18px; }
.prose h2 { font-size: clamp(22px, 3vw, 30px); margin: 40px 0 14px; }
.prose h3 { font-size: 19px; font-weight: 800; margin: 28px 0 10px; }
.prose p, .prose li { font-size: 16.5px; color: var(--muted); line-height: 1.75; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose a { color: var(--blue-hi); }
.prose strong { color: var(--text); }
.prose blockquote { border-left: 3px solid var(--purple); padding: 4px 0 4px 18px; margin: 0 0 18px; color: var(--text); font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 14.5px; }
.prose th, .prose td { border: 1px solid var(--line-2); padding: 9px 12px; text-align: left; color: var(--muted); }
.prose th { color: var(--text); background: rgba(143,178,240,0.06); }

@media (max-width: 640px) {
  #anchord-chat-btn { bottom: 84px !important; }
}

/* ---------- 2026-06-12 polish: wordmark, mobile hero diet, calculator alignment ---------- */
.logo-word { font-weight: 900; font-size: 19px; letter-spacing: 4px; color: #fff; text-decoration: none; flex-shrink: 0; }
.logo-word:hover { background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub-short { display: none; }
.leak-row { align-items: stretch; gap: 14px; }
.leak-row .leak-field { display: flex; flex-direction: column; justify-content: flex-end; }
.leak-field label { letter-spacing: 0.8px; }
.leak-field { margin-bottom: 16px; }
@media (max-width: 640px) {
  .hero-badge { display: none; }
  .hero-sub-long { display: none; }
  .hero-sub-short { display: block; font-size: 16.5px; }
  .hero-cine h1 { font-size: clamp(30px, 9vw, 38px); line-height: 1.12; }
  .demo-line { margin-top: 22px; }
  .demo-line-note { font-size: 12px; opacity: 0.75; }
  .leak { padding: 22px 18px; }
  .leak input, .leak select { min-height: 48px; }
}

.logo-home { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-dark { height: 46px; display: block; }
@media (max-width: 640px) { .logo-dark { height: 30px; } }

/* ---------- mobile diet + new pages (2026-06-12) ---------- */
.m-only { display: none; }
.calc-teaser, .see-all-link, .story-link { color: var(--blue-hi); font-weight: 700; text-decoration: none; font-size: 15px; }
@media (max-width: 640px) {
  .m-hide { display: none !important; }
  .m-only { display: block; }
  body.home .leak { display: none; }
  .calc-teaser { margin-top: 20px; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: 12px; background: rgba(143,178,240,0.06); }
  .see-all-link { margin-top: 18px; text-align: center; padding: 14px; border: 1px solid var(--line-2); border-radius: 12px; }
  .story-link { margin-top: 14px; }
  body.home .stats-grid .stat-card:nth-child(2), body.home .stats-grid .stat-card:nth-child(3) { display: none; }
  body.home .prod-grid .prod-card:nth-child(n+4) { display: none; }
  body.home .proof-grid .proof-card:nth-child(2), body.home .proof-grid .proof-card:nth-child(4) { display: none; }
  body.home .faq-grid .faq-item:nth-child(n+4) { display: none; }
  body.home .founder-copy p { display: none; }
}

.demo-cta { font-size: 18px; padding: 18px 28px; display: inline-block; }
.demo-number-small { margin-top: 10px; font-size: 13px; color: var(--dim); }
@media (max-width: 640px) { .demo-cta { display: block; text-align: center; font-size: 16.5px; } }

/* ---------- 40k hero: one CTA above the fold (mobile) ---------- */
.hero-note-m, .textme-toggle { display: none; }
@media (max-width: 640px) {
  body.home .demo-line-label, body.pfold .demo-line-label { display: none; }
  body.home .demo-number-small, body.pfold .demo-number-small { display: none; }
  body.home .demo-line-note, body.pfold .demo-line-note { display: none; }
  body.home .hero-note-m, body.pfold .hero-note-m { display: block; margin-top: 10px; font-size: 13px; color: var(--dim); }
  body.home .textme , body.pfold .textme { display: none; }
  body.home .textme.open, body.pfold .textme.open { display: block; }
  body.home .textme-toggle, body.pfold .textme-toggle { display: inline-block; margin-top: 18px; color: var(--blue-hi); font-weight: 700; text-decoration: none; font-size: 14.5px; }
  .callbar { transform: translateY(130%); transition: transform .35s ease; }
  body.past-hero .callbar { transform: none; }
  body.home:not(.past-hero) #anchord-chat-btn, body.pfold:not(.past-hero) #anchord-chat-btn { display: none !important; }
}

/* ---------- mobile menu: clean rows, anchored book CTA, no chat overlap ---------- */
.mobile-nav-foot { margin-top: 28px; padding: 0 20px; }
.mobile-nav-book { display: block; text-align: center; font-size: 16px; padding: 16px; }
.mobile-nav-contact { margin-top: 16px; text-align: center; font-size: 13px; color: var(--dim); }
.mobile-nav-contact a { color: var(--dim); text-decoration: none; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.menu-open #anchord-chat-btn { display: none !important; }

.nav-login { color: var(--muted) !important; font-size: 14px; }
.nav-login:hover { color: var(--text) !important; }

/* ---------- blog: start-here band ---------- */
.start-here { margin-bottom: 8px; }
.start-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.start-card { border: 1px solid rgba(143,178,240,0.35); box-shadow: 0 0 34px rgba(107,47,190,0.14); }
.start-card .card-body h2 { font-size: 18px; }
@media (max-width: 860px) { .start-grid { grid-template-columns: 1fr; } }

/* ---------- phone-sim: SMS exchanges rendered on a real iPhone frame ---------- */
.phone-sim { display: flex; flex-direction: column; align-items: center; }
.phone-cap { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: 0.4px; margin-bottom: 18px; }
.phone-sms { width: 330px; position: relative; background: linear-gradient(145deg, #2a2f3a, #0c0f16); border-radius: 52px; padding: 9px; box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 50px rgba(107,47,190,0.18), inset 0 0 0 2px #3a4150, inset 0 0 0 5px #0c0f16; }
.phone-sms::before { content: ''; position: absolute; left: -2.5px; top: 110px; width: 3px; height: 30px; background: #3a4150; border-radius: 2px 0 0 2px; box-shadow: 0 42px 0 #3a4150; }
.phone-sms::after { content: ''; position: absolute; right: -2.5px; top: 150px; width: 3px; height: 56px; background: #3a4150; border-radius: 0 2px 2px 0; }
.phone-sms .phone-notch { position: absolute; top: 19px; left: 50%; transform: translateX(-50%); width: 84px; height: 24px; background: #000; border-radius: 16px; z-index: 4; }
.phone-sms .phone-topbar { position: absolute; top: 18px; left: 26px; right: 26px; z-index: 3; display: flex; justify-content: space-between; padding: 6px 8px; pointer-events: none; }
.phone-sms .phone-topbar-time { font-size: 12.5px; font-weight: 700; color: #111; }
.phone-sms .phone-topbar-icons { font-size: 10px; font-weight: 700; color: #333; }
.phone-sms .phone-screen { background: #fff; border-radius: 44px; overflow: hidden; padding: 50px 0 22px; position: relative; }
.phone-sms .phone-screen::after { content: ''; position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%); width: 110px; height: 5px; border-radius: 3px; background: rgba(0,0,0,0.22); }
.sms-head { display: flex; align-items: center; gap: 10px; padding: 10px 16px 12px; border-bottom: 1px solid #ececf0; background: #f7f7f9; }
.sms-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #1B4F9E, #6B2FBE); color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.sms-head-txt { display: flex; flex-direction: column; }
.sms-head-txt strong { font-size: 13.5px; color: #111; }
.sms-head-txt em { font-style: normal; font-size: 11px; color: #8a8a93; }
.sms-body { padding: 14px 12px 16px; }
.phone-sms .tmsg { margin-bottom: 10px; }
.phone-sms .tmsg-meta { font-size: 9.5px; letter-spacing: 0.6px; text-transform: uppercase; color: #8a8a93; margin-bottom: 3px; }
.phone-sms .tmsg.ai { text-align: right; }
.phone-sms .tmsg.ai .tmsg-meta { text-align: right; }
.phone-sms .tmsg-bubble { display: inline-block; text-align: left; font-size: 13px; line-height: 1.45; padding: 9px 13px; border-radius: 18px; max-width: 82%; }
.phone-sms .tmsg.ai .tmsg-bubble { background: #0b84fe; color: #fff; border-bottom-right-radius: 5px; }
.phone-sms .tmsg.caller .tmsg-bubble { background: #e9e9eb; color: #111; border-bottom-left-radius: 5px; }
.phone-sms .tmsg-outcome { text-align: center; }
.phone-sms .tmsg-outcome .tmsg-bubble { background: #e8f7ee; color: #1d7a45; font-size: 11.5px; font-weight: 700; max-width: 95%; }

.phone-sms .theater-body { background: none; padding: 0; }
