/* ─────────────────────────────────────────────────────────
   Filu landing page — design tokens match the iOS app.
   Canvas #0A0A0A, brand copper #B87333, serif headlines.
   ───────────────────────────────────────────────────────── */

:root {
  --canvas: #0A0A0A;
  --canvas-elevated: #131110;
  --canvas-2: #1B1815;
  --ink: #FAFAFA;
  --ink-2: rgba(250, 250, 250, 0.72);
  --ink-3: rgba(250, 250, 250, 0.5);
  --frost: rgba(255, 255, 255, 0.06);
  --frost-strong: rgba(255, 255, 255, 0.10);
  --frost-border: rgba(255, 255, 255, 0.12);
  --copper: #B87333;
  --copper-amber: #E8B17A;
  --copper-deep: #8F4319;
  --copper-soft: rgba(184, 115, 51, 0.18);
  --copper-glow: rgba(184, 115, 51, 0.45);
  --good: #6FCB7E;
  --warn: #E8B17A;
  --bad: #E47474;

  --font-display: "Playfair Display", "Noto Naskh Arabic", Georgia, serif;
  --font-body: "Inter", "IBM Plex Sans Arabic", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-phone: 46px;

  --shadow-card: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 30px 90px -20px var(--copper-glow);

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

html[dir="rtl"] {
  --font-display: "Noto Naskh Arabic", "Playfair Display", Georgia, serif;
  --font-body: "IBM Plex Sans Arabic", "Inter", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ─── Aurora background ─── */
.aurora {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.aurora__blob {
  position: absolute;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: aurora-drift 22s var(--easing) infinite;
}
.aurora__blob--1 { background: radial-gradient(circle, var(--copper-glow), transparent 70%); top: -20%; left: -10%; }
.aurora__blob--2 { background: radial-gradient(circle, rgba(143, 67, 25, 0.4), transparent 70%); bottom: -25%; right: -15%; animation-delay: -7s; animation-duration: 28s; }
.aurora__blob--3 { background: radial-gradient(circle, rgba(60, 30, 10, 0.5), transparent 70%); top: 30%; right: 30%; animation-delay: -14s; animation-duration: 35s; }
@keyframes aurora-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(8vw, -6vw) scale(1.15); }
  66%  { transform: translate(-6vw, 4vw) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ─── Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 24px;
  padding: 18px 32px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid var(--frost-border);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav__logo {
  display: inline-block; width: 32px; height: 32px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 8px 24px -8px var(--copper-glow);
}
.nav__name { font-weight: 600; }
.nav__links {
  display: flex; gap: 28px;
  margin-inline-start: 32px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.nav__links a {
  position: relative; padding: 6px 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute;
  inset-inline-start: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: inset-inline-start;
  transition: transform 0.3s var(--easing);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions {
  margin-inline-start: auto;
  display: flex; align-items: center; gap: 12px;
}
.nav__lang {
  appearance: none;
  background: var(--frost);
  border: 1px solid var(--frost-border);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav__lang:hover { background: var(--frost-strong); border-color: var(--copper-glow); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 0.2s var(--easing), box-shadow 0.3s var(--easing), background 0.2s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: #fff;
  box-shadow: 0 12px 30px -10px var(--copper-glow);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 18px 40px -10px var(--copper-glow); }
.btn--ghost {
  background: var(--frost);
  color: var(--ink);
  border-color: var(--frost-border);
}
.btn--ghost:hover { background: var(--frost-strong); border-color: var(--copper-glow); }
.btn--lg { padding: 14px 26px; font-size: 15.5px; }
.btn--xl { padding: 18px 36px; font-size: 17px; }
.nav__cta { padding: 9px 16px; font-size: 13.5px; }

/* ─── Layout helpers ─── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 12px;
}
html[dir="rtl"] .eyebrow { letter-spacing: 0.04em; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 14px;
}
.section__title--lg {
  font-size: clamp(36px, 5.4vw, 60px);
}
.section__sub {
  color: var(--ink-2);
  font-size: 16.5px;
  max-width: 640px;
  margin: 0 auto;
}
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
}
.section--cta { padding: 120px 32px; }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .aurora__blob { animation: none; }
}

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 72px 48px 96px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero__inner { max-width: 580px; }
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.hero__line { display: block; }
.hero__line--accent {
  background: linear-gradient(120deg, var(--copper-amber), var(--copper) 50%, var(--copper-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__sub {
  color: var(--ink-2);
  font-size: 18px;
  max-width: 540px;
  margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__stats {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__stat-label { font-size: 12.5px; color: var(--ink-3); }

/* ─── PHONE FRAME ─── */
.phone {
  --phone-w: 320px;
  --phone-pad: 6px;
  width: var(--phone-w);
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(180deg, #1a1614, #0a0807);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-phone);
  padding: var(--phone-pad);
  position: relative;
  box-shadow:
    0 60px 120px -40px rgba(0, 0, 0, 0.7),
    0 24px 60px -20px var(--copper-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  margin: 0 auto;
}
.phone--lg { --phone-w: 360px; }
.phone--md { --phone-w: 320px; }
.phone--sm { --phone-w: 260px; --phone-pad: 5px; }

/* ─── iOS chrome ─── */
.ios {
  width: 100%;
  height: 100%;
  background: var(--canvas);
  border-radius: calc(var(--radius-phone) - var(--phone-pad));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 11px;
  position: relative;
}
.ios__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 8px 22px 0;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.ios__time { letter-spacing: -0.01em; }
.ios__island {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 22px;
  background: #000;
  border-radius: 14px;
}
.ios__icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ios__signal { width: 14px; height: 9px; fill: var(--ink); }
.ios__wifi   { width: 14px; height: 10px; fill: var(--ink); }
.ios__bat {
  display: inline-block;
  width: 22px; height: 11px;
  border: 1px solid var(--ink);
  border-radius: 2.5px;
  position: relative;
  margin-inline-start: 1px;
}
.ios__bat::before {
  content: "";
  position: absolute;
  inset: 1px 1px 1px 1px;
  width: calc(100% - 4px);
  background: var(--ink);
  border-radius: 1px;
}
.ios__bat::after {
  content: "";
  position: absolute;
  top: 3px;
  inset-inline-start: 100%;
  width: 1.5px;
  height: 5px;
  background: var(--ink);
  border-radius: 0 1px 1px 0;
}
.ios__content {
  flex: 1;
  overflow: hidden;
  padding: 2px 14px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ─── Dashboard hero (matches the iOS EditorialHero) ─── */
.dash-hero {
  background:
    radial-gradient(110% 80% at 100% 0%, rgba(184, 115, 51, 0.32), transparent 60%),
    linear-gradient(170deg, #1F1408 0%, #0E0907 100%);
  margin: 2px -14px 4px;
  padding: 14px 14px 16px;
  position: relative;
  overflow: hidden;
}
.dash-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 0% 0%, rgba(60, 30, 10, 0.5), transparent 60%);
  pointer-events: none;
}
.dash-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.dash-hero__id { flex: 1; min-width: 0; }
.dash-hero__eyebrow {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(232, 177, 122, 0.85);
  margin: 0 0 4px;
}
.dash-hero__greeting {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  white-space: pre-line;
  line-height: 1.18;
}
.phone--sm .dash-hero__greeting { font-size: 13px; }
.dash-hero__buttons {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.dash-hero__btn {
  appearance: none;
  border: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: default;
  padding: 0;
}
.dash-hero__btn svg { width: 13px; height: 13px; }
.dash-hero__btn--copper {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: #fff;
  box-shadow: 0 6px 14px -4px var(--copper-glow);
}
.dash-hero__btn--frost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--copper);
}
.dash-hero__amount {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 4px 0 12px;
  color: var(--ink);
  position: relative; z-index: 1;
  line-height: 1;
}
.phone--md .dash-hero__amount { font-size: 28px; }
.phone--sm .dash-hero__amount { font-size: 22px; }
.dash-hero__meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative; z-index: 1;
}
.dash-hero__meta > div { display: flex; flex-direction: column; gap: 2px; }
.dash-hero__meta-label {
  font-size: 7.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 177, 122, 0.72);
  font-weight: 700;
}
.dash-hero__meta-value {
  font-size: 11px;
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.phone--sm .dash-hero__meta { gap: 12px; }
.phone--sm .dash-hero__meta-value { font-size: 10px; }

/* ─── Month stepper ─── */
.month-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px 4px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}
.month-stepper__arrow {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ink-2);
}
.month-stepper__arrow svg { width: 10px; height: 10px; }
.month-stepper__arrow--dim { opacity: 0.4; }

/* ─── Section labels (CARDS / TRANSACTIONS / DAILY SPEND etc.) ─── */
.ios-section {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 6px 4px 4px;
}
.ios-section--mt { margin-top: 12px; }
.ios-section--small { margin-top: 6px; font-size: 7.5px; letter-spacing: 0.18em; }
.ios-section--inline { display: inline; }

/* ─── Card row (Dashboard) ─── */
.card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 4px;
}
.card-row__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--copper-soft);
  color: var(--copper);
  flex-shrink: 0;
}
.card-row__icon svg { width: 14px; height: 14px; }
.card-row__text { flex: 1; min-width: 0; }
.card-row__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.card-row__sub {
  font-size: 9px;
  color: var(--ink-2);
  margin: 1px 0 0;
  font-family: var(--font-mono);
}
.card-row__count {
  font-size: 9px;
  color: var(--ink-3);
  margin: 1px 0 0;
}
.card-row__amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  flex-shrink: 0;
}
.phone--sm .card-row__name { font-size: 11.5px; }
.phone--sm .card-row__amount { font-size: 11.5px; }

