@font-face {
  font-family: 'Figtree';
  src: url('assets/fonts/Figtree-Variable.ttf') format('truetype-variations');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #11110f;
  --ink-soft: #44443f;
  --paper: #f7f5ed;
  --paper-deep: #ebe8dd;
  --surface: #fffef9;
  --yellow: #ffd21c;
  --yellow-soft: #fff2a9;
  --line: rgba(17, 17, 15, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(28, 27, 21, 0.14);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 88% 5%, rgba(255, 210, 28, 0.17), transparent 25rem),
    var(--paper);
  color: var(--ink);
  font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
}

a { color: inherit; }
button, a { font-family: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: max(14px, env(safe-area-inset-top, 0px)) max(24px, env(safe-area-inset-right, 0px)) 14px max(24px, env(safe-area-inset-left, 0px));
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(247, 245, 237, 0.86);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}
.brand img {
  display: block;
  width: 138px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
}
.site-nav a,
.text-link,
.site-footer a {
  position: relative;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}
.site-nav a::after,
.text-link::after,
.site-footer > div a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}
.site-nav a:hover::after,
.text-link:hover::after,
.site-footer > div a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 820;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button:active { transform: translateY(-1px) scale(0.985); }
.button:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(176, 138, 0, 0.55);
  outline-offset: 4px;
}
.button-small {
  min-height: 42px;
  padding: 10px 19px;
  font-size: 14px;
}
.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 25px rgba(17, 17, 15, 0.14);
}
.button-dark:hover,
.button-primary:hover {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(176, 138, 0, 0.22);
}
.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 35px rgba(17, 17, 15, 0.2);
}
.button-primary span { font-size: 20px; line-height: 0; }
.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--line);
}
.button-secondary:hover {
  background: #fff;
  border-color: var(--ink);
}
.button-outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}
.button-outline-light:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
  align-items: center;
  gap: clamp(50px, 8vw, 112px);
  min-height: calc(100vh - 82px);
  min-height: calc(100svh - 82px);
  padding-top: clamp(56px, 8vw, 110px);
  padding-bottom: clamp(76px, 9vw, 126px);
}
.hero::before {
  content: '';
  position: absolute;
  top: 9%;
  left: -12%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(17, 17, 15, 0.055);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(17, 17, 15, 0.018), 0 0 0 94px rgba(17, 17, 15, 0.014);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 13px 8px 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(17, 17, 15, 0.06);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow-dot {
  position: relative;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.eyebrow-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(17, 17, 15, 0.24);
  border-radius: inherit;
  animation: beta-pulse 2.2s ease-out infinite;
}
@keyframes beta-pulse {
  0% { opacity: 0.7; transform: scale(0.65); }
  70%, 100% { opacity: 0; transform: scale(1.5); }
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 7vw, 98px);
  font-weight: 890;
  letter-spacing: -0.064em;
  line-height: 0.94;
}
.hero h1 span {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: 0.04em;
  left: -0.03em;
  height: 0.18em;
  background: var(--yellow);
  border-radius: 99px;
  transform: rotate(-1.2deg);
}
.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.access-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #67665f;
  font-size: 13px;
  font-weight: 650;
}
.access-note span { color: #a17a00; }

.hero-stage {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  isolation: isolate;
}
.hero-stage::before {
  content: '';
  position: absolute;
  z-index: -3;
  width: 93%;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 46% 54% 57% 43% / 42% 42% 58% 58%;
  opacity: 0.92;
  animation: blob-shift 10s ease-in-out infinite alternate;
}
@keyframes blob-shift {
  0% { border-radius: 46% 54% 57% 43% / 42% 42% 58% 58%; transform: rotate(-2deg) scale(0.98); }
  100% { border-radius: 57% 43% 44% 56% / 50% 58% 42% 50%; transform: rotate(3deg) scale(1.03); }
}
.stage-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(17, 17, 15, 0.2);
  border-radius: 50%;
  pointer-events: none;
}
.stage-orbit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
}
.orbit-one { width: 108%; aspect-ratio: 1; animation: orbit-spin 22s linear infinite; }
.orbit-two { width: 82%; aspect-ratio: 1; animation: orbit-spin 16s linear infinite reverse; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.app-preview {
  position: relative;
  z-index: 3;
  width: min(100%, 410px);
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 254, 249, 0.95);
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 34px;
  box-shadow: 0 40px 90px rgba(17, 17, 15, 0.24), inset 0 1px 0 #fff;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.app-preview::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -45%;
  width: 42%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  transform: rotate(18deg);
  animation: preview-shine 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes preview-shine {
  0%, 55% { transform: translateX(0) rotate(18deg); }
  80%, 100% { transform: translateX(510px) rotate(18deg); }
}
.preview-topbar {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
}
.preview-topbar img {
  width: 42px;
  height: 42px;
  padding: 8px;
  object-fit: contain;
  background: var(--yellow);
  border-radius: 13px;
}
.preview-topbar div { display: flex; min-width: 0; flex-direction: column; }
.preview-topbar strong { font-size: 14px; }
.preview-topbar div span { margin-top: 2px; color: #77766e; font-size: 10px; }
.preview-status {
  padding: 5px 9px;
  color: #2c603e;
  background: #e3f2e7;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.preview-balance {
  display: flex;
  flex-direction: column;
  margin-top: 21px;
  padding: 23px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 210, 28, 0.38), transparent 7rem),
    var(--ink);
  border-radius: 23px;
}
.preview-balance span { color: rgba(255, 255, 255, 0.64); font-size: 11px; }
.preview-balance strong { margin: 8px 0 3px; font-size: 36px; letter-spacing: -0.04em; }
.preview-balance small { color: var(--yellow-soft); font-size: 10px; }
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.preview-grid > div {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  padding: 15px;
  overflow: hidden;
  background: #f4f2e9;
  border: 1px solid rgba(17, 17, 15, 0.08);
  border-radius: 18px;
}
.preview-grid span { color: #77766e; font-size: 10px; }
.preview-grid strong { margin-top: 4px; font-size: 25px; }
.mini-line {
  display: block;
  width: 120%;
  height: 35px;
  margin-top: auto;
  background: linear-gradient(135deg, transparent 0 17%, var(--yellow) 18% 23%, transparent 24% 34%, var(--yellow) 35% 41%, transparent 42% 51%, var(--yellow) 52% 58%, transparent 59% 70%, var(--yellow) 71% 78%, transparent 79%);
  opacity: 0.8;
  transform: skewY(-8deg);
}
.line-two { filter: grayscale(1); opacity: 0.22; transform: scaleX(-1) skewY(-8deg); }
.preview-activity { margin-top: 19px; }
.preview-section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.preview-section-title strong { font-size: 12px; }
.preview-section-title span { color: #8a887f; font-size: 9px; }
.activity-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(17, 17, 15, 0.08);
}
.activity-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 900;
}
.activity-icon.yellow { background: var(--yellow); }
.activity-icon.dark { color: #fff; background: var(--ink); }
.activity-row div { display: flex; min-width: 0; flex-direction: column; }
.activity-row strong, .activity-row b { font-size: 11px; }
.activity-row small { margin-top: 2px; color: #86857e; font-size: 9px; }
.activity-row b { font-weight: 850; }

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  max-width: min(220px, calc(100% - 18px));
  align-items: center;
  gap: 9px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 254, 249, 0.92);
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(17, 17, 15, 0.16);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  will-change: transform;
}
.floating-chip span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  font-size: 11px;
}
.chip-one { top: 16%; right: 0; animation: chip-float 4.4s ease-in-out infinite; }
.chip-two { bottom: 14%; left: 0; animation: chip-float 5.2s ease-in-out 0.8s infinite reverse; }
.chip-two span { color: var(--ink); background: var(--yellow); }
@keyframes chip-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(0, -8px, 0) rotate(0.6deg); }
}

