/* ==========================================================================
   Craton — cratonai.systems
   Navy / brass / slate. Centred, product-led layout.
   ========================================================================== */

:root {
  --ink:        #050C16;
  --ink-2:      #0A1726;
  --navy:       #12283F;
  --navy-line:  #1E3550;

  --brass:      #B4884A;
  --brass-deep: #8A6A2E;
  --brass-mid:  #C9A163;
  --brass-soft: #E3CC9F;
  --brass-wash: #F8F2E6;

  --slate:      #556878;
  --slate-2:    #7C8C9B;
  --slate-3:    #A9B6C2;

  --blue:       #2E6FA8;
  --blue-lift:  #17334F;
  --blue-glow:  rgba(58,122,182,0.22);

  --grad-deep: radial-gradient(110% 70% at 50% -12%, #0E2544 0%, rgba(5,12,22,0) 60%),
               linear-gradient(176deg, #06111E 0%, #030912 58%, #040C18 100%);
  --grad-navy: radial-gradient(100% 72% at 84% -12%, #10294B 0%, rgba(4,11,21,0) 60%),
               linear-gradient(200deg, #071426 0%, #040B16 64%, #06101D 100%);
  --grad-cta:  radial-gradient(80% 96% at 50% -8%, #0F2748 0%, rgba(3,8,15,0) 58%),
               radial-gradient(46% 60% at 50% 0%, rgba(201,161,99,0.12) 0%, rgba(3,8,15,0) 60%),
               linear-gradient(174deg, #06101C 0%, #02060C 100%);

  /* Motion tokens, read from aave.com's stylesheet */
  --ease-swift:  cubic-bezier(.19, 1, .22, 1);      /* house curve, expo out */
  --ease-snappy: cubic-bezier(.175, .885, .32, 1.1); /* 10% overshoot, small UI */
  --ease-blur:   cubic-bezier(.25, .1, .25, 1);      /* pill blur-up */
  --ease-odo:    linear(0, .13 4%, .43 13%, .72 24%, .9 36%, .97 49%, .99 62%, 1);
  --ease: var(--ease-swift);
  --nav-h: 66px;

  --line:       #E5EAF0;
  --line-dark:  rgba(255,255,255,0.12);
  --wash:       #F3F6FA;
  --wash-2:     #EAEFF5;
  --white:      #FFFFFF;

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mark: "Archivo", "Inter", Helvetica, Arial, sans-serif;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --pill: 999px;

  --gutter: clamp(22px, 4.2vw, 48px);
  --maxw: 1140px;
  --maxw-wide: 1280px;
  --maxw-narrow: 720px;

  --shadow-sm: 0 1px 2px rgba(10,20,32,0.04), 0 4px 14px rgba(10,20,32,0.05);
  --shadow: 0 2px 6px rgba(10,20,32,0.05), 0 18px 44px rgba(10,20,32,0.09);
  --shadow-lg: 0 4px 10px rgba(10,20,32,0.06), 0 34px 80px rgba(10,20,32,0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
::selection { background: var(--brass-soft); color: var(--ink); }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--wide { max-width: var(--maxw-wide); }
.wrap--narrow { max-width: var(--maxw-narrow); }

.panel { padding: 104px 0; position: relative; }
.panel--tight { padding: 72px 0; }
.panel--wash { background: var(--wash); }
.panel--wash2 { background: var(--wash-2); }
.panel--dark { background: var(--grad-deep); color: var(--white); }
.panel--navy { background: var(--grad-navy); color: var(--white); }

.panel--dark .lede, .panel--navy .lede { color: var(--slate-3); }
.panel--dark .muted, .panel--navy .muted { color: var(--slate-2); }

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

.h1 {
  font-size: clamp(38px, 6.2vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.038em;
}

.h2 {
  font-size: clamp(30px, 4.3vw, 52px);
  line-height: 1.07;
  letter-spacing: -0.032em;
}

.h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.024em;
  font-weight: 800;
}

.h4 {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.018em;
  font-weight: 800;
}

.accent { color: var(--brass-deep); }
.panel--dark .accent, .panel--navy .accent, .hero--dark .accent { color: var(--brass-mid); }

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 62ch;
  margin-top: 20px;
}

.lede--tight { max-width: 46ch; }

.muted { color: var(--slate); }
.small { font-size: 15px; line-height: 1.55; }

.label {
  font-family: var(--font-mark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-2);
}

/* Eyebrow. Plain type, no pill, no dot. The pill-with-a-dot is the single
   most recognisable tell of a generated site, so it is gone. */
.chip {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brass-deep);
}
.panel--dark .chip, .panel--navy .chip, .hero--dark .chip, .cta .chip { color: var(--brass-soft); }

/* --------------------------------------------------------------------------
   Wordmark — mixed case, lowercase drawn to cap height
   -------------------------------------------------------------------------- */

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}

.logo {
  height: 25px;
  width: auto;
  display: block;
}

.logo--foot { height: 29px; }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: transparent;
  transition: box-shadow .2s ease-out;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(255,255,255,0);
  transition: background-color .2s ease-out;
}
.nav.is-scrolled { box-shadow: 0 1px 0 rgba(0,0,0,.05); }
.nav.is-scrolled::before {
  background-color: rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}

/* Light heroes run up underneath the transparent nav, so the wash reaches
   the top of the screen the way Aave's does. Dark heroes stay below it. */
.nav ~ main > .hero:first-child:not(.hero--dark) { margin-top: calc(var(--nav-h) * -1); padding-top: calc(92px + var(--nav-h)); }
.nav ~ main > .hero--page:first-child:not(.hero--dark) { padding-top: calc(78px + var(--nav-h)); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}

.nav__links { display: flex; align-items: center; gap: 30px; }

.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.16s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__links .btn { color: var(--white); }
.nav__links .btn:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle { position: relative; }
.nav-toggle i {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.6px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease-in-out;
}
.nav-toggle i:nth-child(1) { top: 15px; }
.nav-toggle i:nth-child(2) { top: 22px; transition-duration: .18s; }
.nav-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.008em;
  padding: 13px 26px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }

.btn--primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--primary:hover { background: var(--navy); border-color: var(--navy); }

.btn--brass { background: var(--brass); color: #1A1206; border-color: var(--brass); }
.btn--brass:hover { background: var(--brass-mid); border-color: var(--brass-mid); }

.btn--soft { background: var(--wash-2); color: var(--ink); border-color: transparent; }
.btn--soft:hover { background: #DEE5EE; }

.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: #EEF2F7; border-color: #EEF2F7; }

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.28); }
.btn--outline-light:hover { border-color: rgba(255,255,255,0.6); }

.btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.center .btns { justify-content: center; }

.cta-note { font-size: 14px; color: var(--slate-2); margin-top: 18px; }
.panel--dark .cta-note, .hero--dark .cta-note { color: var(--slate-2); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.arrow-link .t {
  background: linear-gradient(currentColor, currentColor) 0 100% / 0% 1.5px no-repeat;
  padding-bottom: 2px;
  transition: background-size .2s ease;
}
.arrow-link:hover .t, .arrow-link:focus-visible .t { background-size: 100% 1.5px; }

.arrow-link .ic {
  position: relative;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  flex: none;
}
.arrow-link .ic::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ink);
  transform: scale(.8);
  transition: transform .2s ease;
}
.arrow-link .ic svg {
  position: relative;
  width: 12px; height: 12px;
  color: var(--white);
  transition: transform .2s ease;
}
.arrow-link:hover .ic::before, .arrow-link:focus-visible .ic::before { transform: scale(1); }
.arrow-link:hover .ic svg, .arrow-link:focus-visible .ic svg { transform: translateX(2px); }

.panel--dark .arrow-link .ic::before, .panel--navy .arrow-link .ic::before,
.tile--dark .arrow-link .ic::before { background: var(--brass); }
.panel--dark .arrow-link .ic svg, .panel--navy .arrow-link .ic svg,
.tile--dark .arrow-link .ic svg { color: var(--ink); }
.panel--dark .arrow-link, .panel--navy .arrow-link, .tile--dark .arrow-link { color: var(--white); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 92px 0 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(88% 58% at 50% -8%, rgba(180,136,74,0.12) 0%, rgba(180,136,74,0) 60%),
    radial-gradient(70% 46% at 16% 2%, rgba(46,111,168,0.09) 0%, rgba(46,111,168,0) 62%),
    linear-gradient(180deg, #F1F5FA 0%, #FFFFFF 76%);
}

.hero--short { padding-bottom: 92px; }
.hero--page { padding: 78px 0 74px; }

.hero .h1 { margin-top: 26px; }
.hero .lede { margin-left: auto; margin-right: auto; }

.hero--dark {
  background:
    radial-gradient(70% 58% at 50% 0%, rgba(201,161,99,0.15) 0%, rgba(10,20,32,0) 62%),
    var(--grad-deep);
  color: var(--white);
}
.hero--dark .lede { color: var(--slate-3); }

/* --------------------------------------------------------------------------
   Stat row
   -------------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.stats--3 { grid-template-columns: repeat(3, 1fr); max-width: 760px; }

.stat { text-align: center; position: relative; padding: 0 12px; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 10%;
  width: 1px; height: 80%;
  background: var(--line);
}
.panel--dark .stat + .stat::before, .panel--navy .stat + .stat::before { background: var(--line-dark); }

.stat__fig {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--brass-deep);
  white-space: nowrap;
}
.panel--dark .stat__fig, .panel--navy .stat__fig, .hero .stat__fig { color: var(--brass-deep); }
.panel--dark .stat__fig, .panel--navy .stat__fig { color: var(--brass-mid); }

.stat__label { margin-top: 10px; font-size: 14.5px; color: var(--slate); line-height: 1.4; }
.panel--dark .stat__label, .panel--navy .stat__label { color: var(--slate-2); }

/* --------------------------------------------------------------------------
   Product mock — the assistant window
   -------------------------------------------------------------------------- */

.mock-stage {
  margin-top: 60px;
  padding-bottom: 96px;
  position: relative;
}

.mock {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: left;
}

.mock__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: #FBFCFD;
}
.mock__dots { display: flex; gap: 6px; }
.mock__dots i { width: 9px; height: 9px; border-radius: 50%; background: #DCE3EB; display: block; }
.mock__title { font-size: 13px; color: var(--slate-2); font-weight: 500; margin-left: 6px; }
.mock__badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate);
}
.mock__badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #2F9E5F; }

.mock__body { padding: 26px 24px 28px; display: grid; gap: 18px; }

.bubble {
  max-width: 86%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 15.5px;
  line-height: 1.5;
}
.bubble--user {
  margin-left: auto;
  background: var(--ink);
  color: var(--white);
  border-bottom-right-radius: 6px;
}
.bubble--bot {
  background: var(--wash);
  color: var(--ink);
  border-bottom-left-radius: 6px;
}
.bubble--bot strong { font-weight: 600; }

.mock-tool {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.mock-tool__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #FBFCFD;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
}
.mock-tool__head span.tag {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate);
}
.mock-row {
  display: grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
}
.mock-row:last-child { border-bottom: 0; }
.mock-row span:nth-child(2) { color: var(--slate-2); }
.mock-row .pillstat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate);
  white-space: nowrap;
}
.mock-row .pillstat::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--slate-3);
  flex: none;
}
.mock-row .pillstat--go::before { background: #2F9E5F; }
.mock-row .pillstat--wait::before { background: var(--brass); }


/* --------------------------------------------------------------------------
   Cards, tiles, grids
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px 34px;
}
.panel--wash .card, .panel--wash2 .card { box-shadow: none; border-color: transparent; background: var(--white); }

.card--dark {
  background: rgba(255,255,255,0.028);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.card--dark p { color: var(--slate-2); }

.card p { color: var(--slate); margin-top: 12px; font-size: 16px; }
.card .h4 + p, .card .h3 + p { margin-top: 12px; }

.card__icon {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brass-deep);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.card--dark .card__icon { color: var(--brass-mid); }

/* Big feature tile, Apple style */
.tile {
  border-radius: var(--r-xl);
  padding: 52px 44px 56px;
  background: var(--wash);
  position: relative;
  overflow: hidden;
}
.tile--dark { background: var(--grad-deep); color: var(--white); }
.tile--dark p { color: var(--slate-3); }
.tile--brass { background: linear-gradient(160deg, #1B2F1F00, var(--brass-wash)); border: 1px solid rgba(180,136,74,0.18); }
.tile p { color: var(--slate); margin-top: 16px; max-width: 46ch; }

/* --------------------------------------------------------------------------
   Lists
   -------------------------------------------------------------------------- */

.ticks { display: grid; gap: 14px; margin-top: 24px; }
.ticks li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.55;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 15px; height: 9px;
  border-left: 1.8px solid var(--brass);
  border-bottom: 1.8px solid var(--brass);
  transform: rotate(-45deg);
}
.panel--dark .ticks li::before, .panel--navy .ticks li::before { border-color: var(--brass-mid); }

.ticks li strong { font-weight: 600; }
.ticks li span { display: block; color: var(--slate); font-size: 15px; margin-top: 3px; }
.panel--dark .ticks li span, .panel--navy .ticks li span { color: var(--slate-2); }

/* Rows: label + description */
.rows { border-top: 1px solid var(--line); margin-top: 34px; }
.rows li {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.rows li b { font-weight: 700; font-size: 16.5px; letter-spacing: -0.012em; }
.rows li p { color: var(--slate); font-size: 16px; }
.panel--dark .rows, .panel--navy .rows { border-color: var(--line-dark); }
.panel--dark .rows li, .panel--navy .rows li { border-color: var(--line-dark); }
.panel--dark .rows li p, .panel--navy .rows li p { color: var(--slate-2); }

/* Timeline */
.timeline { display: grid; gap: 0; margin-top: 40px; counter-reset: tl; }
.timeline li {
  counter-increment: tl;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline__tag {
  font-family: var(--font-mark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brass-deep);
  padding-top: 5px;
}
.timeline p { color: var(--slate); margin-top: 8px; max-width: 64ch; }
.panel--dark .timeline li, .panel--navy .timeline li { border-color: var(--line-dark); }
.panel--dark .timeline p, .panel--navy .timeline p { color: var(--slate-2); }
.panel--dark .timeline__tag, .panel--navy .timeline__tag { color: var(--brass-mid); }

.timeline--compact li { grid-template-columns: 34px minmax(0, 1fr); gap: 16px; }
.timeline--compact li:first-child { border-top: 0; padding-top: 0; }
.timeline--compact li:last-child { border-bottom: 0; padding-bottom: 0; }

/* --------------------------------------------------------------------------
   Split
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.split--top { align-items: start; }
.split--form { grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr); gap: 52px; }
.split--sticky > div:first-child { position: sticky; top: 100px; }

/* --------------------------------------------------------------------------
   Quote
   -------------------------------------------------------------------------- */

.quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.032em;
  max-width: 24ch;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { margin-top: 40px; border-top: 1px solid var(--line); }
.faq li { border-bottom: 1px solid var(--line); }
.faq details { padding: 22px 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  border-right: 1.8px solid var(--brass);
  border-bottom: 1.8px solid var(--brass);
  transform: rotate(45deg) translateY(-2px);
}
.faq details[open] summary::after { transform: rotate(225deg) translateY(-2px); }
html.js-faq .faq summary::after { display: none; }
.faq .pm { width: 22px; height: 22px; flex: none; color: var(--brass); }
.faq .pm .v { transform-origin: 11px 11px; transform-box: view-box; }
.faq details p { margin-top: 14px; color: var(--slate); max-width: 70ch; }
.faq__body { overflow: hidden; }

/* --------------------------------------------------------------------------
   Form
   -------------------------------------------------------------------------- */

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 14.5px; font-weight: 600; letter-spacing: -0.008em; }
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #D7DFE8;
  border-radius: 12px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(180,136,74,0.13);
}
.field__hint { font-size: 13.5px; color: var(--slate-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--slate); }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--brass); }

