/* ════════════════════════════════════════════════════════════════════
   BanditaGol Landing Page — banditagol.cl
   Design system: M26 tokens (Big Shoulders + Manrope + JetBrains Mono)
   ════════════════════════════════════════════════════════════════════ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  color-scheme: dark light;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Tokens (dark default, light override) ──────────────────────── */
:root, [data-theme="dark"] {
  --bg:           #0B0B0E;
  --surface:      #131318;
  --surface-2:    #1A1A22;
  --surface-sunk: #07070A;
  --ink:          #F2ECDB;
  --ink-2:        #B8B0A0;
  --ink-3:        #7A7268;
  --ink-4:        #4A453C;
  --line:         #222228;
  --line-soft:    #1C1C22;
  --red:          #F25744;
  --red-soft:     rgba(242,87,68,0.10);
  --amber:        #F5C242;
  --amber-soft:   rgba(245,194,66,0.12);
  --green:        #3DD68C;
  --green-soft:   rgba(61,214,140,0.12);
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body:    'Manrope', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow-card:  0 1px 0 rgba(242,236,219,.04), 0 8px 24px -16px rgba(0,0,0,.6);
}

[data-theme="light"] {
  --bg:           #F2EDE0;
  --surface:      #FBF7EC;
  --surface-2:    #FFFFFF;
  --surface-sunk: #ECE5D2;
  --ink:          #0D0D0D;
  --ink-2:        #4A453C;
  --ink-3:        #837C6D;
  --ink-4:        #B5AE9F;
  --line:         #D9D0BA;
  --line-soft:    #E5DDC8;
  --red:          #D63A2A;
  --red-soft:     rgba(214,58,42,0.10);
  --amber:        #C58A00;
  --amber-soft:   rgba(197,138,0,0.12);
  --green:        #1A5D3A;
  --green-soft:   rgba(26,93,58,0.12);
}

/* ── Utility bar ─────────────────────────────────────────────────── */
.lp-util {
  background: var(--surface-sunk);
  border-bottom: 1px solid var(--line);
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.lp-util .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
  animation: ping 2.4s ease-in-out infinite;
}
@keyframes ping {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Nav ─────────────────────────────────────────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,14,0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  padding: 0 40px;
}
[data-theme="light"] .lp-nav {
  background: rgba(242,237,224,0.88);
}
.lp-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-stamp {
  width: 36px; height: 36px;
  background: var(--ink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  gap: 1px;
  position: relative;
  overflow: hidden;
}
.lp-stamp::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 4%, rgba(255,255,255,0.04) 4%, rgba(255,255,255,0.04) 8%);
}
.lp-stamp-m {
  font-family: var(--font-display);
  font-weight: 900; font-size: 16px;
  color: var(--bg);
  line-height: 1;
  position: relative; z-index: 1;
}
.lp-stamp-n {
  font-family: var(--font-display);
  font-weight: 900; font-size: 11px;
  color: var(--amber);
  line-height: 1;
  position: relative; z-index: 1;
}
.lp-brand-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.lp-brand-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-btn-ghost {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.lp-btn-ghost:hover { color: var(--ink); }
.lp-btn-primary {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: var(--ink);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.lp-btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 60px;
  overflow: hidden;
}
.lp-hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.04;
  pointer-events: none;
}
.lp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp-eyebrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
.lp-chip.accent { color: var(--amber); border-color: var(--amber-soft); background: var(--amber-soft); }
.lp-chip.live { color: var(--green); border-color: var(--green-soft); background: var(--green-soft); }
.lp-chip-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.lp-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.lp-hero-title .accent { color: var(--red); }
.lp-hero-title .amber { color: var(--amber); }

.lp-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 440px;
}

.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.lp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.lp-cta-primary:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.lp-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: color 0.15s, border-color 0.15s;
}
.lp-cta-secondary:hover { color: var(--ink); border-color: var(--ink-3); }

/* Countdown hero */
.lp-countdown {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.lp-cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.lp-cd-sep {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--ink-4);
  align-self: flex-start;
  padding-top: 4px;
}
.lp-cd-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  min-width: 64px;
  text-align: center;
}
.lp-cd-cell:last-child .lp-cd-num {
  color: var(--red);
  background: var(--red-soft);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}
.lp-cd-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}

