@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-latin-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --page: #f7faf8;
  --surface: #ffffff;
  --brand-primary: #0f3d2e;
  --brand-secondary: #1e6f4a;
  --brand-mint: #d9f2e5;
  --brand-accent: #ffb400;
  --text: #1f2937;
  --muted: rgba(31, 41, 55, 0.72);
  --border: rgba(15, 61, 46, 0.14);
  --border-strong: rgba(15, 61, 46, 0.28);
  --on-primary: #ffffff;
  --radius-control: 10px;
  --radius-card: 12px;
  --radius-panel: 16px;
  --shadow-card: 0 1px 2px rgba(15, 61, 46, 0.04), 0 8px 24px -8px rgba(15, 61, 46, 0.14);
  --shadow-raised: 0 3px 8px rgba(15, 61, 46, 0.08), 0 24px 56px -18px rgba(15, 61, 46, 0.26);
  --content: 1180px;
  --gutter: clamp(1rem, 4vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--page);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--page);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
summary {
  font: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--brand-mint);
  color: var(--brand-primary);
}

:focus-visible {
  outline: 3px solid rgba(30, 111, 74, 0.72);
  outline-offset: 3px;
}

section,
footer {
  scroll-margin-top: 88px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 30;
  transform: translateY(-180%);
  border-radius: var(--radius-control);
  background: var(--surface);
  color: var(--brand-primary);
  padding: 0.7rem 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-raised);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: var(--page);
}

.header-inner,
.section-shell,
.hero-inner,
.stage-inner,
.benefits-inner,
.footer-inner,
.footer-base {
  width: min(100% - (2 * var(--gutter)), var(--content));
  margin-inline: auto;
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 8px;
}

.brand-link img {
  width: 154px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.7rem);
  white-space: nowrap;
}

.desktop-nav > a:not(.button) {
  padding-block: 0.65rem;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav > a:not(.button):hover {
  color: var(--brand-primary);
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius-control);
  background: var(--brand-primary);
  color: var(--on-primary);
  padding: 0.7rem 1.15rem;
  font-size: 0.925rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15, 61, 46, 0.08);
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: #082a1f;
  background: #082a1f;
}

.button:active {
  transform: translateY(1px);
}

.button-small {
  min-height: 42px;
  padding: 0.6rem 0.95rem;
  font-size: 0.84rem;
}

.button-large {
  min-height: 50px;
  padding-inline: 1.35rem;
  font-size: 1rem;
}

.hero {
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  min-height: calc(100dvh - 72px);
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6.5rem);
  padding-block: clamp(3rem, 7vh, 5.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--brand-secondary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.stage-copy h2,
.organiser-intro h2,
.benefits-lead h2,
.beta-copy h2,
.cta-panel h2,
.matchday-problem h2 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 11ch;
  color: var(--brand-primary);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.98;
}

.hero-summary {
  max-width: 570px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  margin-top: 1.75rem;
}

.hero-product {
  position: relative;
  display: flex;
  min-height: 640px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  isolation: isolate;
}

.hero-product-surface {
  position: absolute;
  inset: 8% 0 12% 13%;
  z-index: -1;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-panel);
  background: var(--brand-mint);
}

.phone-frame,
.spotlight-phone img {
  border: 8px solid #133b30;
  border-radius: 38px;
  background: var(--surface);
  box-shadow: var(--shadow-raised);
}

.phone-frame {
  width: min(310px, 78%);
  overflow: hidden;
}

.phone-frame img {
  width: 100%;
}

.hero-product figcaption,
.spotlight-phone figcaption,
.organiser-preview figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-product figcaption {
  margin-top: 0.85rem;
  text-align: center;
}

.matchday-problem {
  padding-block: clamp(5.5rem, 11vw, 9rem);
}

.narrow-shell {
  width: min(100% - (2 * var(--gutter)), 900px);
  margin-inline: auto;
}

.matchday-problem h2 {
  max-width: 18ch;
  color: var(--brand-primary);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.08;
}

.matchday-problem .narrow-shell > p {
  max-width: 660px;
  margin: 2rem 0 0 clamp(0rem, 9vw, 8rem);
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.problem-line {
  display: grid;
  width: min(100% - (2 * var(--gutter)), var(--content));
  grid-template-columns: 1fr 1fr;
  margin: clamp(3rem, 7vw, 5.5rem) auto 0;
  border-top: 1px solid var(--border-strong);
}

.problem-line p {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) 1fr;
  gap: 1.5rem;
  margin: 0;
  padding: 1.4rem 1.5rem 0 0;
}

.problem-line p + p {
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}

.problem-line strong {
  color: var(--brand-primary);
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.35;
}

.problem-line span {
  color: var(--muted);
  font-size: 0.92rem;
}