.feature-ticker {
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  transform: rotate(-1deg) scale(1.02);
}
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding: 17px 0;
  color: #fff;
  animation: ticker-move 28s linear infinite;
}
.ticker-track span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ticker-track i { color: var(--yellow); font-style: normal; }
@keyframes ticker-move { to { transform: translateX(-50%); } }

.why { padding-top: clamp(120px, 14vw, 190px); padding-bottom: clamp(100px, 12vw, 170px); }
.section-intro { display: grid; grid-template-columns: 0.35fr 1fr; gap: 28px 70px; }
.section-intro .section-kicker { grid-row: 1 / span 2; }
.section-kicker {
  margin: 5px 0 0;
  color: #7b7460;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 0 10px 3px 0;
  background: var(--yellow);
}
.section-intro h2,
.inside h2,
.closing h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5.3vw, 72px);
  font-weight: 860;
  letter-spacing: -0.05em;
  line-height: 0.99;
}
.section-intro > p:last-child {
  max-width: 670px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  margin-top: 68px;
}
.bento-card {
  position: relative;
  min-height: 300px;
  padding: clamp(25px, 4vw, 42px);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bento-large { grid-row: span 2; display: flex; min-height: 616px; flex-direction: column; justify-content: space-between; }
.bento-yellow { color: var(--ink); background: var(--yellow); border-color: rgba(17, 17, 15, 0.2); }
.bento-dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.card-number { font-size: 11px; font-weight: 900; letter-spacing: 0.12em; }
.bento-card h3 { margin: 0 0 10px; font-size: clamp(25px, 3vw, 35px); letter-spacing: -0.035em; line-height: 1.05; }
.bento-card p { max-width: 540px; margin: 0; color: #62615a; line-height: 1.58; }
.bento-dark p { color: rgba(255, 255, 255, 0.62); }
.bento-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 28px 0;
  place-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  transition: transform 260ms ease;
}
.bento-yellow:hover .bento-icon { transform: rotate(45deg); }
.record-visual {
  position: relative;
  display: grid;
  width: min(80%, 390px);
  aspect-ratio: 1;
  margin: 20px auto 45px;
  place-items: center;
}
.record-ring {
  position: absolute;
  inset: 9%;
  border: 1px dashed rgba(17, 17, 15, 0.28);
  border-radius: 50%;
  animation: orbit-spin 24s linear infinite;
}
.record-ring::after,
.record-ring::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--yellow);
  border: 4px solid var(--surface);
  border-radius: 50%;
}
.record-ring::before { top: 4%; left: 21%; }
.record-ring::after { right: 0; bottom: 27%; }
.record-center {
  display: flex;
  width: 56%;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 16px 45px rgba(176, 138, 0, 0.2);
}
.record-center small { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.record-center strong { font-size: 29px; letter-spacing: -0.04em; }
.record-tag {
  position: absolute;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(17, 17, 15, 0.08);
  font-size: 11px;
  font-weight: 800;
}
.tag-a { top: 7%; right: 9%; }
.tag-b { bottom: 12%; left: 1%; }
.tag-c { right: -2%; bottom: 25%; }
.message-stack { display: grid; gap: 8px; margin: 28px 0 34px; }
.message-stack span {
  width: fit-content;
  padding: 8px 12px;
  color: var(--ink);
  background: #fff;
  border-radius: 9px 9px 9px 2px;
  font-size: 10px;
  font-weight: 780;
}
.message-stack span:nth-child(2) { margin-left: 14%; color: var(--ink); background: var(--yellow); }
.message-stack span:nth-child(3) { margin-left: 5%; opacity: 0.72; }

.how-section {
  padding: clamp(95px, 12vw, 155px) 0;
  color: #fff;
  background: var(--ink);
}
.how-section .section-kicker { color: rgba(255, 255, 255, 0.55); }
.section-intro.compact { grid-template-columns: 0.35fr 1fr; }
.steps-list { margin: 70px 0 0; padding: 0; list-style: none; }
.steps-list li {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 165px;
  padding: 30px 0;
  border-top: 1px solid var(--line-light);
  transition: padding-left 240ms ease, color 240ms ease;
}
.steps-list li:last-child { border-bottom: 1px solid var(--line-light); }
.steps-list li::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 260ms ease;
}
.steps-list li:hover { color: var(--ink); padding-right: 24px; padding-left: 24px; }
.steps-list li:hover::before { transform: scaleY(1); }
.steps-list li > * { position: relative; z-index: 1; }
.step-number { color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; }
.steps-list li:hover .step-number { color: var(--ink); }
.steps-list h3 { margin: 0 0 8px; font-size: clamp(25px, 3vw, 37px); letter-spacing: -0.035em; }
.steps-list p { max-width: 630px; margin: 0; color: rgba(255, 255, 255, 0.58); line-height: 1.55; }
.steps-list li:hover p { color: rgba(17, 17, 15, 0.68); }
.step-mark {
  min-width: 94px;
  padding: 9px 13px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  text-align: center;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.steps-list li:hover .step-mark { border-color: rgba(17, 17, 15, 0.25); }

.inside {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 110px);
  padding-top: clamp(110px, 14vw, 180px);
  padding-bottom: clamp(110px, 14vw, 180px);
}
.inside-copy { position: sticky; top: 130px; align-self: start; }
.inside-copy h2 { margin-top: 26px; }
.inside-copy > p:last-child { margin: 27px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.role-cards { display: grid; gap: 18px; }
.role-card {
  position: relative;
  min-height: 440px;
  padding: clamp(28px, 5vw, 50px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.role-card:hover { transform: translateX(-8px); box-shadow: var(--shadow); }
.treasurer-card { background: var(--yellow); }
.member-card { color: #fff; background: var(--ink); }
.role-card-top { display: flex; align-items: center; gap: 12px; }
.role-card-top > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 13px;
  font-size: 13px;
  font-weight: 900;
}
.member-card .role-card-top > span { color: var(--ink); background: var(--yellow); }
.role-card-top small { font-size: 11px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.role-card h3 { max-width: 480px; margin: 68px 0 31px; font-size: clamp(33px, 4vw, 49px); letter-spacing: -0.045em; line-height: 1.02; }
.role-card ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.role-card li { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 650; }
.role-card li::before { content: '✓'; display: grid; width: 22px; height: 22px; place-items: center; background: rgba(255, 255, 255, 0.44); border-radius: 50%; font-size: 10px; }
.member-card li { color: rgba(255, 255, 255, 0.72); }
.member-card li::before { color: var(--ink); background: var(--yellow); }
.role-corner {
  position: absolute;
  right: 25px;
  bottom: -28px;
  color: rgba(17, 17, 15, 0.08);
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}
.member-card .role-corner { color: rgba(255, 255, 255, 0.055); }

.closing { padding-bottom: clamp(70px, 9vw, 120px); }
.closing-card {
  position: relative;
  min-height: 600px;
  padding: clamp(38px, 7vw, 88px);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: clamp(30px, 5vw, 56px);
  isolation: isolate;
}
.closing-glow {
  position: absolute;
  z-index: -1;
  top: -35%;
  right: -10%;
  width: 62%;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.95;
  animation: closing-float 7s ease-in-out infinite alternate;
}
.closing-glow::after {
  content: '';
  position: absolute;
  inset: 18%;
  background: var(--ink);
  border-radius: 50%;
}
@keyframes closing-float { to { transform: translate(-3%, 6%) scale(1.08); } }
.section-kicker.light { color: rgba(255, 255, 255, 0.58); }
.closing h2 { max-width: 790px; margin-top: 34px; }
.closing-card > p:not(.section-kicker) { max-width: 610px; margin: 28px 0 0; color: rgba(255, 255, 255, 0.62); font-size: 17px; line-height: 1.62; }
.closing-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.closing-card .button-primary { color: var(--ink); background: var(--yellow); }
.closing-card .button-primary:hover { background: #fff; }
.coming-soon-word {
  position: absolute;
  z-index: -2;
  right: -0.02em;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(80px, 15vw, 210px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 18px 30px;
  padding: 10px 0 max(42px, env(safe-area-inset-bottom, 0px));
}
.footer-brand img { display: block; width: 120px; }
.site-footer > p { margin: 0; color: #77756e; font-size: 13px; }
.site-footer > div { display: flex; justify-self: end; gap: 20px; }
.site-footer > small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line); color: #8a887f; font-size: 11px; }

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 720ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
.motion-ready [data-reveal][data-delay="1"] { transition-delay: 90ms; }
.motion-ready [data-reveal][data-delay="2"] { transition-delay: 180ms; }
.motion-ready [data-reveal][data-delay="3"] { transition-delay: 270ms; }
.motion-ready [data-reveal][data-delay="4"] { transition-delay: 360ms; }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr); gap: 38px; }
  .hero h1 { font-size: clamp(48px, 7vw, 76px); }
  .chip-one { right: 0; }
  .chip-two { left: 0; }
  .inside { grid-template-columns: 0.8fr 1.2fr; gap: 50px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .site-header { min-height: 72px; padding-right: 16px; padding-left: 16px; }
  .site-header.is-scrolled { min-height: 64px; }
  .brand img { width: 118px; }
  .nav-actions { gap: 12px; }
  .button-small { min-height: 40px; padding-inline: 17px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 100px;
    text-align: center;
  }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { max-width: 680px; font-size: clamp(50px, 12vw, 76px); }
  .hero-lead { max-width: 610px; }
  .hero-stage { width: min(100%, 560px); min-height: 560px; margin: 20px auto 0; }
  .feature-ticker { transform: rotate(-1deg) scale(1.04); }
  .section-intro,
  .section-intro.compact { grid-template-columns: 1fr; gap: 22px; }
  .section-intro .section-kicker { grid-row: auto; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-row: auto; min-height: 600px; }
  .steps-list li { grid-template-columns: 58px 1fr; }
  .step-mark { display: none; }
  .inside { grid-template-columns: 1fr; }
  .inside-copy { position: static; }
  .role-cards { grid-template-columns: 1fr 1fr; }
  .role-card { min-height: 500px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 24px); }
  .hero { padding-top: 48px; }
  .eyebrow { font-size: 10px; }
  .hero h1 { font-size: clamp(44px, 15vw, 66px); line-height: 0.96; }
  .hero-lead { font-size: 17px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-stage { min-height: 510px; transform: scale(0.92); margin: -5px auto -25px; }
  .app-preview { padding: 17px; border-radius: 28px; }
  .floating-chip { font-size: 9px; }
  .chip-one { top: 8%; right: -5%; }
  .chip-two { bottom: 9%; left: -5%; }
  .why { padding-top: 105px; }
  .section-intro h2, .inside h2, .closing h2 { font-size: clamp(36px, 12vw, 52px); }
  .section-intro > p:last-child { font-size: 16px; }
  .bento-grid { margin-top: 44px; }
  .bento-card { border-radius: 25px; }
  .bento-large { min-height: 525px; }
  .record-visual { width: 94%; margin-top: 5px; }
  .steps-list { margin-top: 48px; }
  .steps-list li { grid-template-columns: 1fr; gap: 13px; min-height: 0; padding: 30px 0; }
  .steps-list li:hover { padding-right: 14px; padding-left: 14px; }
  .role-cards { grid-template-columns: 1fr; }
  .role-card { min-height: 430px; border-radius: 28px; }
  .role-card h3 { margin-top: 52px; }
  .closing-card { min-height: 610px; padding-top: 55px; }
  .closing-glow { top: auto; right: -42%; bottom: -15%; width: 115%; }
  .closing-actions .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr auto; align-items: center; }
  .site-footer > p { grid-column: 1 / -1; }
}

@media (max-width: 390px) {
  .brand img { width: 104px; }
  .nav-actions { gap: 9px; }
  .nav-actions .text-link { font-size: 12px; }
  .hero-stage { transform: scale(0.86); width: 112%; margin-left: -6%; }
  .floating-chip { display: none; }
  .preview-balance strong { font-size: 31px; }
  .nav-actions .button { padding-inline: 15px; }
}

/* Interactive one-screen launch hero */
.header-status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: #5f5d54;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.02em;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.status-signal,
.launch-pulse {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}
.status-signal::after,
.launch-pulse::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: 0;
  animation: status-ripple 2.4s ease-out infinite;
}
@keyframes status-ripple {
  0% { opacity: 0.55; transform: scale(0.55); }
  75%, 100% { opacity: 0; transform: scale(1.55); }
}

.hero {
  --pointer-x: 72%;
  --pointer-y: 25%;
  height: calc(100vh - 82px);
  height: calc(100svh - 82px);
  min-height: 0;
  padding-top: clamp(20px, 4vh, 48px);
  padding-bottom: clamp(20px, 4vh, 48px);
  overflow: hidden;
  isolation: isolate;
}
.hero-ambient,
.hero-grid {
  position: absolute;
  z-index: -4;
  inset: 0;
  pointer-events: none;
}
.hero-ambient {
  inset: -12%;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 210, 28, 0.26), transparent 22rem),
    radial-gradient(circle at 8% 84%, rgba(255, 255, 255, 0.9), transparent 24rem);
  transition: background-position 160ms ease-out;
}
.hero-grid {
  background-image:
    linear-gradient(rgba(17, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.54;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 46%, #000);
  mask-image: linear-gradient(to right, #000, transparent 46%, #000);
}
.hero::before {
  top: 5%;
  left: -16%;
  opacity: 0.78;
  animation: hero-ring-breathe 8s ease-in-out infinite alternate;
}
@keyframes hero-ring-breathe {
  to { transform: translate3d(3%, -2%, 0) scale(1.08); opacity: 0.46; }
}
.hero-copy {
  min-width: 0;
}
.hero .eyebrow { margin-bottom: clamp(12px, 2.2vh, 22px); }
.hero h1 {
  font-size: clamp(48px, min(6.5vw, 10.5vh), 92px);
}
.hero-lead {
  margin-top: clamp(14px, 2.7vh, 26px);
  font-size: clamp(16px, min(1.65vw, 2.5vh), 20px);
  line-height: 1.48;
}

.fund-story {
  width: min(100%, 560px);
  margin-top: clamp(16px, 2.8vh, 28px);
  padding: 10px;
  background: rgba(255, 254, 249, 0.62);
  border: 1px solid rgba(17, 17, 15, 0.11);
  border-radius: 20px;
  box-shadow: 0 15px 42px rgba(17, 17, 15, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.fund-story-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 5px 9px;
  color: #716f67;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.fund-story-heading small {
  color: #9a7a00;
  font-size: 9px;
  font-weight: 850;
}
.fund-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.fund-step {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 11px;
  color: #5c5a53;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.fund-step span {
  color: #99968b;
  font-size: 9px;
  letter-spacing: 0.05em;
}
.fund-step:hover { color: var(--ink); background: rgba(255, 255, 255, 0.75); }
.fund-step.is-active {
  color: var(--ink);
  background: var(--yellow);
  border-color: rgba(17, 17, 15, 0.16);
  box-shadow: 0 8px 20px rgba(176, 138, 0, 0.18);
  transform: translateY(-1px);
}
.fund-step.is-active span { color: rgba(17, 17, 15, 0.55); }
.fund-step:focus-visible {
  outline: 3px solid rgba(176, 138, 0, 0.48);
  outline-offset: 3px;
}
.access-note {
  max-width: 560px;
  margin-top: clamp(9px, 1.6vh, 15px);
  line-height: 1.35;
}

.hero-stage {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  transform: none;
}
.hero-stage::before {
  width: min(92%, calc(100svh - 132px), 570px);
}
.stage-visual {
  position: relative;
  display: grid;
  width: min(100%, calc(100svh - 122px), 570px);
  aspect-ratio: 1;
  place-items: center;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.floating-chip b { font-size: inherit; font-weight: 800; }
.preview-status {
  min-width: 72px;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease;
}
.preview-balance {
  transition: background-color 260ms ease, color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.preview-balance.is-switching { animation: balance-switch 420ms cubic-bezier(0.22, 0.8, 0.24, 1); }
@keyframes balance-switch {
  40% { opacity: 0.78; transform: translateY(4px) scale(0.985); }
}
.preview-balance[data-fund-state="lend"] {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.25), transparent 7rem),
    linear-gradient(135deg, #6f5700, #17150d 72%);
}
.preview-balance[data-fund-state="share"] {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.58), transparent 7rem),
    var(--yellow);
  box-shadow: 0 13px 30px rgba(176, 138, 0, 0.18);
}
.preview-balance[data-fund-state="share"] span,
.preview-balance[data-fund-state="share"] small { color: rgba(17, 17, 15, 0.62); }
.preview-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 10px 5px 0;
}
.preview-journey i {
  height: 4px;
  overflow: hidden;
  background: #ddd9cb;
  border-radius: 999px;
  transition: background-color 220ms ease, transform 220ms ease;
}
.preview-journey i.is-active {
  background: var(--yellow);
  transform: scaleY(1.5);
}
.activity-row {
  border-radius: 12px;
  transition: padding 220ms ease, background-color 220ms ease, opacity 220ms ease, transform 220ms ease;
}
.activity-row:not(.is-highlighted) { opacity: 0.66; }
.activity-row.is-highlighted {
  padding-right: 8px;
  padding-left: 8px;
  background: #fff7c9;
  transform: translateX(3px);
}
.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.launch-pulse {
  width: 11px;
  height: 11px;
  color: var(--yellow);
  border-color: var(--yellow);
}
.launch-status div { display: flex; flex-direction: column; gap: 3px; }
.launch-status strong { font-size: 14px; }
.launch-status small { color: rgba(255, 255, 255, 0.55); font-size: 11px; }

@media (min-width: 821px) and (max-height: 720px) {
  .hero { gap: clamp(32px, 6vw, 78px); padding-top: 16px; padding-bottom: 16px; }
  .hero .eyebrow { margin-bottom: 10px; padding-top: 6px; padding-bottom: 6px; }
  .hero h1 { font-size: clamp(46px, min(6vw, 9.5vh), 68px); }
  .hero-lead { margin-top: 12px; font-size: 15px; }
  .fund-story { margin-top: 13px; padding: 7px; }
  .fund-story-heading { display: none; }
  .access-note { margin-top: 8px; font-size: 11px; }
  .stage-visual { width: min(43vw, calc(100svh - 112px), 500px); }
  .app-preview { padding: 18px; }
  .preview-activity { display: none; }
}

@media (max-width: 820px) {
  .header-status { padding: 8px 11px; font-size: 10px; }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    gap: clamp(3px, 1vh, 10px);
    height: calc(100vh - 72px);
    height: calc(100svh - 72px);
    min-height: 0;
    padding-top: clamp(12px, 2vh, 18px);
    padding-bottom: 8px;
    text-align: center;
  }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero .eyebrow { margin-bottom: clamp(8px, 1.5vh, 13px); }
  .hero h1 { max-width: 640px; font-size: clamp(38px, min(10.8vw, 7.7vh), 58px); line-height: 0.96; }
  .hero-lead { max-width: 590px; margin-top: clamp(8px, 1.4vh, 13px); font-size: clamp(14px, 3.8vw, 16px); line-height: 1.4; }
  .fund-story { width: min(100%, 520px); margin-top: clamp(9px, 1.7vh, 15px); padding: 7px; }
  .fund-story-heading { padding-bottom: 6px; }
  .fund-step { min-height: 36px; padding: 7px 8px; font-size: 11px; }
  .access-note { justify-content: center; margin-top: clamp(6px, 1vh, 9px); font-size: 10.5px; }
  .hero-stage { width: 100%; height: 100%; min-height: 0; margin: 0 auto; transform: none; }
  .hero-stage::before { width: min(88vw, 390px, max(230px, calc(100svh - 430px))); }
  .stage-visual { width: min(88vw, 390px, max(230px, calc(100svh - 430px))); }
  .app-preview { width: min(100%, 340px); padding: 14px; border-radius: 25px; }
  .preview-topbar { grid-template-columns: 36px minmax(0, 1fr) auto; }
  .preview-topbar img { width: 36px; height: 36px; padding: 7px; }
  .preview-balance { margin-top: 13px; padding: 15px; border-radius: 18px; }
  .preview-balance strong { margin-top: 5px; font-size: 28px; }
  .preview-grid { gap: 7px; margin-top: 7px; }
  .preview-grid > div { min-height: 75px; padding: 11px; border-radius: 14px; }
  .preview-grid strong { font-size: 20px; }
  .mini-line { height: 20px; }
  .preview-activity { display: none; }
  .floating-chip { padding: 7px 10px 7px 7px; font-size: 8px; }
  .floating-chip span { width: 25px; height: 25px; border-radius: 8px; font-size: 8px; }
  .chip-one { top: 8%; right: 0; }
  .chip-two { bottom: 8%; left: 0; }
}

@media (max-width: 620px) {
  .hero { padding-top: 10px; }
  .hero-grid { background-size: 34px 34px; }
  .fund-story-heading { display: none; }
  .stage-visual { width: min(91vw, 365px, max(218px, calc(100svh - 405px))); }
  .hero-stage::before { width: min(91vw, 365px, max(218px, calc(100svh - 405px))); }
  .site-footer > div { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 390px) {
  .header-status { max-width: 138px; padding: 7px 9px; font-size: 9px; white-space: normal; }
  .hero-stage { width: 100%; margin: 0; transform: none; }
  .stage-visual { width: min(94vw, max(210px, calc(100svh - 395px))); }
  .hero-stage::before { width: min(94vw, max(210px, calc(100svh - 395px))); }
  .chip-one { display: flex; }
  .chip-two { display: none; }
}

@media (max-width: 820px) and (max-height: 520px) and (orientation: landscape) {
  .site-header { min-height: 60px; }
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
    grid-template-rows: 1fr;
    gap: 22px;
    height: calc(100svh - 60px);
    padding: 10px 0;
    text-align: left;
  }
  .hero-copy { align-items: flex-start; }
  .hero .eyebrow { margin-bottom: 7px; font-size: 8px; }
  .hero h1 { font-size: clamp(31px, 6.6vw, 43px); }
  .hero-lead { margin-top: 7px; font-size: 11px; line-height: 1.3; }
  .fund-story { margin-top: 8px; }
  .fund-step { min-height: 31px; }
  .access-note { display: none; }
  .stage-visual,
  .hero-stage::before { width: min(39vw, calc(100svh - 76px), 340px); }
  .floating-chip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
}

/* Scroll-led presentation. The hero is intentionally non-interactive. */
[data-scroll-section] {
  --view-progress: 0;
  --scroll-y: 0px;
  position: relative;
}

.hero {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.72fr);
  gap: clamp(44px, 6vw, 88px);
}