/* ─── iOS tab bar ─── */
.ios-tabbar {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  padding: 10px 6px 14px;
  background: rgba(20, 18, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: auto;
}
.ios-tabbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--ink-3);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.ios-tabbar__item svg { width: 16px; height: 16px; }
.ios-tabbar__item em { font-style: normal; }
.ios-tabbar__item--active {
  color: var(--copper);
}
.ios-tabbar__item--active em {
  background: var(--copper-soft);
  border-radius: 999px;
  padding: 1px 8px;
}

/* ─── Card detail (chapter 4 / tour 1) ─── */
.ios__content--detail { padding: 4px 14px 4px; }
.cd-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0 4px;
}
.cd-head--save { justify-content: space-between; }
.cd-head__back {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ink-2);
}
.cd-head__back svg { width: 12px; height: 12px; }
.cd-head__title {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-2);
}
.cd-head__save {
  margin-inline-start: auto;
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 500;
}
.cd-amount {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1;
}
.cd-amount--lg { font-size: 26px; }
.phone--sm .cd-amount { font-size: 22px; }
.phone--sm .cd-amount--lg { font-size: 20px; }
.cd-stats {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}
.cd-stats > div { display: flex; flex-direction: column; gap: 2px; }
.cd-stats span {
  font-size: 7.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cd-stats strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.phone--sm .cd-stats strong { font-size: 11.5px; }

/* ─── Daily spend chart container ─── */
.cd-chart {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 6px 4px;
  height: 76px;
  position: relative;
  overflow: hidden;
}
.cd-chart svg { width: 100%; height: 100%; display: block; }

/* ─── Transaction row ─── */
.tx-row {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 4px;
}
.tx-row__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--copper-soft);
  color: var(--copper);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tx-row__icon svg { width: 12px; height: 12px; }
