/* ============================================================
   landing.css — Der Die Deal With It  — Full Rewrite
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --gold:       #c9a800;  /* muted gold */
  --gold-light: #e6c200;
  --gold-glow:  rgba(201,168,0,.14);
  --red:        #b91c1c;  /* muted red */
  --navy:       #1e2535;
  --ink:        #1e2535;
  --ink-soft:   #3a4560;
  --muted:      #6b7592;
  --surface:    #e8ecf2;  /* slate panel */
  --surface-2:  #dfe4ed;
  --surface-3:  #d6dce8;
  --border:     rgba(30,37,53,.10);
  --border-med: rgba(30,37,53,.15);
  --shadow-sm:  0 1px 3px rgba(30,37,53,.06), 0 1px 2px rgba(30,37,53,.04);
  --shadow-md:  0 4px 16px rgba(30,37,53,.09), 0 2px 6px rgba(30,37,53,.05);
  --shadow-lg:  0 16px 48px rgba(30,37,53,.10), 0 4px 16px rgba(30,37,53,.06);
  --shadow-xl:  0 32px 80px rgba(30,37,53,.13), 0 8px 24px rgba(30,37,53,.07);
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --radius-pill:999px;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --text-muted: #6b7592;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: #dde1e9; color: var(--ink); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════════════════
   LANDING BODY THEME
   ══════════════════════════════════════════════════════════ */
.landing-body {
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(201,168,0,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at -10% 30%, rgba(185,28,28,.04) 0%, transparent 50%),
    #dde1e9;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
.ln-nav {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: 200;
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(216,221,231,.88);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,.3) inset;
  animation: navSlideIn .5s cubic-bezier(.16,1,.3,1) both;
}
@keyframes navSlideIn {
  from { transform: translateY(-24px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.ln-nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 0 20px;
}

/* Logo — wordmark only */
.ln-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-right: auto;
}
.ln-logo-badge {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.ln-wordmark {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  white-space: nowrap;
}
.ln-wordmark.sm {
  font-size: 15px;
}
.wm-der {
  color: var(--ink);
  background: var(--gold);
  padding: 1px 5px 2px;
  border-radius: 5px;
  margin-right: 1px;
}
.wm-die {
  color: var(--red);
  font-style: italic;
}
.wm-das {
  color: #fff;
  background: var(--red);
  padding: 1px 5px 2px;
  border-radius: 5px;
  margin-right: 1px;
}
.wm-rest {
  color: var(--ink);
  font-weight: 800;
}

/* Nav links */
.ln-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.ln-links a {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s, background .15s;
}
.ln-links a:hover {
  color: var(--ink);
  background: var(--surface-3);
}

/* Nav CTA */
.ln-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1200;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 4px 16px var(--gold-glow), inset 0 -1px 0 rgba(0,0,0,.08);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.ln-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--gold-glow), inset 0 -1px 0 rgba(0,0,0,.08);
}

.ln-mobile-menu {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: background .15s;
}
.ln-mobile-menu:hover { background: var(--surface-3); }
.ln-mobile-menu i { width: 20px; height: 20px; }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.ln-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 96px;
  position: relative;
  overflow: hidden;
}
.ln-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hbg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
}
.hbg-blob-1 {
  width: 700px; height: 700px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(245,179,1,.14), transparent 70%);
  animation: blobDrift1 14s ease-in-out infinite;
}
.hbg-blob-2 {
  width: 500px; height: 500px;
  bottom: 0; left: -100px;
  background: radial-gradient(circle, rgba(221,0,0,.07), transparent 70%);
  animation: blobDrift2 18s ease-in-out infinite;
}
@keyframes blobDrift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,30px)} }
@keyframes blobDrift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-20px)} }
.hbg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.028) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ln-hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 24px 40px;
}

/* Hero copy */
.ln-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(216,221,231,.9);
  border: 1px solid var(--border-med);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .02em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pillPulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pillPulse { 0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,.2)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,.1)} }

.ln-hero-h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 24px;
}
.h1-strike {
  text-decoration: line-through;
  color: #c9d1df;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
}
.h1-gold {
  color: var(--gold);
  position: relative;
}
.h2-gold { color: var(--gold); }

