/* ===== Stackt. — brand-compliant design tokens ===== */
/* Per Brand Identity Guide, 28 July 2026:
   Ink #0B0E14 — text, icon tiles, structure
   Accent emerald #00C896 — the middle coin, and nothing else by default
   Wordmark: always lowercase, bold, tight tracking, system sans, never serif/italic */
:root {
  --ink: #0B0E14;
  --ink-soft: #1A1F29;
  --emerald: #00C896;
  --emerald-tint: #E3F9F1;
  --paper: #FAFAF8;
  --card: #FFFFFF;
  --muted: #6B7280;
  --line: #E6E4DE;
  --cream: #F2F1EC;
  --warm-gray: #F1F0EC;
  --muted-on-dark: #A8ADB8;
  --danger: #D64545;
  --border-on-dark: #2A303C;
  --shadow: 0 20px 50px -30px rgba(11, 14, 20, 0.35);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Inter', -apple-system, Helvetica, Arial, sans-serif; margin: 0; font-weight: 700; letter-spacing: -0.3px; }
h1 { font-weight: 800; }
p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

/* ---- The mark: three coins, middle always wider and the only accent color ---- */
/* Proportions measured directly from Brand Identity Guide, 28 July 2026 (Part One: The Mark):
   middle coin diameter = 1.38x side coin diameter; side-coin center distance = 1.6x side diameter. */
.coin-mark { position: relative; width: 42px; height: 22px; flex-shrink: 0; }
.coin-mark .coin { position: absolute; border-radius: 50%; }
.coin-mark .coin-left { left: 0; top: 3px; width: 16px; height: 16px; background: var(--ink); z-index: 1; }
.coin-mark .coin-right { left: 26px; top: 3px; width: 16px; height: 16px; background: var(--ink); z-index: 1; }
.coin-mark .coin-mid { left: 10px; top: 0; width: 22px; height: 22px; background: var(--emerald); z-index: 2; }
.coin-mark.on-dark .coin-left, .coin-mark.on-dark .coin-right { background: var(--cream); }

/* ---- Wordmark: always lowercase, bold, tight tracking ---- */
.wordmark { font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -0.5px; text-transform: lowercase; }
.wordmark.on-dark { color: #fff; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 246, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 15px; opacity: 0.7; transition: opacity .15s; margin-left: 32px; }
.nav-links a:first-child { margin-left: 0; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta {
  background: var(--ink); color: #fff !important; padding: 10px 20px; border-radius: 999px;
  font-weight: 600; opacity: 1 !important; font-size: 14px;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

@media (max-width: 780px) {
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 20px 24px 28px; border-bottom: 1px solid var(--line); gap: 18px; display: none; }
  .nav-links a { margin-left: 0; }
  .nav-toggle { display: block; }
  .nav-cta { width: 100%; text-align: center; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11,14,20,0.28); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline.on-dark { border-color: #333A47; color: #fff; }

/* ---- Eyebrow / labels ---- */
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--emerald); margin-bottom: 14px; display: block; }

/* ---- Hero "safe to spend" card — matches the brand guide's in-product screen ---- */
.spend-card {
  background: var(--card); border-radius: 22px; padding: 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow); max-width: 380px;
}
.spend-card .row-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.spend-card .pill {
  display: inline-flex; align-items: center; gap: 6px; background: var(--emerald-tint);
  border-radius: 999px; padding: 6px 12px; font-size: 11.5px; font-weight: 700; color: #067A5C;
}
.spend-card .pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); }
.spend-card .label { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.spend-card .amount { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 40px; color: var(--ink); line-height: 1; letter-spacing: -0.5px; }
.spend-card .sub { font-size: 12.5px; color: var(--muted); margin: 12px 0 22px; }
.spend-card .bar-track { height: 8px; background: var(--cream); border-radius: 999px; overflow: hidden; margin-bottom: 22px; }
.spend-card .bar-fill { height: 100%; width: 62%; background: var(--emerald); border-radius: 999px; }
.spend-card .chips { display: flex; gap: 10px; }
.spend-card .chip { flex: 1; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 12px 6px; text-align: center; font-size: 12.5px; font-weight: 600; }

/* ---- Generic cards / grids ---- */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; height: 100%;
}
.grid { display: flex; gap: 24px; flex-wrap: wrap; }
.grid-3 > * { flex: 1 1 0; min-width: 260px; }
.grid-2 > * { flex: 1 1 0; min-width: 260px; }
@media (max-width: 900px) { .grid-3 > *, .grid-2 > * { flex: 1 1 100%; } }