.tx-row__text { flex: 1; min-width: 0; }
.tx-row__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  margin: 0;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: -0.01em;
}
.tx-row__meta {
  font-size: 8.5px;
  color: var(--ink-3);
  margin: 1px 0 0;
}
.tx-row__amt {
  font-size: 10.5px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--ink);
}
.tx-row__amt--exp { color: var(--bad); }
.tx-row__chev {
  width: 16px; height: 16px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.tx-row__chev svg { width: 9px; height: 9px; }

/* Expanded variant */
.tx-row--expanded { flex-direction: column; align-items: stretch; padding: 0; overflow: hidden; }
.tx-row__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
}
.tx-row__detail {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 10px;
  background: rgba(184, 115, 51, 0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tx-row__detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 9px;
}
.tx-row__detail-row span { color: var(--ink-3); }
.tx-row__detail-row strong { color: var(--ink); font-weight: 600; }
.raw-sms {
  font-family: var(--font-mono);
  font-size: 8.5px;
  line-height: 1.45;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 7px 9px;
  margin: 4px 0 0;
}

/* ATM badge on tx row name */
.atm-pill {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--copper);
  background: var(--copper-soft);
  padding: 1.5px 6px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ─── Goals / list pages ─── */
.ios__content--list { padding: 6px 14px 4px; }
.list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}
.list-head__plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(184, 115, 51, 0.55);
  color: var(--copper);
}
.list-head__plus svg { width: 14px; height: 14px; }
.list-head__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 4px 0 12px;
  color: var(--ink);
  line-height: 1;
}
.phone--sm .list-head__title { font-size: 26px; }
.list-head__rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 8px 0;
}

