/* ===================================================================
   Erase Debt SA — Landing pages stylesheet (V2)
   Production stylesheet for /landing/*.html
   Pairs with: /assets/js/landing/landing-core.js
                /assets/js/config/runtime-config.js
   =================================================================== */

:root {
  /* Brand */
  --brand-blue:        #1F86C0;
  --brand-blue-dk:     #15577F;
  --brand-blue-ink:    #0A2A45;
  --brand-blue-soft:   rgba(31,134,192,.10);
  --brand-blue-glow:   rgba(31,134,192,.18);

  /* SA flag */
  --sa-red:    #E03C31;
  --sa-yellow: #FFB81C;
  --sa-green:  #007749;

  /* Service brand colours */
  --payfast:    #FF6F00;
  --payfast-dk: #D85B00;
  --whatsapp:   #25D366;
  --whatsapp-dk:#1FB955;

  /* Surface */
  --bg-cream-1: #FAF7F0;
  --bg-cream-2: #F1ECDF;
  --card:       #FFFFFF;
  --card-tint:  #FBFAF6;

  /* Lines */
  --line:        #E8E2D2;
  --line-subtle: #F0EAD9;
  --line-strong: #D6CFBF;

  /* Ink */
  --ink:      #0A1F33;
  --ink-soft: #475569;
  --ink-mute: #8A95A8;

  /* Status accent — overridden per status modifier below */
  --accent:      var(--brand-blue);
  --accent-dk:   var(--brand-blue-dk);
  --accent-soft: var(--brand-blue-soft);
  --accent-glow: var(--brand-blue-glow);

  /* Geometry */
  --radius-lg: 22px;
  --radius:    16px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* Shadows */
  --shadow-soft:    0 1px 2px rgba(10,31,51,.04), 0 4px 12px rgba(10,31,51,.05);
  --shadow-card:    0 1px 0 rgba(10,31,51,.03), 0 2px 6px rgba(10,31,51,.04), 0 18px 40px rgba(10,31,51,.07);
  --shadow-card-hi: 0 1px 0 rgba(10,31,51,.04), 0 4px 10px rgba(10,31,51,.06), 0 28px 60px rgba(10,31,51,.10);
  --shadow-btn:     0 4px 14px rgba(31,134,192,.30), 0 1px 2px rgba(10,31,51,.10);
  --shadow-payfast: 0 4px 14px rgba(255,111,0,.32),  0 1px 2px rgba(10,31,51,.10);
  --shadow-whatsapp:0 4px 14px rgba(37,211,102,.30), 0 1px 2px rgba(10,31,51,.10);

  /* Type */
  --font-serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-sans:  'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================ Status accent themes */
body[data-status="success"] {
  --accent: #047857; --accent-dk: #035E45;
  --accent-soft: rgba(4,120,87,.10); --accent-glow: rgba(4,120,87,.18);
}
body[data-status="danger"], body[data-status="failed"] {
  --accent: #C13B36; --accent-dk: #962D29;
  --accent-soft: rgba(193,59,54,.10); --accent-glow: rgba(193,59,54,.18);
}
body[data-status="urgent"] {
  --accent: #8E1F1B; --accent-dk: #6E1714;
  --accent-soft: rgba(142,31,27,.10); --accent-glow: rgba(142,31,27,.18);
}
body[data-status="warning"] {
  --accent: #B96A00; --accent-dk: #8E5100;
  --accent-soft: rgba(185,106,0,.10); --accent-glow: rgba(185,106,0,.18);
}
body[data-status="info"] {
  --accent: var(--brand-blue); --accent-dk: var(--brand-blue-dk);
  --accent-soft: var(--brand-blue-soft); --accent-glow: var(--brand-blue-glow);
}

/* ============================================ Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(900px 520px at 110% -10%, var(--accent-glow), transparent 60%),
    radial-gradient(900px 520px at -10% 6%, rgba(255,184,28,.10), transparent 55%),
    linear-gradient(180deg, var(--bg-cream-1) 0%, var(--bg-cream-2) 100%);
  background-attachment: fixed;
  font-feature-settings: "ss01", "cv11";
}

/* Subtle paper grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.10 0 0 0 0 0.16 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .55;
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
[hidden] { display: none !important; }

/* ============================================ Shell */
.lp-shell { max-width: 600px; margin: 0 auto; padding: 0 0 32px; }

.lp-loading {
  text-align: center; padding: 64px 24px;
  color: var(--ink-mute); font-weight: 600;
}

/* ============================================ Header */
.lp-header {
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.lp-logo { height: 42px; width: auto; flex: 0 0 auto; }
.lp-header-meta {
  font-size: 10.5px; line-height: 1.35;
  color: var(--ink-mute);
  text-align: right; font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.lp-header-meta span { color: var(--brand-blue); }

/* ============================================ Flag stripe */
.lp-flag-stripe { display: flex; height: 4px; width: 100%; }
.lp-flag-stripe::before,
.lp-flag-stripe::after,
.lp-flag-stripe span { content: ""; flex: 1; height: 100%; display: block; }
.lp-flag-stripe::before { background: var(--sa-red); }
.lp-flag-stripe span    { background: var(--sa-yellow); }
.lp-flag-stripe::after  { background: var(--sa-green); }

/* ============================================ Body */
.lp-body { padding: 28px 20px 0; }

/* ============================================ Status badge */
.lp-status {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 24px auto 0; padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--accent-soft);
  box-shadow: 0 2px 8px rgba(10,31,51,.06);
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent);
}
.lp-status-wrap { text-align: center; padding: 0 20px; }
.lp-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: lp-pulse 1.8s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%,100% { box-shadow: 0 0 0 4px var(--accent-soft); }
  50%     { box-shadow: 0 0 0 7px transparent; }
}