.icon-badge {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px; font-weight: 700; background: var(--ink); color: #fff;
}
.icon-badge.accent { background: var(--emerald-tint); color: #067A5C; }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--line); padding: 48px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 14px; margin-left: 28px; }
.footer-links a:first-child { margin-left: 0; }
.footer-note { font-size: 13px; color: var(--muted); }

/* ---- Page hero shared ---- */
.page-hero { padding: 72px 0 40px; }
.page-hero h1 { font-size: 42px; line-height: 1.15; max-width: 720px; }
.page-hero p.lede { font-size: 17px; max-width: 620px; margin-top: 16px; color: var(--muted); }
@media (max-width: 600px) { .page-hero h1 { font-size: 30px; } }

/* ---- Dark section variant ---- */
.section-dark { background: var(--ink); color: #fff; }
.section-dark p { color: #A8ADB8; }
.section-dark h2, .section-dark h3 { color: #fff; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.two-col { display: flex; gap: 64px; align-items: center; flex-wrap: wrap; }
.two-col > * { flex: 1 1 0; min-width: 300px; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Card hover lift ---- */
.card, .feature-row { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(11,14,20,0.25); }

/* ---- Hero glow behind spend card ---- */
.hero-visual { position: relative; }
.hero-visual::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 420px; height: 420px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.14) 0%, rgba(0,200,150,0) 70%);
  z-index: 0; pointer-events: none;
}
.hero-visual .spend-card { position: relative; z-index: 1; }

/* ---- Stat callout ---- */
.stat-block { display: flex; align-items: baseline; gap: 18px; margin: 32px 0; flex-wrap: wrap; }
.stat-number { font-size: 72px; font-weight: 700; color: var(--ink); letter-spacing: -2px; line-height: 1; }
.stat-caption { font-size: 14.5px; color: var(--muted); max-width: 280px; }
.stat-source { font-size: 12px; color: var(--muted); margin-top: 8px; }
@media (max-width: 600px) { .stat-number { font-size: 54px; } }

/* ---- Contact line ---- */
.footer-contact { font-size: 13px; color: var(--muted); }
.footer-contact a { color: var(--ink); text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: var(--emerald); }

/* ---- Countdown / waitlist counter ---- */
.counter-section { padding: 56px 0 60px; }
.countdown-grid { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }
.countdown-box {
  background: var(--ink); border-radius: 14px; padding: 22px 20px; min-width: 88px; text-align: center;
  box-shadow: 0 20px 40px -25px rgba(11,14,20,0.4);
}
.countdown-value {
  font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 42px; color: var(--emerald);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.countdown-label { font-size: 11px; color: var(--muted-on-dark); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 8px; }
.countdown-sep { font-size: 32px; font-weight: 700; color: var(--line); font-family: 'IBM Plex Mono', monospace; }
@media (max-width: 600px) {
  .countdown-box { min-width: 68px; padding: 16px 12px; }
  .countdown-value { font-size: 28px; }
  .countdown-sep { font-size: 22px; }
}
.waitlist-line {
  text-align: center; margin-top: 28px; font-size: 15px; color: var(--muted); font-weight: 500;
}
.waitlist-line span#waitlistCount { font-family: 'IBM Plex Mono', monospace; font-weight: 700; color: var(--ink); }
.pill-dot-inline { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); margin-right: 8px; animation: pulse-dot 1.6s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---- Founder profiles ---- */
.founder-grid { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.founder-grid .founder-card { flex: 1; min-width: 280px; }
@media (max-width: 780px) { .founder-grid { flex-direction: column; } }
.founder-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; text-align: center; }
.founder-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; display: block; border: 3px solid var(--emerald-tint); }
.founder-name { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.founder-role { font-size: 13px; color: var(--emerald); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.founder-bio { font-size: 14px; color: var(--muted); text-align: left; }

/* ---- Warm-gray section (visual rhythm between paper and ink sections) ---- */
.section-warm { background: var(--warm-gray); }

/* ---- Bold hero stat banner (replaces the plain inline stat-block) ---- */
.stat-banner {
  background: var(--ink); border-radius: 20px; padding: 40px 32px; margin: 32px 0;
  position: relative; overflow: hidden;
}
.stat-banner-mark { position: absolute; top: 28px; right: 32px; width: 64px; height: 36px; opacity: 0.9; }
.stat-banner-mark .coin { position: absolute; border-radius: 50%; }
.stat-banner-mark .coin-left { left: 0; top: 5px; width: 26px; height: 26px; background: var(--cream); z-index: 1; }
.stat-banner-mark .coin-right { left: 38px; top: 5px; width: 26px; height: 26px; background: var(--cream); z-index: 1; }
.stat-banner-mark .coin-mid { left: 14px; top: 0; width: 36px; height: 36px; background: var(--emerald); z-index: 2; }
.stat-banner-number {
  font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 96px; color: var(--emerald);
  line-height: 1; letter-spacing: -2px; margin-bottom: 12px;
}
.stat-banner-caption { color: #fff; font-size: 18px; font-weight: 500; max-width: 480px; line-height: 1.4; margin-bottom: 14px; }
.stat-banner-source { color: var(--muted-on-dark); font-size: 12.5px; }
@media (max-width: 600px) {
  .stat-banner { padding: 32px 24px; }
  .stat-banner-number { font-size: 68px; }
  .stat-banner-caption { font-size: 16px; }
  .stat-banner-mark { width: 48px; height: 28px; top: 22px; right: 22px; }
  .stat-banner-mark .coin-left { left: 0; top: 4px; width: 20px; height: 20px; }
  .stat-banner-mark .coin-right { left: 28px; top: 4px; width: 20px; height: 20px; }
  .stat-banner-mark .coin-mid { left: 10px; top: 0; width: 28px; height: 28px; }
}

/* ---- Connected flow diagram (used on Home's calculation section and About's structure section) ---- */
.flow { display: flex; align-items: stretch; gap: 12px; margin: 32px 0; flex-wrap: wrap; }
.flow-node { flex: 1; min-width: 150px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px 14px; text-align: center; }
.flow-node.highlight { background: var(--ink); border: none; }
.flow-node.highlight h4 { color: var(--emerald); }
.flow-node h4 { font-size: 14.5px; margin: 0; font-weight: 700; }
.flow-node p { font-size: 12.5px; margin: 6px 0 0; color: var(--muted); }
.flow-node.highlight p { color: var(--muted-on-dark); }
.flow-arrow { display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--emerald); font-weight: 700; padding: 0 2px; }
@media (max-width: 780px) { .flow { flex-direction: column; } .flow-arrow { transform: rotate(90deg); padding: 4px 0; } }


/* =========================================================
   STACKT — GEN Z VISUAL REFRESH
   Direction: editorial fintech + soft brutalism + bento UI.
   Keeps the existing brand palette, but increases personality,
   hierarchy, motion and mobile-first polish.
   ========================================================= */

:root {
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 60px -32px rgba(11,14,20,.28);
  --shadow-hover: 0 24px 70px -32px rgba(11,14,20,.38);
}

/* More expressive type hierarchy */
body {
  background:
    radial-gradient(circle at 90% 4%, rgba(0,200,150,.08), transparent 24rem),
    var(--paper);
}
h1, h2, h3, h4 {
  letter-spacing: -0.65px;
}
h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
}
p {
  line-height: 1.65;
}

/* Floating / glassy nav */
.nav {
  background: rgba(250,250,248,.76);
  border-bottom: 1px solid rgba(230,228,222,.72);
  backdrop-filter: blur(18px) saturate(130%);
}
.nav-inner {
  padding-top: 13px;
  padding-bottom: 13px;
}
.nav-links {
  gap: 6px;
}
.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  margin-left: 0;
  transition: background .2s ease, opacity .2s ease, transform .2s ease;
}
.nav-links a:hover {
  background: var(--cream);
  transform: translateY(-1px);
}
.nav-links a.active:not(.nav-cta) {
  background: var(--cream);
  opacity: 1;
}
.nav-cta {
  padding: 10px 17px !important;
  margin-left: 6px !important;
  box-shadow: 0 8px 20px -12px rgba(11,14,20,.7);
}

/* Mobile menu: polished sheet */
@media (max-width: 780px) {
  .nav-links {
    top: 58px;
    padding: 18px;
    gap: 5px;
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 24px 50px -30px rgba(11,14,20,.45);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 13px 14px;
    font-size: 15px;
  }
  .nav-cta {
    margin: 7px 0 0 !important;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--line);
  }
}

/* Hero becomes a more visual landing moment */
.page-hero {
  padding: 92px 0 74px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,.13), rgba(0,200,150,0) 68%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  max-width: 760px;
}
.page-hero p.lede {
  font-size: 18px;
  line-height: 1.6;
}