.aside-card {
  background: var(--wash);
  border-radius: var(--r-lg);
  padding: 30px 28px;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta {
  background: var(--grad-cta);
  color: var(--white);
  padding: 104px 0;
  text-align: center;
}
.cta .lede { color: var(--slate-3); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer { background: var(--white); border-top: 1px solid var(--line); padding: 64px 0 36px; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 0.65fr));
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer p { font-size: 15px; color: var(--slate); max-width: 34ch; margin-top: 16px; }
.footer h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer a { font-size: 15px; color: var(--slate); text-decoration: none; }
.footer a:hover { color: var(--ink); }
.footer__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 26px; font-size: 13.5px; color: var(--slate-2);
}

.footer__partner { font-size: 14px; margin-top: 14px; }
.footer__partner a {
  color: var(--brass-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(180,136,74,0.4);
}
.footer__partner a:hover { color: var(--brass-deep); border-bottom-color: var(--brass-deep); }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mt-72 { margin-top: 72px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }

.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;
}

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--brass); color: var(--ink); padding: 10px 18px; z-index: 100; font-size: 14px; font-weight: 600; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; top: 0; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--sticky > div:first-child { position: static; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .stat:nth-child(3)::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .tile { padding: 42px 32px 46px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .panel { padding: 68px 0; }
  .panel--tight { padding: 52px 0; }
  .cta { padding: 72px 0; }
  .hero { padding-top: 58px; }
  .nav ~ main > .hero:first-child:not(.hero--dark) { padding-top: calc(58px + var(--nav-h)); }
  .nav ~ main > .hero--page:first-child:not(.hero--dark) { padding-top: calc(54px + var(--nav-h)); }
  .hero--short { padding-bottom: 62px; }
  .hero--page { padding: 54px 0 52px; }

  .nav__links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 66px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 6px 0 18px;
  }
  .nav__links.is-open { display: flex; }
  .nav:has(.nav__links.is-open)::before { background-color: rgba(255,255,255,.96); }
  .nav__links a:not(.btn) { background: none; }
  .nav__links a { padding: 14px var(--gutter); border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__links .btn { margin: 16px var(--gutter) 0; border-bottom: 0; }
  .nav-toggle { display: inline-flex; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats, .stats--3 { grid-template-columns: 1fr 1fr; }
  .logo { height: 22px; }
  .logo--foot { height: 26px; }
  .stat + .stat::before { display: none; }

  .rows li { grid-template-columns: 1fr; gap: 6px; }
  .timeline li { grid-template-columns: 1fr; gap: 6px; }
  .timeline__tag { padding-top: 0; }

  .field-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer p { max-width: none; }

  .mock-stage { margin-top: 42px; padding-bottom: 62px; }
  .mock__body { padding: 20px 16px 22px; }
  .bubble { max-width: 94%; font-size: 15px; }
  .mock-row { grid-template-columns: minmax(0,1fr) auto; font-size: 13px; }
  .mock-row span:nth-child(2) { display: none; }

  .quote { max-width: none; }
  .btns { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ==========================================================================
   Compatibility row
   ========================================================================== */

.compat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 40px;
  margin-top: 44px;
}
.compat__note {
  flex-basis: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--slate-2);
  letter-spacing: 0.01em;
}
.compat__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: #2A3746;
  transition: color .2s ease;
}
.compat__item:hover { color: var(--ink); }
.compat__logo { height: 22px; width: 22px; flex: none; }


/* ==========================================================================
   Image hero
   Full bleed on the navy of the photograph itself, copy in the empty space
   on the left, and the product doing its job in cards around her.
   ========================================================================== */

.hero--image {
  background: #040B16;
  text-align: left;
  padding: 0;
  height: clamp(600px, 52vw, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero--image .hero__img { position: absolute; inset: 0; z-index: 0; }
.hero--image .hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 14%; display: block; }
.hero--image::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4,11,22,.92) 0%, rgba(4,11,22,.72) 30%, rgba(4,11,22,.18) 52%, rgba(4,11,22,0) 64%),
    linear-gradient(0deg, rgba(4,11,22,.55) 0%, rgba(4,11,22,0) 22%);
}
.hero.hero--image .hero__inner { position: relative; z-index: 3; width: 100%; pointer-events: none; }
.hero--image .hero__copy { pointer-events: auto; }
.hero--image .hero__copy { max-width: 540px; }
.hero--image .h1 { font-size: clamp(40px, 5vw, 70px); }
.hero--image .lede { color: #C3CCD6; margin-left: 0; margin-right: 0; }
.hero--image .btns { justify-content: flex-start; }
.hero--image .cta-note { color: #7F8D9B; }

/* The stage the cards sit on: the right half, where she is */
.hero__stage { position: absolute; top: 0; bottom: 0; right: 0; width: 56%; z-index: 2; pointer-events: none; }

.fc {
  position: absolute;
  pointer-events: auto;
  background: rgba(251,250,247,.96);
  color: var(--ink);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 18px 40px rgba(2,6,14,.45), 0 2px 6px rgba(2,6,14,.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--font-sans);
}
.fc__head { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.fc__title { font-size: 13px; font-weight: 600; white-space: nowrap; }
.fc__live { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--slate); }
.fc__label { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; letter-spacing: .02em; color: var(--brass-deep); }
.fc__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.fc__sub, .fc__meta { font-size: 12.5px; color: var(--slate); margin-top: 3px; }

.fc--chaser { top: 15%; right: 3.5%; width: 238px; }
.fc__big { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1.1; letter-spacing: -.03em; margin-top: 10px; display: flex; }
.fc__big .wheel, .fc__big .strip > span { height: 1.1em; line-height: 1.1em; }
.fc__bar { height: 4px; border-radius: 4px; background: #E7E2DA; margin-top: 12px; overflow: hidden; }
.fc__bar i { display: block; height: 100%; width: 100%; border-radius: 4px; background: var(--brass); transform-origin: left; transform: scaleX(var(--p, .21)); transition: transform .9s var(--ease-swift); }

.fc--approve { bottom: 12%; left: 10%; width: 286px; }
.fc__title2 { font-size: 15px; font-weight: 600; margin-top: 8px; letter-spacing: -.01em; transition: opacity .2s ease, transform .2s var(--ease-swift); }
.fc__actions { margin-top: 14px; min-height: 36px; display: flex; align-items: center; }
.fc__btn {
  appearance: none; border: 0; cursor: pointer;
  font: inherit; font-size: 13px; font-weight: 600;
  padding: 9px 16px; border-radius: 999px;
  background: var(--ink); color: var(--white);
  transition: transform .75s var(--ease-snappy), background-color .25s ease;
}
.fc__btn:hover { background: #12243A; transform: scale(1.03); }
.fc__btn:active { transform: scale(.95); transition-duration: .12s; }
.fc__btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.fc__btn[hidden], .fc__sent[hidden] { display: none; }
.fc__btn { white-space: nowrap; }
.fc__sent { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: var(--slate); }
.fc__sent svg { width: 18px; height: 18px; flex: none; }
.fc__sent circle { fill: #2F9E5F; transform-origin: 9px 9px; transform-box: view-box; }
.fc__sent path { fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 0; }

.fc--feed { bottom: 31%; right: 2.5%; width: 262px; padding: 14px 16px; }
.fc__feed { position: relative; height: 38px; margin-top: 6px; overflow: hidden; }
.fc__item { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 1px; }
.fc__item span { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fc__item em { font-style: normal; font-size: 11.5px; color: var(--slate-2); }

/* Pop in on a spring (JS), then a slow 4px bob. Resting state first. */
html.anim .fc { opacity: 0; transform: scale(.6); }
@keyframes fc-bob { 0%, 100% { translate: 0 1px; } 50% { translate: 0 -3px; } }
.fc.is-bobbing { animation: fc-bob 3.65s ease-in-out infinite; }

/* Tablet and panel widths keep the side by side hero: copy left, her right */
@media (max-width: 1100px) and (min-width: 721px) {
  .hero--image { height: auto; min-height: 620px; padding: 96px 0; }
  .hero--image .hero__copy { max-width: 430px; }
  .hero--image .h1 { font-size: clamp(38px, 5.2vw, 52px); }
  .hero--image .lede { font-size: 17px; }
  .hero--image .hero__img img { object-position: 80% 14%; }
  .hero--image::after {
    background:
      linear-gradient(90deg, rgba(4,11,22,.96) 0%, rgba(4,11,22,.86) 38%, rgba(4,11,22,.25) 60%, rgba(4,11,22,0) 74%),
      linear-gradient(0deg, rgba(4,11,22,.6) 0%, rgba(4,11,22,0) 24%);
  }
  .hero__stage { width: 50%; }
  .fc--feed, .fc--approve { display: none; }
  .fc--chaser { top: auto; bottom: 9%; right: 4%; width: 214px; padding: 14px 16px; }
  .fc__big { font-size: 36px; }
}

/* Phones: her on top, copy underneath */
@media (max-width: 720px) {
  .hero--image { height: auto; display: block; padding: 0 0 56px; }
  .hero--image .hero__img { position: relative; height: min(96vw, 460px); }
  .hero--image .hero__img img { object-position: 74% 3%; }
  .hero--image::after {
    background: linear-gradient(180deg, rgba(4,11,22,0) 0, rgba(4,11,22,0) calc(min(96vw, 460px) - 190px), rgba(4,11,22,.85) calc(min(96vw, 460px) - 40px), #040B16 calc(min(96vw, 460px) - 2px), #040B16 100%);
  }
  .hero__stage { top: 0; bottom: auto; height: min(96vw, 460px); width: 100%; }
  .hero--image .hero__inner { margin-top: -28px; }
  .fc--feed, .fc--approve { display: none; }
  .fc--chaser { top: auto; bottom: 15%; left: 16px; right: auto; width: 196px; padding: 13px 15px; }
  .fc__big { font-size: 34px; }
  .fc__sub { font-size: 12px; }
}


@media (prefers-reduced-motion: reduce) {
  html.anim .fc { opacity: 1 !important; transform: none !important; }
  .fc.is-bobbing { animation: none; }
  .fc__bar i, .fc__title2 { transition: none; }
}

/* ==========================================================================
   Image cards
   Her, doing the job, in place of the generic card grids.
   ========================================================================== */

.bento {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 318px 318px;
  gap: 16px;
}
.tilex {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  background: #040B16;
  isolation: isolate;
  transition: transform .5s var(--ease-swift), box-shadow .5s var(--ease-swift);
}
.tilex--tall { grid-row: span 2; }
.tilex--wide { grid-column: span 2; }
.tilex--navy { background: var(--grad-navy); }
.tilex--wash { background: #EEF1F5; color: var(--ink); }
.tilex:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(3,9,19,.18); }
.tilex:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.tilex > img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-swift);
}
.tilex--tall > img { object-position: 50% 18%; }
.tilex--wide > img { object-position: 60% 30%; }
.tilex:hover > img { transform: scale(1.035); }
.tilex--img::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(4,11,22,.94) 0%, rgba(4,11,22,.7) 30%, rgba(4,11,22,0) 62%);
}
.tilex--wide::after { background: linear-gradient(90deg, rgba(4,11,22,.94) 0%, rgba(4,11,22,.72) 38%, rgba(4,11,22,0) 70%); }

.tilex__body { display: flex; flex-direction: column; gap: 8px; padding: 28px 30px 30px; max-width: 440px; }
.tilex--wide .tilex__body { max-width: 360px; align-self: stretch; justify-content: flex-end; }
.tilex__k { font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--brass-soft); }
.tilex--wash .tilex__k { color: var(--brass-deep); }
.tilex__h { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -.025em; line-height: 1.12; }
.tilex--tall .tilex__h { font-size: clamp(28px, 3vw, 38px); }
.tilex__p { font-size: 15px; line-height: 1.5; color: #C3CCD6; }
.tilex--wash .tilex__p { color: var(--slate); }
.tilex__cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; font-size: 14.5px; font-weight: 600; }
.tilex__cta .t { background: linear-gradient(currentColor, currentColor) 0 100% / 0% 1.5px no-repeat; padding-bottom: 2px; transition: background-size .2s ease; }
.tilex:hover .tilex__cta .t { background-size: 100% 1.5px; }
.tilex__cta .ic { position: relative; width: 26px; height: 26px; display: grid; place-items: center; }
.tilex__cta .ic::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--brass); transform: scale(.8); transition: transform .2s ease; }
.tilex__cta .ic svg { position: relative; width: 12px; height: 12px; color: var(--ink); transition: transform .2s ease; }
.tilex--wash .tilex__cta .ic::before { background: var(--ink); }
.tilex--wash .tilex__cta .ic svg { color: var(--white); }
.tilex:hover .tilex__cta .ic::before { transform: scale(1); }
.tilex:hover .tilex__cta .ic svg { transform: translateX(2px); }

