@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Syne:wght@500;700;800&display=swap");

:root {
  --header-offset: 130px;
  --radius-lg: 24px;
  --radius-sm: 12px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #e8edff;
  --paper: #040613;
  --violet: #b07bff;
  --indigo: #6f7fff;
  --azure: #4ed0ff;
  --storm: #b7c2ef;
  --shadow: 0 24px 60px rgba(16, 26, 74, 0.45);
  --bg-spot-1: rgba(176, 123, 255, 0.3);
  --bg-spot-2: rgba(78, 208, 255, 0.28);
  --bg-base-1: #040613;
  --bg-base-2: #0a1231;
  --bg-base-3: #10245b;
  --halo-1: rgba(176, 123, 255, 0.58);
  --halo-2: rgba(78, 208, 255, 0.45);
  --header-bg: rgba(8, 14, 36, 0.84);
  --header-border: rgba(121, 142, 255, 0.24);
  --header-bg-compact: rgba(8, 14, 36, 0.94);
  --header-border-compact: rgba(150, 169, 255, 0.35);
  --logo-ring: rgba(140, 158, 255, 0.3);
  --logo-shadow: rgba(7, 13, 33, 0.6);
  --nav-link: #cad4fb;
  --pill-bg: rgba(17, 27, 66, 0.86);
  --pill-border: rgba(138, 158, 255, 0.4);
  --primary-shadow: rgba(111, 127, 255, 0.4);
  --secondary-bg: rgba(12, 20, 48, 0.55);
  --secondary-border: rgba(129, 150, 255, 0.45);
  --secondary-text: #dbe4ff;
  --hover-shadow: rgba(78, 208, 255, 0.28);
  --panel-bg: rgba(14, 24, 58, 0.78);
  --panel-border: rgba(127, 147, 255, 0.24);
  --panel-shadow: rgba(24, 38, 96, 0.3);
  --stat-bg: rgba(98, 115, 255, 0.12);
  --step-grad-1: rgba(73, 204, 255, 0.16);
  --step-grad-2: rgba(166, 107, 255, 0.12);
  --step-border: rgba(110, 133, 255, 0.3);
  --cta-grad-1: rgba(166, 107, 255, 0.22);
  --cta-grad-2: rgba(98, 115, 255, 0.18);
  --cta-grad-3: rgba(73, 204, 255, 0.2);
  --cta-border: rgba(133, 154, 255, 0.36);
  --footer-ink: rgba(226, 234, 255, 0.72);
  --toggle-track: rgba(52, 68, 140, 0.9);
  --toggle-thumb: #dce6ff;
  --toggle-icon: #2a3a82;
}