/* Home hero */
.two-col {
  gap: clamp(42px, 7vw, 96px);
}
.two-col > * {
  min-width: min(100%, 320px);
}
.hero-visual {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.hero-visual::after {
  content: "your money, but clearer";
  position: absolute;
  right: -24px;
  bottom: 6px;
  background: var(--ink);
  color: var(--emerald);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  transform: none;
  box-shadow: 0 12px 30px -18px rgba(11,14,20,.7);
  z-index: 3;
}
.spend-card {
  width: min(100%, 400px);
  max-width: 400px;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 32px 80px -40px rgba(11,14,20,.5);
  transform: rotate(1.2deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.spend-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.spend-card .amount {
  font-size: clamp(40px, 5vw, 50px);
}

/* Buttons feel more tactile */
.btn {
  min-height: 48px;
  padding: 14px 22px;
  box-shadow: 0 8px 20px -16px rgba(11,14,20,.7);
}
.btn:active {
  transform: translateY(1px) scale(.985);
}
.btn-primary {
  background: var(--ink);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -20px rgba(11,14,20,.65);
}

/* Eyebrows become "labels" */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-tint);
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: .75px;
  font-size: 10.5px;
  margin-bottom: 17px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
}

/* Bento-style cards */
.grid {
  gap: 16px;
}
.card {
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.35) inset;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  margin-bottom: 22px;
  font-size: 18px;
}
.icon-badge.accent {
  border: 1px solid rgba(0,200,150,.18);
}

