:root {
  --bg: #06111f;
  --bg-deep: #101f3a;
  --panel: rgba(255, 255, 255, 0);
  --panel-line: rgba(87, 191, 255, 0.18);
  --text: #ebf6ff;
  --muted: #8dadc8;
  --accent: #35b8ff;
  --accent-strong: #1665d8;
  --accent-warm: #7ef2ff;
  --accent-secondary: #ff4fc3;
  --line: rgba(111, 178, 228, 0.18);
  --glow: 0 0 40px rgba(53, 184, 255, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #06111f;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(126, 242, 255, 0.2), transparent 20%),
    radial-gradient(circle at 84% 14%, rgba(255, 79, 195, 0.22), transparent 22%),
    radial-gradient(circle at 76% 70%, rgba(53, 184, 255, 0.2), transparent 26%),
    linear-gradient(180deg, #07111f 0%, #0c1830 34%, #101b38 68%, #09152a 100%);
  animation: smoothAppear 600ms ease-out both;
  overflow-x: hidden;
}

.vanta-fog-layer {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) * -1 - 14vh);
  right: -12vw;
  bottom: calc(env(safe-area-inset-bottom, 0px) * -1 - 14vh);
  left: -12vw;
  z-index: -3;
  pointer-events: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) * -1 - 14vh);
  right: -12vw;
  bottom: calc(env(safe-area-inset-bottom, 0px) * -1 - 14vh);
  left: -12vw;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 30%, rgba(53, 184, 255, 0.08) 68%, rgba(255, 79, 195, 0.06) 86%, transparent 100%),
    radial-gradient(circle at 30% 30%, rgba(126, 242, 255, 0.16), transparent 24%);
  mix-blend-mode: screen;
}

body::after {
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 79, 195, 0.12), transparent 18%),
    radial-gradient(circle at 62% 78%, rgba(22, 101, 216, 0.18), transparent 20%),
    linear-gradient(180deg, transparent 0%, rgba(7, 19, 39, 0.18) 100%);
}

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

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

body.menu-open {
  overflow: hidden;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
  position: relative;
  z-index: 1;
}

.hero-shell,
.hero,
.section,
.topbar,
.hero-grid,
.cards,
.promise-grid,
.benefits {
  position: relative;
}

.hero {
  overflow: hidden;
  min-height: 100svh;
  width: 100%;
  padding: 18px 0 64px;
}

.hero-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  z-index: 1;
}

.topbar,
.hero-grid,
main {
  z-index: 1;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10020;
  display: none;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(87, 191, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 24, 44, 0.92), rgba(17, 41, 74, 0.8));
  color: #e8f8ff;
  backdrop-filter: blur(18px);
  box-shadow:
    0 16px 30px rgba(8, 16, 36, 0.34),
    0 0 0 1px rgba(126, 242, 255, 0.18) inset,
    0 0 24px rgba(255, 79, 195, 0.08);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transform-style: preserve-3d;
  perspective: 900px;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.menu-toggle:hover {
  transform: translateY(-2px) rotateX(10deg) rotateY(-10deg);
  box-shadow:
    0 24px 40px rgba(8, 16, 36, 0.4),
    0 0 0 1px rgba(126, 242, 255, 0.28) inset,
    0 0 30px rgba(255, 79, 195, 0.14);
}

.menu-toggle span {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 240ms ease, opacity 240ms ease, width 240ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

body.menu-open .menu-toggle {
  transform: translateY(0) rotateX(14deg) rotateY(-14deg) scale(1.04);
  box-shadow:
    0 26px 44px rgba(8, 16, 36, 0.42),
    0 0 0 1px rgba(126, 242, 255, 0.34) inset,
    0 0 36px rgba(255, 79, 195, 0.16);
}

body.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
  width: 22px;
}

body.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
  width: 22px;
}

.side-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  pointer-events: none;
  display: none;
}

.side-menu-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(4, 10, 22, 0.38);
  opacity: 0;
  transition: opacity 320ms ease;
}

.side-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  width: min(380px, 86vw);
  height: 100%;
  padding: 104px 28px 28px;
  background:
    linear-gradient(180deg, rgba(8, 20, 38, 0.96), rgba(13, 31, 55, 0.94)),
    radial-gradient(circle at top left, rgba(53, 184, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 79, 195, 0.12), transparent 32%);
  border-right: 1px solid rgba(87, 191, 255, 0.14);
  box-shadow:
    26px 0 60px rgba(4, 10, 22, 0.38),
    inset -1px 0 0 rgba(126, 242, 255, 0.14);
  transform: translateX(-108%) skewX(-6deg);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 420ms cubic-bezier(0.18, 0.8, 0.2, 1),
    opacity 320ms ease;
}