/* Goal summary card */
.goal-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 9px 12px;
  margin-bottom: 4px;
}
.goal-summary p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  margin: 0;
  color: var(--ink);
}
.goal-summary span {
  display: block;
  font-size: 9px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* Goal row */
.goal-row {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 9px 12px;
  margin-bottom: 4px;
}
.goal-row__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--copper-soft);
  color: var(--copper);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.goal-row__icon svg { width: 14px; height: 14px; }
.goal-row__text { flex: 1; min-width: 0; }
.goal-row__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  margin: 0;
}
.goal-row__meta {
  font-size: 8.5px;
  color: var(--ink-3);
  margin: 1px 0 0;
}
.goal-row__amt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  color: var(--ink);
  flex-shrink: 0;
}

/* Goal detail progress + form */
.gd-progress {
  background: rgba(255, 255, 255, 0.06);
  height: 4px;
  border-radius: 999px;
  margin: 4px 0 4px;
  overflow: hidden;
}
.gd-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--copper-amber));
  border-radius: 999px;
}
.gd-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 9px 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.gd-form__row { display: flex; flex-direction: column; gap: 3px; }
.gd-form__row--inline { flex-direction: row; align-items: center; justify-content: space-between; }
.gd-form__label {
  font-size: 7.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin: 0;
}
.gd-form__label--row { margin: 0; }
.gd-form__input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 10px;
  color: var(--ink);
  margin: 0;
}
.gd-form__inline { display: flex; align-items: center; gap: 6px; }
.gd-form__input--target { flex: 1; }
.gd-form__currency {
  font-size: 10px;
  color: #6BAEFF;
  font-weight: 600;
}
.gd-form__seg {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  padding: 2px;
  align-self: stretch;
}
.gd-form__seg span {
  flex: 1;
  text-align: center;
  font-size: 9px;
  padding: 4px 6px;
  border-radius: 4px;
  color: var(--ink-2);
}
.gd-form__seg-on {
  background: rgba(184, 115, 51, 0.65);
  color: #fff !important;
  font-weight: 600;
}
.gd-form__pill {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 9.5px;
  color: var(--ink);
  margin: 0;
}
.gd-form__add {
  font-size: 9.5px;
  color: var(--copper);
  font-weight: 600;
}

/* Recommendations card (in goal detail) */
.reco-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
  margin-top: 6px;
}
.reco-card h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
}
.reco-card__row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 9.5px;
  padding: 3px 0;
}
.reco-card__row span { flex: 1; color: var(--ink); }
.reco-card__row strong { font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.reco-card__row em { color: var(--ink-3); font-style: normal; font-size: 8.5px; }

/* Empty state (Subs) */
.subs-zero {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 4px 16px;
}
.empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 28px 12px;
}
.empty-state__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--copper);
  margin-bottom: 4px;
}
.empty-state__icon svg { width: 36px; height: 36px; }
.empty-state__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.empty-state__body {
  font-size: 9.5px;
  color: var(--ink-2);
  margin: 0;
  max-width: 200px;
  line-height: 1.4;
}
.empty-state__btn {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 115, 51, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 600;
}

/* ─── Parsed row (setup chapter visualization) ─── */
.parsed-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: 14px;
  padding: 14px 16px;
  width: 100%;
}
.parsed-row__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--copper-soft);
  color: var(--copper);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.parsed-row__text { flex: 1; min-width: 0; }
.parsed-row__name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  margin: 0;
}
.parsed-row__meta {
  font-size: 12.5px; color: var(--ink-3); margin: 2px 0 0;
}
.parsed-row__amount {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 600;
  color: var(--bad);
  flex-shrink: 0;
}

