:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-2: #fafbfc;
  --border: #e4e7ec;
  --border-strong: #cfd4dc;
  --text: #16191f;
  --text-2: #3f4650;
  --muted: #6b7280;
  --accent: #0f766e;
  --accent-2: #14b8a6;
  --accent-ink: #0b5f59;
  --accent-soft: #e6f4f2;
  --amber: #b45309; --amber-soft: #fff4e0;
  --red: #b91c1c; --red-soft: #fee2e2;
  --green: #15803d; --green-soft: #dcfce7;
  --blue: #1d4ed8; --blue-soft: #e0e9ff;
  --ink: #0f172a;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 1px 3px rgba(16, 24, 40, .04);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .05);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body { font: 15px/1.55 var(--font); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1 { font-size: 26px; margin: 0 0 4px; letter-spacing: -.02em; font-weight: 700; }
h2 { font-size: 17px; margin: 0; font-weight: 650; letter-spacing: -.01em; }
h3 { font-size: 12.5px; margin: 18px 0 8px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 650; }
p { margin: 0 0 8px; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }
.strong { font-weight: 600; }
.nowrap { white-space: nowrap; }
.right { text-align: right; }
.num { text-align: right; font-variant-numeric: tabular-nums; }
.text-red { color: var(--red); }
.inline { display: inline; }
.hint { font-weight: 400; color: var(--muted); font-size: 13px; }

/* top bar */
.topbar { background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 5; }
.topbar-inner { display: flex; align-items: center; gap: 28px; height: 60px; white-space: nowrap; overflow-x: auto; }
@media (max-width: 640px) { .topbar-inner { gap: 16px; } }
.brand { font-weight: 750; color: var(--text); display: flex; align-items: center; gap: 10px; font-size: 16px; letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: inline-grid; place-items: center; color: #fff; font-size: 12px; font-weight: 800; box-shadow: inset 0 -2px 0 rgba(0,0,0,.12); }
.brand-mark::before { content: "L"; }
.nav { display: flex; gap: 4px; }
.nav a { color: var(--text-2); font-weight: 500; padding: 7px 11px; border-radius: 8px; font-size: 14px; }
.nav a:hover { background: #eef0f3; text-decoration: none; }
.nav a.active { color: var(--accent-ink); background: var(--accent-soft); }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.mode { font-size: 12px; font-weight: 650; padding: 4px 10px; border-radius: 999px; letter-spacing: .02em; }
.mode-demo { background: var(--blue-soft); color: var(--blue); }
.mode-dry_run { background: var(--amber-soft); color: var(--amber); }
.mode-live { background: var(--green-soft); color: var(--green); }

/* layout */
main { padding: 28px 0 48px; }
.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
.page-head > div > .muted { max-width: 720px; }
.actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin: 28px 0 12px; gap: 12px; }
.count { display: inline-block; background: var(--amber-soft); color: var(--amber); font-size: 12.5px; padding: 1px 8px; border-radius: 999px; margin-left: 6px; vertical-align: middle; font-weight: 650; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.footer { padding: 22px 22px 34px; font-size: 13px; }
@media (max-width: 820px) { .two-col, .grid-2 { grid-template-columns: 1fr; } }

/* cards & tiles */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); }
.card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; gap: 12px; }
.narrative { margin-bottom: 18px; border-left: 4px solid var(--accent); }
.lede { font-size: 15.5px; line-height: 1.65; margin: 0; color: var(--text-2); }
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 10px; }
@media (max-width: 820px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
.tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.tile-accent { border-color: #bfe3de; background: linear-gradient(180deg, #f0faf8, #e6f4f2); }
.tile-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 650; }
.tile-value { font-size: 30px; font-weight: 750; margin-top: 4px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1.15; }
.tile-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text); border-radius: 9px; padding: 8px 14px; font: inherit; font-weight: 550; cursor: pointer; line-height: 1.2; transition: background .12s, box-shadow .12s, transform .06s; }
.btn:hover { background: #f1f3f5; text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.12); }
.btn-primary:hover { background: var(--accent-ink); border-color: var(--accent-ink); }
.btn-ghost { background: transparent; }
.btn-small { padding: 6px 11px; font-size: 13px; border-radius: 8px; }
.btn-large { padding: 13px 24px; font-size: 16px; border-radius: 11px; }
.form-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }

/* tables */
.table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.table th, .table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
.table th { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: var(--surface-2); font-weight: 650; }
.table tr:last-child td { border-bottom: 0; }
.table tbody tr:hover td { background: #fbfcfd; }
.table.compact th, .table.compact td { padding: 9px 12px; font-size: 14px; }
.row-muted td { opacity: .55; }
.row-muted td.check-col { opacity: 1; }
.check-col { width: 70px; text-align: center; }
.check-col input { width: 16px; height: 16px; cursor: pointer; accent-color: var(--accent); }
.table td form { display: inline; margin-left: 4px; }
.scroll-x { overflow-x: auto; }
.mini { border-collapse: collapse; font-size: 12.5px; margin: 4px 0; }
.mini th, .mini td { padding: 4px 8px; border-bottom: 1px solid var(--border); text-align: left; white-space: nowrap; }
.mini th { color: var(--muted); font-weight: 600; }

/* pills */
.pill { display: inline-block; font-size: 12px; font-weight: 650; padding: 2px 9px; border-radius: 999px; line-height: 1.5; vertical-align: middle; letter-spacing: .01em; }
.pill-gray { background: #eef0f3; color: #4b5563; }
.pill-amber { background: var(--amber-soft); color: var(--amber); }
.pill-red { background: var(--red-soft); color: var(--red); }
.pill-green { background: var(--green-soft); color: var(--green); }
.pill-risk-low { background: var(--green-soft); color: var(--green); }
.pill-risk-medium { background: var(--amber-soft); color: var(--amber); }
.pill-risk-high { background: var(--red-soft); color: var(--red); }
.pill-risk-info { background: var(--blue-soft); color: var(--blue); }
.pill-status-applied, .pill-status-auto_applied { background: var(--green-soft); color: var(--green); }
.pill-status-rejected, .pill-status-failed { background: var(--red-soft); color: var(--red); }
.pill-status-dismissed, .pill-status-expired, .pill-status-pending, .pill-status-approved { background: #eef0f3; color: #4b5563; }

/* proposals */
.group-title { margin-top: 20px; }
.proposals { display: flex; flex-direction: column; gap: 10px; }
.proposal { display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-left-width: 4px; border-radius: var(--radius); padding: 15px 18px; box-shadow: var(--shadow); }
.proposal.risk-low { border-left-color: #22c55e; }
.proposal.risk-medium { border-left-color: #f59e0b; }
.proposal.risk-high { border-left-color: #ef4444; }
.proposal.risk-info { border-left-color: #3b82f6; }
.proposal-main { flex: 1; min-width: 0; }
.proposal-title { font-weight: 640; font-size: 15px; letter-spacing: -.005em; }
.proposal-meta { display: flex; gap: 8px; align-items: center; margin: 5px 0 7px; flex-wrap: wrap; }
.rationale { color: var(--text-2); margin: 0; font-size: 14px; line-height: 1.55; }
.proposal-actions { display: flex; flex-direction: column; gap: 6px; align-items: stretch; min-width: 120px; }
.proposal-actions .btn { justify-content: center; }
@media (max-width: 640px) { .proposal { flex-direction: column; } .proposal-actions { flex-direction: row; } }

/* evidence */
.evidence { display: grid; grid-template-columns: max-content 1fr; gap: 3px 14px; margin: 10px 0 0; padding: 10px 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; }
.evidence dt { color: var(--muted); text-transform: capitalize; }
.evidence dd { margin: 0; min-width: 0; }
.kv { display: inline-block; margin-right: 12px; }
.kv .k { color: var(--muted); }

/* lists */
.list { list-style: none; margin: 0; padding: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.list li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.list li:last-child { border-bottom: 0; }
.list-main { min-width: 0; line-height: 1.6; }
.list-main .pill { margin-right: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px; vertical-align: middle; }
.dot-ok { background: #22c55e; } .dot-bad { background: #ef4444; }

/* forms */
label { display: block; font-weight: 550; margin: 12px 0 0; font-size: 14px; }
label input[type=text], label input[type=number], label input[type=email], label input[type=password], label input[type=search], label textarea, label select {
  display: block; width: 100%; margin-top: 6px; padding: 9px 11px; border: 1px solid var(--border-strong); border-radius: 9px; font: inherit; background: #fff; transition: border-color .12s, box-shadow .12s;
}
label input:focus, label textarea:focus, label select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(15,118,110,.15); }
label textarea { resize: vertical; }
label.check { display: flex; align-items: center; gap: 8px; font-weight: 400; margin: 8px 0 0; }
label.check input { margin: 0; accent-color: var(--accent); }
.settings-form .card h2 { margin-bottom: 6px; }
.login-box { max-width: 400px; margin: 56px auto; }
.login-box h1 { margin-bottom: 10px; }

/* setup steps */
.steps { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); font-size: 13px; color: var(--muted); }
.step .n { display: inline-flex; width: 20px; height: 20px; border-radius: 50%; align-items: center; justify-content: center; background: #eef0f3; font-weight: 700; font-size: 12px; }
.step.done { color: var(--green); border-color: #a7e3bd; background: var(--green-soft); }
.step.done .n { background: var(--green); color: #fff; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px; background: #eef0f3; padding: 1px 5px; border-radius: 4px; }

/* flashes & empties */
.flashes { margin-bottom: 16px; }
.flash { padding: 11px 14px; border-radius: 9px; font-size: 14px; margin-bottom: 8px; border: 1px solid transparent; }
.flash-ok { background: var(--green-soft); color: var(--green); border-color: #bde5c8; }
.flash-error { background: var(--red-soft); color: var(--red); border-color: #f5c2c2; }
.empty { background: var(--surface); border: 1px dashed var(--border-strong); border-radius: var(--radius); padding: 32px; text-align: center; color: var(--muted); }
.small-empty { padding: 16px; font-size: 14px; }

/* ask the agent */
.ask { margin-top: 22px; }
.ask textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border-strong); border-radius: 9px; font: inherit; resize: vertical; }
.convo { border-top: 1px solid var(--border); margin-top: 14px; padding-top: 12px; }
.convo-q { font-weight: 550; margin-bottom: 6px; }
.convo-a { color: var(--text-2); background: var(--surface-2); border-left: 3px solid var(--accent); padding: 8px 12px; border-radius: 6px; font-size: 14.5px; line-height: 1.55; }

/* legal */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { margin: 18px 0 6px; font-size: 16px; }
.legal p { color: var(--text-2); }

/* ------------------------------------------------------------------ shared bits */
.btn-block { width: 100%; justify-content: center; }
.stack-form input:not([type=checkbox]) { display: block; width: 100%; }
.signup-box { max-width: 440px; }
.signup-box .lp-eyebrow { margin-bottom: 8px; }
.signup-box h1 { font-size: 30px; letter-spacing: -.03em; }
.signup-box .form-actions { margin-top: 22px; }
.signup-box .small { margin-top: 16px; }

/* ------------------------------------------------------------------ landing page */
.lp-page { background: #f6f7f9; }
.lp-page .topbar { background: rgba(9, 14, 26, .82); border-bottom-color: rgba(255,255,255,.08); }
.lp-page .brand, .lp-page .topbar-right .muted { color: #fff; }
.lp-page .topbar-right .muted:hover { text-decoration: none; opacity: .85; }
.lp-page .btn-primary { background: #22c55e; border-color: #22c55e; color: #052e16; font-weight: 700; }
.lp-page .btn-primary:hover { background: #4ade80; border-color: #4ade80; }
.lp-page main.wrap { max-width: none; padding: 0; }
.lp-page .footer { max-width: 1140px; }
.lp { --lp-ink: #0b1220; --lp-navy: #0f172a; --lp-green: #22c55e; --lp-green-ink: #052e16; --lp-lime: #a3e635; }
.lp .wrap, .lp-section, .lp-strip, .lp-hero-inner, .lp-hero-mock, .lp-agency-inner, .lp-final-inner { max-width: 1140px; margin-left: auto; margin-right: auto; padding-left: 22px; padding-right: 22px; }
.lp-eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #15803d; margin-bottom: 12px; }
.lp-eyebrow-light { color: var(--lp-lime); }
.lp-arrow { display: inline-block; transition: transform .15s; margin-left: 2px; }
.btn-hero:hover .lp-arrow { transform: translateX(4px); }

/* hero */
.lp-hero { position: relative; overflow: hidden; background: radial-gradient(1200px 600px at 20% -10%, #14532d 0%, rgba(20,83,45,0) 60%), radial-gradient(900px 500px at 90% 10%, #0f766e 0%, rgba(15,118,110,0) 55%), linear-gradient(180deg, #0b1220 0%, #0f172a 100%); color: #fff; margin-top: -1px; padding: 84px 0 0; }
.lp-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 85%); -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 85%); pointer-events: none; }
.lp-hero-glow { position: absolute; left: 50%; top: 40%; width: 900px; height: 900px; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(34,197,94,.22) 0%, rgba(34,197,94,0) 60%); filter: blur(20px); pointer-events: none; }
.lp-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; }
.lp-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 7px 14px 7px 10px; font-size: 13px; font-weight: 650; letter-spacing: .01em; color: #e2e8f0; backdrop-filter: blur(6px); }
.lp-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lp-green); box-shadow: 0 0 0 4px rgba(34,197,94,.25); }
.lp-title { font-size: 76px; line-height: 1; letter-spacing: -.045em; margin: 22px 0 20px; font-weight: 800; color: #fff; }
.lp-title .lp-hl { color: var(--lp-green); }
.lp-sub { font-size: 20px; line-height: 1.55; color: #cbd5e1; margin: 0 auto 30px; max-width: 720px; }
.lp-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-hero { background: var(--lp-green); border-color: var(--lp-green); color: var(--lp-green-ink); font-weight: 800; padding: 16px 30px; font-size: 18px; border-radius: 14px; box-shadow: 0 10px 30px rgba(34,197,94,.35), inset 0 1px 0 rgba(255,255,255,.25); letter-spacing: -.01em; }
.btn-hero:hover { background: #4ade80; border-color: #4ade80; color: var(--lp-green-ink); box-shadow: 0 14px 36px rgba(34,197,94,.45); text-decoration: none; }
.btn-hero-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff; font-weight: 650; padding: 16px 24px; font-size: 17px; border-radius: 14px; }
.btn-hero-ghost:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.lp-fineprint { color: #94a3b8; font-size: 13.5px; margin-top: 16px; }
.lp-fineprint-light { color: #94a3b8; }
.lp-hero-mock { position: relative; z-index: 1; margin-top: 54px; padding-bottom: 0; }
.lp-mock { background: #111a2e; border: 1px solid rgba(255,255,255,.1); border-bottom: 0; border-radius: 18px 18px 0 0; padding: 12px 12px 0; box-shadow: 0 -20px 80px rgba(34,197,94,.12), 0 30px 60px rgba(0,0,0,.4); max-width: 900px; margin: 0 auto; }
.lp-mock-bar { display: flex; align-items: center; gap: 6px; padding: 4px 6px 12px; }
.lp-mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: #334155; }
.lp-mock-bar em { margin-left: auto; font-style: normal; font-size: 12px; color: #64748b; font-weight: 600; letter-spacing: .02em; }
.lp-mock-body { background: #fff; border-radius: 12px 12px 0 0; padding: 8px; color: var(--text-2); }
.lp-mock-row { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 15px; line-height: 1.5; }
.lp-mock-row:last-child { border-bottom: 0; }
.lp-mock-row .pill { margin-right: 8px; }
.lp-mock-row b { color: var(--ink); font-weight: 650; }

/* strip */
.lp-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: -1px; padding-top: 28px; padding-bottom: 8px; position: relative; }
.lp-strip::before { content: ""; position: absolute; top: 0; left: calc(50% - 50vw); right: calc(50% - 50vw); height: 1px; background: var(--border); }
.lp-strip div { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow); }
.lp-strip strong { display: block; font-size: 22px; letter-spacing: -.02em; color: var(--ink); font-weight: 800; }
.lp-strip span { display: block; color: var(--muted); font-size: 14px; margin-top: 2px; }

/* sections */
.lp-section { padding-top: 72px; padding-bottom: 16px; }
.lp-alt { position: relative; padding-bottom: 56px; }
.lp-alt::before { content: ""; position: absolute; top: 36px; bottom: 0; left: calc(50% - 50vw); right: calc(50% - 50vw); background: #eceff3; z-index: -1; }
.lp-h2 { font-size: 40px; letter-spacing: -.035em; line-height: 1.08; margin: 0 0 12px; font-weight: 800; color: var(--ink); max-width: 820px; }
.lp-h2-light { color: #fff; }
.lp-lead { font-size: 18px; color: var(--text-2); margin: 0 0 30px; max-width: 640px; }
.lp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
.lp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.lp-feature { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; }
.lp-feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-icon { width: 44px; height: 44px; border-radius: 12px; background: #ecfdf5; display: grid; place-items: center; font-size: 22px; margin-bottom: 14px; }
.lp-feature h3, .lp-step h3, .lp-mode-card h3 { font-size: 19px; text-transform: none; letter-spacing: -.02em; color: var(--ink); margin: 0 0 6px; font-weight: 750; }
.lp-feature p, .lp-step p, .lp-mode-card p { color: var(--text-2); margin: 0; font-size: 15px; line-height: 1.6; }

/* agency */
.lp-agency { position: relative; margin-top: 72px; background: linear-gradient(135deg, #0b1220 0%, #0f172a 60%, #14532d 140%); color: #cbd5e1; padding: 72px 0; }
.lp-agency::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 100% 0%, rgba(34,197,94,.18), transparent 60%); pointer-events: none; }
.lp-agency-inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.lp-agency-text p { font-size: 17px; line-height: 1.65; margin: 0 0 24px; }
.lp-agency-text strong { color: #fff; }
.btn-yt { background: #ff0000; border-color: #ff0000; color: #fff; font-weight: 700; padding: 13px 20px; font-size: 15.5px; border-radius: 12px; box-shadow: 0 8px 24px rgba(255,0,0,.3); }
.btn-yt:hover { background: #e60000; border-color: #e60000; color: #fff; text-decoration: none; }
.lp-agency-cards { display: grid; gap: 12px; }
.lp-agency-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 18px 20px; backdrop-filter: blur(6px); }
.lp-agency-card b { display: block; color: #fff; font-size: 16.5px; letter-spacing: -.01em; margin-bottom: 4px; }
.lp-agency-card span { display: block; font-size: 14.5px; line-height: 1.55; color: #cbd5e1; }
.lp-agency-card em { color: var(--lp-lime); font-style: normal; font-weight: 700; }

/* steps */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; counter-reset: step; }
.lp-step { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; box-shadow: var(--shadow); position: relative; }
.lp-step-n { width: 40px; height: 40px; border-radius: 12px; background: var(--lp-navy); color: var(--lp-lime); display: grid; place-items: center; font-weight: 800; font-size: 17px; margin-bottom: 16px; }

/* modes */
.lp-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.lp-mode-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; box-shadow: var(--shadow); }
.lp-mode-card-hot { border-color: #86efac; background: linear-gradient(180deg, #f0fdf4, #fff 70%); }
.lp-mode-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.lp-mode-head h3 { margin: 0; }

/* pricing */
.lp-price { display: flex; justify-content: center; }
.lp-price-main { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 0 0 34px; max-width: 580px; width: 100%; box-shadow: 0 24px 60px rgba(15,23,42,.12); overflow: hidden; }
.lp-price-top { background: var(--lp-navy); color: #fff; padding: 32px 38px 28px; margin-bottom: 22px; position: relative; overflow: hidden; }
.lp-price-top::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(34,197,94,.35), transparent 65%); }
.lp-price-top .lp-eyebrow { color: var(--lp-lime); }
.lp-price-big { font-size: 64px; font-weight: 800; letter-spacing: -.04em; color: #fff; line-height: 1; position: relative; }
.lp-price-big span { font-size: 20px; font-weight: 600; color: #cbd5e1; letter-spacing: 0; margin-left: 4px; }
.lp-price-then { font-size: 16px; color: #cbd5e1; margin-top: 10px; position: relative; }
.lp-checks { list-style: none; padding: 0 38px; margin: 0 0 24px; }
.lp-checks li { padding: 10px 0 10px 32px; position: relative; border-bottom: 1px solid var(--border); color: var(--text-2); font-size: 15.5px; }
.lp-checks li:last-child { border-bottom: 0; }
.lp-checks li::before { content: "✓"; position: absolute; left: 0; top: 9px; width: 22px; height: 22px; border-radius: 50%; background: #dcfce7; color: #15803d; font-weight: 800; font-size: 13px; display: grid; place-items: center; }
.lp-price-main .btn-hero { margin: 0 38px; width: calc(100% - 76px); }
.lp-price-main .lp-fineprint { text-align: center; color: var(--muted); }

/* faq */
.lp-faq details { max-width: 820px; }
.lp-faq details { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; margin-bottom: 8px; }
.lp-faq summary { cursor: pointer; font-weight: 650; font-size: 16px; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "+"; color: var(--muted); font-size: 20px; flex-shrink: 0; }
.lp-faq details[open] summary::after { content: "–"; }
.lp-faq details p { margin: 10px 0 2px; color: var(--text-2); font-size: 15px; line-height: 1.6; }

/* final */
.lp-final { margin-top: 72px; background: linear-gradient(180deg, #0f172a, #0b1220); color: #fff; padding: 80px 0 72px; text-align: center; position: relative; overflow: hidden; }
.lp-final::before { content: ""; position: absolute; left: 50%; bottom: -300px; width: 900px; height: 600px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(34,197,94,.25), transparent 60%); pointer-events: none; }
.lp-final-inner { position: relative; }
.lp-final h2 { font-size: 40px; letter-spacing: -.035em; margin: 0 auto 26px; font-weight: 800; color: #fff; max-width: 720px; line-height: 1.1; }
.lp-page .footer { color: #94a3b8; }

@media (max-width: 900px) {
  .lp-title { font-size: 54px; }
  .lp-h2, .lp-final h2 { font-size: 32px; }
  .lp-strip, .lp-steps, .lp-grid, .lp-grid-3, .lp-modes { grid-template-columns: 1fr 1fr; }
  .lp-agency-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .lp-hero { padding-top: 56px; }
  .lp-title { font-size: 40px; }
  .lp-sub { font-size: 17px; }
  .lp-h2, .lp-final h2 { font-size: 28px; }
  .lp-steps, .lp-grid, .lp-grid-3, .lp-modes { grid-template-columns: 1fr; }
  .lp-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lp-strip div { padding: 14px 16px; }
  .lp-strip strong { font-size: 18px; }
  .lp-price-top { padding: 26px 22px; }
  .lp-checks { padding: 0 22px; }
  .lp-price-main .btn-hero { margin: 0 22px; width: calc(100% - 44px); }
  .btn-hero, .btn-hero-ghost { width: 100%; justify-content: center; }
  .lp-mock-row { font-size: 14px; }
}