.ln-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
}
.ln-hero-sub strong { color: var(--ink-soft); font-weight: 600; }

.ln-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Buttons */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1200;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 8px 28px var(--gold-glow), inset 0 -2px 0 rgba(0,0,0,.1);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px var(--gold-glow), inset 0 -2px 0 rgba(0,0,0,.1);
}
.btn-hero-primary.btn-lg { font-size: 16px; padding: 16px 34px; }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: rgba(216,221,231,.8);
  border: 1px solid var(--border-med);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.btn-hero-ghost:hover {
  transform: translateY(-2px);
  background: #e8ecf2;
  box-shadow: var(--shadow-md);
}
.btn-hero-ghost.btn-lg { font-size: 16px; padding: 16px 34px; }

/* Trust pills */
.ln-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.trust-item i { width: 15px; height: 15px; color: #22c55e; }

/* Hero visual */
.ln-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floaters */
.hv-floater {
  position: absolute;
  background: rgba(232,236,242,.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 2;
}
.hv-floater-tl { top: -12px; left: -24px; animation: floatA 4s ease-in-out infinite; }
.hv-floater-br { bottom: -12px; right: -20px; animation: floatB 4.5s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
.hv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  flex-shrink: 0;
}

/* App mockup */
.hv-mockup {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  background: #e8ecf2;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: mockupFloat 7s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%,100%{ transform: translateY(0) rotateX(1deg) rotateY(-2deg); }
  50%    { transform: translateY(-18px) rotateX(-1deg) rotateY(2deg); }
}

.hvm-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.hvm-dots { display: flex; gap: 5px; }
.hvm-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hvm-dots span:nth-child(1){ background:#ff5f57; }
.hvm-dots span:nth-child(2){ background:#ffbd2e; }
.hvm-dots span:nth-child(3){ background:#28c840; }
.hvm-url {
  font-size: 11px;
  color: var(--muted);
  background: #dde1e9;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  flex: 1;
  text-align: center;
}

.hvm-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.hvm-greeting { font-size: 15px; font-weight: 700; color: var(--ink); }

.hvm-progress-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.hvm-pct { color: var(--gold); font-weight: 700; }
.hvm-bar {
  height: 7px;
  background: var(--surface-3);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.hvm-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: var(--radius-pill);
  transition: width 1s ease;
}

.hvm-modules { display: flex; flex-direction: column; gap: 8px; }
.hvm-mod {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 12px;
}
.hvm-mod i { width: 18px; height: 18px; flex-shrink: 0; }
.hvm-mod-done {
  background: color-mix(in srgb, #22c55e 8%, #dfe4ed);
  border-color: color-mix(in srgb, #22c55e 20%, var(--border));
}
.hvm-mod-done i { color: #16a34a; }
.hvm-mod-active {
  background: color-mix(in srgb, var(--gold) 10%, #dfe4ed);
  border-color: color-mix(in srgb, var(--gold) 30%, var(--border));
}
.hvm-mod-active i { color: var(--gold); }
.hvm-mod-locked {
  background: var(--surface-2);
  opacity: .6;
}
.hvm-mod-locked i { color: var(--muted); }
.hvm-mod-name { font-weight: 600; color: var(--ink); line-height: 1.3; }
.hvm-mod-meta { color: var(--muted); font-size: 10px; }
.hvm-score {
  margin-left: auto;
  color: #16a34a;
  font-weight: 700;
  font-size: 12px;
}
.hvm-status {
  margin-left: auto;
  background: var(--gold);
  color: #1a1200;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.hvm-chart-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hvm-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}
.hvc-bar {
  flex: 1;
  background: linear-gradient(0deg, var(--gold), var(--gold-light));
  border-radius: 3px 3px 0 0;
  opacity: .8;
}
.hvm-chart-legend {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  text-align: right;
}

/* Stats bar */
.ln-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 40px;
  text-align: center;
}
.stat-item strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat-item span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-med);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════════════════════════ */
.ln-section {
  padding: 112px 0;
}
.ln-section-alt {
  background:
    radial-gradient(ellipse 70% 50% at 100% 50%, rgba(245,179,1,.05), transparent),
    var(--surface-2);
}
.ln-section-label {
  text-align: center;
  margin-bottom: 64px;
}
.ln-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,179,1,.1);
  border: 1px solid rgba(245,179,1,.2);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.ln-section-label h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}
.ln-section-label p {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   DAILY GERMAN
   ══════════════════════════════════════════════════════════ */
.ln-section-daily {
  padding-top: 96px;
  background:
    radial-gradient(ellipse 60% 60% at 10% 10%, rgba(201,168,0,.05), transparent 55%),
    linear-gradient(180deg, rgba(232,236,242,.55), rgba(223,228,237,.4));
}
.ln-daily-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(300px, .92fr);
  gap: 24px;
  align-items: stretch;
}
.ln-daily-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border-med);
  background:
    linear-gradient(180deg, rgba(232,236,242,.96), rgba(223,228,237,.9));
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.25) inset;
  overflow: hidden;
}
.ln-daily-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,0,.12), transparent 68%);
  pointer-events: none;
}
.ln-daily-word-card::before {
  background: radial-gradient(circle, rgba(201,168,0,.16), transparent 68%);
}
.ln-daily-phrase-card::before {
  background: radial-gradient(circle, rgba(185,28,28,.12), transparent 68%);
}
.ln-reminder-card {
  background:
    radial-gradient(ellipse 70% 60% at 85% 0%, rgba(201,168,0,.14), transparent 58%),
    linear-gradient(180deg, #e8ecf2, #dbe1ea);
}
.ln-daily-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.ln-daily-kicker,
.ln-daily-meta {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ln-daily-kicker {
  color: var(--gold);
  background: rgba(245,179,1,.1);
  border: 1px solid rgba(245,179,1,.18);
}
.ln-daily-meta {
  color: var(--ink-soft);
  background: rgba(216,221,231,.92);
  border: 1px solid var(--border);
}
.ln-daily-word,
.ln-daily-phrase,
.ln-reminder-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 12px;
}
.ln-daily-translation {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}
.ln-daily-audio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -4px 0 18px;
}
.ln-daily-listen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-med);
  background: rgba(255,255,255,.34);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32);
  transition: transform .15s, border-color .15s, background .15s;
}
.ln-daily-listen:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.48);
  border-color: rgba(201,168,0,.36);
}
.ln-daily-listen i {
  width: 16px;
  height: 16px;
}
.ln-daily-example {
  margin-top: auto;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.36);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