/* ============================================ Hero (icon + h1 + sub) */
.lp-hero {
  text-align: center;
  padding: 18px 4px 8px;
}

.lp-status-icon {
  --size: 96px;
  width: var(--size); height: var(--size);
  margin: 0 auto 18px;
  position: relative;
  display: grid; place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.95), rgba(255,255,255,.4) 60%, rgba(255,255,255,0) 70%),
    linear-gradient(160deg, var(--accent) 0%, var(--accent) 55%, var(--accent-dk) 100%);
  color: #fff;
  box-shadow:
    0 0 0 6px var(--accent-soft),
    0 16px 32px rgba(10,31,51,.18),
    inset 0 -6px 14px rgba(0,0,0,.12);
}
.lp-status-icon::after {
  content: "";
  position: absolute; inset: -22px;
  border-radius: 50%;
  border: 1px dashed color-mix(in srgb, var(--accent) 35%, transparent);
  opacity: .5;
}
.lp-status-icon svg { width: 44px; height: 44px; stroke: currentColor; fill: none; stroke-width: 2.2; }

.lp-h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 6.5vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 4px auto 12px;
  max-width: 22ch;
  font-feature-settings: "ss01", "ss02";
}
.lp-h1 .lp-name {
  font-style: italic; font-weight: 500;
  color: var(--accent);
  font-feature-settings: "ss01";
}

.lp-sub {
  font-size: 16px; color: var(--ink-soft);
  max-width: 44ch; margin: 0 auto;
}
.lp-sub strong { color: var(--ink); }