.hero-ambient {
  transform: translate3d(0, var(--ambient-y, 0px), 0) scale(1.04);
}

.hero-grid {
  transform: translate3d(0, var(--grid-y, 0px), 0);
}

.fund-story {
  display: none;
}

.fund-flow {
  display: grid;
  grid-template-columns: auto minmax(18px, 1fr) auto minmax(18px, 1fr) auto;
  align-items: center;
  gap: 11px;
  width: min(100%, 560px);
  margin-top: clamp(18px, 3vh, 30px);
  padding: 14px 16px;
  background: rgba(255, 254, 249, 0.66);
  border: 1px solid rgba(17, 17, 15, 0.11);
  border-radius: 18px;
  box-shadow: 0 15px 42px rgba(17, 17, 15, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.fund-flow span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #44433d;
  font-size: 12px;
  font-weight: 840;
  white-space: nowrap;
}

.fund-flow b {
  color: #9a7900;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.fund-flow i {
  position: relative;
  display: block;
  height: 1px;
  overflow: visible;
  background: rgba(17, 17, 15, 0.15);
}

.fund-flow i::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1px;
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-stage {
  overflow: clip;
  border-radius: 44px;
}

.hero-stage::before {
  width: min(88%, calc(100svh - 148px), 520px);
}

.stage-visual {
  width: min(100%, calc(100svh - 126px), 540px);
  transform: translate3d(0, var(--preview-y, 0px), 0);
  transition: none;
}

.app-preview {
  width: min(86%, 390px);
  will-change: auto;
  transform: translateZ(0);
  transition: box-shadow 420ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-stage.is-visible .app-preview {
  animation: preview-settle 900ms 140ms cubic-bezier(0.17, 0.84, 0.23, 1) both;
}

@keyframes preview-settle {
  from { opacity: 0; transform: translate3d(0, 34px, 0) scale(0.94); box-shadow: 0 18px 44px rgba(17, 17, 15, 0.12); }
  to { opacity: 1; transform: translateZ(0) scale(1); }
}

.preview-status {
  min-width: auto;
  color: #6e5700;
  background: #fff3b2;
}

.preview-balance,
.preview-balance[data-fund-state] {
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.6), transparent 7rem),
    var(--yellow);
  box-shadow: 0 13px 30px rgba(176, 138, 0, 0.17);
  transition: none;
}