.side-menu-panel > * {
  transform: translateX(-18px);
  opacity: 0;
  transition: transform 320ms ease, opacity 320ms ease;
}

body.menu-open .side-menu {
  pointer-events: auto;
}

body.menu-open .side-menu-backdrop {
  opacity: 1;
}

body.menu-open .side-menu-panel {
  transform: translateX(0) skewX(0deg);
  opacity: 1;
}

body.menu-open .side-menu-panel > * {
  transform: translateX(0);
  opacity: 1;
}

.side-menu h2 {
  max-width: 10ch;
  margin-bottom: 22px;
  color: #eaf7ff;
}

.side-menu-links {
  display: grid;
  gap: 12px;
  pointer-events: auto;
}

.side-menu-links a {
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  padding: 14px 16px;
  border-left: 2px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: #dff7ff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.side-menu-links a:hover {
  transform: translateX(6px);
  border-color: #35b8ff;
  background: linear-gradient(90deg, rgba(53, 184, 255, 0.12), rgba(255, 79, 195, 0.08));
}

.side-menu-note {
  max-width: 26ch;
  margin-top: 20px;
  color: #84a8c3;
  line-height: 1.7;
}

.brand,
.eyebrow,
.note-label,
.benefit span,
.card-index {
  font-family: "Space Grotesk", sans-serif;
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3fbff;
}

.contact-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(87, 191, 255, 0.24);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d9f6ff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 2vh;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7ef2ff;
}

h1,
h2,
h3,
.quote {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7.2vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #f3fbff;
  text-shadow:
    0 8px 24px rgba(5, 12, 26, 0.42),
    0 0 28px rgba(53, 184, 255, 0.16);
}

.no-break {
  white-space: nowrap;
}