.ln-daily-example strong {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.ln-daily-example p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 8px;
}
.ln-daily-example span,
.ln-daily-note,
.ln-reminder-copy,
.ln-reminder-status {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.ln-daily-note {
  margin-top: 18px;
}
.ln-reminder-copy {
  max-width: 30ch;
}
.ln-reminder-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}
.ln-reminder-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ln-reminder-field span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ln-reminder-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--border-med);
  background: rgba(255,255,255,.5);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32);
}
.ln-reminder-field input:focus {
  outline: none;
  border-color: rgba(201,168,0,.55);
  box-shadow: 0 0 0 3px rgba(201,168,0,.14);
}
.ln-reminder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 16px;
}
.ln-reminder-actions .btn-hero-primary,
.ln-reminder-actions .btn-hero-ghost {
  min-height: 48px;
}
#dailyReminderOffBtn {
  display: none;
}

/* ══════════════════════════════════════════════════════════
   WHY
   ══════════════════════════════════════════════════════════ */
.ln-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.ln-why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s cubic-bezier(.16,1,.3,1);
}
.ln-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ln-why-card-lg {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 40px;
}
.ln-why-card-lg h3 { font-size: 22px; grid-column: 2; }
.ln-why-card-lg p  { grid-column: 2; }
.ln-why-card-lg .lwc-tag { grid-column: 3; align-self: center; white-space: nowrap; }
.ln-why-card-lg .lwc-icon { grid-column: 1; }