/* The small product chip that rides on an image */
.mini {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px;
  border-radius: 12px;
  background: rgba(251,250,247,.95);
  color: var(--ink);
  font-size: 12.5px; font-weight: 600;
  box-shadow: 0 10px 26px rgba(2,6,14,.35);
  white-space: nowrap;
}
.tilex--wide .mini { left: auto; right: 20px; }

/* Her, doing the job, beside the Toolware copy */
.lookcard {
  position: relative;
  height: 600px;
  border-radius: 26px;
  overflow: hidden;
  background: #E1D9CE;
}
.lookcard > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; }
.lookcard__ask, .lookcard__done, .lookcard__via { position: absolute; font-size: 13.5px; line-height: 1.45; }
.lookcard__ask {
  top: 44px; left: 24px; max-width: 230px;
  padding: 12px 15px; border-radius: 16px 16px 16px 5px;
  background: var(--ink); color: var(--white);
  box-shadow: 0 12px 28px rgba(3,9,19,.28);
}
.lookcard__done {
  top: 172px; right: 22px; max-width: 250px;
  display: flex; gap: 10px; align-items: flex-start;
  padding: 13px 15px; border-radius: 16px 16px 5px 16px;
  background: rgba(251,250,247,.97); color: var(--ink);
  box-shadow: 0 12px 28px rgba(3,9,19,.18);
}
.lookcard__done .pdot { margin-top: 6px; flex: none; }
.lookcard__done b { display: block; font-weight: 600; }
.lookcard__via {
  left: 20px; right: 20px; bottom: 20px;
  padding: 11px 14px; border-radius: 12px;
  background: rgba(251,250,247,.9); color: var(--slate);
  font-size: 12.5px; text-align: center;
}