:root[data-theme="light"] {
  color-scheme: light;
  --ink: #1f2a5c;
  --paper: #f2f5ff;
  --violet: #8f5bff;
  --indigo: #5670ff;
  --azure: #35b9ff;
  --storm: #42528d;
  --shadow: 0 24px 60px rgba(97, 117, 206, 0.18);
  --bg-spot-1: rgba(159, 109, 255, 0.2);
  --bg-spot-2: rgba(76, 193, 255, 0.24);
  --bg-base-1: #f6f8ff;
  --bg-base-2: #eef3ff;
  --bg-base-3: #e4ecff;
  --halo-1: rgba(159, 109, 255, 0.3);
  --halo-2: rgba(76, 193, 255, 0.28);
  --header-bg: rgba(244, 248, 255, 0.86);
  --header-border: rgba(115, 136, 222, 0.32);
  --header-bg-compact: rgba(250, 252, 255, 0.95);
  --header-border-compact: rgba(101, 125, 221, 0.4);
  --logo-ring: rgba(110, 127, 206, 0.35);
  --logo-shadow: rgba(98, 119, 210, 0.22);
  --nav-link: #44529b;
  --pill-bg: rgba(233, 239, 255, 0.9);
  --pill-border: rgba(113, 133, 214, 0.42);
  --primary-shadow: rgba(94, 114, 218, 0.34);
  --secondary-bg: rgba(235, 241, 255, 0.9);
  --secondary-border: rgba(102, 123, 218, 0.5);
  --secondary-text: #2c3c7b;
  --hover-shadow: rgba(53, 185, 255, 0.3);
  --panel-bg: rgba(255, 255, 255, 0.78);
  --panel-border: rgba(116, 137, 220, 0.28);
  --panel-shadow: rgba(97, 117, 206, 0.2);
  --stat-bg: rgba(103, 122, 225, 0.14);
  --step-grad-1: rgba(53, 185, 255, 0.16);
  --step-grad-2: rgba(143, 91, 255, 0.12);
  --step-border: rgba(101, 124, 220, 0.34);
  --cta-grad-1: rgba(143, 91, 255, 0.18);
  --cta-grad-2: rgba(86, 112, 255, 0.16);
  --cta-grad-3: rgba(53, 185, 255, 0.18);
  --cta-border: rgba(108, 131, 225, 0.36);
  --footer-ink: rgba(50, 65, 126, 0.78);
  --toggle-track: rgba(202, 214, 255, 0.95);
  --toggle-thumb: #ffffff;
  --toggle-icon: #5264b4;
}

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

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, var(--bg-spot-1), transparent 36%),
    radial-gradient(circle at 80% 75%, var(--bg-spot-2), transparent 34%),
    linear-gradient(160deg, var(--bg-base-1) 0%, var(--bg-base-2) 45%, var(--bg-base-3) 100%);
  min-height: 100vh;
  overflow-x: clip;
}

html {
  scroll-padding-top: calc(var(--header-offset) + 12px);
}

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

.page {
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.4;
  z-index: 0;
}

.page::before {
  top: -120px;
  left: -160px;
  background: radial-gradient(circle, var(--halo-1), transparent 70%);
}

.page::after {
  bottom: -200px;
  right: -140px;
  background: radial-gradient(circle, var(--halo-2), transparent 70%);
}

main,
header,
section,
footer {
  position: relative;
  z-index: 1;
}

main {
  padding-top: calc(var(--header-offset) - 10px);
}