/* ─── (legacy) EditorialHero / dash-banner / frost-row / etc. ─── */
/* Kept for any remaining references; the landing now ships real
   screenshots so most of these classes are no longer wired up. */
.ed-hero {
  background:
    radial-gradient(120% 80% at 90% 0%, rgba(184, 115, 51, 0.32), transparent 60%),
    linear-gradient(170deg, #2D1F0F 0%, #1B130A 100%);
  border-radius: 22px;
  padding: 16px 16px 18px;
  position: relative;
  overflow: hidden;
}
.ed-hero--compact { padding: 14px 14px 16px; }
.ed-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 100%, rgba(143, 67, 25, 0.35), transparent 50%);
  pointer-events: none;
}
.ed-hero__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 8px;
  position: relative; z-index: 1;
  margin-bottom: 10px;
}
.ed-hero__eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 177, 122, 0.85);
  font-weight: 700;
  margin: 0 0 4px;
}
.ed-hero__greeting {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.ed-hero__buttons { display: flex; gap: 6px; }
.ed-hero__btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--copper);
  font-size: 14px;
  font-weight: 700;
}
.ed-hero__btn--copper {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: #fff;
}
.ed-hero__label {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin: 0 0 6px;
  position: relative; z-index: 1;
}
.ed-hero__amount {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
  position: relative; z-index: 1;
}
.ed-hero__amount span:first-child {
  font-size: 14px;
  font-weight: 500;
  color: rgba(232, 177, 122, 0.95);
  margin-inline-end: 6px;
  letter-spacing: 0;
}
.ed-hero__meta {
  display: flex; gap: 14px;
  position: relative; z-index: 1;
}
.ed-hero__meta span {
  font-size: 10.5px;
  color: rgba(250, 250, 250, 0.78);
  display: flex; flex-direction: column;
}
.ed-hero__meta strong {
  font-weight: 600;
  color: rgba(250, 250, 250, 0.5);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ed-hero__meta em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 2px;
}

/* ─── Spending limit banner ─── */
.dash-banner {
  display: flex; align-items: center; gap: 10px;
  background: rgba(232, 177, 122, 0.10);
  border: 1px solid rgba(232, 177, 122, 0.32);
  border-radius: 12px;
  padding: 10px 12px;
}
.dash-banner__icon { font-size: 14px; }
.dash-banner__name {
  font-size: 11.5px;
  font-weight: 600;
  margin: 0;
  color: var(--warn);
}
.dash-banner__meta {
  font-size: 10px;
  color: var(--ink-3);
  margin: 2px 0 0;
  font-family: var(--font-mono);
}

/* ─── Frost row (mirrors FrostRow component) ─── */
.frost-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: 14px;
  padding: 10px 12px;
}
.frost-row--standalone { padding: 12px 14px; }
.frost-row--service { padding: 8px 12px; }
.frost-row__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--copper-soft);
  color: rgba(250, 250, 250, 0.72);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.frost-row__icon--copper { color: var(--copper); }
.frost-row__icon--green { background: rgba(111, 203, 126, 0.18); color: var(--good); }
.frost-row__icon--red   { background: rgba(228, 116, 116, 0.18); color: var(--bad); }
.frost-row__text { flex: 1; min-width: 0; }
.frost-row__name {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  display: flex; align-items: center; gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.frost-row__meta {
  font-size: 10.5px;
  color: var(--ink-3);
  margin: 2px 0 0;
}
.frost-row__amount {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.frost-row__amount--expense { color: var(--bad); }

/* Expanded tx row */
.frost-row--expanded { flex-direction: column; align-items: stretch; padding: 0; overflow: hidden; }
.frost-row__head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
}
.frost-row__detail {
  border-top: 1px solid var(--frost-border);
  padding: 12px;
  display: flex; flex-direction: column; gap: 7px;
  background: rgba(184, 115, 51, 0.04);
}
.frost-row__detail-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10.5px;
}
.frost-row__detail-row span { color: var(--ink-3); }
.frost-row__detail-row strong { color: var(--ink); font-weight: 600; }

/* ATM pill in row name */
.atm-pill {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--copper);
  background: var(--copper-soft);
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ATM input UI inside expanded panel */
.atm-input { margin-top: 4px; }
.atm-input__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 6px;
}
.atm-input__row { display: flex; gap: 6px; align-items: center; }
.atm-input__field {
  flex: 1;
  background: var(--canvas-elevated);
  border: 1px solid var(--frost-border);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 11px;
  color: var(--ink);
}
.atm-input__btn {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
}