/* Warm sections get more contrast */
.section-warm {
  background:
    linear-gradient(135deg, rgba(255,255,255,.48), rgba(241,240,236,.92)),
    var(--warm-gray);
}

/* Countdown: less corporate, more launch-drop energy */
.counter-section {
  padding: 64px 0 70px;
}
.countdown-grid {
  gap: 12px;
}
.countdown-box {
  min-width: 118px;
  border-radius: 22px;
  padding: 20px 17px;
  box-shadow: 0 18px 40px -26px rgba(11,14,20,.5);
  transition: transform .25s ease;
}
.countdown-box:hover {
  transform: translateY(-4px) rotate(-1deg);
}
.countdown-value {
  font-size: 36px;
}

/* Flow becomes pill-like */
.flow {
  gap: 8px;
}
.flow-node {
  border-radius: 18px;
  padding: 19px 14px;
  box-shadow: 0 12px 35px -30px rgba(11,14,20,.35);
}
.flow-node.highlight {
  box-shadow: 0 16px 35px -22px rgba(11,14,20,.55);
}
.flow-arrow {
  font-size: 16px;
}

/* Dark section gets a subtle texture/glow */
.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,200,150,.12), transparent 20rem),
    radial-gradient(circle at 90% 80%, rgba(0,200,150,.07), transparent 18rem),
    var(--ink);
}
.section-dark::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  right: 18%;
  top: 25%;
  box-shadow:
    0 0 0 0 rgba(0,200,150,.2),
    120px 40px 0 0 rgba(0,200,150,.18),
    -90px 130px 0 0 rgba(255,255,255,.08),
    180px 180px 0 0 rgba(255,255,255,.06);
  pointer-events: none;
}