.preview-balance span,
.preview-balance small,
.preview-balance[data-fund-state] span,
.preview-balance[data-fund-state] small {
  color: rgba(17, 17, 15, 0.62);
}

.preview-journey i,
.preview-journey i.is-active {
  background: var(--yellow);
  transform: none;
}

.activity-row,
.activity-row.is-highlighted,
.activity-row:not(.is-highlighted) {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
  opacity: 1;
  transform: none;
}

.motion-ready [data-reveal] {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 38px, 0);
  transition:
    opacity 820ms cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 820ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 880ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.motion-ready [data-reveal][data-motion="from-left"] {
  transform: translate3d(-54px, 24px, 0) rotate(-1.1deg);
}

.motion-ready [data-reveal][data-motion="from-right"] {
  transform: translate3d(54px, 24px, 0) rotate(1.1deg);
}

.motion-ready [data-reveal][data-motion="scale-in"] {
  transform: translate3d(0, 24px, 0) scale(0.95);
}

.motion-ready [data-reveal][data-motion="step-row"] {
  transform: translate3d(-34px, 0, 0);
}

.motion-ready [data-reveal].is-visible,
.motion-ready [data-reveal][data-motion].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.section-intro .section-kicker::before,
.inside-copy .section-kicker::before,
.closing-card .section-kicker::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 760ms 180ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.section-intro.is-visible .section-kicker::before,
.inside-copy.is-visible .section-kicker::before,
.closing-card .section-kicker.is-visible::before {
  transform: scaleX(1);
}

