/* =======================================================================
   DanaLaju — site styles
   Warm + friendly fintech. Cream, peach, deep ink. Mobile-first.
   ===================================================================== */

/* ---------- Tokens -------------------------------------------------- */
:root {
  --peach: #ED8B3A;
  --peach-deep: #C76A1F;
  --peach-darker: #8C4912;
  --peach-soft: #FBE5CC;
  --peach-tint: #FCEFDC;

  --cream: #FAF7F2;
  --cream-deep: #F2ECDE;
  --cream-line: #E7DFCB;

  --ink: #1B1F1C;
  --ink-soft: #4A524C;
  --ink-mute: #7C8580;

  --amber: #B07300;
  --amber-bg: #FBF0D6;
  --info: #2C56A8;
  --info-bg: #E4ECFA;

  --white: #FFFFFF;
  --shadow-card: 0 1px 0 rgba(27,31,28,.04), 0 8px 24px -12px rgba(27,31,28,.10);
  --shadow-pop: 0 12px 32px -16px rgba(199,106,31,.35), 0 1px 0 rgba(27,31,28,.04);
  --radius-card: 18px;
  --radius-pill: 999px;
  --radius-sm: 10px;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ---------- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
  text-wrap: pretty;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--peach-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Paper grain texture overlay (applied to body via pseudo) */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0.32 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Type ---------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}
.kicker {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--peach-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kicker::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--peach-deep);
  border-radius: 2px;
}
.eyebrow { color: var(--ink-soft); font-size: 14px; letter-spacing: .04em; }
p { margin: 0; color: var(--ink-soft); }

/* Container */
.container { width: 100%; margin: 0 auto; padding: 0 20px; max-width: 1240px; }
@media (min-width: 900px) { .container { padding: 0 40px; } }

/* ---------- Header -------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,242,.88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-stuck {
  box-shadow: 0 1px 0 var(--cream-line), 0 6px 20px -16px rgba(27,31,28,.18);
}
.site-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--peach) 0%, var(--peach-deep) 100%);
  color: #fff;
  font-weight: 800;
  display: grid; place-items: center;
  font-size: 18px;
  letter-spacing: -.02em;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.10), 0 1px 0 rgba(255,255,255,.45);
}
.nav-links {
  display: none;
  gap: 28px;
  margin-left: 24px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.header-spacer { flex: 1; }
.lang-toggle {
  display: inline-flex;
  background: var(--cream-deep);
  border-radius: var(--radius-pill);
  padding: 3px;
  border: 1px solid var(--cream-line);
}
.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
  transition: background .18s, color .18s;
}
.lang-toggle button.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(27,31,28,.05), 0 2px 6px -2px rgba(27,31,28,.10);
}
.header-cta {
  display: none;
  background: var(--peach);
  color: #fff;
  border: 0;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.005em;
  transition: background .15s, transform .1s;
}
.header-cta:hover { background: var(--peach-deep); }
.header-cta:active { transform: translateY(1px); }

.burger {
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  border-radius: 10px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  padding: 0;
}
.burger svg { width: 20px; height: 20px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; align-items: center; gap: 6px; }
  .burger { display: none; }
}

/* Mobile drawer */
.drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(27,31,28,.32);
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
  z-index: 60;
  backdrop-filter: blur(2px);
}
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 84%; max-width: 360px;
  background: var(--cream);
  z-index: 70;
  transform: translateX(100%);
  transition: transform .25s cubic-bezier(.4,.0,.2,1);
  box-shadow: -20px 0 50px -20px rgba(27,31,28,.20);
  display: flex; flex-direction: column;
  padding: 24px 24px 32px;
}
.drawer.is-open { transform: translateX(0); }
.drawer h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 8px 0 12px;
}
.drawer a {
  display: block;
  font-size: 19px;
  font-weight: 600;
  padding: 14px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--cream-line);
}
.drawer a:last-child { border-bottom: 0; }
.drawer .drawer-cta {
  margin-top: 24px;
  background: var(--peach);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: var(--radius-pill);
  border-bottom: 0;
  box-shadow: var(--shadow-pop);
}
@media (min-width: 900px) { .drawer, .drawer-scrim { display: none; } }