/* ─── Goal tile (Dashboard summary) ─── */
.goal-tile {
  background: linear-gradient(140deg, rgba(184, 115, 51, 0.14), rgba(143, 67, 25, 0.06));
  border: 1px solid var(--frost-border);
  border-radius: 14px;
  padding: 12px 14px;
}
.goal-tile__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
}
.goal-tile__bar {
  background: var(--frost);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}
.goal-tile__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--copper-amber));
  border-radius: 999px;
}
.goal-tile__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  margin: 0;
}

/* ─── CHAPTER blocks ─── */
.chapter {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.chapter--reverse > .chapter__copy { order: 2; }
.chapter--reverse > .chapter__viz  { order: 1; }
.chapter--chaos {
  grid-template-columns: 1fr;
  text-align: start;
  max-width: 840px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.chapter__copy { max-width: 520px; }
.chapter__body {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.chapter__body--lead { font-size: 18.5px; }
.chapter__sub {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 14px;
  letter-spacing: -0.01em;
}
.chapter__bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.chapter__bullets li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.chapter__bullets li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 9px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--copper);
  transform: rotate(45deg);
}
.chapter__viz {
  display: flex; justify-content: center;
  position: relative;
}

/* ─── Setup steps + SMS flow ─── */
.setup-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.setup-steps__item {
  display: flex; gap: 14px;
  align-items: flex-start;
}
.setup-steps__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--copper-soft);
  color: var(--copper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.setup-steps__item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
}
.setup-steps__item p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
}

.setup-video {
  width: 100%;
  max-width: 380px;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.setup-video__player {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 28px;
  background: #000;
  border: 1px solid var(--frost-border);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.6),
    0 18px 40px -16px var(--copper-glow);
}
.setup-video__caption {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
  font-style: italic;
}

.sms-flow {
  display: flex; flex-direction: column; gap: 22px;
  align-items: center;
  width: 100%; max-width: 380px;
}
.sms-bubble {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--frost-border);
  border-radius: 14px;
  padding: 14px 16px;
}
.sms-bubble__caption {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin: 0 0 6px;
}
.sms-bubble__body {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.5;
}
.sms-flow__arrow {
  font-size: 11px;
  color: var(--ink-3);
  text-align: center;
  margin: 0;
  position: relative;
  font-style: italic;
}
.sms-flow__arrow::before,
.sms-flow__arrow::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: var(--copper-glow);
  margin: 4px auto;
}

/* ─── Screen tour ─── */
.section--tour { padding: 96px 32px; }
.tour {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}
.tour__slide {
  display: flex; flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.tour__slide .phone {
  --phone-w: 240px;
}
.tour__caption { max-width: 260px; }
.tour__caption h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.tour__caption p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}
.tour__caption .eyebrow { margin-bottom: 6px; }

/* ─── Feature grid (text-only, post-screen-tour) ─── */
.section--features { padding-top: 64px; padding-bottom: 96px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.feature {
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  position: relative;
  overflow: hidden;
}
.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, var(--copper-soft), transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}
.feature__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--copper-soft);
  color: var(--copper);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  position: relative; z-index: 1;
}
.feature p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  position: relative; z-index: 1;
}

/* ─── Subscriptions tile bits ─── */
.sub-summary {
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex; flex-direction: column;
  margin-bottom: 4px;
}
.sub-summary span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}
.sub-summary em {
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ─── Goal tile (lineup) ─── */
.goal-card {
  background:
    radial-gradient(110% 70% at 95% 0%, rgba(184, 115, 51, 0.24), transparent 60%),
    var(--canvas-elevated);
  border: 1px solid rgba(184, 115, 51, 0.35);
  border-radius: 14px;
  padding: 12px 14px;
}
.goal-card__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
}
.goal-card__amount {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--copper-amber);
  letter-spacing: -0.02em;
}
.goal-card__bar {
  background: rgba(255, 255, 255, 0.06);
  height: 6px; border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}