/* Split page hero: copy left, her right */
.hero--split { text-align: left; }
.hero__split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 64px; align-items: center; }
.hero--split .lede { margin-left: 0; }
.hero--split .btns { justify-content: flex-start; }
.hero__splitimg { position: relative; aspect-ratio: 4 / 5; max-height: 620px; justify-self: end; width: 100%; max-width: 500px; border-radius: 28px; overflow: hidden; background: #040B16; }
.hero__splitimg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; display: block; }
.hero__splitimg .mini--a { top: 22px; left: 22px; }
.hero__splitimg .mini--b { top: auto; bottom: 24px; left: auto; right: 22px; }

@media (max-width: 980px) {
  .bento { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: none; grid-auto-rows: 300px; }
  .tilex--tall { grid-row: span 2; grid-column: span 2; }
  .tilex--wide { grid-column: span 2; }
  .hero__split { grid-template-columns: 1fr; gap: 40px; }
  .hero__splitimg { justify-self: start; max-width: 460px; }
}
@media (max-width: 720px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .tilex, .tilex--tall, .tilex--wide { grid-column: auto; grid-row: auto; min-height: 300px; }
  .tilex--tall { min-height: 460px; }
  .tilex--wide::after { background: linear-gradient(0deg, rgba(4,11,22,.94) 0%, rgba(4,11,22,.7) 40%, rgba(4,11,22,0) 75%); }
  .tilex--wide .mini { right: auto; left: 16px; }
  .mini { top: 16px; left: 16px; font-size: 12px; white-space: normal; max-width: calc(100% - 32px); }
  .lookcard { height: 520px; }
  .lookcard__ask { left: 16px; top: 28px; max-width: 200px; }
  .lookcard__done { right: 14px; top: 150px; max-width: 210px; }
  .hero__splitimg .mini--b { right: 16px; }
}

/* ==========================================================================
   Six month simulator
   Aave's savings simulator, rebuilt for capacity rather than yield. A dark
   split card: inputs on the left, the figure and the curve on the right.
   ========================================================================== */

.panel--sim { padding-bottom: 88px; }
.panel--sim .wrap--narrow { margin-bottom: 52px; }

.sim {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.45fr);
  border-radius: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(80% 90% at 72% 0%, #0F2748 0%, rgba(4,10,19,0) 62%),
    linear-gradient(170deg, #07111F 0%, #030913 100%);
  box-shadow: 0 2px 4px rgba(3,9,19,.08), 0 30px 70px rgba(3,9,19,.22);
}

.sim__in {
  padding: 36px 34px 34px;
  background: rgba(255,255,255,.025);
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.sim__out { padding: 36px 40px 30px; min-width: 0; }

.sim__title { font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: -.01em; }
.sim__out .sim__title { text-align: center; color: #C3CCD6; font-weight: 500; }

/* Sector switch: two words and a rule, not a coloured toggle */
.seg { display: flex; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.09); margin-top: -6px; }
.seg button {
  appearance: none; background: none; border: 0; cursor: pointer;
  padding: 0 0 11px;
  font-size: 14px; font-weight: 600; letter-spacing: -.005em;
  color: #6F7E8E;
  background: linear-gradient(var(--brass), var(--brass)) 0 100% / 0% 1.5px no-repeat;
  transition: color .2s ease, background-size .35s var(--ease-swift);
}
.seg button:hover { color: #B7C1CC; }
.seg button[aria-checked="true"] { color: var(--white); background-size: 100% 1.5px; }

/* Sliders: a hairline track that fills in brass, a small white thumb */
.sl { display: grid; gap: 12px; }
.sl__row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.sl__row label { font-size: 13.5px; color: #93A1AF; line-height: 1.35; }
.sl__row output { font-size: 14px; font-weight: 600; color: var(--white); white-space: nowrap; font-variant-numeric: tabular-nums; }
.sl input[type="range"] {
  --p: 50%;
  appearance: none; -webkit-appearance: none;
  width: 100%; height: 20px; margin: 0;
  background: transparent; cursor: pointer;
}
.sl input[type="range"]::-webkit-slider-runnable-track {
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brass) 0 var(--p), rgba(255,255,255,.14) var(--p) 100%);
}
.sl input[type="range"]::-moz-range-track { height: 2px; border-radius: 2px; background: rgba(255,255,255,.14); }
.sl input[type="range"]::-moz-range-progress { height: 2px; border-radius: 2px; background: var(--brass); }
.sl input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px; margin-top: -7px; border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,161,99,0), 0 2px 6px rgba(0,0,0,.35);
  transition: box-shadow .2s ease, transform .2s var(--ease-snappy);
}
.sl input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border: 0; border-radius: 50%;
  background: var(--white); box-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.sl input[type="range"]:hover::-webkit-slider-thumb { transform: scale(1.1); }
