/* ============ Base ============ */
:root {
  --accent: #00C832;
  --ink: #111218;
  --body-gray: #888888;
  --card-bg: rgba(0, 0, 0, 0.03);
  --card-border: rgba(0, 0, 0, 0.08);
  --hairline: rgba(0, 0, 0, 0.08);
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --page-pad: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 16px;
  color: var(--ink);
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============ Shared ============ */
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 16px;
}

.eyebrow.muted {
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.14em;
}

.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 50px;
  text-align: center;
  color: var(--ink);
}

.section-title.xl {
  font-size: 56px;
  line-height: 56px;
  color: #000000;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.card-icon.icon-green  { background: linear-gradient(150deg, #34E060, #00A82A); }
.card-icon.icon-blue   { background: linear-gradient(150deg, #5EC2FF, #1D8FE8); }
.card-icon.icon-purple { background: linear-gradient(150deg, #A78BFA, #7C3AED); }

.card-icon svg { display: block; }

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: #000000;
}

.card-title.sm {
  font-size: 18px;
  line-height: 24px;
  color: var(--ink);
}

.card-body {
  color: var(--body-gray);
  font-size: 15px;
  line-height: 23px;
  max-width: 558px;
}

.link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 18px;
}

.accent-link { color: var(--accent); }
.accent-link.sm { font-size: 13px; line-height: 16px; }
.muted-link { color: rgba(0, 0, 0, 0.4); }

/* ============ Nav ============ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gutters grow past 40px so the logo/button edges sit on the centered
     1280px content grid at every viewport */
  padding: 28px max(40px, calc((100% - 1280px) / 2));
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg, #FFFFFF);
  transition: transform 0.32s ease;
}

/* Hide on scroll down, return on scroll up (class toggled in script.js) */
.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-logo {
  transition: opacity 0.2s ease;
}

.nav-logo:hover {
  opacity: 0.6;
}

.nav-logo svg {
  display: block;
  flex-shrink: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 10px 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 16px;
  transition: opacity 0.15s ease;
}

.btn:hover { opacity: 0.8; }

.btn-primary {
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

/* ============ Hero ============ */
.hero {
  padding: 140px var(--page-pad) 48px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 92px;
  text-align: center;
  color: var(--ink);
}

.hero-title .accent { color: var(--accent); }

/* ============ Scroll reveal - subtle fade-up on viewport entry ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-in {
  opacity: 1;
  transform: none;
}

/* ============ Hero - Bottom Horizon background (Paper V15) ============ */
.hero-wrap {
  position: relative;
  overflow: hidden;
}

/* keep the type above the graphics */
.hero-wrap > section {
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 1440px;
  height: 0;
  opacity: 0.46;
  pointer-events: none;
  z-index: 0;
}

.hb-card {
  position: absolute;
  box-sizing: border-box;
}

/* Green cash card */
.hb-cash {
  left: -60px;
  bottom: -120px;
  width: 440px;
  height: 300px;
  background: linear-gradient(135deg, #7CE98F, #00C832);
  border-radius: 36px;
  box-shadow: 0 -20px 70px rgba(0, 150, 40, 0.25);
  transform: rotate(-7deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hb-ring {
  width: 100px;
  height: 100px;
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hb-ring span {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
}

/* Purple bars card */
.hb-bars {
  left: 440px;
  bottom: -150px;
  width: 400px;
  height: 280px;
  background: linear-gradient(150deg, #FFFFFF, #EFE9FB);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 34px;
  box-shadow: 0 -16px 60px rgba(109, 40, 217, 0.18);
  transform: rotate(4deg);
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 40px;
}

.hb-bar { width: 44px; border-radius: 11px; }
.hb-bar.b1 { height: 70px;  background: #C9B8F7; }
.hb-bar.b2 { height: 110px; background: #9F6BEC; }
.hb-bar.b3 { height: 150px; background: #7C3AED; }

/* Orange paycheck card */
.hb-pay {
  left: 930px;
  bottom: -130px;
  width: 420px;
  height: 290px;
  background: linear-gradient(150deg, #FFFFFF, #FFF3E2);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 34px;
  box-shadow: 0 -16px 60px rgba(230, 120, 0, 0.18);
  transform: rotate(-5deg);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px;
}

.hb-bolt {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(150deg, #FFC24D, #F27D00);
  box-shadow: 0 16px 32px rgba(230, 120, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hb-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.hb-line { height: 16px; border-radius: 8px; background: #F3DFC2; }
.hb-line.w88 { width: 88%; }
.hb-line.w58 { width: 58%; }

/* ============ Hero - animated cycling variant (/home1) ============ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-anim {
  padding-top: 112px;
  padding-bottom: 4px;
}

/* Clear space under the hero text so it never overlaps the bottom graphic */
.hero-wrap {
  padding-bottom: 240px;
}

/* Aurora hero: nav floats transparently over the glow (no white band),
   and the hero re-centers since there's no bottom graphic to clear */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

/* Once scrolled past the hero top, the floating nav needs a surface again */
.nav-overlay.nav-scrolled {
  background: var(--bg, #FFFFFF);
}

.hero-wrap-aurora { padding-bottom: 130px; }
.hero-wrap-aurora .hero-anim { padding-top: 215px; }

/* ============ Hero - Aurora Glow background (/home2 test) ============ */
.hero-aurora {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 1440px;
  pointer-events: none;
  z-index: 0;
}

.hero-aurora .ab {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
}

/* Values copied 1:1 from the adapted "Hero V2 - Aurora Glow" Paper frame */
.ab-green  { left: -31px; top: -59px;  width: 572px; height: 571px; background: #00C832; opacity: 0.06; }
.ab-purple { left: 758px; top: -100px; width: 545px; height: 544px; background: #7C3AED; opacity: 0.06; }
.ab-orange { left: 391px; top: 267px;  width: 517px; height: 517px; background: #FF9D2E; opacity: 0.11; }
.ab-teal   { left: 146px; top: 294px;  width: 408px; height: 409px; background: #14B8A6; opacity: 0.09; }
.ab-pink   { left: 922px; top: 322px;  width: 381px; height: 381px; background: #EE4D9B; opacity: 0.13; }

.hero-aurora .ab-orange,
.hero-aurora .ab-teal,
.hero-aurora .ab-pink { filter: blur(100px); }

.hero-anim-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 92px;
  text-align: center;
  color: var(--ink);
}

.hero-cycle {
  display: block;
  height: 126px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.hero-cycle-track {
  display: flex;
  flex-direction: column;
  animation: heroCycle 13.5s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.hero-cycle-track > span {
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* 3 words + a duplicate of the first for a seamless loop = 4 cells (25% each) */
@keyframes heroCycle {
  0%,   26% { transform: translateY(0); }
  33%,  59% { transform: translateY(-25%); }
  66%,  92% { transform: translateY(-50%); }
  100%      { transform: translateY(-75%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cycle-track { animation: none; }
}

@media (max-width: 1024px) {
  .hero-anim-title { font-size: 72px; line-height: 70px; }
  .hero-cycle, .hero-cycle-track > span { height: 96px; }
}

@media (max-width: 640px) {
  .hero-anim { padding-top: 80px; }
  .hero-anim-title { font-size: 48px; line-height: 48px; }
  .hero-cycle, .hero-cycle-track > span { height: 66px; }
}

/* ============ Subtitle ============ */
.subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 var(--page-pad) 48px;
}

.subtitle p {
  color: var(--body-gray);
  font-size: 18px;
  line-height: 28px;
  max-width: 460px;
  text-align: center;
}

.hero-howit {
  padding: 14px 34px;
  font-size: 14px;
}

/* ============ Search Bar ============ */
.search-section {
  display: flex;
  justify-content: center;
  padding: 0 var(--page-pad) 60px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 560px;
  max-width: 100%;
  background-color: #F5F5F5;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 18px 24px;
  transition: border-color 0.15s ease;
}

.search-bar:focus-within {
  border-color: var(--accent);
}

.search-bar svg { flex-shrink: 0; }

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 18px;
  color: var(--ink);
}

.search-bar input::placeholder { color: #AAAAAA; }

/* ============ What is Stake ============ */
.what-is-stake {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--hairline);
  padding: 120px var(--page-pad);
}

.what-is-stake .eyebrow { padding-bottom: 24px; }
.what-is-stake .section-title { padding-bottom: 40px; }

.section-body {
  color: var(--body-gray);
  font-size: 17px;
  line-height: 28px;
  max-width: 640px;
  text-align: center;
  padding-bottom: 48px;
}

/* ============ Stats Bar ============ */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  min-height: 640px;
  background-color: var(--ink);
  padding: 56px var(--page-pad);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 96px;
  color: var(--accent);
}

/* Odometer roll-up - taller cells + edge fade so overflow dissolves (no hard clip line) */
.odometer {
  display: inline-flex;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.odometer > span {
  display: inline-block;
  height: 1.2em;
  line-height: 1.2em;
  vertical-align: top;
}

/* Fade only the rolling digit columns, so overflow dissolves instead of hard-clipping.
   Static $ and commas stay fully solid. */
.odo-digit {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 17%, #000 83%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 17%, #000 83%, transparent 100%);
}

.odo-ribbon {
  display: block;
  will-change: transform;
}

.odo-ribbon > span {
  display: block;
  height: 1.2em;
  line-height: 1.2em;
  text-align: center;
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 14px;
}

.join-num { color: var(--accent); }

/* ============ Your Cash Back ============ */
.cash-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 120px var(--page-pad);
  background-color: #F6F6F7;
  border-top: 1px solid var(--hairline);
}

/* white cards on the gray band, matching the bento section */
.cash-back .card {
  background-color: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-row {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 960px;
}

.cash-back-cards .card {
  flex: 1 1 0;
  padding: 36px;
}

/* ============ Benefits (Bento) ============ */
.bento-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  background-color: #F6F6F7;
  border-top: 1px solid var(--hairline);
  padding: 120px var(--page-pad);
}

.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1280px;
}

.bento-row {
  display: flex;
  gap: 24px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  gap: 8px;
  min-height: 430px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 28px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(17, 18, 24, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Shopify-style: the graphic drifts up/scales on hover */
.bento-card:hover .art-stage {
  transform: translateY(-6px) scale(1.024);
}

.bento-card.wide { flex: 2 1 0; }

.bento-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  color: var(--ink);
}

.bento-body {
  color: #6B6B70;
  font-size: 13.5px;
  line-height: 20px;
  max-width: 520px;
}

.bento-art {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.art-stage {
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.bento-btn {
  align-self: flex-start;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  padding: 9px 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  color: var(--ink);
  transition: background-color 0.15s ease;
  z-index: 1;
}

.bento-btn:hover { background-color: #F3F4F3; }

/* --- Art: shared receipt pieces --- */
.receipt-line {
  width: 100%;
  height: 8px;
  background-color: #E7EAE7;
  border-radius: 4px;
}

.receipt-line.w74 { width: 74%; }
.receipt-line.w86 { width: 86%; }
.receipt-line.w68 { width: 68%; }

/* --- Art: Cash Back on Rent --- */
.art-rent { width: 330px; height: 100%; min-height: 250px; }

.rent-receipt {
  position: absolute;
  left: 84px;
  top: 34px;
  width: 168px;
  height: 210px;
  background: linear-gradient(160deg, #FFFFFF 0%, #F2F4F2 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(17, 18, 24, 0.14);
  transform: rotate(-7deg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.receipt-label {
  color: #B4B7B4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 12px;
}

.receipt-amount {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--ink);
  padding-top: 6px;
}

.rent-cash {
  position: absolute;
  left: 4px;
  top: 168px;
  width: 150px;
  height: 84px;
  background: linear-gradient(135deg, #7CE98F 0%, #00C832 55%, #009A27 100%);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 150, 40, 0.35);
  transform: rotate(8deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cash-ring {
  width: 46px;
  height: 46px;
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cash-ring span {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.rent-check {
  position: absolute;
  left: 196px;
  top: 16px;
  width: 44px;
  height: 44px;
  background: linear-gradient(150deg, #34E060 0%, #00A82A 100%);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 150, 40, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Art: Credit Builder --- */
.art-credit { width: 320px; height: 100%; min-height: 250px; }

.credit-bar {
  position: absolute;
  width: 44px;
  border-radius: 10px;
}

.credit-bar.b1 { left: 48px;  top: 176px; height: 64px;  background: linear-gradient(180deg, #E4DAFF 0%, #C9B8F7 100%); box-shadow: 0 8px 16px rgba(109, 40, 217, 0.12); }
.credit-bar.b2 { left: 104px; top: 138px; height: 102px; background: linear-gradient(180deg, #C2A8F5 0%, #9F6BEC 100%); box-shadow: 0 8px 16px rgba(109, 40, 217, 0.16); }
.credit-bar.b3 { left: 160px; top: 96px;  height: 144px; background: linear-gradient(180deg, #A67CF0 0%, #7C3AED 100%); box-shadow: 0 10px 20px rgba(109, 40, 217, 0.22); }
.credit-bar.b4 { left: 216px; top: 46px;  height: 194px; background: linear-gradient(180deg, #8B5CF6 0%, #5B21B6 100%); box-shadow: 0 12px 24px rgba(109, 40, 217, 0.3); }

.credit-arrow {
  position: absolute;
  left: 40px;
  top: 8px;
}

.credit-chip {
  position: absolute;
  left: 214px;
  top: 118px;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  padding: 8px 14px;
  box-shadow: 0 10px 24px rgba(17, 18, 24, 0.16);
  transform: rotate(4deg);
}

.credit-chip .score {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  color: var(--ink);
}

.credit-chip .delta {
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: #7C3AED;
}

/* --- Art: Stake Account --- */
.art-bank { width: 330px; height: 100%; min-height: 250px; }

.bank-building {
  position: absolute;
  left: 62px;
  top: 34px;
  width: 216px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-3deg);
}

.bank-columns {
  width: 158px;
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
}

.bank-col {
  width: 26px;
  height: 88px;
  background: linear-gradient(90deg, #FBEFDA 0%, #EED3A4 100%);
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(180, 120, 30, 0.15);
}

.bank-base {
  width: 178px;
  height: 16px;
  background: linear-gradient(180deg, #F7E6C6 0%, #EACF9E 100%);
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(180, 120, 30, 0.2);
}

.bank-shield {
  position: absolute;
  left: 172px;
  top: 120px;
  transform: rotate(6deg);
}

.bank-tag {
  position: absolute;
  left: 42px;
  top: 32px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  padding: 7px 13px;
  box-shadow: 0 8px 20px rgba(17, 18, 24, 0.14);
  transform: rotate(-5deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 13px;
  color: var(--ink);
}

/* --- Art: Neighborhood Network --- */
.art-map { width: 100%; height: 100%; min-height: 260px; }

.map-inner {
  position: relative;
  width: 330px;
  height: 260px;
  margin: 0 auto;
}

.map-tile {
  position: absolute;
  left: 0;
  top: 24px;
  width: 330px;
  height: 200px;
  background-color: #EEF4EF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(17, 18, 24, 0.12);
  transform: rotate(-2deg);
  overflow: hidden;
}

.map-pin {
  position: absolute;
  width: 52px;
  height: 64px;
  filter: drop-shadow(0 8px 14px rgba(17, 18, 24, 0.22));
}

.map-pin span {
  position: absolute;
  left: 0;
  top: 14px;
  width: 52px;
  display: flex;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.map-pin.p1 { left: 30px;  top: 8px; }
.map-pin.p2 { left: 150px; top: 44px; }
.map-pin.p3 { left: 244px; top: 104px; }
.map-pin.p4 { left: 74px;  top: 130px; }
.map-pin.p5 { left: 214px; top: 2px; transform: scale(0.75); }

.map-pin.p1 span { color: #00A82A; }
.map-pin.p2 span { color: #7C3AED; }
.map-pin.p3 span { color: #F27D00; }
.map-pin.p4 span { color: #1D8FE8; }
.map-pin.p5 span { color: #EE4D9B; }

/* --- Art: Express Paycheck --- */
.art-pay { width: 360px; height: 100%; min-height: 250px; }

.speed-line {
  position: absolute;
  height: 10px;
  border-radius: 5px;
}

.speed-line.s1 { left: 0;    top: 96px;  width: 110px; background: linear-gradient(90deg, rgba(242, 125, 0, 0) 0%, #FFD08A 100%); }
.speed-line.s2 { left: 18px; top: 126px; width: 130px; background: linear-gradient(90deg, rgba(242, 125, 0, 0) 0%, #FFB558 100%); }
.speed-line.s3 { left: 0;    top: 156px; width: 96px;  background: linear-gradient(90deg, rgba(242, 125, 0, 0) 0%, #FFE0B3 100%); }

.paycheck {
  position: absolute;
  left: 120px;
  top: 58px;
  width: 220px;
  height: 132px;
  background: linear-gradient(140deg, #FFFFFF 0%, #F0F5F1 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(17, 18, 24, 0.16);
  transform: rotate(3deg);
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
}

.paycheck-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paycheck-label {
  color: #B4B7B4;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 12px;
}

.paycheck-chip {
  background-color: #FFF1DC;
  border-radius: 100px;
  padding: 4px 9px;
  color: #E07800;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 11px;
}

.paycheck-amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  color: var(--ink);
  padding-top: 4px;
}

.pay-bolt {
  position: absolute;
  left: 290px;
  top: 22px;
  width: 58px;
  height: 58px;
  background: linear-gradient(150deg, #FFC24D 0%, #F27D00 100%);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(230, 120, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(8deg);
}

/* --- Art: Cash Back on Leasing (teal) --- */
.art-lease { width: 330px; height: 100%; min-height: 250px; }

.lease-doc {
  position: absolute;
  left: 84px;
  top: 34px;
  width: 168px;
  height: 210px;
  background: linear-gradient(160deg, #FFFFFF 0%, #EEF6F5 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(17, 18, 24, 0.14);
  transform: rotate(-7deg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.lease-sign { margin-top: 4px; }

.lease-sign-line {
  width: 100%;
  height: 2px;
  background-color: #D7E0DE;
  border-radius: 2px;
}

.lease-key {
  position: absolute;
  left: 0;
  top: 158px;
  transform: rotate(-12deg);
  filter: drop-shadow(0 12px 22px rgba(13, 148, 136, 0.3));
}

.lease-badge {
  position: absolute;
  left: 196px;
  top: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(150deg, #2DD4BF 0%, #0D9488 100%);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(13, 148, 136, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lease-badge span {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

/* ============ Credit Score Callout ============ */
.callout {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 80px;
}

.callout p {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 40px;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
}

/* ============ Get Started CTA ============ */
.get-started {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  border-top: 1px solid var(--hairline);
  padding: 140px var(--page-pad);
}

.get-started-title {
  font-family: var(--font-display);
  font-size: 112px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 100px;
  color: var(--ink);
}

.get-started-sub {
  color: var(--body-gray);
  font-size: 19px;
  line-height: 30px;
  max-width: 520px;
}

.get-started-btn {
  margin-top: 12px;
  padding: 16px 40px;
  font-size: 15px;
}

/* Dark combined CTA - "Join 400,000 renters." */
.dark-cta {
  background: #111218;
  border-top: none;
}

.dark-cta .get-started-sub {
  color: rgba(255, 255, 255, 0.5);
}

.cta-join {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.26em;
  font-size: 92px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.cta-join .join-num { color: var(--accent); }

.cta-btn {
  background: #ffffff;
  color: var(--ink);
  font-weight: 600;
}

.cta-btn:hover { opacity: 0.85; }

/* ============ Aurora Light CTA (Paper: CTA V1 Aurora Light + V2 Aurora Glow blobs) ============ */
.aurora-cta {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid var(--hairline);
}

.aurora-cta > *:not(.cta-aurora) {
  position: relative;
  z-index: 1;
}

.cta-aurora {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1440px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cta-aurora .cab {
  position: absolute;
  display: block;
  border-radius: 50%;
}

/* exact values from the user's adapted V2 Aurora Glow, tops shifted for the band */
.cta-aurora .cab-g { left: -31px; top: -140px; width: 572px; height: 571px; background: #00C832; opacity: 0.06; filter: blur(95px); }
.cta-aurora .cab-p { left: 758px; top: -160px; width: 545px; height: 544px; background: #7C3AED; opacity: 0.06; filter: blur(95px); }
.cta-aurora .cab-o { left: 391px; top: 160px; width: 517px; height: 517px; background: #FF9D2E; opacity: 0.11; filter: blur(100px); }
.cta-aurora .cab-t { left: 146px; top: 190px; width: 408px; height: 409px; background: #14B8A6; opacity: 0.09; filter: blur(100px); }
.cta-aurora .cab-k { left: 922px; top: 210px; width: 381px; height: 381px; background: #EE4D9B; opacity: 0.13; filter: blur(100px); }

.aurora-cta .cta-join { color: var(--ink); }
.aurora-cta .cta-join .join-num { color: var(--accent); }
.aurora-cta .get-started-sub { color: #6B6B70; }

.aurora-cta .cta-btn {
  background: var(--ink);
  color: #ffffff;
}

/* ============ FAQs ============ */
.faqs {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 120px var(--page-pad);
}

.faqs .section-header { padding-bottom: 16px; }

.faq-list {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 100%;
  max-width: 800px;
}

.faq-item {
  border-top: 1px solid var(--hairline);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 28px 0;
  text-align: left;
}

.faq-question span:first-child {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  max-width: 680px;
}

.faq-icon {
  color: rgba(0, 0, 0, 0.25);
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: var(--body-gray);
  font-size: 15px;
  line-height: 23px;
  max-width: 680px;
  padding-bottom: 28px;
}

.faq-divider {
  border-top: 1px solid var(--hairline);
}

.faq-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 16px;
}

/* ============ Disclaimers ============ */
.disclaimers {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-top: 1px solid var(--hairline);
  padding: 80px;
}

.disclaimers-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.disclaimers-header .eyebrow {
  font-size: 12px;
}

.disclaimers-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.7);
}

.disclaimers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}

.disclaimers-list p {
  color: rgba(0, 0, 0, 0.35);
  font-size: 14px;
  line-height: 22px;
}

/* ============ Footer ============ */
.footer {
  background-color: #000000;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 80px var(--page-pad) 48px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 22px;
}

.footer-about .footer-eho {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.footer-nav {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 14px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 14px;
  transition: color 0.15s ease;
}

.footer-col a:hover { color: rgba(255, 255, 255, 0.85); }

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  transition: color 0.15s ease;
}

.footer-social a:hover { color: rgba(255, 255, 255, 0.7); }

/* Circular social icon buttons */
.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.footer-social-icons a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.footer-social-icons svg { display: block; }

.footer-col-title.footer-get-app { margin-top: 18px; }

/* App store badges */
.footer-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.store-badge:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.store-badge svg { flex-shrink: 0; }

.store-badge .sb-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-badge .sb-top {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.store-badge .sb-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
}

.footer-legal sup {
  font-size: 9px;
  line-height: 0;
}

.footer-legal .footer-copy {
  padding-top: 8px;
}

/* ============ Footer Legal ============ */
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px var(--page-pad) 48px;
}

.footer-legal-intro {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
}

.footer-legal-intro p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 20px;
}

.footer-legal > p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  line-height: 18px;
}

.footer-legal .footer-fine {
  color: rgba(255, 255, 255, 0.4);
  max-width: 960px;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  :root { --page-pad: 40px; }

  .hero-title { font-size: 72px; line-height: 70px; }
  .section-title.xl { font-size: 44px; line-height: 46px; }
  .section-title { font-size: 38px; line-height: 42px; }
  .cta-join { font-size: 64px; }
  .get-started-title { font-size: 84px; line-height: 80px; }
  .stat-value { font-size: 72px; line-height: 72px; }

  .card-row, .bento-row { flex-direction: column; }

  .stats-bar { gap: 64px; min-height: 0; padding: 80px 40px; }
  .footer-columns { flex-direction: column; }
  .footer-nav { flex-wrap: wrap; gap: 48px; }
}

@media (max-width: 640px) {
  :root { --page-pad: 24px; }

  .hero { padding-top: 80px; }
  .hero-title { font-size: 48px; line-height: 48px; }
  .section-title.xl { font-size: 34px; line-height: 38px; }
  .section-title { font-size: 30px; line-height: 34px; }
  .cta-join { font-size: 44px; }
  .get-started-title { font-size: 56px; line-height: 56px; }
  .stat-value { font-size: 52px; line-height: 52px; }
  .callout p { font-size: 24px; line-height: 32px; }
  .callout { padding: 56px 24px; }
  .disclaimers { padding: 56px 24px; }
  .stats-bar { flex-direction: column; gap: 40px; }
}