/* ============================================ Cards */
.lp-card {
  position: relative;
  background:
    linear-gradient(180deg, #fff 0%, var(--card-tint) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
  margin: 18px 0;
}

.lp-card-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.lp-card-title::before {
  content: ""; width: 18px; height: 1px;
  background: var(--accent);
}

.lp-card p { margin-bottom: 10px; color: var(--ink-soft); }
.lp-card p:last-child { margin-bottom: 0; }
.lp-card p strong { color: var(--ink); }

/* ============================================ Data rows (dl/dt/dd) */
.lp-card dl { margin: 0; }
.lp-card-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.lp-card-row:first-child { padding-top: 0; }
.lp-card-row:last-child  { padding-bottom: 0; border-bottom: 0; }
.lp-card-row dt {
  color: var(--ink-soft);
  font-size: 14px; font-weight: 600;
}
.lp-card-row dd {
  color: var(--ink);
  font-size: 15px; font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
  margin: 0;
}

/* ============================================ Pills */
.lp-pill {
  display: inline-block; padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 800;
  letter-spacing: .02em;
  background: var(--accent-soft); color: var(--accent);
}
.lp-pill--success { background: rgba(4,120,87,.10);  color: #047857; }
.lp-pill--warn    { background: rgba(185,106,0,.10); color: #B96A00; }
.lp-pill--danger  { background: rgba(193,59,54,.10); color: #C13B36; }
.lp-pill--info    { background: var(--brand-blue-soft); color: var(--brand-blue); }

/* ============================================ Amount block */
.lp-amount-block {
  text-align: center;
  padding: 8px 0 12px;
}
.lp-amount-label {
  color: var(--ink-mute);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 6px;
}
.lp-amount {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--font-serif);
  font-size: clamp(40px, 10vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.lp-amount .lp-cur {
  font-family: var(--font-sans);
  font-size: .42em; font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: .04em;
  transform: translateY(-.6em);
}

/* ============================================ Steps */
.lp-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin: 18px 0;
  overflow: hidden;
}
.lp-steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 18px 16px 60px;
  border-bottom: 1px dashed var(--line);
  font-size: 15px; line-height: 1.5;
  color: var(--ink-soft);
}
.lp-steps li:last-child { border-bottom: 0; }
.lp-steps li::before {
  content: counter(step);
  position: absolute; left: 16px; top: 16px;
  width: 30px; height: 30px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-sans);
  font-weight: 800; font-size: 13px;
  box-shadow: 0 2px 6px var(--accent-soft);
}
.lp-steps li strong { color: var(--ink); }

/* ============================================ Callouts (compliance / warning / legal) */
.lp-callout {
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14px; line-height: 1.6;
  margin: 18px 0;
  border: 1px solid var(--line-subtle);
  border-left-width: 4px;
}
.lp-callout p + p { margin-top: 8px; }
.lp-callout strong { font-weight: 800; }

.lp-callout--warning {
  background: #FFF9E8;
  border-color: #F0DCA0;
  border-left-color: var(--sa-yellow);
  color: #5C4A10;
}
.lp-callout--warning strong { color: #3D2F00; }

.lp-callout--legal {
  background: #EEF4FA;
  border-color: #C7DBEC;
  border-left-color: var(--brand-blue);
  color: #1A3B5C;
}
.lp-callout--legal strong { color: var(--brand-blue-ink); }
.lp-callout--legal ul { margin: 8px 0 0; padding-left: 20px; }
.lp-callout--legal li { margin-bottom: 4px; }

.lp-callout--danger {
  background: #FDF2F2;
  border-color: #F1C4C2;
  border-left-color: #C13B36;
  color: #6E1714;
}
.lp-callout--danger strong { color: #4A0F0D; }

/* ============================================ CTAs */
.lp-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 800;
  letter-spacing: -.005em;
  cursor: pointer; border: 1px solid transparent;
  margin-top: 10px;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.lp-cta:hover { text-decoration: none; }
.lp-cta:active { transform: translateY(1px); }
.lp-cta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; flex: 0 0 auto; }

.lp-cta--primary {
  background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-dk) 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.lp-cta--primary:hover { background: var(--brand-blue-dk); }

.lp-cta--payfast {
  background: linear-gradient(180deg, var(--payfast) 0%, var(--payfast-dk) 100%);
  color: #fff;
  box-shadow: var(--shadow-payfast);
}
.lp-cta--payfast:hover { background: var(--payfast-dk); }
.lp-cta--payfast .lp-cta-sub {
  display: block; font-size: 11px; font-weight: 700;
  opacity: .92; letter-spacing: .04em;
}

.lp-cta--whatsapp {
  background: linear-gradient(180deg, var(--whatsapp) 0%, var(--whatsapp-dk) 100%);
  color: #fff;
  box-shadow: var(--shadow-whatsapp);
}
.lp-cta--whatsapp:hover { background: var(--whatsapp-dk); }

.lp-cta--secondary {
  background: #fff; color: var(--brand-blue);
  border-color: var(--brand-blue);
}
.lp-cta--secondary:hover { background: var(--brand-blue-soft); }

.lp-cta--ghost {
  background: transparent; color: var(--ink-soft);
  border-color: var(--line-strong);
}
.lp-cta--ghost:hover { background: rgba(0,0,0,.02); border-color: var(--ink-mute); }

/* CTA divider — "or" */
.lp-or {
  display: flex; align-items: center; gap: 12px;
  text-align: center; margin: 22px 0 10px;
  color: var(--ink-mute);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
}
.lp-or::before, .lp-or::after {
  content: ""; flex: 1; height: 1px;
  background: var(--line);
}

/* ============================================ EFT card — looks like a banking card */
.lp-eft {
  background:
    linear-gradient(135deg, #FCFBF7 0%, #F4EFE3 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px;
  margin: 18px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.lp-eft::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 140px; height: 140px;
  background:
    radial-gradient(circle at 30% 30%, var(--brand-blue-soft), transparent 65%);
  pointer-events: none;
}
.lp-eft-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.lp-eft-head .lp-card-title { margin: 0; color: var(--brand-blue); }
.lp-eft-chip {
  width: 32px; height: 24px;
  background: linear-gradient(135deg, #E5C97A, #C9A646);
  border-radius: 4px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 1px 2px rgba(0,0,0,.1);
}
.lp-eft-chip::after {
  content: "";
  position: absolute; inset: 4px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 2px;
}

.lp-eft dl { margin: 0; }
.lp-eft .lp-card-row { border-bottom-color: rgba(0,0,0,.06); }
.lp-eft .lp-card-row dd { font-family: var(--font-sans); }
.lp-eft .lp-account-num {
  letter-spacing: .1em;
  font-variant-numeric: tabular-nums;
}

.lp-eft-copy {
  background: none; border: 0; cursor: pointer;
  color: var(--brand-blue);
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  padding: 4px 8px; margin-left: 6px;
  border-radius: 6px;
  transition: background .15s;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lp-eft-copy:hover { background: var(--brand-blue-soft); }
.lp-eft-copy.copied { color: #047857; background: rgba(4,120,87,.10); }

.lp-eft-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,.10);
  font-size: 13px; color: var(--ink-soft);
}
.lp-eft-foot strong { color: var(--ink); }

/* ============================================ Form */
.lp-form-group { margin-bottom: 16px; }
.lp-form-group > label {
  display: block;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.lp-required { color: var(--sa-red); }
.lp-form-control {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
}
.lp-form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px var(--brand-blue-soft);
}
textarea.lp-form-control { resize: vertical; min-height: 100px; font-family: inherit; }
select.lp-form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.lp-helper { font-size: 12px; color: var(--ink-mute); margin-top: 5px; }
.lp-form-error {
  display: none;
  font-size: 13px; color: #C13B36;
  margin-top: 6px; font-weight: 700;
}
.lp-form-group.is-invalid .lp-form-control {
  border-color: #C13B36;
  box-shadow: 0 0 0 3px rgba(193,59,54,.12);
}
.lp-form-group.is-invalid .lp-form-error { display: block; }

/* ============================================ Intake success state */
.lp-success-state { text-align: center; padding: 8px 4px; }
.lp-ref-block {
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: var(--radius);
  padding: 20px;
  margin: 22px 0;
}
.lp-ref-label {
  display: block;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-mute); margin-bottom: 6px;
}
.lp-ref-number {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 500;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: .03em;
}

/* ============================================ Trust + footer */
.lp-trust {
  text-align: center;
  margin-top: 28px; padding: 18px 18px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line-subtle);
}
.lp-trust > strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px; color: var(--ink);
  margin-bottom: 4px;
}
.lp-trust > div:not(.lp-trust-badges) {
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 12px;
}
.lp-trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px;
}
.lp-trust-badges span {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11px; font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.lp-trust-badges span span { color: var(--brand-blue); }

.lp-footer {
  margin-top: 24px;
  background: linear-gradient(180deg, #0E2740 0%, #08182A 100%);
  color: #C7D2E0;
  padding: 28px 22px 30px;
  border-radius: var(--radius);
  font-size: 13px; line-height: 1.6;
}
.lp-footer-cols {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  margin-bottom: 16px;
}
.lp-footer strong {
  display: block; color: #fff;
  font-weight: 800; margin-bottom: 6px;
  font-size: 13px;
  text-transform: uppercase; letter-spacing: .06em;
}
.lp-footer span { display: block; }
.lp-footer a { color: #fff; font-weight: 600; }
.lp-footer small {
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #8B9BB3;
  font-size: 11.5px; line-height: 1.6;
}
.lp-footer small a { color: #B9CEE6; text-decoration: underline; }

/* ============================================ Error state */
.lp-error {
  text-align: center;
  padding: 48px 24px;
  color: var(--ink-soft);
}
.lp-error strong { display: block; color: var(--ink); font-size: 18px; margin-bottom: 6px; }

/* ============================================ Demo banner */
.lp-demo-banner {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(90deg, #FFB81C 0%, #FFD86E 50%, #FFB81C 100%);
  color: #3D2F00;
  text-align: center;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: .02em;
  border-bottom: 1px solid #C99A18;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.lp-demo-banner strong { font-weight: 800; letter-spacing: .08em; }
.lp-demo-banner code {
  background: rgba(0,0,0,.10);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ============================================ Animations */
@media (prefers-reduced-motion: no-preference) {
  .lp-body > *, .lp-trust, .lp-footer {
    animation: lp-rise .5s ease-out both;
  }
  .lp-body > *:nth-child(1) { animation-delay: 0s; }
  .lp-body > *:nth-child(2) { animation-delay: .05s; }
  .lp-body > *:nth-child(3) { animation-delay: .10s; }
  .lp-body > *:nth-child(4) { animation-delay: .15s; }
  .lp-body > *:nth-child(5) { animation-delay: .20s; }
  .lp-body > *:nth-child(6) { animation-delay: .25s; }
  .lp-body > *:nth-child(7) { animation-delay: .30s; }
  .lp-body > *:nth-child(8) { animation-delay: .35s; }
  .lp-trust  { animation-delay: .40s; }
  .lp-footer { animation-delay: .45s; }

  @keyframes lp-rise {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ============================================ Desktop ≥ 640px */
@media (min-width: 640px) {
  .lp-shell { padding-bottom: 40px; }
  .lp-body { padding: 36px 28px 0; }
  .lp-h1 { font-size: 36px; }
  .lp-status-icon { --size: 108px; }
  .lp-status-icon svg { width: 50px; height: 50px; }
  .lp-amount { font-size: 56px; }
  .lp-footer-cols { grid-template-columns: 1fr 1fr; }
}