/* Hero right — mock dashboard */
.lp-hero-visual {
  position: relative;
}
.lp-mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 40px 80px -20px rgba(0,0,0,0.5);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.lp-mock:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
}
.lp-mock-bar {
  background: var(--surface-sunk);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-mock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.lp-mock-dot:first-child { background: #ff5f57; }
.lp-mock-dot:nth-child(2) { background: #febc2e; }
.lp-mock-dot:nth-child(3) { background: #28c840; }
.lp-mock-url {
  flex: 1;
  background: var(--surface-2);
  border-radius: 4px;
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  margin-left: 8px;
}
.lp-mock-body {
  padding: 20px;
}
.lp-mock-lb {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-mock-lb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.lp-mock-lb-row.self {
  background: var(--amber-soft);
  border-color: rgba(245,194,66,0.2);
}
.lp-mock-rank {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-3);
  width: 16px;
}
.lp-mock-ava {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 11px;
  color: var(--ink);
  flex-shrink: 0;
}
.lp-mock-name {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.lp-mock-pts {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
}
.lp-mock-lb-row.self .lp-mock-pts { color: var(--amber); }
.lp-mock-bar-wrap {
  flex: 0 0 60px;
  height: 3px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}
.lp-mock-bar-fill {
  height: 100%;
  background: var(--ink-3);
  border-radius: 99px;
}
.lp-mock-lb-row.self .lp-mock-bar-fill { background: var(--amber); }

/* ── Stats strip ─────────────────────────────────────────────────── */
.lp-stats {
  background: var(--surface-sunk);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 40px;
}
.lp-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lp-stat {
  padding: 0 32px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.lp-stat:first-child { padding-left: 0; }
.lp-stat:last-child { border-right: none; }
.lp-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lp-stat-num .red { color: var(--red); }
.lp-stat-num .amber { color: var(--amber); }
.lp-stat-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-top: 4px;
  text-transform: uppercase;
}

/* ── Section base ────────────────────────────────────────────────── */
.lp-section {
  padding: 96px 40px;
}
.lp-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lp-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.lp-section-sub {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 520px;
  line-height: 1.65;
}

/* ── Differentiators grid ────────────────────────────────────────── */
.lp-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.lp-diff-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-diff-card:hover {
  border-color: var(--ink-3);
  box-shadow: var(--shadow-card);
}
.lp-diff-card.highlight {
  border-color: rgba(245,194,66,0.25);
  background: linear-gradient(135deg, var(--surface), var(--amber-soft));
}
.lp-diff-icon {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1;
}
.lp-diff-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.lp-diff-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}
.lp-diff-tag {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  padding: 3px 8px;
  border-radius: 999px;
}

/* ── Anti section ────────────────────────────────────────────────── */
.lp-anti {
  background: var(--surface-sunk);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lp-anti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.lp-anti-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-anti-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.lp-anti-list li .x {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: var(--red-soft);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 2px;
}
.lp-anti-list li .chk {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-soft);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 2px;
}

/* ── How it works ────────────────────────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.lp-step {
  position: relative;
  padding-top: 8px;
}
.lp-step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--line);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.lp-step:hover .lp-step-num { color: var(--amber); }
.lp-step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.lp-step-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}
.lp-step-connector {
  position: absolute;
  top: 44px; right: -16px;
  width: 32px; height: 1px;
  background: var(--line);
}

/* ── Form section ────────────────────────────────────────────────── */
.lp-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 580px;
}
.lp-form-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.lp-form-sub {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 32px;
  line-height: 1.5;
}
.lp-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.lp-field input,
.lp-field textarea,
.lp-field select {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: none;
}
.lp-field input::placeholder,
.lp-field textarea::placeholder { color: var(--ink-4); }
.lp-field input:focus,
.lp-field textarea:focus,
.lp-field select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-soft);
}
.lp-field textarea { min-height: 90px; }

.lp-submit {
  margin-top: 8px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-submit:hover:not(:disabled) {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.lp-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.lp-form-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.lp-form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.lp-form-success-ico { font-size: 48px; margin-bottom: 16px; }
.lp-form-success-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.lp-form-success-sub { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* Form + context grid */
.lp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lp-form-context {}
.lp-context-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 42px);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.lp-context-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.lp-context-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp-context-list .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--amber);
  line-height: 1.2;
  flex-shrink: 0;
  min-width: 20px;
}
.lp-context-list .txt {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.lp-context-list .txt strong { color: var(--ink); }

/* ── Footer ──────────────────────────────────────────────────────── */
.lp-foot {
  background: var(--surface-sunk);
  border-top: 1px solid var(--line);
  padding: 48px 40px 32px;
}
.lp-foot-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.lp-foot-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 300px;
}
.lp-foot-tagline {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
}
.lp-foot-links {
  display: flex;
  gap: 48px;
}
.lp-foot-col {}
.lp-foot-col-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lp-foot-link {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 8px;
  transition: color 0.15s;
}
.lp-foot-link:hover { color: var(--ink); }
.lp-foot-link.dim { opacity: 0.5; cursor: default; }
.lp-foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.06em;
}
.lp-foot-bottom span + span::before { content: '·'; margin: 0 8px; }

/* ── Ribbon ──────────────────────────────────────────────────────── */
.lp-ribbon {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lp-ribbon-band {
  display: flex;
  padding: 6px 0;
}
.lp-ribbon-band:nth-child(1) { background: #006847; }
.lp-ribbon-band:nth-child(2) { background: #0D0D0D; }
.lp-ribbon-band:nth-child(3) { background: #D80027; }
[data-theme="light"] .lp-ribbon-band:nth-child(2) { background: #F4ECD3; }
.lp-ribbon-track {
  display: flex;
  gap: 32px;
  animation: lp-scroll 60s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.lp-ribbon-item {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.lp-ribbon-band:nth-child(2) .lp-ribbon-item { color: var(--ink-3); }
@keyframes lp-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-ribbon-track { animation: none; }
}

/* ── Toast ───────────────────────────────────────────────────────── */
.lp-toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 999;
  display: none;
  align-items: center;
  gap: 10px;
  max-width: 320px;
  animation: toast-in 0.25s ease;
}
.lp-toast.show { display: flex; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-visual { display: none; }
  .lp-hero { min-height: auto; padding: 60px 24px 40px; }
  .lp-diff-grid { grid-template-columns: 1fr; }
  .lp-anti-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-steps { grid-template-columns: 1fr; gap: 24px; }
  .lp-step-connector { display: none; }
  .lp-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-form-wrap { padding: 28px 20px; }
  .lp-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lp-stat { border-right: none; padding: 0; }
  .lp-foot-top { flex-direction: column; }
  .lp-foot-links { flex-wrap: wrap; gap: 24px; }
  .lp-foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .lp-nav { padding: 0 20px; }
  .lp-section { padding: 64px 24px; }
  .lp-stats { padding: 32px 24px; }
  .lp-util { padding: 6px 16px; font-size: 9px; }
  .lp-btn-ghost { display: none; }
}