.sl input[type="range"]:focus-visible { outline: none; }
.sl input[type="range"]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(201,161,99,.35), 0 2px 6px rgba(0,0,0,.35); }

.sim__cta { margin-top: auto; padding-top: 6px; }
.sim__cta .btn { width: 100%; }

/* The figure: one hero number, white, the brass is saved for the marks */
.sim__fig {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-top: 8px;
  display: flex;
  justify-content: center;
}
.sim__fig .wheel { height: 1.1em; line-height: 1.1em; }
.sim__fig .strip > span { height: 1.1em; line-height: 1.1em; }
.sim__sub { text-align: center; font-size: 14px; color: #93A1AF; margin-top: 6px; }
.sim__sub strong { color: var(--white); font-weight: 600; }

/* Chart */
.sim__chart {
  position: relative;
  height: 250px;
  margin: 34px 0 0 52px;
  outline: none;
}
.sim__chart:focus-visible { box-shadow: 0 0 0 2px rgba(201,161,99,.45); border-radius: 6px; }

.sim__grid { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; }
.sim__grid span { position: relative; height: 0; border-top: 1px solid rgba(255,255,255,.06); }
.sim__grid span:last-child { border-top-color: rgba(255,255,255,.16); }
.sim__grid em {
  position: absolute; right: calc(100% + 12px); top: -8px;
  font-style: normal; font-size: 11px; color: #6F7E8E;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}

.sim__bars {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  gap: 4px;
}
.sim__bars i {
  flex: 1 1 0;
  max-width: 24px;
  height: var(--h);
  min-height: 2px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #D8B679 0%, #B4884A 100%);
  transform-origin: bottom;
  transition: height .55s var(--ease-swift), opacity .15s ease, filter .15s ease;
  position: relative;
}
/* Hit target is the whole column, not only the painted bar */
.sim__bars i::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: 0; height: 250px; }
.sim__bars.is-hover i { opacity: .32; }
.sim__bars.is-hover i.is-active { opacity: 1; filter: brightness(1.12); }

.sim__months { position: relative; height: 22px; margin: 12px 0 0 52px; }
.sim__months span {
  position: absolute; left: var(--c); transform: translateX(-50%);
  font-size: 11.5px; color: #6F7E8E; white-space: nowrap;
}

.sim__tip {
  position: absolute; top: -8px; left: 0;
  min-width: 210px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(245,247,250,.97);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .15s, transform .15s cubic-bezier(.33,1,.68,1);
  z-index: 3;
}
.sim__tip.is-on { opacity: 1; transform: none; }
.sim__tip .tv { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.sim__tip .tv::before { content: ""; width: 12px; height: 2px; border-radius: 2px; background: var(--brass); }
.sim__tip .tk { font-size: 12px; color: var(--slate); margin-top: 1px; }
.sim__tip .tt { font-size: 12.5px; font-weight: 600; margin-top: 9px; }
.sim__tip dl { display: grid; grid-template-columns: auto auto; gap: 3px 16px; margin: 8px 0 0; font-size: 12px; }
.sim__tip dt { color: var(--slate); }
.sim__tip dd { margin: 0; text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }

.sim__table { margin-top: 18px; font-size: 13px; }
.sim__table summary { cursor: pointer; color: #93A1AF; list-style: none; display: inline-block; }
.sim__table summary::-webkit-details-marker { display: none; }
.sim__table summary:hover { color: var(--white); }
.sim__tablewrap { overflow-x: auto; margin-top: 12px; }
.sim__table table { width: 100%; border-collapse: collapse; min-width: 520px; }
.sim__table th, .sim__table td { text-align: left; padding: 8px 10px 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); color: #C3CCD6; font-weight: 400; }
.sim__table thead th { color: #6F7E8E; font-size: 11.5px; font-weight: 500; }
.sim__table td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--white); }
.sim__table tbody th { color: var(--white); font-weight: 600; }

.sim__disclaimer { text-align: center; font-size: 13px; color: var(--slate-2); max-width: 70ch; margin: 22px auto 0; }

/* Bars grow from the baseline as the card arrives */
html.anim .sim:not(.is-grown) .sim__bars i { transform: scaleY(0); }
html.anim .sim.is-grown .sim__bars i {
  transform: none;
  transition: transform .7s var(--ease-swift) var(--bd, 0ms), height .55s var(--ease-swift), opacity .15s ease, filter .15s ease;
}

@media (max-width: 980px) {
  .sim { grid-template-columns: 1fr; }
  .sim__in { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .sim__cta { margin-top: 4px; }
}
@media (max-width: 720px) {
  .sim { border-radius: 22px; }
  .sim__in { padding: 28px 22px; }
  .sim__out { padding: 28px 18px 24px; }
  .sim__chart { height: 200px; margin-left: 40px; }
  .sim__bars { gap: 2px; }
  .sim__bars i::after { height: 200px; }
  .sim__months { margin-left: 40px; }
  .sim__months span { font-size: 0; }
  .sim__months span::before { content: "M" attr(data-m); font-size: 11px; }
  .sim__tip { min-width: 180px; }
}

/* ==========================================================================
   Motion
   Built from the aave.com teardown. One house curve (--ease-swift), tiny
   distances, blur doing some of the work, loops only where something is live.
   Every hidden state sits behind html.anim, which JS adds, so a page with
   JS off or blocked is fully readable.
   ========================================================================== */

/* ---------- 01 Word-by-word heading reveal ---------------------------------
   rotateX with no perspective on the parent reads as a vertical squash,
   not a 3D flip. That is the whole trick. Do not add perspective. */
.w { display: inline-block; position: relative; }
html.anim .w { opacity: 0; transform: translateY(50%) rotateX(-45deg); }
html.anim .is-words .w {
  opacity: 1;
  transform: none;
  transition:
    opacity .937s var(--ease-swift) var(--wd, 0ms),
    transform .937s var(--ease-swift) var(--wd, 0ms);
}

/* ---------- 02 Stagger grids, lists, text blocks -------------------------- */
html.anim [data-reveal] { opacity: 0; transform: translateY(16px); }
html.anim [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity .6s var(--ease-swift) var(--d, 0ms),
    transform .6s var(--ease-swift) var(--d, 0ms);
}

/* ---------- 03 Pill blur-up cascade --------------------------------------
   4px of travel out of a 4px blur. The blur carries it. */
html.anim [data-reveal="blur"] { opacity: 0; transform: translateY(4px); filter: blur(4px); }
html.anim [data-reveal="blur"].is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity .35s var(--ease-blur) var(--d, 0ms),
    transform .35s var(--ease-blur) var(--d, 0ms),
    filter .35s var(--ease-blur) var(--d, 0ms);
}

/* ---------- 04 Hero product rise ------------------------------------------
   Lands after the headline has, like Aave's phone trio. */
html.anim [data-reveal="rise"] { opacity: 0; transform: translateY(10%) scale(.975); filter: none; }
html.anim [data-reveal="rise"].is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity .6s var(--ease-swift) var(--d, 0ms),
    transform .6s var(--ease-swift) var(--d, 0ms);
}

/* ---------- 05 Hero ground -------------------------------------------------
   The wash arrives with the product, not before it. */
.hero__ground {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__ground canvas { width: 100%; height: 100%; display: block; }
html.anim .hero__ground { opacity: 0; }
html.anim .hero__ground.is-in { opacity: 1; transition: opacity .8s ease var(--d, 0ms); }
.hero > .wrap, .hero > .mock-stage { position: relative; z-index: 1; }

/* ---------- 06 Hairlines draw in -------------------------------------------
   The rate-bar fill, applied to list dividers: left to right, staggered. */
html.anim .rows > li[data-reveal],
html.anim .timeline > li[data-reveal] { position: relative; border-top-color: transparent; }
html.anim .rows > li[data-reveal]::before,
html.anim .timeline > li[data-reveal]::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
}
.panel--dark .rows > li::before, .panel--navy .rows > li::before,
.panel--dark .timeline > li::before, .panel--navy .timeline > li::before { background: var(--line-dark) !important; }
html.anim .rows > li[data-reveal].is-in::before,
html.anim .timeline > li[data-reveal].is-in::before {
  transform: scaleX(1);
  transition: transform 1s var(--ease-swift) var(--d, 0ms);
}

/* ---------- 07 Letter-roll button labels ----------------------------------
   The label exists twice. On hover the top copy rolls out and the bottom
   copy rolls in, one letter after another. */
.roll { display: inline-flex; overflow: hidden; line-height: 1.25; }
.roll .l { position: relative; display: inline-block; white-space: pre; }
.roll .l > span { display: block; transition: transform .45s var(--ease-swift) calc(var(--i) * 18ms); }
.roll .l > span + span { position: absolute; inset: 0; transform: translateY(110%); }
.btn:hover .roll .l > span:first-child,
.btn:focus-visible .roll .l > span:first-child { transform: translateY(-110%); }
.btn:hover .roll .l > span + span,
.btn:focus-visible .roll .l > span + span { transform: none; }

/* ---------- 08 Button press -------------------------------------------------
   Quick and flat on the way down, the snappy overshoot on the way back. */
.btn {
  transition:
    transform .75s var(--ease-snappy),
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease;
}
.btn:active { transform: scale(.95); transition-duration: .12s; }

/* ---------- 09 Glass card hover ---------------------------------------------
   Only on cards that go somewhere. A card that lifts but does nothing is a
   lie about what is clickable, so static cards stay still. */
.card:has(.arrow-link), .tile:has(.arrow-link) {
  position: relative;
  cursor: pointer;
  transition: transform .15s ease-in, box-shadow .15s ease-in, border-color .15s ease-in;
}
.card:has(.arrow-link)::before, .tile:has(.arrow-link)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(46,111,168,.07) 100%);
  opacity: 0;
  transition: opacity .15s ease-in;
  pointer-events: none;
}
.tile--dark:has(.arrow-link)::before {
  background: linear-gradient(135deg, rgba(255,255,255,.07) 0%, rgba(201,161,99,.10) 100%);
}
.card:has(.arrow-link) > *, .tile:has(.arrow-link) > * { position: relative; }
.card:has(.arrow-link):hover, .tile:has(.arrow-link):hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10,20,32,.10);
}
.card:has(.arrow-link):hover::before, .tile:has(.arrow-link):hover::before { opacity: 1; }
/* The arrow link stretches to cover its card, so the whole card is the target */
.card:has(.arrow-link) .arrow-link::after,
.tile:has(.arrow-link) .arrow-link::after { content: ""; position: absolute; inset: -400px; }
.card:has(.arrow-link), .tile:has(.arrow-link) { overflow: hidden; }
.card:has(.arrow-link):hover .arrow-link .t, .tile:has(.arrow-link):hover .arrow-link .t { background-size: 100% 1.5px; }
.card:has(.arrow-link):hover .arrow-link .ic::before, .tile:has(.arrow-link):hover .arrow-link .ic::before { transform: scale(1); }
.card:has(.arrow-link):hover .arrow-link .ic svg, .tile:has(.arrow-link):hover .arrow-link .ic svg { transform: translateX(2px); }