/* ---------- Hero ---------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 8px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.hero-copy { padding-top: 8px; }
.licence-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-pill);
  padding: 7px 14px 7px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 1px 0 rgba(27,31,28,.03);
}
.licence-badge .seal {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--peach-deep));
  color: #fff;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.hero h1 {
  font-size: clamp(40px, 9vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 18px 0 14px;
}
.hero h1 .amount {
  display: block;
  color: var(--peach-deep);
  font-feature-settings: 'tnum';
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 22px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform .12s, box-shadow .18s, background .15s;
  min-height: 52px;
}
.cta-primary {
  background: var(--peach);
  color: #fff;
  box-shadow: var(--shadow-pop);
}
.cta-primary:hover { background: var(--peach-deep); transform: translateY(-1px); }
.cta-primary:active { transform: translateY(1px); }
.cta-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--cream-line);
  box-shadow: 0 1px 0 rgba(27,31,28,.04);
}
.cta-secondary:hover { border-color: var(--ink); }
.cta .store-icon { width: 20px; height: 20px; }
.cta .store-label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.cta .store-label small { font-size: 10.5px; opacity: .8; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.cta .store-label span { font-size: 15px; font-weight: 700; letter-spacing: -.005em; }
.hero-micro {
  font-size: 13px;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-micro .dot { width: 6px; height: 6px; border-radius: 50%; background: #5BA866; }

.hero-art {
  position: relative;
  aspect-ratio: 4/4;
  border-radius: 28px;
  background:
    radial-gradient(120% 80% at 30% 30%, rgba(237,139,58,.22), transparent 60%),
    linear-gradient(170deg, var(--peach-tint), var(--cream-deep));
  border: 1px solid var(--cream-line);
  overflow: hidden;
}
.hero-art .selly-slot {
  position: absolute; inset: 8%;
}
.hero-art .floater {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 12px 26px -16px rgba(27,31,28,.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-art .floater small { color: var(--ink-mute); font-weight: 500; font-size: 11px; display: block; }
.hero-art .floater .tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #E6F5EA;
  color: #2F7B43;
  display: grid; place-items: center;
}
.hero-art .float-1 { top: 14px; left: 14px; }
.hero-art .float-2 { bottom: 18px; right: 14px; }

@media (min-width: 900px) {
  .hero { padding: 56px 0 40px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .hero-art { aspect-ratio: 1/1; }
}

/* Trust ribbon */
.ribbon {
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
  background: var(--white);
  margin-top: 40px;
}
.ribbon-track {
  display: flex;
  gap: 28px;
  padding: 18px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.ribbon-track::-webkit-scrollbar { display: none; }
.ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}
.ribbon-item svg { width: 18px; height: 18px; color: var(--peach-deep); }

@media (min-width: 900px) {
  .ribbon-track { justify-content: space-between; overflow: visible; padding: 22px 0; }
  .ribbon-item { font-size: 15px; }
}

/* ---------- Section scaffolding ------------------------------------- */
section { padding: 64px 0; position: relative; }
@media (min-width: 900px) { section { padding: 96px 0; } }

.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-top: 14px;
}
.section-head p { font-size: 17px; margin-top: 16px; max-width: 620px; }

/* ---------- How it works ------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.step {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-card);
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--peach-tint);
  color: var(--peach-darker);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.02em;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { font-size: 15px; line-height: 1.55; }
.step-art {
  grid-column: 1 / -1;
  margin-top: 14px;
  background: linear-gradient(160deg, var(--cream-deep), var(--cream));
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

@media (min-width: 720px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step { grid-template-columns: 1fr; padding: 24px; }
  .step-art { grid-column: 1; margin: 0 0 18px; aspect-ratio: 4/3; }
  .step-num { margin-bottom: 4px; }
}

/* ---------- Why DanaLaju ------------------------------------------- */
.why { background: var(--cream-deep); border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.rtb-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-card);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.rtb-card.is-feature {
  background: var(--peach-darker);
  color: #fff;
  border-color: var(--peach-darker);
}
.rtb-card.is-feature h3 { color: #fff; }
.rtb-card.is-feature p { color: rgba(255,255,255,.74); }
.rtb-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--peach-tint);
  color: var(--peach-darker);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.rtb-card.is-feature .rtb-icon { background: rgba(255,255,255,.10); color: var(--peach); }