.lwc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lwc-icon i { width: 24px; height: 24px; }
.lwc-icon-gold { background: rgba(245,179,1,.12); color: #a57a00; }
.lwc-icon-red  { background: rgba(221,0,0,.08);   color: #b91c1c; }
.lwc-icon-blue { background: rgba(59,130,246,.1); color: #2563eb; }
.lwc-icon-green{ background: rgba(34,197,94,.1);  color: #16a34a; }

.ln-why-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.ln-why-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.lwc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-3);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.ln-steps {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ln-step {
  display: grid;
  grid-template-columns: 56px 24px 1fr;
  gap: 0 20px;
  align-items: start;
}
.ln-step-num {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #1a1200;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(245,179,1,.3);
  letter-spacing: -.02em;
}
.ln-step-line {
  width: 2px;
  height: calc(100% - 56px);
  background: var(--border-med);
  margin: 0 auto;
  margin-top: 8px;
  align-self: stretch;
  min-height: 40px;
}
.ln-step-line-last { background: transparent; }
.ln-step-content {
  padding-bottom: 48px;
}
.ln-step-content:last-child { padding-bottom: 0; }
.ln-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #a57a00;
  background: rgba(245,179,1,.1);
  border: 1px solid rgba(245,179,1,.18);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  width: fit-content;
}
.ln-step-tag i { width: 13px; height: 13px; }
.ln-step-content h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ln-step-content p  { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   EXAM PREP
   ══════════════════════════════════════════════════════════ */
.ln-exam-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.ln-exam-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.ln-exam-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.ln-exam-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ln-exam-icon i { width: 24px; height: 24px; }
.lne-icon-yellow { background: rgba(245,179,1,.12); color: #a57a00; }
.lne-icon-blue   { background: rgba(59,130,246,.1); color: #2563eb; }
.lne-icon-green  { background: rgba(34,197,94,.1);  color: #16a34a; }
.lne-icon-red    { background: rgba(221,0,0,.08);   color: #b91c1c; }

.ln-exam-body { flex: 1; }
.ln-exam-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 6px;
}
.ln-exam-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ln-de {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-3);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.ln-exam-body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.ln-exam-meta {
  display: flex;
  gap: 12px;
}
.ln-exam-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface-3);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.ln-exam-meta i { width: 13px; height: 13px; color: var(--gold); }

.ln-exam-cta { text-align: center; }

/* ══════════════════════════════════════════════════════════
   MEME WALL
   ══════════════════════════════════════════════════════════ */
.ln-meme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ln-meme-card {
  background: #e8ecf2;
  border: 2px solid var(--border-med);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.ln-meme-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow-xl);
}
.lnm-top {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--ink);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.lnm-gif {
  flex: 1;
  height: 200px;
  overflow: hidden;
  background: var(--surface-3);
}
.lnm-gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lnm-bottom {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--ink);
  background: #e8ecf2;
  border-top: 1px solid var(--border);
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════ */
.ln-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ln-feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.ln-feat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.ln-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(245,179,1,.1);
  border: 1px solid rgba(245,179,1,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a57a00;
}
.ln-feat-icon i { width: 22px; height: 22px; }
.ln-feat h3 { font-size: 17px; font-weight: 700; color: var(--ink); }
.ln-feat p  { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.ln-cta-section {
  padding: 0 24px 80px;
}
.ln-cta-inner {
  background:
    radial-gradient(ellipse 70% 80% at 20% 0%, rgba(201,168,0,.08), transparent 50%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(185,28,28,.04), transparent 50%),
    linear-gradient(180deg, #e8ecf2, #dfe4ed);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.25) inset;
}
.ln-cta-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #a57a00;
  background: rgba(245,179,1,.1);
  border: 1px solid rgba(245,179,1,.2);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.ln-cta-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}
.ln-cta-inner p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.ln-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ln-cta-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.ln-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  padding: 40px 0;
}
.ln-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.ln-footer-badge {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.ln-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.ln-footer-brand em { font-style: normal; color: var(--gold); }
.ln-footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.ln-footer-links a {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  transition: color .15s, background .15s;
}
.ln-footer-links a:hover { color: var(--ink); background: var(--surface-3); }
.ln-footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* ── Shy float button ──────────────────────────────────────── */
.shy-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.shy-float.shy-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.shy-float.shy-gone {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.shy-bubble {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  padding: 8px 14px;
  border-radius: 12px 12px 2px 12px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.shy-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #dd0000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(245,158,11,.5), 0 2px 8px rgba(0,0,0,.12);
  transition: transform .2s, box-shadow .2s;
  animation: shy-pulse 3s ease-in-out infinite;
}
.shy-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(245,158,11,.65);
}
@keyframes shy-pulse {
  0%,100% { box-shadow: 0 4px 18px rgba(245,158,11,.5), 0 2px 8px rgba(0,0,0,.12); }
  50%     { box-shadow: 0 4px 28px rgba(245,158,11,.7), 0 2px 12px rgba(0,0,0,.14); }
}

/* ══════════════════════════════════════════════════════════
   AUTH PAGE  — ap-* design system
   ══════════════════════════════════════════════════════════ */
.hidden { display: none !important; }

.auth-body {
  font-family: var(--font);
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(201,168,0,.07), transparent 55%),
    radial-gradient(ellipse 50% 50% at 0% 80%, rgba(185,28,28,.04), transparent 50%),
    #d3d8e2;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Outer shell ─── */
.ap-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 480px 1fr;
}

/* ══ LEFT PANEL ════════════════════════════════════════════ */
.ap-left {
  background: linear-gradient(165deg, #0c1120 0%, #101828 60%, #0c1a0c 100%);
  color: #fff;
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.ap-left::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 110% -10%, rgba(245,179,1,.15), transparent 55%),
    radial-gradient(ellipse 60% 40% at -20% 100%, rgba(34,197,94,.06), transparent 50%);
  pointer-events: none;
}
.ap-left::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.06) 40%, transparent);
}

/* Back link */
.ap-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  letter-spacing: .02em;
  transition: color .15s;
  margin-bottom: 36px;
  position: relative;
}
.ap-back:hover { color: rgba(255,255,255,.7); }
.ap-back i { width: 14px; height: 14px; }

/* Wordmark on left panel */
.ap-wordmark {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 48px;
  position: relative;
  width: fit-content;
}
.ap-wordmark .wm-der {
  color: #1a1200;
  background: var(--gold);
  padding: 2px 7px 3px;
  border-radius: 6px;
}
.ap-wordmark .wm-die {
  color: #ff6b6b;
  font-style: italic;
}
.ap-wordmark .wm-das {
  color: #fff;
  background: #dd0000;
  padding: 2px 7px 3px;
  border-radius: 6px;
}
.ap-wordmark .wm-rest {
  color: rgba(255,255,255,.9);
  font-weight: 800;
}

/* Left body */
.ap-left-body { flex: 1; display: flex; flex-direction: column; gap: 28px; position: relative; }

.ap-headline {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: #fff;
}
.ap-headline-gold { color: var(--gold); }

.ap-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
}