/* ---------- 10 Nav link underline sweep ------------------------------------ */
.nav__links a:not(.btn) {
  background: linear-gradient(var(--brass), var(--brass)) 0 100% / 0% 1.5px no-repeat;
  padding-bottom: 4px;
  transition: background-size .2s ease, color .2s ease;
}
.nav__links a:not(.btn):hover,
.nav__links a[aria-current="page"] { background-size: 100% 1.5px; }

/* ---------- 11 The assistant window plays its exchange --------------------- */
html.anim .mock .bubble,
html.anim .mock .mock-tool { opacity: 0; transform: translateY(10px); }
html.anim .mock.is-playing .bubble,
html.anim .mock.is-playing .mock-tool {
  opacity: 1;
  transform: none;
  transition: opacity .5s var(--ease-swift) var(--d, 0ms), transform .5s var(--ease-swift) var(--d, 0ms);
}
html.anim .mock .mock-row { opacity: 0; }
html.anim .mock.is-playing .mock-row { opacity: 1; transition: opacity .4s var(--ease-swift) var(--d, 0ms); }

/* ---------- 12 Badge pop ----------------------------------------------------
   Spring driven from JS; this is the resting state before it fires. */
html.anim .mock__badge { opacity: 0; transform: scale(.6); }

/* ---------- 13 Live pulse dot -----------------------------------------------
   The only loop on the site, and it sits on the only thing that is live. */
.mock-tool__head .tag { display: inline-flex; align-items: center; gap: 6px; }
.pdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2F9E5F;
  display: inline-block;
  animation: pulse-o 1.6s ease-in-out infinite, pulse-s 1.6s cubic-bezier(.455,.03,.515,.955) infinite;
}
@keyframes pulse-o { 0%, 100% { opacity: 1 } 50% { opacity: .25 } }
@keyframes pulse-s { 0%, 100% { transform: scale(1) } 50% { transform: scale(.85) } }

/* ---------- 14 Odometer ----------------------------------------------------
   Each digit is a strip of 9 to 0 in a one line slot, so changes roll
   rather than swap. */
.head-right { display: inline-flex; align-items: center; gap: 12px; }
.count { font-size: 12.5px; font-weight: 500; color: var(--slate-2); display: inline-flex; align-items: baseline; gap: 5px; }
.odo { display: inline-flex; font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ink); }
.wheel { display: inline-block; height: 1.15em; line-height: 1.15em; overflow: hidden; vertical-align: bottom; }
.strip { display: flex; flex-direction: column; transition: transform .75s var(--ease-odo); }
.strip > span { display: block; height: 1.15em; line-height: 1.15em; }

/* ---------- Reduced motion -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html.anim .w, html.anim [data-reveal], html.anim .hero__ground,
  html.anim .mock .bubble, html.anim .mock .mock-tool, html.anim .mock .mock-row,
  html.anim .mock__badge { opacity: 1 !important; transform: none !important; filter: none !important; }
  .pdot { animation: none; }
  .strip, .roll .l > span, .btn { transition: none !important; }
}

@media (max-width: 720px) {
  .count { display: none; }
}

/* =========================================================================
   Infographics
   Final state is the default. .ig--armed (JS, motion allowed) holds marks
   at zero until .ig--on plays them once.
   ========================================================================= */
.ig { margin: 0; }
.ig-src { font-size: 12.5px; color: var(--slate-2); margin-top: 28px; letter-spacing: .005em; }
.panel--dark .ig-src, .panel--navy .ig-src { color: #6F8093; }
.ig-cap { font-size: 15px; color: var(--slate); margin-top: 6px; }
.panel--dark .ig-cap { color: var(--slate-3); }
.ig-num { font-family: var(--font-display); font-weight: 800; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }

/* ---- 1. A day a week -------------------------------------------------- */
.wk { display: grid; gap: 14px; }
.wk__days, .wk__row { display: grid; grid-template-columns: 92px 1fr 84px; align-items: center; gap: 18px; }
.wk__days { font-size: 12px; color: var(--slate-2); letter-spacing: .04em; text-transform: uppercase; }
.wk__days { grid-template-columns: 92px repeat(5, 1fr) 84px; column-gap: 6px; }
.wk__days span { text-align: center; }
.wk__days span:first-child, .wk__days span:last-child { visibility: hidden; }
.wk__lab { font-size: 14px; font-weight: 600; color: var(--ink); }
.wk__val { font-size: 15px; color: var(--slate); text-align: right; }
.wk__val span { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink); letter-spacing: -.02em; }
.wk__bar { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; height: 56px; }
.wk__bar i { border-radius: 10px; background: var(--wash-2); }
.wk__save {
  position: absolute; top: 0; right: 0; bottom: 0; width: var(--w);
  border-radius: 10px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.16) 0 2px, transparent 2px 9px),
    linear-gradient(180deg, var(--brass-mid), var(--brass));
  box-shadow: 0 10px 24px -12px rgba(138,106,46,.7), inset 0 1px 0 rgba(255,255,255,.35);
  transform-origin: right center;
}
.ig--armed .wk__save { transform: scaleX(0); }
.ig--on .wk__save { transform: none; transition: transform 1.4s var(--ease-swift) calc(.2s + var(--delay, 0s)); }
.ig-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.ig-stats > div { display: grid; }
.ig-stats .ig-num { font-size: clamp(38px, 5.4vw, 64px); line-height: 1; color: var(--ink); }
.ig-stats > div:last-child .ig-num { color: var(--brass-deep); }

