:root {
  --ink: #111111;
  --muted: #5d6573;
  --paper: #f7f8f8;
  --white: #ffffff;
  --lime: #a9ed00;
  --lime-soft: #efffd3;
  --line: #e6e8de;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

img {
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 248, 248, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.site-header.is-elevated {
  border-bottom-color: rgba(17, 17, 17, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 126px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button,
.waitlist-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
}

.button:hover,
.nav-cta:hover,
.waitlist-form button:hover {
  transform: translateY(-2px);
}

.section-band,
.feature-section,
.split-section,
.ai-section,
.showcase-section,
.waitlist-section,
.story-section,
.access-section,
.legal-page {
  padding-inline: clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding-top: 42px;
  padding-bottom: 78px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto auto;
  width: 42vw;
  height: 42vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle, rgba(169, 237, 0, 0.38), rgba(169, 237, 0, 0) 68%);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: #5a7c00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  padding: 0 22px;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(126, 183, 0, 0.24);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row span {
  display: inline-flex;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.trust-row strong {
  color: var(--ink);
}

.story-section,
.access-section {
  padding-top: clamp(78px, 10vw, 140px);
  padding-bottom: clamp(78px, 10vw, 140px);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.58fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  min-height: clamp(620px, 76vh, 820px);
}

.story-copy {
  max-width: 850px;
}

.story-copy h2 {
  max-width: 900px;
}

.story-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
}

.story-panel {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

.story-panel span {
  display: grid;
  width: 58px;
  min-width: 58px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.story-panel strong {
  display: block;
  max-width: 320px;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1.05;
}

.story-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.story-light {
  background: var(--white);
}

.story-dark {
  background: var(--ink);
  color: var(--white);
}

.story-dark .eyebrow {
  color: var(--lime);
}

.story-dark .story-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.story-dark .story-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background: #1b1b1b;
  color: var(--white);
  box-shadow: none;
}

.story-dark .story-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.story-lime {
  background: var(--lime);
}

.story-lime .eyebrow,
.story-lime .story-copy p {
  color: rgba(17, 17, 17, 0.72);
}

.story-lime .story-panel {
  border-color: rgba(17, 17, 17, 0.1);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.18);
}

.story-lime .story-panel span {
  background: var(--white);
}

.story-lime .story-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.story-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  overflow: visible;
}

.story-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(340px, 100%);
  height: auto;
  border-radius: 34px;
  box-shadow: 0 28px 68px rgba(17, 17, 17, 0.24);
}

.access-section {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--ink);
  color: var(--white);
  text-align: left;
}

.access-box {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: clamp(4px, 3vw, 28px);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.access-box .eyebrow {
  color: var(--lime);
}

.access-box h2 {
  max-width: 680px;
}

.access-section p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.access-box p {
  color: rgba(255, 255, 255, 0.72);
}

.access-button {
  margin-top: 24px;
  min-width: min(260px, 100%);
}

.access-trust {
  display: grid;
  gap: 16px;
  align-content: center;
  max-width: 440px;
  margin-left: auto;
}

.access-trust p {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--lime);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.access-trust strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
}

.hero-visual {
  min-height: 660px;
}

.hero-visual-image {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(460px, 62vh, 660px);
  margin: 0;
}

.hero-visual-image img {
  display: block;
  width: 38vw;
  max-width: 495px;
  height: auto;
  border-radius: 42px;
  transform: translateX(2vw) scale(1.02);
  box-shadow: 0 28px 72px rgba(17, 17, 17, 0.2);
}

.phone {
  position: absolute;
  width: min(330px, 48vw);
  min-height: 650px;
  padding: 22px 18px 18px;
  border: 10px solid #101010;
  border-radius: 38px;
  background: #f8f9f9;
  box-shadow: var(--shadow);
}

.phone::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 20px;
  border-radius: 999px;
  background: #101010;
  transform: translateX(-50%);
}

