:root {
  --forest: #0d513d;
  --forest-dark: #073b2d;
  --forest-deep: #032b21;
  --leaf: #2f8d62;
  --lime: #cde782;
  --cream: #fff9e8;
  --paper: #fffdf6;
  --sky: #83c9ef;
  --watermelon: #ff626c;
  --peach: #ffc6a6;
  --ink: #153d31;
  --muted: #547268;
  --line: rgba(13, 81, 61, 0.15);
  --shadow: 0 28px 72px rgba(7, 59, 45, 0.18);
  --radius-large: 42px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--lime);
  color: var(--forest-dark);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: var(--forest-dark);
  font-weight: 800;
  transform: translateY(-200%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 246, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand {
  width: max-content;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.brand img,
.footer-brand img {
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(7, 59, 45, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.nav-links a,
.footer-links a,
.footer-links button {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--forest);
}

.nav > .button {
  justify-self: end;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 249, 232, 0.96), rgba(255, 253, 246, 0.98) 54%, rgba(225, 245, 211, 0.9)),
    var(--paper);
}

.hero::after {
  content: "7 × 8";
  position: absolute;
  right: -0.05em;
  bottom: -0.17em;
  z-index: -1;
  color: rgba(13, 81, 61, 0.042);
  font-size: clamp(10rem, 23vw, 21rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.09em;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.hero-orbit-one {
  top: 74px;
  left: max(-36px, calc(50vw - 660px));
  width: 150px;
  height: 150px;
  background: rgba(205, 231, 130, 0.76);
}

.hero-orbit-two {
  top: 4px;
  right: max(-50px, calc(50vw - 720px));
  width: 220px;
  height: 220px;
  background: rgba(255, 98, 108, 0.24);
}

.hero-grid {
  min-height: min(790px, calc(100vh - 82px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  padding-block: 70px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: var(--watermelon);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--forest-dark);
  font-size: clamp(3.35rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 22px;
  border: 2px solid var(--forest);
  border-radius: 17px;
  background: var(--forest);
  color: white;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 13px 28px rgba(13, 81, 61, 0.21);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button span:has(small) {
  display: grid;
  gap: 1px;
}

.button small {
  font-size: 0.65rem;
  font-weight: 650;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--forest-dark);
  box-shadow: 0 17px 34px rgba(13, 81, 61, 0.25);
}

.button-small {
  min-height: 46px;
  padding: 9px 16px;
  border-radius: 14px;
  font-size: 0.85rem;
}

.button-dark {
  border-color: #321e1d;
  background: #321e1d;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #1e1211;
}

.button-quiet {
  border-color: var(--line);
  background: transparent;
  color: var(--forest);
  box-shadow: none;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  background: rgba(13, 81, 61, 0.08);
  box-shadow: none;
}

.apple-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 750;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--watermelon);
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 12% 0 7% 4%;
  border-radius: 45% 55% 58% 42% / 54% 43% 57% 46%;
  background: var(--sky);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
  transform: rotate(7deg);
}

.phone-card {
  position: absolute;
  width: min(55%, 275px);
  margin: 0;
  padding: 6px;
  border: 1px solid #686a6f;
  border-radius: 34px;
  background: #121315;
  box-shadow: 0 0 0 1px #232427, inset 0 0 0 1px #383a3e, var(--shadow);
}

.phone-card img {
  width: 100%;
  border-radius: 28px;
}

.phone-card-front {
  top: 2%;
  left: 6%;
  z-index: 2;
  transform: rotate(-5deg);
}

.phone-card-back {
  right: 2%;
  bottom: 2%;
  z-index: 1;
  transform: rotate(5deg);
}

.equation-chip {
  position: absolute;
  z-index: 4;
  padding: 11px 16px;
  border: 1px solid rgba(7, 59, 45, 0.12);
  border-radius: 15px;
  background: white;
  color: var(--forest-dark);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(7, 59, 45, 0.16);
}

.chip-one {
  top: 17%;
  right: -2%;
  transform: rotate(5deg);
}

.chip-two {
  bottom: 18%;
  left: -2%;
  transform: rotate(-6deg);
}

.section {
  padding-block: 112px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: 60px;
}

h2 {
  margin-bottom: 18px;
  color: var(--forest-dark);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--forest-dark);
  font-size: 1.42rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-heading p,
.unlock-copy p,
.privacy-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.steps-section {
  background: var(--paper);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: 30px;
  border: 1px solid rgba(7, 59, 45, 0.1);
  border-radius: 30px;
}

.step-card p {
  max-width: 290px;
  color: #355f52;
}

.step-green {
  background: linear-gradient(145deg, #e4f5ae, #bfe1a2);
}

.step-blue {
  background: linear-gradient(145deg, #d7f2ff, #8bd0ee);
}

.step-red {
  background: linear-gradient(145deg, #ffe3ce, #ffb7a7);
}

.step-number {
  display: block;
  margin-bottom: 66px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step-symbol {
  position: absolute;
  right: 17px;
  bottom: -30px;
  color: rgba(7, 59, 45, 0.1);
  font-size: 5.8rem;
  font-weight: 900;
  letter-spacing: -0.12em;
}

.step-symbol svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.screens-section {
  overflow: hidden;
  background: var(--forest-dark);
  color: white;
}

.light-heading h2,
.light-heading .eyebrow {
  color: white;
}

.light-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.screens {
  display: grid;
  grid-template-columns: repeat(5, minmax(250px, 1fr));
  gap: 22px;
  overflow-x: auto;
  margin-right: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
  padding: 7px max(24px, calc((100vw - 1180px) / 2)) 28px 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
}

.screen-card {
  min-width: 250px;
  margin: 0;
  scroll-snap-align: start;
}

.screen-card img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.26);
}

.screen-card figcaption {
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 750;
}

.swipe-hint {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
}

.privacy-strip {
  padding-block: 68px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.privacy-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.privacy-grid h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

.privacy-grid p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
}

.privacy-mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: var(--lime);
  transform: rotate(-5deg);
}

.privacy-mark svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--forest-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.unlock-section {
  padding-top: 76px;
}

.unlock {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  align-items: center;
  padding: clamp(38px, 7vw, 78px);
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, #dff2a2, #a8dcad 54%, #83c9ef);
}

.unlock::after {
  content: "+ − × ÷";
  position: absolute;
  right: -18px;
  bottom: -40px;
  color: rgba(7, 59, 45, 0.08);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.09em;
}

.unlock-copy,
.unlock-list {
  position: relative;
  z-index: 1;
}

.unlock-copy p:last-child {
  margin-bottom: 0;
  color: #315d4e;
}

.unlock-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.unlock-list li {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px;
  border: 1px solid rgba(7, 59, 45, 0.12);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest-dark);
  backdrop-filter: blur(10px);
}

.unlock-list strong,
.unlock-list small {
  display: block;
}

.unlock-list strong {
  font-size: 0.92rem;
}

.unlock-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.check {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 0.75rem;
}

.cta-band {
  margin-top: 36px;
  background: var(--watermelon);
  color: #321e1d;
}

.cta-inner {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: 76px;
}

.cta-inner h2,
.cta-inner .eyebrow {
  color: #321e1d;
}

.cta-inner h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.cta-inner .eyebrow::before {
  background: #321e1d;
}

.site-footer {
  padding-block: 34px;
  background: #321e1d;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: white;
  font-size: 0.95rem;
}

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

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.footer-inner > p {
  margin: 0;
}

.consent-panel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 80;
  width: min(760px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 246, 0.97);
  box-shadow: 0 22px 70px rgba(7, 43, 33, 0.25);
  backdrop-filter: blur(18px);
}

.consent-panel[hidden] {
  display: none;
}

.consent-panel h2 {
  margin-bottom: 6px;
  font-size: 1.24rem;
  letter-spacing: -0.025em;
}

.consent-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent-actions {
  display: flex;
  gap: 9px;
}

.consent-actions .button {
  min-height: 46px;
  padding: 9px 15px;
  border-radius: 14px;
  font-size: 0.8rem;
}

/* Support and privacy pages */
.document-hero {
  padding-block: 88px 70px;
  background:
    radial-gradient(circle at 88% 14%, rgba(131, 201, 239, 0.34) 0 9%, transparent 9.2%),
    linear-gradient(145deg, #fff8dc, #fffdf6 58%, #edf8df);
  border-bottom: 1px solid var(--line);
}

.document-hero h1 {
  max-width: 860px;
  margin-bottom: 20px;
}

.document-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.document-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
  padding-block: 74px 110px;
}

.document-nav {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
}

.document-nav strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-nav a {
  display: block;
  padding-block: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.document-nav a:hover,
.document-nav a:focus-visible {
  color: var(--forest);
}

.document-content {
  min-width: 0;
}

.document-content h2 {
  margin: 64px 0 18px;
  padding-top: 14px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.045em;
  scroll-margin-top: 110px;
}

.document-content h2:first-child {
  margin-top: 0;
}

.document-content h3 {
  margin: 34px 0 12px;
  scroll-margin-top: 110px;
}

.document-content p,
.document-content li {
  color: #365e52;
  font-size: 1rem;
}

.document-content a {
  color: var(--forest);
  font-weight: 700;
  text-underline-offset: 3px;
}

.document-content code {
  padding: 0.12em 0.38em;
  border-radius: 6px;
  background: rgba(13, 81, 61, 0.08);
  color: var(--forest-dark);
  font-size: 0.9em;
}

.inline-button {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.document-content li + li {
  margin-top: 9px;
}

.document-content ol,
.document-content ul {
  padding-left: 24px;
}

.contact-card {
  margin-bottom: 44px;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, #dff2a2, #a8dcad);
}

.contact-card h2 {
  margin: 0 0 10px;
  padding: 0;
  font-size: 1.65rem;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.policy-updated {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(13, 81, 61, 0.08);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
}

.not-found {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 60px 24px;
  text-align: center;
  background: linear-gradient(145deg, #fff8dc, #fffdf6 54%, #edf8df);
}

.not-found > div {
  max-width: 680px;
}

.not-found .error-code {
  display: block;
  color: var(--watermelon);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.not-found h1 {
  margin-block: 16px 24px;
}

.not-found p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.1rem;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-stage {
    width: min(100%, 610px);
    min-height: 650px;
    margin-inline: auto;
  }

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

  .step-card {
    min-height: 250px;
  }

  .step-number {
    margin-bottom: 48px;
  }

  .privacy-grid {
    grid-template-columns: auto 1fr;
  }

  .privacy-grid > .text-link {
    grid-column: 2;
  }

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

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

  .footer-inner > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    position: relative;
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero-grid {
    padding-block: 52px 66px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .hero-stage {
    min-height: 510px;
  }

  .phone-card {
    width: min(57%, 230px);
    border-radius: 28px;
  }

  .phone-card img {
    border-radius: 22px;
  }

  .chip-one {
    right: 0;
  }

  .chip-two {
    left: 0;
  }

  .section {
    padding-block: 82px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .screens {
    grid-template-columns: repeat(5, minmax(228px, 76vw));
    margin-right: -15px;
    padding-right: 15px;
  }

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

  .privacy-grid > .text-link {
    grid-column: auto;
  }

  .privacy-mark {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .privacy-mark svg {
    width: 44px;
    height: 44px;
  }

  .unlock {
    gap: 34px;
    border-radius: 30px;
  }

  .unlock-list {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    min-height: 390px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

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

  .footer-inner > p {
    grid-column: auto;
  }

  .consent-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .document-hero {
    padding-block: 64px 54px;
  }

  .document-layout {
    grid-template-columns: 1fr;
    padding-block: 54px 84px;
  }

  .document-nav {
    position: static;
  }
}

@media (max-width: 460px) {
  .brand span {
    display: none;
  }

  .nav > .button span {
    font-size: 0.8rem;
  }

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

  .hero-stage {
    min-height: 430px;
  }

  .equation-chip {
    padding: 8px 11px;
    font-size: 0.75rem;
  }

  .step-card {
    min-height: 280px;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }
}

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