/* ---- 2. The gap --------------------------------------------------------- */
.ig-gap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.ig-gap .ig-src { grid-column: 1 / -1; text-align: center; }
.dots { display: grid; grid-template-columns: repeat(10, 1fr); gap: clamp(6px, 1vw, 10px); max-width: 360px; }
.dots i { aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.10); }
.dots i.on { background: radial-gradient(circle at 35% 30%, var(--brass-soft), var(--brass) 70%); box-shadow: 0 0 14px rgba(201,161,99,.45); }
.ig--armed .dots i { opacity: 0; transform: scale(.4); }
.ig--on .dots i { opacity: 1; transform: none; transition: opacity .4s ease, transform .5s var(--ease-snappy); transition-delay: calc(var(--i) * 9ms); }
.ig--armed .dots i.on { background: rgba(255,255,255,.10); box-shadow: none; }
.ig--on .dots i.on { background: radial-gradient(circle at 35% 30%, var(--brass-soft), var(--brass) 70%); box-shadow: 0 0 14px rgba(201,161,99,.45); transition: opacity .4s ease, transform .5s var(--ease-snappy), background .5s ease, box-shadow .5s ease; transition-delay: calc(var(--i) * 9ms), calc(var(--i) * 9ms), calc(1s + var(--i) * 30ms), calc(1s + var(--i) * 30ms); }
.gap__k { margin-top: 28px; display: flex; align-items: baseline; gap: 12px; }
.gap__k .ig-num { font-size: clamp(56px, 7vw, 88px); line-height: .9; color: var(--white); }
.gap__of { font-size: 20px; color: var(--brass-mid); font-weight: 600; }
.gap__bars { display: grid; gap: 44px; }
.cmp__t { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-3); margin-bottom: 16px; }
.cmp__row { display: grid; grid-template-columns: 140px 1fr 56px; gap: 16px; align-items: center; padding: 7px 0; }
.cmp__row span { font-size: 14px; color: var(--slate-3); }
.cmp__row em { font-style: normal; font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--slate-3); text-align: right; }
.cmp__track { height: 22px; border-radius: 6px; background: rgba(255,255,255,.05); overflow: hidden; }
.cmp__track b { display: block; height: 100%; width: var(--v); border-radius: 6px; background: rgba(255,255,255,.22); transform-origin: left; }
.cmp__row.is-hi span { color: var(--white); font-weight: 600; }
.cmp__row em span, .cmp__row.is-hi em span { font: inherit; color: inherit; }
.cmp__row.is-hi em { color: var(--brass-soft); }
.cmp__row.is-hi b { background: linear-gradient(90deg, var(--brass), var(--brass-mid)); box-shadow: 0 0 18px rgba(201,161,99,.35); }
.ig--armed .cmp__track b { transform: scaleX(0); }
.ig--on .cmp__track b { transform: none; transition: transform 1.2s var(--ease-swift) calc(.3s + var(--delay, 0s)); }

/* ---- shared card ---------------------------------------------------------- */
.ig-card { border-radius: var(--r-lg); padding: clamp(24px, 3.4vw, 40px); background: var(--white); border: 1px solid var(--line); box-shadow: 0 30px 60px -40px rgba(5,12,22,.35); }
.panel--dark .ig-card { background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)); border-color: var(--line-dark); box-shadow: none; }
.ig-card__t { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-2); }
.panel--dark .ig-card__t { color: var(--slate-3); }
.ig-card__big { margin-top: 20px; font-size: clamp(44px, 5vw, 60px); line-height: 1; font-family: var(--font-display); font-weight: 800; letter-spacing: -.035em; color: var(--white); }
.ig-card .ig-src { margin-top: 18px; }
.ig-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ---- 3. Profit columns -------------------------------------------------- */
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; height: 220px; margin-top: 28px; align-items: end; }
.col { display: grid; grid-template-rows: 1fr auto; height: 100%; gap: 12px; }
.col b { align-self: end; height: var(--v); max-width: 96px; width: 100%; justify-self: center; border-radius: 10px 10px 4px 4px; background: rgba(255,255,255,.18); transform-origin: bottom; }
.col.is-hi b { background: linear-gradient(180deg, var(--brass-mid), var(--brass-deep)); box-shadow: 0 0 30px rgba(201,161,99,.3); }
.col span { text-align: center; font-size: 13.5px; color: var(--slate-3); }
.col.is-hi span { color: var(--white); font-weight: 600; }
.ig--armed .col b { transform: scaleY(0); }
.ig--on .col b { transform: none; transition: transform 1.3s var(--ease-swift) calc(.25s + var(--delay, 0s)); }

/* ---- 4. Rings --------------------------------------------------------------- */
.rings { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.ring { position: relative; display: grid; justify-items: center; }
.ring svg { width: 100%; max-width: 170px; transform: rotate(-90deg); overflow: visible; }
.ring__v span { font: inherit; color: inherit; }
.ring circle { fill: none; stroke-width: 9; }
.ring__bg { stroke: rgba(255,255,255,.08); }
.ring__fg { stroke: rgba(255,255,255,.3); stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: calc(100 - var(--p)); }
.ring.is-hi .ring__fg { stroke: var(--brass-mid); }
.ring__v { position: absolute; top: 0; left: 0; right: 0; aspect-ratio: 1; max-width: 170px; margin: 0 auto; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 38px); letter-spacing: -.03em; color: var(--white); }
.ring:not(.is-hi) .ring__v { color: var(--slate-3); }
.ring__l { margin-top: 12px; font-size: 13.5px; color: var(--slate-3); }
.ring.is-hi .ring__l { color: var(--white); font-weight: 600; }
.ig--armed .ring__fg { stroke-dashoffset: 100; }
.ig--on .ring__fg { stroke-dashoffset: calc(100 - var(--p)); transition: stroke-dashoffset 1.6s var(--ease-swift) calc(.25s + var(--delay, 0s)); }

/* ---- 5. Before and after ------------------------------------------------- */
.ba { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ba__firm { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -.02em; color: var(--ink); }
.ba__where { font-size: 13.5px; color: var(--slate-2); margin-top: 2px; }
.ba__task { font-size: 14.5px; color: var(--slate); margin-top: 22px; }
.ba__rows { display: grid; gap: 10px; margin-top: 14px; }
.ba__row { display: grid; grid-template-columns: 58px 1fr 58px; gap: 12px; align-items: center; }
.ba__row span { font-size: 13px; color: var(--slate-2); }
.ba__row em { font-style: normal; font-size: 13.5px; font-weight: 600; color: var(--slate); text-align: right; }
.ba__track { height: 16px; border-radius: 5px; background: var(--wash); overflow: hidden; }
.ba__track b { display: block; height: 100%; width: var(--v); border-radius: 5px; background: var(--slate-3); transform-origin: left; }
.ba__row.is-hi b { background: linear-gradient(90deg, var(--brass), var(--brass-mid)); }
.ba__row.is-hi span, .ba__row.is-hi em { color: var(--ink); }
.ba__big { margin-top: 24px; font-family: var(--font-display); font-weight: 800; font-size: 34px; letter-spacing: -.03em; color: var(--brass-deep); }
.ba__big .ig-num { font-size: inherit; }
.ba__card--slot { border-style: dashed; border-color: var(--slate-3); background: transparent; box-shadow: none; }
.ba__track--dash { background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px); }
.ig--armed .ba__track b { transform: scaleX(0); }
.ig--on .ba__track b { transform: none; transition: transform 1.1s var(--ease-swift) calc(.2s + var(--delay, 0s)); }
.ig--armed .ba__row.is-hi b { transform: scaleX(4); }
.ig--on .ba__row.is-hi b { transform: none; transition: transform 1.3s var(--ease-swift) calc(.9s + var(--delay, 0s)); }

/* ---- 6. Every month you wait (simulator) -------------------------------- */
.wait { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 6px 18px; margin: 28px auto 0; padding: 22px 28px; max-width: 760px; border-radius: var(--r); border: 1px solid rgba(201,161,99,.28); background: linear-gradient(90deg, rgba(180,136,74,.06), rgba(180,136,74,.12), rgba(180,136,74,.06)); }
.wait__k { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; }
.wait__v { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3.6vw, 40px); letter-spacing: -.03em; color: var(--ink); font-variant-numeric: tabular-nums; }
.wait__h { font-size: 14.5px; color: var(--slate); }
.wait__h strong { color: var(--ink); }
.wait .pdot { background: var(--brass); }