.rtb-icon svg { width: 22px; height: 22px; }
.rtb-card h3 { font-size: 20px; margin-bottom: 8px; }
.rtb-card p { font-size: 15px; line-height: 1.55; }
.rtb-card .licence-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--peach-tint);
  color: var(--peach-darker);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.rtb-card.is-feature .licence-chip { background: rgba(237,139,58,.18); color: var(--peach); }

@media (min-width: 720px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 1100px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Eligibility -------------------------------------------- */
.elig-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.elig-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.elig-list li {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  padding: 14px 16px 14px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--ink);
}
.elig-check {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--peach-tint);
  color: var(--peach-darker);
  display: grid; place-items: center;
  flex: 0 0 28px;
}
.elig-check svg { width: 16px; height: 16px; }
.elig-side {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-card);
  padding: 24px;
}
.elig-side h3 { font-size: 22px; margin-bottom: 12px; }
.elig-side .selly-mini {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream-deep);
  border-radius: 14px;
  margin-bottom: 18px;
}
.elig-cta {
  background: var(--peach);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 900px) {
  .elig-wrap { grid-template-columns: 1.4fr .9fr; gap: 36px; }
}

/* ---------- Transparency ------------------------------------------- */
.trans {
  background: var(--peach-soft);
  color: var(--ink);
}
.trans h2, .trans .kicker { color: var(--ink); }
.trans .kicker { color: var(--peach-deep); }
.trans .kicker::before { background: var(--peach-deep); }
.trans .section-head p { color: var(--ink-soft); }
.trans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.trans-card {
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(140,73,18,.16);
  border-radius: var(--radius-card);
  padding: 24px;
}
.trans-card h3 { color: var(--ink); font-size: 19px; margin-bottom: 8px; }
.trans-card p { color: var(--ink-soft); font-size: 15px; }
.trans-card .trans-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(237,139,58,.20);
  color: var(--peach-deep);
  display: grid; place-items: center;
  margin-bottom: 16px;
}

.late-notice {
  border: 1px solid rgba(140,73,18,.30);
  background: rgba(255,255,255,.55);
  border-radius: var(--radius-card);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.late-notice .late-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--peach-darker);
}
.late-notice h3 { color: var(--ink); font-size: 18px; margin: 0; }
.late-notice p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

@media (min-width: 900px) {
  .trans-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .late-notice { grid-template-columns: 220px 1fr; align-items: start; gap: 24px; padding: 26px 28px; }
  .late-notice .late-label { padding-top: 4px; }
}

/* ---------- FAQ ----------------------------------------------------- */
.faq-list {
  border-top: 1px solid var(--cream-line);
}
.faq-item { border-bottom: 1px solid var(--cream-line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 50px 22px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
  position: relative;
  cursor: pointer;
  line-height: 1.4;
}
.faq-q::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px; height: 14px;
  margin-top: -7px;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 14px 1.6px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1.6px 14px no-repeat;
  transition: transform .25s;
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); background: linear-gradient(var(--ink), var(--ink)) center / 14px 1.6px no-repeat; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.is-open .faq-a { max-height: 460px; }
.faq-a p {
  padding: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 760px;
}

@media (min-width: 720px) {
  .faq-q { font-size: 19px; padding-top: 26px; padding-bottom: 26px; }
  .faq-a p { font-size: 16px; padding-bottom: 26px; }
}