/* Perks list */
.ap-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ap-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ap-perk-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.ap-perk-icon i { width: 17px; height: 17px; }
.ap-perk div { display: flex; flex-direction: column; gap: 2px; }
.ap-perk strong { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.85); }
.ap-perk span   { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.4; }

/* Quote block */
.ap-quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.38);
  position: relative;
}
.ap-quote-mark {
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
  opacity: .5;
  font-family: Georgia, serif;
  margin-right: 4px;
  vertical-align: -4px;
}
.ap-quote-flag { margin-left: 4px; }

/* Left footer chips */
.ap-left-foot {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
}
.ap-chip {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

/* ══ RIGHT PANEL ═══════════════════════════════════════════ */
.ap-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: transparent;
}
.ap-form-wrap {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card */
.ap-card {
  background: #e8ecf2;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

/* Card header */
.ap-card-head { margin-bottom: 20px; }
.ap-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #a57a00;
  background: rgba(245,179,1,.1);
  border: 1px solid rgba(245,179,1,.18);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.ap-card-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 4px;
}
.ap-card-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Trust row */
.ap-trust-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ap-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.ap-trust-pill i { width: 12px; height: 12px; color: #22c55e; }

/* Google Sign-In wrapper (legacy) */
.ap-google-wrap {
  display: flex;
  justify-content: center;
  margin: 4px 0 0;
}

/* Google section */
.ap-google-section {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.ap-google-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  margin: 0;
  align-self: flex-start;
}
.ap-google-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.ap-google-btn-wrap > div,
.ap-google-btn-wrap iframe {
  max-width: 100% !important;
}
.ap-google-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

/* ── PWA Install Banner ─────────────────────────────────────── */
.pwa-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--surface);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -6px 32px rgba(30,37,53,.14), 0 -1px 0 var(--border-med);
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  will-change: transform;
}
.pwa-banner.pwa-banner-visible {
  transform: translateY(0);
}
.pwa-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pwa-banner-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.pwa-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pwa-banner-text strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.pwa-banner-text span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pwa-btn-install {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(245,158,11,.35);
  transition: opacity .15s, transform .15s;
}
.pwa-btn-install:hover { opacity: .88; transform: translateY(-1px); }
.pwa-btn-dismiss {
  background: var(--surface-2);
  border: 1px solid var(--border-med);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.pwa-btn-dismiss:hover { background: var(--surface-3); color: var(--ink); }

/* ── Footer Install Button ──────────────────────────────────── */
.ln-footer-install-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1.5px solid var(--border-med);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.ln-footer-install-btn:hover {
  background: var(--surface-3);
  border-color: var(--gold);
  color: var(--ink);
}

/* Donate nav link + footer support link */
.ln-donate-link,
.ln-footer-links a[href="donate.html"] {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  color: #fff !important;
  border-radius: var(--radius-pill) !important;
  padding: 7px 16px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 0 12px rgba(245,158,11,.45), 0 2px 8px rgba(239,68,68,.3) !important;
  animation: donate-glow 2.5s ease-in-out infinite !important;
}
.ln-donate-link:hover,
.ln-footer-links a[href="donate.html"]:hover {
  opacity: .88;
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  box-shadow: 0 0 22px rgba(245,158,11,.65), 0 4px 14px rgba(239,68,68,.4) !important;
}
@keyframes donate-glow {
  0%,100% { box-shadow: 0 0 10px rgba(245,158,11,.4), 0 2px 8px rgba(239,68,68,.25); }
  50%      { box-shadow: 0 0 22px rgba(245,158,11,.7), 0 4px 14px rgba(239,68,68,.45); }
}

/* OR divider */
.ap-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 4px;
  color: var(--text-muted);
  font-size: 13px;
}
.ap-divider::before,
.ap-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Feedback info state */
.ap-feedback.info {
  display: block;
  background: color-mix(in srgb, #3b82f6 12%, var(--surface-2));
  border: 1px solid color-mix(in srgb, #3b82f6 30%, var(--border));
  color: #93c5fd;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
}

/* Tabs */
.ap-tabs {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.ap-tab {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  transition: background .18s, color .18s, box-shadow .18s;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.ap-tab.active {
  background: #e8ecf2;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* Feedback */
.ap-feedback {
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4;
}
.ap-feedback.ok  { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.ap-feedback.err { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* Form fields */
.ap-form { display: flex; flex-direction: column; gap: 0; }
.ap-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.ap-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: .01em;
}
.ap-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ap-input-wrap > i:first-child {
  position: absolute;
  left: 13px;
  width: 16px;
  height: 16px;
  color: #9ca3af;
  pointer-events: none;
  flex-shrink: 0;
}
.ap-input-wrap input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-med);
  background: #d6dce8;
  color: var(--ink);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.ap-input-wrap input:focus {
  border-color: var(--gold);
  background: #e8ecf2;
  box-shadow: 0 0 0 3px rgba(201,168,0,.14);
}
.ap-input-wrap input::placeholder { color: #c0c4cc; }
.ap-pw-wrap input { padding-right: 44px; }
.ap-pw-toggle {
  position: absolute;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color .15s, background .15s;
}
.ap-pw-toggle:hover { color: var(--ink); background: var(--surface-3); }
.ap-pw-toggle i { width: 15px; height: 15px; }
.ap-err {
  font-size: 11px;
  color: #dc2626;
  min-height: 14px;
  line-height: 1.3;
}

/* Submit button */
.ap-submit {
  width: 100%;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1200;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  box-shadow: 0 6px 20px rgba(245,179,1,.28), inset 0 -2px 0 rgba(0,0,0,.1);
  transition: transform .15s, box-shadow .15s;
  margin-top: 4px;
}
.ap-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245,179,1,.32), inset 0 -2px 0 rgba(0,0,0,.1);
}
.ap-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Switch hint */
.ap-switch-hint {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}
.ap-switch-hint a { color: #a57a00; font-weight: 600; }
.ap-switch-hint a:hover { text-decoration: underline; }

/* Legal */
.ap-legal {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 20px;
  line-height: 1.5;
}

/* Mobile back */
.ap-mobile-back {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  justify-content: center;
  transition: color .15s;
}
.ap-mobile-back:hover { color: var(--ink); }
.ap-mobile-back i { width: 14px; height: 14px; }

/* ── Auth responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .ap-wrap { grid-template-columns: 380px 1fr; }
  .ap-left { padding: 40px 36px; }
  .ap-headline { font-size: 26px; }
}

@media (max-width: 700px) {
  .ap-wrap { grid-template-columns: 1fr; }
  .ap-left { display: none; }
  .ap-right { padding: 32px 20px; align-items: flex-start; }
  .ap-form-wrap { max-width: 100%; }
  .ap-mobile-back { display: flex; }
  .ap-card { padding: 28px 24px; }
  .ap-trust-row { display: grid; grid-template-columns: 1fr; }
  .ap-google-btn-wrap { overflow: hidden; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ln-why-card-lg {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
  }
  .ln-why-card-lg .lwc-tag { grid-column: 2; }
}

@media (max-width: 960px) {
  .ln-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 24px;
  }
  .ln-hero-visual { order: -1; }
  .hv-mockup { max-width: 480px; margin: 0 auto; }
  .hv-floater-tl { top: -8px; left: -8px; }
  .hv-floater-br { bottom: -8px; right: -8px; }
  .ln-hero-h1 { font-size: clamp(36px, 8vw, 56px); }
  .ln-daily-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ln-reminder-card {
    grid-column: span 2;
  }
  .ln-why-grid { grid-template-columns: 1fr 1fr; }
  .ln-why-card-lg { grid-column: span 2; grid-template-columns: auto 1fr; }
  .ln-why-card-lg .lwc-tag { grid-column: 2; }
  .ln-stats-bar { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 20px; }
  .ln-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ln-meme-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ln-nav { top: 10px; left: 10px; right: 10px; }
  .ln-nav-inner { padding: 0 14px; }
  .ln-links { display: none; }
  .ln-mobile-menu { display: flex; }
  .ln-hero { padding-top: 80px; }
  .ln-section { padding: 72px 0; }
  .dn-nav-inner,
  .dn-nav-right { flex-wrap: wrap; }
  .ln-daily-grid { grid-template-columns: 1fr; }
  .ln-reminder-card { grid-column: auto; }
  .ln-reminder-time-grid { grid-template-columns: 1fr; }
  .ln-why-grid { grid-template-columns: 1fr; }
  .ln-why-card-lg { grid-column: 1; grid-template-columns: auto 1fr; }
  .ln-exam-grid { grid-template-columns: 1fr; }
  .ln-steps { padding: 0 8px; }
  .ln-step { grid-template-columns: 48px 20px 1fr; gap: 0 12px; }
  .ln-step-num { width: 48px; height: 48px; font-size: 15px; }
  .ln-section-label h2 { font-size: clamp(26px, 7vw, 40px); }
  .ln-cta-inner { padding: 56px 24px; }
  .ln-cta-inner h2 { font-size: clamp(24px, 6vw, 38px); }
}

@media (max-width: 560px) {
  .ln-features-grid { grid-template-columns: 1fr; }
  .ln-meme-grid { grid-template-columns: 1fr; }
  .ln-hero-actions { flex-direction: column; align-items: flex-start; }
  .ln-hero-trust { flex-direction: column; gap: 10px; }
  .ln-daily-card { padding: 22px; border-radius: 24px; }
  .ln-daily-card-top { align-items: flex-start; }
  .ln-reminder-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ln-daily-listen {
    width: 100%;
    justify-content: center;
  }
  .ap-card { padding: 24px 18px; border-radius: 24px; }
  .ap-tabs { width: 100%; }
  .stat-item { min-width: 40%; }
  .landing-body .auth-page { grid-template-columns: 1fr; }
  .landing-body .auth-left { padding: 40px 24px; display: none; }
  .landing-body .auth-right { padding: 24px; align-items: flex-start; }
}