.workflow {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section-heading {
  max-width: 720px;
}

.workflow-visual,
.benefits-visual {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-panel);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.workflow-visual {
  margin: clamp(2.75rem, 6vw, 4.5rem) 0 0;
}

.workflow-visual img,
.benefits-visual img {
  width: 100%;
}

.workflow-visual + .process-rail {
  margin-top: clamp(3.25rem, 7vw, 5rem);
}

.section-heading h2,
.organiser-intro h2,
.benefits-lead h2,
.beta-copy h2,
.cta-panel h2 {
  color: var(--brand-primary);
  font-size: clamp(2.25rem, 4.5vw, 3.6rem);
  line-height: 1.08;
}

.section-heading > p:last-child,
.organiser-intro > p,
.benefits-lead > p,
.beta-copy > p:last-child,
.cta-panel > div > p {
  max-width: 640px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(3rem, 7vw, 5rem) 0 0;
  padding: 0;
  list-style: none;
}

.process-rail li {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 1.4rem 1.5rem 0 0;
  border-top: 1px solid var(--border-strong);
}

.process-rail li:not(:last-child) {
  margin-right: 1.5rem;
}

.process-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-top: -2.75rem;
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius-control);
  background: var(--page);
  color: var(--brand-primary);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.process-rail h3,
.benefit-ledger h3 {
  margin: 0;
  color: var(--brand-primary);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1.25;
}

.process-rail p,
.benefit-ledger p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.my-team-stage {
  background: var(--brand-primary);
  color: var(--on-primary);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.stage-copy {
  max-width: 710px;
}

.section-kicker-light {
  color: #9edbbb;
}

.stage-copy h2 {
  max-width: 14ch;
  color: var(--on-primary);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.stage-copy > p:last-child {
  max-width: 610px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.my-team-layout {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(260px, 350px) minmax(180px, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4.75rem);
  margin-top: clamp(3rem, 7vw, 5rem);
}

.match-facts {
  display: grid;
  gap: 2.5rem;
  margin: 0;
}

.match-facts div {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 1rem;
}

.match-facts dt {
  color: #9edbbb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-facts dd {
  margin: 0.5rem 0 0;
  color: var(--on-primary);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.3;
}

.spotlight-phone {
  margin: 0;
}

.spotlight-phone img {
  width: 100%;
}

.spotlight-phone figcaption {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.organiser {
  padding-block: clamp(5.5rem, 10vw, 8.5rem);
}

.organiser-intro {
  max-width: 780px;
}

.organiser-preview {
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
}

.desktop-frame {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-panel);
  background: var(--surface);
  padding: clamp(0.45rem, 1vw, 0.75rem);
  box-shadow: var(--shadow-raised);
}

.desktop-frame img {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.organiser-preview figcaption {
  margin-top: 0.8rem;
}

.organiser-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border-strong);
}

.organiser-notes p {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 1.35rem 1.5rem 0 0;
}

.organiser-notes p + p {
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}

.organiser-notes strong {
  color: var(--brand-primary);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.02rem;
}

.organiser-notes span {
  color: var(--muted);
  font-size: 0.9rem;
}

.benefits {
  border-block: 1px solid var(--border);
  background: var(--surface);
  padding-block: clamp(5rem, 9vw, 7.5rem);
}

.benefits-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.benefits-lead > p {
  max-width: 390px;
}

.benefits-visual {
  width: min(100%, 460px);
  margin: clamp(2rem, 4vw, 3rem) 0 0;
}

.benefit-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 2.5rem;
}

.benefit-ledger article {
  border-top: 1px solid var(--border-strong);
  padding-top: 1rem;
}

.beta-statement {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  margin-block: clamp(4rem, 8vw, 7rem);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-panel);
  background: var(--brand-mint);
  padding: clamp(2rem, 6vw, 5rem);
}

.beta-year {
  color: rgba(15, 61, 46, 0.18);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(4.7rem, 11vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.beta-copy > p:last-child {
  color: rgba(15, 61, 46, 0.78);
}

.final-cta {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
  border-radius: var(--radius-panel);
  background: var(--brand-primary);
  padding: clamp(2rem, 5vw, 4.5rem);
  box-shadow: var(--shadow-raised);
}

.cta-panel h2 {
  max-width: 16ch;
  color: var(--on-primary);
}

.cta-panel > div > p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.button-light {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--brand-primary);
}

.button-light:hover {
  border-color: var(--brand-mint);
  background: var(--brand-mint);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.56);
  background: transparent;
  color: var(--on-primary);
  box-shadow: none;
}