.title-focus {
  display: inline-block;
  color: #7ef2ff;
  text-shadow:
    0 0 22px rgba(126, 242, 255, 0.24),
    0 0 14px rgba(255, 79, 195, 0.12),
    0 2px 8px rgba(8, 16, 36, 0.2);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.lead,
.intro p,
.card p,
.benefit p,
.cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.lead {
  max-width: 58ch;
  margin-top: 24px;
  font-size: 1.16rem;
  color: rgba(214, 235, 255, 0.86);
  text-shadow: 0 2px 10px rgba(4, 10, 22, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow:
    0 16px 34px rgba(7, 22, 49, 0.34),
    0 0 24px rgba(53, 184, 255, 0.24);
}

.button.primary:hover {
  box-shadow:
    0 18px 36px rgba(7, 22, 49, 0.4),
    0 0 28px rgba(53, 184, 255, 0.32);
}

.button.secondary {
  border: 1px solid rgba(87, 191, 255, 0.28);
  color: #e4f7ff;
  background: linear-gradient(135deg, rgba(11, 28, 48, 0.82), rgba(17, 41, 74, 0.68));
  backdrop-filter: blur(8px);
  box-shadow:
    0 14px 30px rgba(5, 12, 26, 0.24),
    0 0 0 1px rgba(126, 242, 255, 0.14) inset;
}

.button.secondary:hover {
  border-color: rgba(126, 242, 255, 0.42);
  background: linear-gradient(135deg, rgba(13, 35, 58, 0.9), rgba(31, 92, 168, 0.72));
}

main {
  padding: 44px 28px 0;
}

.section {
  padding: 44px 0 0;
  scroll-margin-top: 24px;
  transform: translateY(var(--reveal-y, 0)) scale(var(--reveal-scale, 1));
}

.intro {
  overflow: hidden;
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.intro > *:not(.intro-entrance-canvas) {
  position: relative;
  z-index: 1;
}

.intro-entrance-canvas {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 220px;
  pointer-events: none;
  opacity: 0.95;
}

.intro-highlight {
  max-width: 62ch;
  margin-top: 22px;
  color: #b8d7f3;
  font-size: 1.08rem;
}

.intro-points {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.intro-points li {
  position: relative;
  padding-left: 22px;
  color: #d3ebff;
}

.intro-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--glow);
}

.sponsor-section {
  padding-top: 36px;
}

.sponsor-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sponsor-copy h2 {
  max-width: 12ch;
  margin-bottom: 18px;
}

.sponsor-copy p,
.sponsor-item p {
  max-width: 58ch;
  color: #8dadc8;
  line-height: 1.75;
  font-size: 1.04rem;
}

.sponsor-points {
  display: grid;
  gap: 18px;
}

.sponsor-item {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(87, 191, 255, 0.14);
}

.sponsor-item span {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #35b8ff;
}

.eyebrow.dark {
  color: #35b8ff;
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.card {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(87, 191, 255, 0.14);
  transition: border-color 220ms ease;
}

.card-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-warm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.card p {
  margin-top: 14px;
}

.website-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  padding: 34px 0;
  scroll-margin-top: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.website-callout-copy {
  max-width: 58ch;
}

.website-callout h2 {
  max-width: 11ch;
  margin-bottom: 16px;
}

.website-callout p {
  max-width: 56ch;
  margin-bottom: 24px;
}

.stat-card {
  align-self: center;
  padding: 26px 24px;
  border: 1px solid rgba(87, 191, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(10, 24, 44, 0.84), rgba(9, 19, 35, 0.9)),
    radial-gradient(circle at top right, rgba(126, 242, 255, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 79, 195, 0.12), transparent 30%);
  box-shadow:
    0 24px 48px rgba(5, 12, 26, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ef2ff;
}

.stat-value {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
  color: #f1fbff;
}

.stat-text {
  margin: 0 0 18px;
  color: #8dadc8;
  line-height: 1.7;
}

.stat-progress {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #35b8ff 0%, #7ef2ff 56%, #ff4fc3 100%);
  box-shadow:
    0 0 18px rgba(53, 184, 255, 0.4),
    0 0 36px rgba(126, 242, 255, 0.22);
  transition: width 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.website-callout.in-view .stat-progress-fill {
  width: 100%;
}

.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.quote {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

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

.benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(87, 191, 255, 0.14);
}

.benefit span {
  color: #35b8ff;
  font-size: 1.15rem;
  font-weight: 700;
}

.section,
.card,
.benefit,
.website-callout,
.sponsor-panel,
.reveal-text,
.scroll-cue {
  --reveal-y: 26px;
  --reveal-scale: 0.995;
  opacity: 0;
  transition:
    transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 760ms ease,
    filter 760ms ease,
    letter-spacing 760ms ease;
  filter: blur(8px);
  letter-spacing: 0.02em;
}

.section.in-view,
.card.in-view,
.benefit.in-view,
.website-callout.in-view,
.sponsor-panel.in-view,
.reveal-text.in-view,
.scroll-cue.in-view {
  --reveal-y: 0px;
  --reveal-scale: 1;
  opacity: 1;
  filter: blur(0);
  letter-spacing: 0;
}

.section:not(.in-view),
.card:not(.in-view),
.benefit:not(.in-view),
.website-callout:not(.in-view),
.sponsor-panel:not(.in-view),
.reveal-text:not(.in-view),
.scroll-cue:not(.in-view) {
  transform: translateY(var(--reveal-y, 26px)) scale(var(--reveal-scale, 0.995));
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  color: #d7f5ff;
  opacity: 0.92;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.scroll-mouse {
  position: relative;
  width: 34px;
  height: 56px;
  border-radius: 999px;
  border: 1.5px solid rgba(126, 242, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(53, 184, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 26px rgba(53, 184, 255, 0.16);
}

.scroll-wheel {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 12px;
  margin-left: -3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #35b8ff);
  animation: wheelDrop 1.8s ease-in-out infinite;
}

.scroll-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta {
  padding-bottom: 20px;
}

.cta h2 {
  margin-bottom: 18px;
}

.cta p {
  max-width: 58ch;
  margin-bottom: 24px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(87, 191, 255, 0.18);
  border-radius: 0;
  background: transparent;
  color: #dff3ff;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    color 240ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 242, 255, 0.34);
  color: #f4c1ea;
}

.contact-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #35b8ff;
}

.contact-card strong {
  font-size: 1.04rem;
  line-height: 1.5;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  opacity: 0;
  background: transparent;
  transition: opacity 320ms ease;
}

.cookie-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  width: min(720px, calc(100% - 32px));
  max-height: min(78vh, 720px);
  margin-top: max(18px, env(safe-area-inset-top));
  padding: 34px 30px 28px;
  border: 1px solid rgba(87, 191, 255, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(8, 20, 38, 0.98), rgba(10, 24, 44, 0.99)),
    radial-gradient(circle at top right, rgba(255, 79, 195, 0.12), transparent 34%);
  box-shadow:
    0 30px 70px rgba(4, 10, 22, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: auto;
  will-change: transform;
}

.cookie-overlay.is-visible {
  opacity: 1;
  pointer-events: none;
}

.cookie-overlay.is-visible .cookie-banner {
  opacity: 1;
  transform: translateY(0);
}

.cookie-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.cookie-overlay.is-hidden .cookie-banner {
  opacity: 0;
  transform: translateY(-40px);
}

.cookie-title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ef2ff;
}

.cookie-text {
  margin: 0 0 12px;
  color: #c9e7ff;
  line-height: 1.75;
  font-size: 1rem;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.cookie-button {
  min-width: 180px;
}

.cookie-button:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  box-shadow: none;
}

.cookie-button.button.primary {
  background: linear-gradient(135deg, #29d36a 0%, #1f9f50 100%);
  box-shadow:
    0 18px 38px rgba(20, 114, 57, 0.34),
    0 0 26px rgba(41, 211, 106, 0.26);
}

.cookie-button.button.primary:hover {
  box-shadow:
    0 22px 42px rgba(20, 114, 57, 0.4),
    0 0 30px rgba(41, 211, 106, 0.3);
}

.cookie-consent-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.cookie-consent-label {
  color: #d4e7ff;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  width: 68px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(180, 188, 196, 0.18);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.cookie-toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d2d8df;
  box-shadow: 0 6px 12px rgba(4, 10, 22, 0.22);
  transition: transform 220ms ease, background 220ms ease;
}

.cookie-toggle.is-checked {
  background: rgba(41, 211, 106, 0.24);
  border-color: rgba(41, 211, 106, 0.48);
  box-shadow: 0 0 20px rgba(41, 211, 106, 0.16);
}

.cookie-toggle.is-checked::after {
  transform: translateX(30px);
  background: #29d36a;
}

.cookie-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #d4e7ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.82;
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.cookie-link-button:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateX(4px);
}

@keyframes smoothAppear {
  from {
    opacity: 0;
    filter: blur(6px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes wheelDrop {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  70% {
    transform: translateY(18px);
    opacity: 0.95;
  }

  100% {
    transform: translateY(22px);
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
  }

  .side-menu {
    display: block;
  }

  .menu-toggle {
    top: 16px;
    right: 16px;
  }

  .contact-link {
    display: none;
  }

  .hero {
    min-height: 100dvh;
    min-height: 100svh;
  }

  .hero-grid,
  .website-callout,
  .sponsor-panel,
  .cards,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  h1,
  h2,
  .quote {
    max-width: none;
  }

  .menu-toggle,
  .button,
  .scroll-cue,
  .side-menu-panel,
  .side-menu-links a,
  .contact-card,
  .section,
  .card,
  .benefit,
  .website-callout,
  .sponsor-panel {
    transform: none !important;
    filter: none !important;
  }

  .menu-toggle,
  .button.secondary,
  .cookie-banner {
    backdrop-filter: none;
  }

  .section,
  .card,
  .benefit,
  .website-callout,
  .sponsor-panel,
  .scroll-cue {
    opacity: 1;
    letter-spacing: 0;
    transition: opacity 320ms ease;
  }

  .menu-toggle:hover,
  .button:hover,
  .contact-card:hover,
  .side-menu-links a:hover,
  .cookie-link-button:hover {
    transform: none;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .menu-toggle,
  .side-menu {
    display: none !important;
  }

  .contact-link {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 16px);
    padding-top: 28px;
  }

  .hero-shell {
    width: calc(100% - 16px);
  }

  .hero,
  main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: 100dvh;
    min-height: 100svh;
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }

  .website-callout {
    padding: 26px 0;
    scroll-margin-top: 18px;
  }

  .sponsor-panel {
    padding: 0;
  }

  .intro {
    padding-top: 44px;
  }

  .section {
    scroll-margin-top: 18px;
  }

  .intro-entrance-canvas {
    height: 180px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 34px;
    padding-top: max(64px, calc(env(safe-area-inset-top) + 54px));
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .no-break {
    white-space: normal;
  }

  .lead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .brand {
    max-width: calc(100% - 88px);
    line-height: 1.3;
    letter-spacing: 0.14em;
  }

  .hero-actions,
  .scroll-cue {
    margin-top: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions,
  .scroll-cue,
  .menu-toggle,
  .side-menu {
    display: none !important;
  }

  .button {
    width: 100%;
  }

  .cookie-banner {
    width: 100%;
    max-height: min(82vh, 680px);
    margin-top: max(12px, env(safe-area-inset-top));
    padding: 26px 18px 22px;
    transform: translateY(-24px);
  }

  .cookie-overlay.is-visible .cookie-banner {
    transform: translateY(0);
  }

  .cookie-overlay.is-hidden .cookie-banner {
    transform: translateY(-24px);
  }

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

  .cookie-button {
    width: 100%;
  }

  .cookie-consent-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-card strong {
    font-size: 0.96rem;
    word-break: break-word;
  }

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

@media (max-width: 430px) {
  .menu-toggle {
    top: max(12px, calc(env(safe-area-inset-top) + 8px));
    right: 12px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .hero-grid {
    padding-top: 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .scroll-text {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .website-callout,
  .section {
    overflow-wrap: anywhere;
  }
}