.record-center,
.record-tag,
.message-stack span,
.bento-icon,
.role-card li {
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.motion-ready .bento-large:not(.is-visible) .record-center { opacity: 0; transform: scale(0.72); }
.motion-ready .bento-large:not(.is-visible) .record-tag { opacity: 0; transform: translate3d(0, 16px, 0); }
.motion-ready .bento-large.is-visible .tag-a { transition-delay: 240ms; }
.motion-ready .bento-large.is-visible .tag-b { transition-delay: 350ms; }
.motion-ready .bento-large.is-visible .tag-c { transition-delay: 460ms; }
.motion-ready .bento-yellow:not(.is-visible) .bento-icon { opacity: 0; transform: rotate(-35deg) scale(0.7); }
.motion-ready .bento-dark:not(.is-visible) .message-stack span { opacity: 0; transform: translate3d(24px, 0, 0); }
.motion-ready .bento-dark.is-visible .message-stack span:nth-child(2) { transition-delay: 140ms; }
.motion-ready .bento-dark.is-visible .message-stack span:nth-child(3) { transition-delay: 280ms; }

.steps-list {
  position: relative;
}

.steps-list::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 56px;
  width: 3px;
  background: var(--yellow);
  border-radius: 999px;
  transform: scaleY(var(--view-progress, 0));
  transform-origin: top center;
}