.phone-home {
  top: 8px;
  left: 0;
  z-index: 2;
  transform: rotate(-4deg);
}

.phone-groups {
  top: 62px;
  right: 0;
  z-index: 1;
  transform: rotate(5deg);
}

.phone-top,
.groups-heading,
.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phone-top {
  margin-top: 18px;
}

.phone-top span,
.phone-top strong {
  display: block;
}

.phone-top span {
  color: var(--muted);
  font-size: 0.78rem;
}

.phone-top strong {
  font-size: 1.28rem;
}

.circle-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eceeed;
}

.balance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.balance-card {
  min-height: 130px;
  padding: 18px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.balance-card small {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.balance-card strong {
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 500;
}

.green-card {
  background: var(--lime);
}

.dark-card {
  background: var(--ink);
  color: var(--white);
}

.summary-pill {
  width: 100%;
  min-height: 54px;
  border: 1px solid #e8ebe8;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-weight: 800;
}

.phone-section-title {
  margin: 26px 0 14px;
}

.phone-section-title span {
  color: #5b4a33;
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-group,
.group-list article,
.group-showcase article,
.feature-card,
.steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.mini-group {
  min-height: 144px;
  padding: 16px;
  border-radius: 22px;
}

.group-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 14px;
  background: var(--lime-soft);
  color: #78ad00;
  font-weight: 900;
}

.mini-group strong,
.mini-group small,
.mini-group em {
  display: block;
}

.mini-group small,
.mini-group em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.floating-plus {
  position: absolute;
  right: 18px;
  bottom: 92px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 18px 34px rgba(126, 183, 0, 0.36);
  font-size: 2rem;
}

.bottom-nav {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
}

.bottom-nav span {
  display: grid;
  place-items: center;
  gap: 3px;
  font-weight: 900;
}

.bottom-nav small {
  font-size: 0.62rem;
  font-weight: 700;
}

.bottom-nav .active {
  color: var(--ink);
}

.bottom-nav .active::first-line {
  background: var(--lime);
}

.groups-heading {
  margin-top: 20px;
  margin-bottom: 22px;
}

.groups-heading strong {
  font-size: 1.65rem;
}

.groups-heading button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  background: var(--lime);
  box-shadow: 0 8px 18px rgba(126, 183, 0, 0.24);
  font-weight: 800;
}

.group-list {
  display: grid;
  gap: 12px;
}

.group-list article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 14px;
  border-radius: 16px;
}

.group-list .group-icon {
  margin: 0;
}

.group-list small {
  display: block;
  color: var(--muted);
}

.group-list b {
  color: var(--muted);
  font-size: 1.8rem;
  font-weight: 400;
}

.logos-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.logos-strip span {
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.feature-section,
.split-section,
.ai-section,
.showcase-section,
.waitlist-section {
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(72px, 10vw, 128px);
}

.feature-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.feature-section .section-heading,
.feature-section .feature-grid {
  position: relative;
  z-index: 1;
}

.feature-scroll-line {
  position: absolute;
  inset: -18% -8% -12%;
  z-index: 0;
  width: 116%;
  height: 130%;
  pointer-events: none;
  opacity: 0.5;
  filter: drop-shadow(0 22px 34px rgba(247, 169, 0, 0.16));
}

.feature-scroll-line[hidden] {
  display: none;
}

.feature-scroll-line path {
  fill: none;
  stroke: url("#featureLineGradient");
  stroke-width: 64;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 260px;
  padding: 26px;
}

.feature-card span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--lime);
  font-size: 1.4rem;
  font-weight: 900;
}

.feature-card p,
.split-section p,
.ai-panel p,
.showcase-copy p,
.waitlist-section p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 110px);
  background: var(--white);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
}

.ai-section {
  background: var(--ink);
  color: var(--white);
}

.ai-section .eyebrow {
  color: var(--lime);
}

.ai-section .section-heading {
  max-width: 820px;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
}