/* ---------- Trust strip + Contact ---------------------------------- */
.trust {
  background: var(--peach-tint);
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.trust-block {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-card);
  padding: 22px;
}
.trust-block h4 { font-size: 16px; margin-bottom: 6px; }
.trust-block p { font-size: 14.5px; line-height: 1.55; }
.trust-icon-row { display: flex; gap: 12px; margin-bottom: 14px; align-items: center; }
.trust-icon-row .badge-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--peach-tint);
  color: var(--peach-darker);
  display: grid; place-items: center;
}
.contact-row {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.contact-row li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.contact-row .contact-label {
  font-weight: 600;
  color: var(--ink);
  min-width: 80px;
  font-size: 13px;
  letter-spacing: .02em;
}

@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr) 1.4fr; gap: 18px; }
}

/* ---------- Final CTA ---------------------------------------------- */
.final-cta {
  background: linear-gradient(170deg, var(--peach) 0%, var(--peach-deep) 100%);
  color: #fff;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.final-cta .kicker { color: rgba(255,255,255,.85); }
.final-cta .kicker::before { background: rgba(255,255,255,.85); }
.final-cta h2 { color: #fff; font-size: clamp(32px, 5vw, 52px); max-width: 14ch; }
.final-cta .section-head p { color: rgba(255,255,255,.85); max-width: 540px; }
.final-cta .hero-cta-row { margin-top: 28px; }
.final-cta .cta-primary { background: var(--peach-darker); color: #fff; box-shadow: 0 12px 24px -10px rgba(140,73,18,.45); }
.final-cta .cta-primary:hover { background: var(--peach-darker); filter: brightness(.92); }
.final-cta .cta-secondary { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.30); }
.final-cta .cta-secondary:hover { border-color: #fff; }
.final-cta-art {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 320px; height: 320px;
  opacity: .25;
  pointer-events: none;
}

/* ---------- Footer -------------------------------------------------- */
footer {
  background: var(--peach-darker);
  color: rgba(255,255,255,.85);
  padding: 56px 0 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.foot-brand { max-width: 320px; }
.foot-brand .brand { color: #fff; }
.foot-brand .brand-mark { box-shadow: inset 0 -2px 0 rgba(0,0,0,.20); }
.foot-brand p { color: rgba(255,255,255,.70); margin-top: 14px; font-size: 14.5px; }
.foot-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.foot-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-col a { color: rgba(255,255,255,.72); font-size: 14.5px; }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  padding-top: 24px;
  display: grid;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,.92);
  line-height: 1.6;
}
.foot-bottom p { color: rgba(255,255,255,.92); }
.foot-bottom .badges { display: flex; flex-wrap: wrap; gap: 14px; }
.foot-bottom .badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.92);
  font-family: var(--font-mono);
  font-size: 11.5px;
}

@media (min-width: 900px) {
  .foot-top { grid-template-columns: 1.2fr 2fr; gap: 56px; }
  .foot-cols { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Reveal -------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- Image slot tweaks -------------------------------------- */
image-slot {
  --is-placeholder-bg: rgba(237,139,58,.06);
  --is-placeholder-fg: var(--peach-darker);
  --is-border: rgba(199,106,31,.30);
}

/* Skip-link for accessibility */
.skip { position: absolute; left: -9999px; top: 8px; }
.skip:focus { left: 16px; background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 8px; z-index: 100; }

/* ---------- App preview (2026-05-21) -------------------------------- */
/*
  Phone-frame mockup for real app screenshots. Captures are native
  1080×2400 (Android 9:20). The frame mimics a generic Android phone:
  thin charcoal bezel, rounded corners, soft shadow. Frame is purely
  CSS — no per-device image. Caption sits below the frame.

  Layout: horizontal rail on desktop, 2-col tablet, 1-col mobile.
*/
.app-preview { background: var(--cream); }
.app-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.phone {
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9 / 20;
  background: #1a1a1a;
  border-radius: 26px;
  padding: 8px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(34, 34, 34, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.phone-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  object-fit: cover;
  background: var(--cream);
}
.phone figcaption {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 240px;
}

@media (max-width: 1100px) {
  .app-rail { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 600px) {
  .app-rail { grid-template-columns: 1fr; gap: 36px; }
  .phone-frame { max-width: 260px; }
}