.how-section .section-shell {
  --view-progress: inherit;
}

.how-section .steps-list {
  --view-progress: inherit;
}

.steps-list li {
  overflow: hidden;
}

.steps-list li.is-visible .step-number {
  animation: step-number-arrive 660ms cubic-bezier(0.16, 0.84, 0.24, 1) both;
}

@keyframes step-number-arrive {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.role-card::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -30%;
  left: -70%;
  width: 38%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(15deg);
  transition: transform 1.25s 260ms cubic-bezier(0.16, 0.84, 0.24, 1);
  pointer-events: none;
}

.role-card.is-visible::before {
  transform: translateX(430%) rotate(15deg);
}

.role-card > *:not(.role-corner) {
  position: relative;
  z-index: 1;
}

.role-card .role-corner {
  position: absolute;
}

.motion-ready .role-card:not(.is-visible) li {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.role-card.is-visible li:nth-child(1) { transition-delay: 260ms; }
.role-card.is-visible li:nth-child(2) { transition-delay: 340ms; }
.role-card.is-visible li:nth-child(3) { transition-delay: 420ms; }
.role-card.is-visible li:nth-child(4) { transition-delay: 500ms; }

.closing-card {
  transform: translate3d(0, var(--closing-card-y, 0px), 0);
}

.closing-glow {
  transform: translate3d(0, var(--closing-glow-y, 0px), 0) scale(var(--closing-glow-scale, 1));
  animation: none;
}

.coming-soon-word {
  transform: translate3d(var(--closing-word-x, 0%), 0, 0);
}

@media (max-width: 1040px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.76fr); gap: 32px; }
}