section {
  scroll-margin-top: calc(var(--header-offset) + 12px);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
  transition: padding 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

body.nav-compact header {
  padding-top: 14px;
  padding-bottom: 14px;
  background: var(--header-bg-compact);
  border-bottom: 1px solid var(--header-border-compact);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-image {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--logo-ring), 0 10px 22px var(--logo-shadow);
  transition: width 0.25s ease, height 0.25s ease;
}

body.nav-compact .logo-image {
  width: 26px;
  height: 26px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--nav-link);
  padding: 10px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  color: var(--ink);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle-bar + .menu-toggle-bar {
  margin-top: 5px;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(4, 10, 28, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(92vw, 360px);
  z-index: 16;
  padding: 20px 18px 24px;
  border-left: 1px solid var(--panel-border);
  background: var(--header-bg-compact);
  backdrop-filter: blur(14px);
  transform: translateX(104%);
  transition: transform 0.25s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}

.menu-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.menu-drawer-title {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-close {
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  color: var(--ink);
  border-radius: 10px;
  min-height: 40px;
  padding: 6px 10px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
}

.menu-nav {
  display: grid;
  align-content: start;
  gap: 2px;
  overflow-y: auto;
  padding-right: 4px;
}

.menu-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 10px;
  color: var(--ink);
}

.menu-nav a:hover {
  background: var(--pill-bg);
}

.menu-cta {
  justify-content: center;
  min-height: 46px;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .menu-drawer {
  transform: translateX(0);
}

.theme-toggle {
  appearance: none;
  border: 1px solid var(--pill-border);
  background: transparent;
  border-radius: 999px;
  width: 68px;
  height: 38px;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px var(--hover-shadow);
  border-color: var(--secondary-border);
}

.theme-toggle-track {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--toggle-track);
  position: relative;
  overflow: hidden;
}

.theme-day {
  position: absolute;
  right: 5px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  color: rgba(224, 171, 42, 0.98);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.theme-day::before,
.theme-day::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.theme-day::before {
  width: 12px;
  height: 6px;
  border-radius: 999px;
  left: -5px;
  bottom: 1px;
  box-shadow: 10px 1px 0 0 rgba(255, 255, 255, 0.82);
  z-index: 0;
}

.theme-day::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: -3px;
  bottom: 2px;
  box-shadow: 5px -1px 0 0 rgba(255, 255, 255, 0.9);
  z-index: 2;
}

.theme-day-sun {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.theme-day-sun circle {
  fill: currentColor;
  stroke: currentColor;
}

.theme-night {
  position: absolute;
  left: 3px;
  top: 50%;
  width: 24px;
  height: 18px;
  transform: translateY(-50%);
  color: rgba(234, 241, 255, 0.9);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.theme-night-moon {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.theme-night-moon path {
  fill: currentColor;
  stroke: currentColor;
}

.theme-night-star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(243, 248, 255, 0.9);
}

.theme-night-star.star-1 {
  top: 1px;
  right: 1px;
  background: rgba(243, 248, 255, 0.8);
}

.theme-night-star.star-2 {
  top: 5px;
  right: 8px;
  background: rgba(243, 248, 255, 0.6);
}

.theme-night-star.star-3 {
  bottom: 4px;
  right: 1px;
}

.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--toggle-thumb);
  color: var(--toggle-icon);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(16, 26, 74, 0.24);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.theme-toggle[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(30px);
}

.theme-toggle[data-theme="dark"] .theme-night {
  opacity: 1;
}

.theme-toggle[data-theme="light"] .theme-day {
  opacity: 1;
}

.hero {
  padding: 40px 8vw 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero.hero-single {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.hero.hero-single p {
  margin-left: auto;
  margin-right: auto;
}

.hero.hero-single .cta-group {
  justify-content: center;
}

.hero h1 {
  font-family: "Syne", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  margin: 12px 0 18px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--storm);
  max-width: 520px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  padding: 14px 26px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: linear-gradient(120deg, var(--violet), var(--indigo) 52%, var(--azure));
  color: #fff;
  box-shadow: 0 12px 28px var(--primary-shadow);
}

.button.secondary {
  background: var(--secondary-bg);
  border-color: var(--secondary-border);
  color: var(--secondary-text);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px var(--hover-shadow);
}

.hero-card {
  background: var(--panel-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--panel-border);
}

.hero-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.hero-grid {
  display: grid;
  gap: 18px;
}

.stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--stat-bg);
}

.stat span {
  font-size: 1.4rem;
  font-weight: 700;
}

.section {
  padding: 64px 8vw;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: "Syne", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.legal-page main {
  max-width: 1120px;
  margin: 0 auto;
}

.legal-page .section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.legal-page .section-head {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

.legal-page .section-head p {
  margin: 0;
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-page .card {
  padding: 28px;
}

.legal-page .card p {
  max-width: 90ch;
  line-height: 1.7;
}

.card {
  background: var(--panel-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--panel-border);
  box-shadow: 0 14px 36px var(--panel-shadow);
}

.card h3 {
  margin-top: 0;
}

.section-image {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--panel-border);
  box-shadow: 0 14px 36px var(--panel-shadow);
  object-fit: cover;
}

.section-image-hero {
  min-height: 220px;
  max-width: 760px;
  margin: 30px auto 0;
  aspect-ratio: 1600 / 920;
}

.section-image-card {
  min-height: 128px;
  margin-bottom: 18px;
  aspect-ratio: 3 / 2;
}

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 22px;
  align-items: center;
}

.section-image-mission {
  height: auto;
  margin: 0;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top center;
  align-self: start;
}

.mission-copy {
  font-style: italic;
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  line-height: 1.75;
  padding: 0 18px;
  text-align: center;
}

.mission-copy p {
  margin: 0;
}

.timeline {
  display: grid;
  gap: 18px;
}

.step {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, var(--step-grad-1), var(--step-grad-2));
  border: 1px solid var(--step-border);
}

.quote {
  font-style: italic;
  margin: 0;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--panel-bg);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border: 1px solid var(--panel-border);
}

.cta {
  padding: 64px 8vw 88px;
  text-align: center;
}

.cta-box {
  max-width: 780px;
  margin: 0 auto;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--cta-grad-1), var(--cta-grad-2), var(--cta-grad-3));
  border: 1px solid var(--cta-border);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw 48px;
  font-size: 0.9rem;
  color: var(--footer-ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  }

  .section {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

@media (max-width: 860px) {
  :root {
    --header-offset: 86px;
  }

  header {
    padding: 16px 5vw;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    transition: background-color 0.25s ease, border-color 0.25s ease;
  }

  body.nav-compact header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  header > .nav,
  header > .pill {
    display: none;
  }

  .logo {
    min-height: 44px;
  }

  .theme-toggle {
    width: 76px;
    height: 44px;
    flex-shrink: 0;
    justify-self: center;
  }

  .menu-drawer-top {
    display: grid;
    grid-template-columns: minmax(60px, 1fr) auto auto;
    align-items: center;
    gap: 10px;
  }

  .menu-drawer-title {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-close {
    min-width: 74px;
    justify-self: end;
  }

  .theme-toggle-track {
    width: 100%;
    height: 100%;
  }

  .theme-toggle-thumb {
    width: 32px;
    height: 32px;
    top: 2px;
    left: 2px;
  }

  .theme-toggle[data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(32px);
  }

  .theme-day {
    right: 6px;
    width: 24px;
    height: 24px;
  }

  .theme-day-sun {
    width: 22px;
    height: 22px;
  }

  .theme-day::before {
    width: 13px;
    height: 7px;
    left: -6px;
    bottom: 2px;
    box-shadow: 11px 2px 0 0 rgba(255, 255, 255, 0.82);
  }

  .theme-day::after {
    width: 8px;
    height: 8px;
    left: -3px;
    bottom: 3px;
    box-shadow: 5px -1px 0 0 rgba(255, 255, 255, 0.9);
  }

  .theme-night {
    left: 6px;
    width: 24px;
    height: 24px;
  }

  .theme-night-moon {
    width: 22px;
    height: 22px;
  }

  .theme-night-star {
    width: 3px;
    height: 3px;
  }

  .theme-night-star.star-1 {
    top: 2px;
    right: 1px;
  }

  .theme-night-star.star-2 {
    top: 7px;
    right: 9px;
  }

  .theme-night-star.star-3 {
    bottom: 5px;
    right: 1px;
  }

  .hero {
    padding: 24px 5vw 44px;
    gap: 28px;
  }

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

  .hero p {
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .section {
    padding: 48px 5vw;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
  }

  .section-image-hero {
    min-height: 0;
    margin-top: 20px;
  }

  .section-image-card {
    margin-bottom: 14px;
  }

  .card {
    padding: 20px;
  }

  .timeline {
    gap: 12px;
  }

  .step {
    padding: 14px 16px;
  }

  .mission-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-image-mission {
    min-height: 0;
  }

  .mission-copy {
    padding: 0;
    text-align: left;
    font-size: 1rem;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .legal-page .section {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .legal-page .card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-offset: 78px;
  }

  header {
    padding-left: 4.5vw;
    padding-right: 4.5vw;
  }

  .menu-drawer {
    width: 100vw;
    border-left: 0;
  }

  .menu-drawer-top {
    grid-template-columns: minmax(50px, 1fr) auto auto;
    gap: 8px;
  }

  .theme-toggle {
    width: 72px;
    height: 42px;
  }

  .theme-toggle-thumb {
    width: 30px;
    height: 30px;
    top: 3px;
    left: 3px;
  }

  .theme-toggle[data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(32px);
  }

  .menu-close {
    min-width: 68px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.4vw, 2.35rem);
  }

  .hero p {
    font-size: 0.96rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-group .button {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 40px 4.5vw;
  }

  .section-head h2 {
    font-size: clamp(1.55rem, 8.4vw, 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .reveal {
    transition: none;
  }
}