.goal-card__bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--copper-amber));
  border-radius: 999px;
}
.goal-card__meta { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); margin: 0 0 4px; }
.goal-card__monthly { font-size: 10.5px; color: var(--ink-2); margin: 0; }

.reco-card {
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: 12px;
  padding: 10px 12px;
}
.reco-card__title {
  font-size: 9.5px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--copper); font-weight: 700;
  margin: 0 0 6px;
}
.reco-card__row {
  font-size: 10.5px; color: var(--ink-2);
  margin: 0 0 4px;
  font-family: var(--font-mono);
}
.reco-card__row:last-child { margin-bottom: 0; }

/* ─── Installment card ─── */
.inst-card {
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: 14px;
  padding: 12px 14px;
}
.inst-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
}
.inst-card__row {
  display: flex; justify-content: space-between;
  font-size: 10.5px;
  margin-bottom: 4px;
}
.inst-card__row span { color: var(--ink-3); }
.inst-card__row strong { color: var(--ink); font-family: var(--font-mono); font-weight: 600; }
.inst-card__bar {
  background: rgba(255, 255, 255, 0.06);
  height: 5px; border-radius: 999px;
  overflow: hidden;
  margin: 6px 0;
}
.inst-card__bar span { display: block; height: 100%; background: var(--copper); border-radius: 999px; }
.inst-card__progress { font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-3); margin: 0 0 6px; }
.inst-card__row--due {
  border-top: 1px solid var(--frost-border);
  padding-top: 6px;
  margin-bottom: 0;
}

/* ─── Limit card ─── */
.limit-card {
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: 14px;
  padding: 12px 14px;
}
.limit-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.limit-card__name {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  margin: 0;
}
.limit-card__period {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.limit-card__bar {
  background: rgba(255, 255, 255, 0.06);
  height: 5px; border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}
.limit-card__bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--warn));
  border-radius: 999px;
}
.limit-card__meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--ink-3);
  margin: 0 0 2px;
}
.limit-card__status { font-size: 10px; color: var(--warn); margin: 0; }

/* ─── Banks marquee ─── */
.banks-marquee {
  padding: 64px 0 48px;
  border-top: 1px solid var(--frost-border);
  border-bottom: 1px solid var(--frost-border);
  background: rgba(0, 0, 0, 0.35);
}
.banks-marquee__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 0 32px;
}
.banks-marquee__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.banks-marquee__sub { color: var(--ink-2); margin: 0; font-size: 14.5px; }
.marquee {
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  padding: 18px 0;
}
.marquee__track {
  display: inline-flex;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  animation: marquee 38s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
html[dir="rtl"] .marquee__track { animation-direction: reverse; }

/* ─── Privacy ─── */
.section--privacy { padding-top: 96px; padding-bottom: 96px; }
.privacy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.privacy__copy { max-width: 520px; }
.privacy__body { color: var(--ink-2); font-size: 16.5px; line-height: 1.6; margin: 0 0 20px; }
.privacy__bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.privacy__bullets li {
  position: relative; padding-inline-start: 28px;
  font-size: 14.5px; color: var(--ink-2);
}
.privacy__bullets li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--copper);
  font-weight: 700;
  font-size: 16px;
}