@media (max-width: 820px) {
  .hero {
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(4px, 1.1vh, 12px);
  }
  .fund-flow { width: min(100%, 520px); margin-top: clamp(10px, 1.7vh, 16px); padding: 10px 12px; }
  .hero-stage { width: 100%; height: 100%; min-height: 0; margin: 0 auto; }
  .hero-stage::before { width: min(86vw, 380px, max(224px, calc(100svh - 360px))); }
  .stage-visual { width: min(86vw, 380px, max(224px, calc(100svh - 360px))); }
  .app-preview { width: min(88%, 330px); }
  .steps-list::after { left: 42px; }
}

@media (max-width: 620px) {
  .fund-flow { grid-template-columns: auto 1fr auto 1fr auto; gap: 7px; }
  .fund-flow span { gap: 4px; font-size: 10px; }
  .fund-flow b { font-size: 8px; }
  .stage-visual,
  .hero-stage::before { width: min(90vw, 350px, max(214px, calc(100svh - 344px))); }
  .steps-list::after { left: -6px; }
}

@media (max-width: 390px) {
  .hero {
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    padding-left: max(12px, env(safe-area-inset-left, 0px));
  }
  .fund-flow { padding-inline: 9px; }
  .fund-flow span { font-size: 9px; }
  .stage-visual,
  .hero-stage::before { width: min(92vw, max(204px, calc(100svh - 334px))); }
}

@media (max-width: 820px) and (max-height: 520px) and (orientation: landscape) {
  .fund-flow { margin-top: 8px; padding: 7px 9px; }
  .stage-visual,
  .hero-stage::before { width: min(38vw, calc(100svh - 76px), 330px); }
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-layer],
  .closing-card,
  .closing-glow,
  .coming-soon-word {
    transform: none !important;
  }
  .motion-ready [data-reveal],
  .motion-ready [data-reveal][data-motion],
  .motion-ready .bento-card *,
  .motion-ready .role-card li {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
  .steps-list::after { transform: scaleY(1); }
}