@media (max-width: 900px) {
  .ig-gap, .ig-pair, .ba { grid-template-columns: 1fr; }
  .dots { max-width: 300px; margin: 0 auto; }
  .gap__dots { text-align: center; }
  .gap__k { justify-content: center; }
}
@media (max-width: 560px) {
  .wk__days, .wk__row { grid-template-columns: 64px 1fr 58px; gap: 10px; }
  .wk__days { grid-template-columns: 64px repeat(5, 1fr) 58px; column-gap: 4px; }
  .wk__bar { height: 42px; gap: 4px; }
  .wk__bar i, .wk__save { border-radius: 7px; }
  .wk__lab { font-size: 12.5px; }
  .wk__val { font-size: 12px; }
  .wk__val span { font-size: 17px; }
  .cmp__row { grid-template-columns: 92px 1fr 52px; gap: 10px; }
  .cmp__row span { font-size: 12.5px; }
  .ig-stats { grid-template-columns: 1fr; }
}
.ig-rings .ig-cap, .ig-margin .ig-cap { margin-top: 20px; }

/* ---- 5b. Before and after, per year (dark) ------------------------------ */
.ba-rate { max-width: 360px; margin: 32px auto 0; padding: 16px 20px 12px; border-radius: var(--r); border: 1px solid var(--line-dark); background: rgba(255,255,255,.03); text-align: left; }
.ba-k { font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--slate-3); }
.panel--dark .ba__firm { color: var(--white); }
.panel--dark .ba__where { color: var(--slate-2); }
.panel--dark .ba__task { color: var(--slate-3); }
.panel--dark .ba__track { background: rgba(255,255,255,.06); }
.panel--dark .ba__track b { background: rgba(255,255,255,.24); }
.panel--dark .ba__row.is-hi b { background: linear-gradient(90deg, var(--brass), var(--brass-mid)); }
.panel--dark .ba__row span, .panel--dark .ba__row em { color: var(--slate-3); }
.panel--dark .ba__row.is-hi span, .panel--dark .ba__row.is-hi em { color: var(--white); }
.panel--dark .ba__big { color: var(--white); margin-top: 8px; font-size: clamp(36px, 4vw, 48px); line-height: 1; font-variant-numeric: tabular-nums; }
.ba__big small { font-size: 15px; font-weight: 600; letter-spacing: 0; color: var(--slate-3); }
.ba__big--slot { color: var(--slate-2) !important; }
.panel--dark .ba__card--slot { border-color: rgba(255,255,255,.22); background: transparent; }
.ba-worth { margin-top: 14px; font-size: 15px; color: var(--slate-3); }
.ba-worth strong { color: var(--brass-soft); font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.ba .ba__card { display: flex; flex-direction: column; }
.ba .ba__card .ba-worth, .ba__card--slot .mt-24:last-child { margin-top: auto; padding-top: 14px; }
.ba-inv { margin-top: 22px; }

.ba-hero { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 64px); align-items: center;
  border-radius: var(--r-xl); padding: clamp(26px, 4vw, 52px); border: 1px solid rgba(201,161,99,.22);
  background: radial-gradient(90% 120% at 100% 0%, rgba(201,161,99,.12), rgba(201,161,99,0) 60%), linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); }
.waffle { display: grid; grid-template-columns: repeat(30, 1fr); gap: 4px; margin-top: 26px; }
.waffle i { aspect-ratio: 1; border-radius: 3px; background: linear-gradient(180deg, var(--brass-mid), var(--brass)); }
.ig--armed .waffle i { background: rgba(255,255,255,.09); }
.ig--on .waffle i { background: linear-gradient(180deg, var(--brass-mid), var(--brass)); transition: background .35s ease calc(.2s + var(--i) * 5ms); }
.ba-hero__key { margin-top: 14px; font-size: 13px; color: var(--slate-3); display: flex; align-items: center; gap: 8px; }
.ba-hero__key i { width: 10px; height: 10px; border-radius: 3px; background: var(--brass); }
.ba-hero__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(60px, 8vw, 104px); line-height: .95; letter-spacing: -.045em; color: var(--white); margin-top: 8px; font-variant-numeric: tabular-nums; }
.ba-hero__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.ba-mid { margin-top: 6px; font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2vw, 26px); letter-spacing: -.025em; color: var(--white); font-variant-numeric: tabular-nums; }
.ba-mid .ig-num { font-size: inherit; }
.ba-gold { color: var(--brass-soft); }

.stack { display: flex; gap: 3px; height: 14px; margin-top: 18px; border-radius: 5px; overflow: hidden; }
.stack b { width: var(--v); background: var(--brass); transform-origin: left; }
.stack b + b { background: var(--brass-soft); }
.ig--armed .stack b { transform: scaleX(0); }
.ig--on .stack b { transform: none; transition: transform 1s var(--ease-swift) calc(.3s + var(--delay, 0s)); }
.stack__key { display: grid; gap: 4px; margin-top: 12px; font-size: 13px; color: var(--slate-3); }
.stack__key span { display: flex; align-items: center; gap: 8px; }
.stack__key i { width: 9px; height: 9px; border-radius: 2px; background: var(--brass); }
.stack__key span + span i { background: var(--brass-soft); }

@media (max-width: 900px) {
  .ba-hero { grid-template-columns: 1fr; }
  .waffle { grid-template-columns: repeat(20, 1fr); }
}

/* =========================================================================
   About
   ========================================================================= */
.path ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); position: relative; }
.path ol::before { content: ""; position: absolute; left: 0; right: 0; top: 43px; height: 2px; background: linear-gradient(90deg, var(--line), var(--brass-mid)); transform-origin: left; }
.path li { position: relative; display: grid; grid-template-rows: 28px 30px auto; justify-items: start; padding-right: 16px; }
.path__y { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--slate-2); letter-spacing: -.01em; }
.path li i { width: 14px; height: 14px; margin-top: 8px; border-radius: 50%; background: var(--white); border: 2px solid var(--slate-3); position: relative; z-index: 1; }
.path__t { font-size: 14.5px; line-height: 1.4; color: var(--ink); font-weight: 600; margin-top: 10px; max-width: 18ch; }
.path li.is-now .path__y { color: var(--brass-deep); }
.path li.is-now i { width: 22px; height: 22px; margin-top: 4px; border: 0; background: radial-gradient(circle at 35% 30%, var(--brass-soft), var(--brass) 70%); box-shadow: 0 0 0 6px rgba(201,161,99,.18); }
.path li.is-now .path__t { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.ig--armed.path ol::before { transform: scaleX(0); }
.ig--on.path ol::before { transform: none; transition: transform 1.6s var(--ease-swift) .1s; }
.ig--armed.path li { opacity: 0; transform: translateY(12px); }
.ig--on.path li { opacity: 1; transform: none; transition: opacity .6s ease, transform .8s var(--ease-swift); transition-delay: calc(.2s + var(--i) * 180ms); }

.story { display: grid; gap: 18px; font-size: 17.5px; line-height: 1.65; color: var(--ink); max-width: 60ch; }
.story p { margin: 0; }
.story .needs { padding: 14px 18px; border: 1.5px dashed var(--brass); border-radius: var(--r-sm); color: var(--brass-deep); font-size: 15px; background: var(--brass-wash); }
.story__sig { margin-top: 8px !important; display: grid; font-size: 14px; color: var(--slate); }
.story__sig strong { font-family: var(--font-display); font-size: 18px; color: var(--ink); }

.strata { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line-dark); background: linear-gradient(180deg, #081523, #050C16); }
.strata svg { display: block; width: 100%; height: clamp(240px, 32vw, 380px); }
.strata .drift { animation: drift 38s linear infinite; }
.strata .d2 { animation-duration: 52s; animation-direction: reverse; }
.strata .d3 { animation-duration: 70s; }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-1000px); } }
.strata__lab { position: absolute; left: clamp(18px, 3vw, 36px); font-size: 13.5px; font-weight: 600; letter-spacing: .01em; }
.strata__lab--top { top: 18px; color: var(--slate-3); }
.strata__lab--core { bottom: 20px; color: #1B1206; background: rgba(255,255,255,.35); padding: 6px 12px; border-radius: var(--pill); backdrop-filter: blur(4px); }
@media (prefers-reduced-motion: reduce) { .strata .drift { animation: none; } }

@media (max-width: 900px) {
  .path ol { grid-template-columns: 1fr; gap: 0; }
  .path ol::before { left: 6px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--line), var(--brass-mid)); transform-origin: top; }
  .ig--armed.path ol::before { transform: scaleY(0); }
  .path li { grid-template-columns: 30px 1fr; grid-template-rows: auto auto; column-gap: 12px; padding: 0 0 22px; }
  .path li i { grid-row: 1 / span 2; grid-column: 1; margin-top: 3px; }
  .path li.is-now i { margin-left: -4px; margin-top: 0; }
  .path__y { grid-column: 2; }
  .path__t { grid-column: 2; margin-top: 2px; max-width: none; }
}