.button-outline-light:hover {
  border-color: var(--surface);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  background: var(--brand-primary);
  color: var(--on-primary);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.footer-brand img {
  width: 190px;
  height: auto;
}

.footer-brand p {
  max-width: 310px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-links a,
.footer-contact a,
.footer-base a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-contact > p {
  margin: 0 0 0.4rem;
  color: #9edbbb;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 1.35rem;
}

.footer-base p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 0.85rem;
  }

  .desktop-nav > a:not(.button) {
    font-size: 0.8rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 2.5rem;
  }

  .hero-product {
    min-height: 580px;
  }

  .my-team-layout {
    grid-template-columns: minmax(150px, 1fr) minmax(240px, 310px) minmax(150px, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    min-width: 58px;
    min-height: 44px;
    cursor: pointer;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-control);
    background: var(--surface);
    color: var(--brand-primary);
    font-size: 0.85rem;
    font-weight: 750;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: 64px;
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - (2 * var(--gutter))));
    gap: 0.3rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-card);
    background: var(--surface);
    padding: 0.75rem;
    box-shadow: var(--shadow-raised);
  }

  .mobile-nav nav > a:not(.button) {
    min-height: 44px;
    border-radius: 8px;
    padding: 0.65rem 0.75rem;
    color: var(--brand-primary);
    font-weight: 650;
    text-decoration: none;
  }

  .mobile-nav nav > a:not(.button):hover {
    background: var(--brand-mint);
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3.2rem;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-product {
    min-height: 550px;
  }

  .hero-product-surface {
    inset: 7% 8% 12% 14%;
  }

  .phone-frame {
    width: 270px;
  }

  .problem-line p {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .process-rail {
    grid-template-columns: 1fr 1fr;
    gap: 3.25rem 2rem;
  }

  .process-rail li:not(:last-child) {
    margin-right: 0;
  }

  .my-team-layout {
    grid-template-columns: 1fr 300px 1fr;
    gap: 1.5rem;
  }

  .match-facts dd {
    font-size: 1.05rem;
  }

  .benefits-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefits-lead > p {
    max-width: 600px;
  }

  .benefits-visual {
    width: min(100%, 560px);
  }

  .beta-statement {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-actions {
    width: min(100%, 360px);
  }
}

@media (max-width: 767px) {
  .hero-product {
    min-height: 510px;
  }

  .hero-product figcaption {
    margin-top: 0.75rem;
  }

  .matchday-problem .narrow-shell > p {
    margin-left: 0;
  }

  .problem-line {
    grid-template-columns: 1fr;
  }

  .problem-line p {
    padding-right: 0;
  }

  .problem-line p + p {
    margin-top: 1.25rem;
    border-top: 1px solid var(--border);
    border-left: 0;
    padding-top: 1.25rem;
    padding-left: 0;
  }

  .my-team-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "phone phone"
      "left right";
    align-items: start;
    gap: 2.5rem 1.25rem;
  }

  .match-facts-left {
    grid-area: left;
  }

  .match-facts-right {
    grid-area: right;
  }

  .spotlight-phone {
    grid-area: phone;
    width: min(100%, 310px);
    justify-self: center;
  }

  .match-facts {
    gap: 1.5rem;
  }

  .organiser-notes {
    grid-template-columns: 1fr;
  }

  .organiser-notes p {
    padding-right: 0;
  }

  .organiser-notes p + p {
    border-top: 1px solid var(--border);
    border-left: 0;
    padding-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 66px;
  }

  .brand-link img {
    width: 138px;
  }

  .mobile-nav nav {
    top: 60px;
  }

  .hero-inner {
    padding-top: 2.65rem;
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 3.35rem);
  }

  .hero-summary {
    margin-top: 1.2rem;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 1.4rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-product {
    min-height: 455px;
  }

  .phone-frame {
    width: 228px;
    border-width: 6px;
    border-radius: 30px;
  }

  .hero-product figcaption {
    margin-top: 0.65rem;
  }

  .matchday-problem {
    padding-block: 4.5rem;
  }

  .matchday-problem h2,
  .section-heading h2,
  .organiser-intro h2,
  .benefits-lead h2,
  .beta-copy h2,
  .cta-panel h2 {
    font-size: 2.35rem;
  }

  .process-rail {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .stage-copy h2 {
    font-size: 2.7rem;
  }

  .my-team-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "phone"
      "left"
      "right";
  }

  .match-facts {
    grid-template-columns: 1fr 1fr;
  }

  .spotlight-phone {
    width: min(100%, 285px);
  }

  .spotlight-phone img {
    border-width: 6px;
    border-radius: 30px;
  }

  .desktop-frame {
    border-radius: var(--radius-card);
    padding: 0.35rem;
  }

  .desktop-frame img {
    border-radius: 8px;
  }

  .benefit-ledger {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .beta-statement {
    padding: 2rem 1.25rem;
  }

  .beta-year {
    font-size: 4.5rem;
  }

  .cta-panel {
    padding: 2rem 1.25rem;
  }

  .cta-actions,
  .cta-actions .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
