/* MagiReview design system — v2 "premium"
   Light theme only. WCAG 2.1 AA. Modern SaaS: bold sans, deep ink,
   soft elevation, gradient glow, dark feature cards.

   Contrast notes (against #F7F8FA paper / #FFFFFF surface):
   - ink   #0E1117 on paper  = 17:1  (AAA body)
   - muted #535B69 on paper  = 6.3:1 (AA body)
   - blue  #0B5ED7 on paper  = 5.2:1 (AA body + UI)
   - paper text on #0E1117 ink button = 16:1
   #2E7BFF is used for large fills / accents only, never small text on white. */

:root {
  --paper:        #F7F8FA;
  --surface:      #FFFFFF;
  --surface-2:    #EEF1F6;
  --ink:          #0E1117;
  --ink-soft:     #2A2F3A;
  --muted:        #535B69;
  --line:         #E5E8EF;
  --line-soft:    #EEF0F5;

  --blue:         #0B5ED7;   /* text/UI-safe blue, 5.2:1 on paper */
  --blue-bright:  #2E7BFF;   /* accent fills only */
  --blue-deep:    #0A4FB5;   /* hover */
  --blue-soft:    #E8F0FE;   /* tint background */
  --blue-tint:    #F2F7FF;

  --violet:       #6D5CE7;
  --violet-soft:  #ECEAFE;
  --amber:        #8A5A12;
  --amber-soft:   #FBF1DE;
  --danger:       #C0392B;
  --danger-soft:  #FBEAE8;
  --ok:           #1F7A4D;
  --ok-soft:      #E6F4EC;

  /* Dark surfaces for premium feature cards / bands */
  --night:        #0E1117;
  --night-2:      #161A23;
  --night-line:   #232938;
  --night-ink:    #F4F6FB;
  --night-muted:  #9AA3B2;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(14,17,23,.05);
  --shadow:    0 2px 6px rgba(14,17,23,.05), 0 12px 28px rgba(14,17,23,.07);
  --shadow-lg: 0 30px 70px rgba(14,17,23,.14);
  --shadow-glow: 0 18px 50px rgba(46,123,255,.28);

  /* Signature gradient (CTA glow, accents) */
  --grad: linear-gradient(120deg, #2E7BFF 0%, #6D5CE7 55%, #E15CC6 100%);

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.28rem; font-weight: 700; letter-spacing: -0.015em; }

p { margin: 0 0 1rem; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
small { font-size: .82rem; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Layout */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 44px 0; }

.row { display: flex; gap: 16px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.stack > * + * { margin-top: 16px; }
.muted { color: var(--muted); }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

/* Header — floating, glassy */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247,248,250,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.28rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 4px 12px rgba(14,17,23,.25);
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-right: 8px; }
.nav-links a {
  color: var(--ink-soft); font-weight: 600; font-size: .94rem;
  padding: 8px 12px; border-radius: 9px; text-decoration: none;
}
.nav-links a:hover { background: var(--surface-2); text-decoration: none; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-size: .96rem; font-weight: 700;
  padding: 12px 20px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .12s ease, background .15s ease, box-shadow .2s ease, border-color .15s ease;
  line-height: 1; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-xs); }
.btn-primary:hover { background: #000; color: #fff; box-shadow: var(--shadow); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); color: #fff; }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-quiet { background: transparent; color: var(--ink-soft); padding-left: 12px; padding-right: 12px; }
.btn-quiet:hover { background: var(--surface-2); }
.btn-danger { background: transparent; color: var(--danger); border-color: var(--danger-soft); }
.btn-danger:hover { background: var(--danger-soft); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #f0f3f9; color: var(--ink); }
.btn-lg { padding: 15px 28px; font-size: 1.04rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Glow CTA (hero) */
.btn-glow { position: relative; background: var(--ink); color: #fff; isolation: isolate; }
.btn-glow::before {
  content: ""; position: absolute; inset: -3px; border-radius: inherit;
  background: var(--grad); filter: blur(14px); opacity: .55; z-index: -1;
  transition: opacity .2s ease;
}
.btn-glow:hover::before { opacity: .85; }

/* Cards */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px;
}
.card-flat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card-dark {
  background: var(--night); color: var(--night-ink);
  border: 1px solid var(--night-line); border-radius: var(--radius);
  padding: 30px;
}
.card-dark h1, .card-dark h2, .card-dark h3 { color: var(--night-ink); }
.card-dark .muted { color: var(--night-muted); }

/* Forms */
.field { margin-bottom: 18px; }
.label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 7px; color: var(--ink); }
.hint { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.input, .textarea, .select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px;
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px var(--blue-soft); }
.textarea { min-height: 110px; resize: vertical; }
.field-error { color: var(--danger); font-size: .85rem; margin-top: 6px; }
.input-invalid { border-color: var(--danger); }

/* Flash / alerts */
.alert { border-radius: var(--radius-sm); padding: 13px 16px; margin-bottom: 18px; font-size: .95rem; border: 1px solid transparent; }
.alert-success { background: var(--ok-soft); color: var(--ok); border-color: #C3E6D2; }
.alert-error { background: var(--danger-soft); color: var(--danger); border-color: #EFCFCB; }
.alert-info { background: var(--surface-2); color: var(--muted); border-color: var(--line); }

/* Badges / pills */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.badge-open { background: var(--blue-soft); color: var(--blue-deep); }
.badge-draft { background: var(--surface-2); color: var(--muted); }
.badge-closed { background: var(--amber-soft); color: var(--amber); }
.badge-signed { background: var(--violet-soft); color: #4B3B73; }
.badge-indicative { background: var(--amber-soft); color: var(--amber); }

/* Grid */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Stat tiles */
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-xs); }
.stat-num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.stat-label { color: var(--muted); font-size: .88rem; margin-top: 8px; font-weight: 600; }

/* Option cards (voting) */
.options-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.option {
  border: 2px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface); transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
  display: flex; flex-direction: column;
}
.option:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.option.is-selected { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.option-media { aspect-ratio: 4/3; background: var(--surface-2); display: grid; place-items: center; overflow: hidden; }
.option-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.option-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.option-label { font-weight: 700; }
.option-controls { margin-top: auto; }

/* Result bars */
.result-row { margin-bottom: 18px; }
.result-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; gap: 12px; }
.bar-track { background: var(--surface-2); border-radius: 999px; height: 14px; overflow: hidden; }
.bar-fill { background: var(--blue); height: 100%; border-radius: 999px; transition: width .5s ease; }
.bar-fill.winner { background: var(--grad); }
.result-meta { font-size: .85rem; color: var(--muted); }
.winner-tag { background: var(--ink); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 6px; }

/* Score / verdict */
.score-scale { display: flex; gap: 6px; }
.score-scale label { cursor: pointer; }
.score-scale input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.score-chip { display: grid; place-items: center; width: 38px; height: 38px; border: 1.5px solid var(--line); border-radius: 9px; font-weight: 700; }
.score-scale input:checked + .score-chip { background: var(--blue); color: #fff; border-color: var(--blue); }
.score-scale input:focus-visible + .score-chip { outline: 3px solid var(--blue); outline-offset: 2px; }

.verdict { display: flex; gap: 8px; }
.verdict label { flex: 1; cursor: pointer; }
.verdict input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.verdict-btn { display: block; text-align: center; padding: 9px; border: 1.5px solid var(--line); border-radius: 9px; font-weight: 700; font-size: .9rem; }
.verdict input[value="approve"]:checked + .verdict-btn { background: var(--blue-soft); border-color: var(--blue); color: var(--blue-deep); }
.verdict input[value="reject"]:checked + .verdict-btn { background: var(--danger-soft); border-color: var(--danger); color: var(--danger); }
.verdict input:focus-visible + .verdict-btn { outline: 3px solid var(--blue); outline-offset: 2px; }

.rank-select { width: 64px; }

/* Comments */
.comment { border-top: 1px solid var(--line); padding: 16px 0; }
.comment:first-child { border-top: none; }
.comment-author { font-weight: 700; }
.comment-time { color: var(--muted); font-size: .82rem; }

/* Tables */
.table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.table th, .table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.table th { color: var(--muted); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.table tbody tr:hover { background: var(--surface-2); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-xs); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 44px 0; color: var(--muted); font-size: .9rem; margin-top: 72px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--ink); }
.desisle-strip { background: var(--ink); color: #fff; padding: 14px 0; text-align: center; font-size: .92rem; }
.desisle-strip a { color: #fff; text-decoration: underline; font-weight: 700; }

/* Hero (generic, app) */
.hero { padding: 80px 0 56px; }
.hero-eyebrow { display: inline-block; color: var(--blue); font-weight: 700; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.hero-sub { font-size: 1.18rem; color: var(--muted); max-width: 620px; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* Feature box */
.feature { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-xs); }
.feature-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; font-weight: 800; margin-bottom: 14px; }

/* Utilities */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.divider { height: 1px; background: var(--line); border: none; margin: 28px 0; }
.text-sm { font-size: .9rem; }
.hidden { display: none; }
.copy-field { display: flex; gap: 8px; }
.copy-field .input { font-size: .9rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ===================================================================
   APP SHELL (left sidebar)
   =================================================================== */
.app-shell { display: grid; grid-template-columns: 268px 1fr; min-height: 100vh; }

.app-sidebar {
  position: sticky; top: 0; height: 100vh;
  background: var(--night); color: var(--night-ink);
  border-right: 1px solid var(--night-line);
  display: flex; flex-direction: column; padding: 20px 16px;
}
.app-sidebar .brand { color: #fff; font-size: 1.2rem; padding: 6px 8px 20px; }
.app-sidebar .brand-mark { background: var(--grad); box-shadow: none; }

.app-nav { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.app-nav .nav-group-label { color: var(--night-muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; padding: 18px 14px 6px; }
.app-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 11px;
  color: var(--night-muted); font-weight: 600; font-size: .95rem;
}
.app-nav a:hover { background: rgba(255,255,255,.06); color: #fff; text-decoration: none; }
.app-nav a.is-active { background: rgba(255,255,255,.10); color: #fff; }
.app-nav a svg { width: 19px; height: 19px; flex: none; opacity: .9; }

.app-user { border-top: 1px solid var(--night-line); padding-top: 14px; margin-top: 14px; display: flex; align-items: center; gap: 11px; }
.app-user form { display: flex; }
.app-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.app-who { flex: 1; min-width: 0; }
.app-who strong { display: block; font-size: .9rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-who span { font-size: .76rem; color: var(--night-muted); }
.app-signout { background: transparent; border: none; color: var(--night-muted); cursor: pointer; padding: 8px; border-radius: 9px; display: grid; place-items: center; }
.app-signout:hover { background: rgba(255,255,255,.08); color: #fff; }

.app-main { display: flex; flex-direction: column; min-width: 0; }
.app-topbar {
  position: sticky; top: 0; z-index: 30;
  background: rgba(247,248,250,.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 15px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.app-topbar .crumb { font-weight: 700; font-family: var(--font-display); letter-spacing: -0.01em; }
.app-content { padding: 32px; }
.app-wrap { max-width: 1000px; margin: 0 auto; }

@media (max-width: 860px) {
  .app-shell { grid-template-columns: 1fr; }
  .app-sidebar { position: sticky; height: auto; flex-direction: row; align-items: center; overflow-x: auto; padding: 10px 14px; gap: 6px; }
  .app-sidebar .brand { padding: 0 10px 0 2px; }
  .app-nav { flex-direction: row; align-items: center; flex: 1; gap: 4px; }
  .app-nav .nav-group-label { display: none; }
  .app-nav a span.lbl { display: none; }
  .app-user { border-top: none; border-left: 1px solid var(--night-line); margin: 0 0 0 6px; padding: 0 0 0 10px; }
  .app-who { display: none; }
  .app-content { padding: 22px 18px; }
  .app-topbar { padding: 13px 18px; }
}

/* ===================================================================
   LANDING PAGE
   =================================================================== */
.lp-hero {
  position: relative;
  padding: 96px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(109,92,231,.16), transparent 60%),
    radial-gradient(900px 520px at 12% 6%, rgba(46,123,255,.14), transparent 58%),
    var(--paper);
}
.lp-hero-inner { display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .lp-hero-inner { grid-template-columns: 1fr; gap: 44px; } }

.lp-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink-soft); box-shadow: var(--shadow-xs);
  font-size: .82rem; font-weight: 700; padding: 7px 15px; border-radius: 999px;
  margin-bottom: 24px;
}
.lp-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }

.lp-h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); line-height: 1.03; letter-spacing: -0.035em; margin-bottom: 22px; }
.lp-h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lp-sub { font-size: 1.2rem; color: var(--muted); max-width: 520px; margin-bottom: 30px; }

.lp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.lp-trust { display: flex; gap: 20px; margin-top: 24px; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.lp-trust span { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.lp-check { color: var(--blue); font-weight: 800; }

/* Inline email signup */
.lp-signup { display: flex; gap: 10px; max-width: 480px; flex-wrap: wrap; }
.lp-signup .input { flex: 1; min-width: 220px; box-shadow: var(--shadow-xs); }
.lp-signup-white .input { background: #fff; border-color: transparent; }
.lp-signup-center { margin: 0 auto; }

/* Hero visual: floating mock + chips */
.lp-visual { position: relative; }
.lp-mock {
  position: relative; z-index: 2;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow-lg); padding: 22px;
}
.lp-mock-bar { display: flex; gap: 6px; margin-bottom: 18px; }
.lp-mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-2); display: block; }
.lp-mock-title { font-family: var(--font-display); font-weight: 800; margin-bottom: 4px; letter-spacing: -0.01em; }
.lp-mock-meta { color: var(--muted); font-size: .82rem; margin-bottom: 18px; }
.lp-mock-opt { display: flex; align-items: center; gap: 12px; padding: 12px; border: 1.5px solid var(--line); border-radius: 14px; margin-bottom: 10px; }
.lp-mock-opt.win { border-color: transparent; background: var(--blue-tint); box-shadow: inset 0 0 0 1.5px var(--blue); }
.lp-mock-thumb { width: 48px; height: 48px; border-radius: 11px; flex: none; }
.lp-mock-fill { flex: 1; }
.lp-mock-fill strong { font-weight: 700; }
.lp-mock-track { background: var(--surface-2); height: 8px; border-radius: 99px; margin-top: 7px; overflow: hidden; }
.lp-mock-track i { display: block; height: 100%; background: var(--grad); border-radius: 99px; }
.lp-mock-pct { font-weight: 800; font-size: .92rem; color: var(--ink); }
.lp-mock-stamp { margin-top: 16px; display: flex; align-items: center; gap: 8px; color: var(--ok); font-size: .85rem; font-weight: 700; }

/* Floating accent chips behind/around the mock */
.lp-chip {
  position: absolute; z-index: 1;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); padding: 11px 14px;
  display: flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 700;
}
.lp-chip .ico { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: .9rem; }
.lp-chip-a { top: -22px; right: 6%; }
.lp-chip-a .ico { background: var(--ok-soft); }
.lp-chip-b { bottom: -20px; left: -10px; }
.lp-chip-b .ico { background: var(--violet-soft); }
@media (max-width: 480px) { .lp-chip { display: none; } }

/* Logo / trust strip */
.lp-logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); padding: 30px 0; }
.lp-logos p { text-align: center; color: var(--muted); font-size: 1rem; margin: 0; }
.lp-logos em { color: var(--ink); font-style: normal; font-weight: 700; }

/* Section heading */
.lp-eyebrow { text-align: center; color: var(--blue); font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.lp-section-title { text-align: center; font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 760px; margin: 0 auto 14px; line-height: 1.1; letter-spacing: -0.03em; }
.lp-section-lead { text-align: center; color: var(--muted); max-width: 580px; margin: 0 auto 52px; font-size: 1.1rem; }

/* Capabilities — dark cards */
.lp-dark { background: var(--paper); }
.lp-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .lp-caps { grid-template-columns: 1fr; } }
.lp-cap {
  background: var(--night); color: var(--night-ink);
  border: 1px solid var(--night-line); border-radius: var(--radius-lg);
  padding: 30px; position: relative; overflow: hidden;
}
.lp-cap::after {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 70%; height: 80%; background: var(--grad); filter: blur(60px); opacity: .18;
}
.lp-cap .lp-cap-kicker { position: relative; color: var(--blue-bright); font-weight: 800; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.lp-cap h3 { position: relative; color: #fff; font-size: 1.45rem; margin-bottom: 10px; }
.lp-cap p { position: relative; color: var(--night-muted); margin: 0; }
.lp-cap-num { position: relative; font-family: var(--font-display); font-weight: 800; font-size: 1rem; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid var(--night-line); display: grid; place-items: center; margin-bottom: 20px; }

/* Steps */
.lp-steps { counter-reset: step; }
.lp-step-num { width: 42px; height: 42px; border-radius: 13px; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; margin-bottom: 16px; font-size: 1.05rem; }

/* Pain -> gain compare */
.lp-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 680px) { .lp-compare { grid-template-columns: 1fr; } }
.lp-col { padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.lp-col-before { background: var(--surface); }
.lp-col-after { background: var(--ink); color: var(--night-ink); border-color: var(--night-line); }
.lp-col-after h3 { color: #fff; }
.lp-col h3 { margin-bottom: 18px; }
.lp-li { display: flex; gap: 11px; margin-bottom: 14px; align-items: flex-start; line-height: 1.45; }
.lp-li .mark { flex: none; font-weight: 800; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; }
.lp-li.bad .mark { color: var(--muted); background: var(--surface-2); }
.lp-li.good { color: var(--night-ink); }
.lp-li.good .mark { color: #fff; background: rgba(46,123,255,.22); }

/* Record spotlight */
.lp-record {
  background:
    radial-gradient(700px 360px at 50% 120%, rgba(109,92,231,.16), transparent 60%),
    var(--ink);
  color: var(--night-ink);
  border-radius: var(--radius-lg); padding: 64px 40px; text-align: center;
}
.lp-record h2 { color: #fff; }
.lp-record p { color: var(--night-muted); max-width: 600px; margin: 0 auto 28px; }
.lp-fingerprint { display: inline-flex; align-items: center; gap: 10px; font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: .82rem; color: var(--night-muted); background: rgba(255,255,255,.05); border: 1px solid var(--night-line); padding: 9px 14px; border-radius: 999px; margin-bottom: 26px; }
.lp-fingerprint .ok { color: #4ADE80; font-weight: 700; }

/* FAQ */
.lp-faq details { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-sm); padding: 4px 20px; margin-bottom: 12px; box-shadow: var(--shadow-xs); }
.lp-faq summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; font-family: var(--font-display); }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "+"; color: var(--blue); font-size: 1.5rem; font-weight: 400; line-height: 1; }
.lp-faq details[open] summary::after { content: "–"; }
.lp-faq p { margin: 0 0 18px; color: var(--muted); }

/* CTA band */
.lp-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(600px 300px at 85% 120%, rgba(109,92,231,.4), transparent 60%),
    var(--grad);
  color: #fff; border-radius: var(--radius-lg); padding: 64px 44px; text-align: center;
}
.lp-band h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 12px; }
.lp-band p { color: rgba(255,255,255,.92); max-width: 540px; margin: 0 auto 30px; font-size: 1.1rem; }
.lp-band .lp-signup .input { border: none; }