.ai-panel {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.ai-panel span {
  display: inline-grid;
  min-width: 54px;
  min-height: 42px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.ai-panel h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.ai-panel.dark-panel {
  background: #1b1b1b;
  color: var(--white);
}

.ai-panel.dark-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.group-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.group-showcase article {
  min-height: 156px;
  padding: 20px;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
}

.group-showcase strong,
.group-showcase small {
  display: block;
}

.group-showcase small {
  color: var(--muted);
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--lime);
}

.waitlist-section .eyebrow,
.waitlist-section p {
  color: rgba(17, 17, 17, 0.72);
}

.waitlist-form {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.waitlist-form div {
  display: flex;
  gap: 10px;
}

.waitlist-form input {
  min-width: 0;
  flex: 1;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: 0;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.waitlist-form input:focus {
  border-color: var(--lime);
}

.waitlist-form button {
  padding: 0 22px;
  background: var(--lime);
  color: var(--ink);
}

.waitlist-form small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
}

.site-footer > span {
  max-width: 720px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.site-footer .brand img {
  width: 136px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--ink);
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(80px, 10vw, 132px);
}

.legal-page h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.legal-page section {
  margin-top: 48px;
  scroll-margin-top: 100px;
}

.legal-page section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.legal-intro {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}

.legal-meta time {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.language-switch a,
.language-switch span {
  min-width: 44px;
  padding: 7px 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.language-switch [aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-page p + p {
  margin-top: 16px;
}

.legal-page strong {
  color: var(--ink);
}

.legal-page ul {
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.legal-contact {
  padding: 28px;
  border-left: 4px solid var(--lime);
  background: var(--white);
}

.legal-contact a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

@media (max-width: 1020px) {
  .hero,
  .split-section,
  .showcase-section,
  .waitlist-section,
  .story-section,
  .access-section {
    grid-template-columns: 1fr;
  }

  .access-layout {
    grid-template-columns: 1fr;
  }

  .access-trust {
    max-width: none;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 720px;
  }

  .hero-visual-image {
    min-height: 470px;
    overflow: visible;
  }

  .hero-visual-image img {
    width: 70vw;
    max-width: 470px;
    transform: none;
  }

  .phone {
    width: min(330px, 54vw);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-scroll-line {
    inset: -10% -46% 0 -36%;
    width: 182%;
    height: 112%;
    opacity: 0.42;
  }

  .feature-grid-four,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 210px;
  }

  .ai-panel {
    min-height: 240px;
  }

}

@media (max-width: 720px) {
  .site-header {
    padding-block: 14px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 48px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-visual-image {
    min-height: 400px;
    margin-top: 18px;
  }

  .hero-visual-image img {
    width: 87vw;
    max-width: 385px;
    transform: none;
  }

  .phone {
    width: min(292px, 84vw);
    min-height: 585px;
    border-width: 8px;
  }

  .phone-home {
    left: -8px;
    transform: rotate(-2deg);
  }

  .phone-groups {
    top: 210px;
    right: -18px;
    transform: scale(0.82) rotate(4deg);
    transform-origin: top right;
  }

  .balance-card {
    min-height: 116px;
    padding: 14px;
  }

  .balance-card strong {
    font-size: 1.45rem;
  }

  .mini-group-grid,
  .group-showcase {
    grid-template-columns: 1fr;
  }

  .logos-strip {
    justify-content: flex-start;
  }

  .feature-scroll-line {
    inset: -7% -64% auto -54%;
    width: 220%;
    height: 72%;
    opacity: 0.36;
  }

  .waitlist-form div,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    align-items: flex-start;
  }

  .brand img {
    width: 116px;
  }

  .site-footer .brand img {
    width: 126px;
  }

  .story-section {
    min-height: auto;
  }

  .story-panel {
    min-height: 240px;
  }

  .story-image {
    margin-inline: -4px;
  }

  .story-image img {
    width: min(315px, 82%);
    border-radius: 30px;
  }

  .access-button {
    width: 100%;
  }
}

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