/* Stats feel more editorial */
.stat-number {
  font-size: clamp(54px, 7vw, 78px);
  font-weight: 800;
}
.stat-banner {
  border-radius: 28px;
  padding: 42px 34px;
  box-shadow: 0 28px 70px -40px rgba(11,14,20,.55);
}
.stat-banner-number {
  font-size: clamp(70px, 10vw, 108px);
}

/* Feature rows */
.feature-row {
  padding: 24px 0;
  border-bottom-color: var(--line);
}
.feature-row:hover {
  transform: translateX(4px);
}

/* Founder cards */
.founder-card {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.founder-photo {
  border-width: 4px;
  box-shadow: 0 12px 30px -18px rgba(11,14,20,.45);
}

/* Waitlist form */
.form-card {
  border-radius: 28px !important;
  padding: 34px !important;
  box-shadow: 0 30px 80px -44px rgba(11,14,20,.45) !important;
}
.field input, .field select {
  border-radius: 14px !important;
  min-height: 50px;
  background: var(--paper) !important;
}
.field input::placeholder {
  color: #9CA1AA;
}
.field input:focus, .field select:focus {
  box-shadow: 0 0 0 4px rgba(0,200,150,.12);
}

/* Footer */
footer {
  background: var(--paper);
  padding: 54px 0;
}
.footer-links {
  gap: 4px;
}
.footer-links a {
  margin-left: 0;
  padding: 7px 10px;
  border-radius: 999px;
}
.footer-links a:hover {
  background: var(--cream);
}

/* Mobile-first refinement */
@media (max-width: 720px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  section {
    padding: 72px 0;
  }
  .page-hero {
    padding: 66px 0 48px;
  }
  .page-hero h1,
  h1 {
    font-size: clamp(39px, 12vw, 58px);
    line-height: .98;
    letter-spacing: -1.4px;
  }
  .page-hero p.lede {
    font-size: 16px;
  }
  .two-col {
    gap: 38px;
  }
  .hero-visual {
    padding: 8px 8px 34px;
  }
  .hero-visual::after {
    right: 0;
    bottom: 0;
  }
  .spend-card {
    transform: none;
    padding: 24px;
  }
  .spend-card .amount {
    font-size: 39px;
  }
  .card {
    padding: 24px;
    border-radius: 22px;
  }
  .countdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .countdown-box {
    min-width: 0;
    padding: 17px 8px;
  }
  .countdown-value {
    font-size: 27px;
  }
  .countdown-label {
    font-size: 9px;
    letter-spacing: .7px;
  }
  .countdown-sep {
    display: none;
  }
  .flow-node {
    width: 100%;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
  .stat-banner {
    padding: 30px 22px;
  }
  .stat-banner-caption {
    max-width: 90%;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
  }
}

/* Motion stays restrained and accessible */
@media (prefers-reduced-motion: no-preference) {
  .spend-card {
    animation: stackt.-float 5s ease-in-out infinite;
  }
  @keyframes stackt.-float {
    0%, 100% { transform: translateY(0) rotate(1.2deg); }
    50% { transform: translateY(-7px) rotate(.4deg); }
  }
}
@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  .spend-card {
    animation: stackt.-float-mobile 5s ease-in-out infinite;
  }
  @keyframes stackt.-float-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
}

.brand-dot{color:var(--lime)}