.flow {
  display: flex; flex-direction: column; gap: 0;
  align-items: stretch;
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.flow__node {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--canvas-elevated);
  border: 1px solid var(--frost-border);
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}
.flow__node--copper {
  border-color: var(--copper-glow);
  box-shadow: 0 12px 28px -16px var(--copper-glow);
}
.flow__node-icon { font-size: 20px; }
.flow__rail {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 36px;
  position: relative;
}
.flow__rail::before {
  content: "";
  position: absolute;
  inset-inline-start: 16px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--copper-glow), transparent);
}
.flow__rail-text {
  margin: 0;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.flow__arrow {
  margin-inline-start: auto;
  color: var(--copper);
  font-weight: 700;
}
html[dir="rtl"] .flow__arrow { transform: scaleX(-1); }

/* ─── FAQ ─── */
.faq {
  display: flex; flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: 18px;
  padding: 20px 24px;
}
.faq__q {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-inline-end: 28px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px; color: var(--copper);
  font-weight: 600;
  transition: transform 0.3s var(--easing);
}
.faq__item[open] .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a {
  color: var(--ink-2);
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ─── CTA ─── */
.section--cta { text-align: center; }
.cta { max-width: 740px; margin: 0 auto; }
.cta__sub { color: var(--ink-2); font-size: 17px; margin: 0 0 32px; }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--frost-border);
  padding: 56px 32px 36px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 32px;
}
.footer__top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer__tagline { color: var(--ink-2); margin: 0; font-size: 14px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer__links {
  display: flex; gap: 24px;
  font-size: 14px; color: var(--ink-3);
}
.footer__links a:hover { color: var(--ink); }
.footer__copy {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}
.powered-by {
  display: inline-flex;
  align-items: baseline;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 14px;
  border-radius: 8px;
  align-self: flex-start;
  transition: background 0.18s ease, transform 0.18s ease;
}
.powered-by:hover { background: rgba(0, 0, 0, 0.85); transform: translateY(-1px); }
.powered-by__prefix {
  color: var(--ink-2);
  font-weight: 500;
}
.powered-by__brand { color: #fff; }
.powered-by__dot { color: #E5424D; margin-inline-start: 1px; }

/* ─── Responsive ─── */
@media (max-width: 1080px) {
  .nav__links { gap: 18px; margin-inline-start: 16px; }
  .hero { grid-template-columns: 1fr; gap: 56px; padding: 56px 24px 80px; text-align: start; }
  .hero__inner { margin: 0 auto; max-width: 640px; }
  .hero__device { display: flex; justify-content: center; }
  .chapter { grid-template-columns: 1fr; gap: 36px; padding: 64px 24px; }
  .chapter__copy { max-width: 640px; margin-inline: auto; }
  .chapter--reverse > .chapter__copy { order: 0; }
  .chapter--reverse > .chapter__viz  { order: 0; }
  .privacy__grid { grid-template-columns: 1fr; gap: 36px; }
  .tour { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .section { padding: 72px 24px; }
}
@media (max-width: 880px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 40px 24px 28px; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 16px; gap: 12px; }
  .nav__links { display: none; }
  .nav__brand { font-size: 17px; }
  .nav__cta { padding: 8px 12px; font-size: 12.5px; }
  .nav__lang { padding: 7px 10px; font-size: 12px; }
  .hero { padding: 48px 18px 64px; gap: 40px; }
  .hero__headline { font-size: clamp(32px, 9vw, 44px); }
  .hero__sub { font-size: 16px; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero__stat-value { font-size: 17px; }
  .hero__stat-label { font-size: 11px; }
  .marquee__track { font-size: 18px; gap: 18px; }
  .section { padding: 56px 18px; }
  .section__title { font-size: clamp(26px, 7vw, 36px); }
  .section__title--lg { font-size: clamp(30px, 9vw, 44px); }
  .section--cta { padding: 72px 18px; }
  .chapter { padding: 56px 18px; gap: 32px; }
  .tour { grid-template-columns: 1fr; gap: 36px; max-width: 320px; margin-inline: auto; }
  .tour__slide .phone { --phone-w: 260px; }
  .phone--lg { --phone-w: 280px; }
  .phone--md { --phone-w: 270px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature { padding: 22px 20px; }
  .banks-marquee { padding: 48px 0 36px; }
  .faq__item { padding: 16px 18px; }
  .faq__q { font-size: 15.5px; }
  .footer__top, .footer__bottom { gap: 12px; }
  .footer__links { gap: 16px; }
  .cta__sub { font-size: 15px; }
  /* Tighter dash-hero text on the narrowest phones to avoid overflow */
  .phone--lg .dash-hero__amount,
  .phone--md .dash-hero__amount { font-size: 26px; }
  .phone--lg .dash-hero__meta,
  .phone--md .dash-hero__meta { gap: 12px; }
}
@media (max-width: 420px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 16px 22px; }
  .hero__stats li:last-child { grid-column: 1 / -1; }
  .phone--lg { --phone-w: 260px; }
  .phone--md { --phone-w: 250px; }
  .tour__slide .phone { --phone-w: 250px; }
  .ios { font-size: 10.5px; }
  .dash-hero__amount,
  .cd-amount { font-size: 24px !important; }
  .list-head__title { font-size: 24px; }
}

/* Honour reduced-motion across page-level animation */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation-duration: 60s; }
}
