@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka_medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka_semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka_bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/nunito_regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/nunito_semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/nunito_bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/nunito_extrabold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --cream: #fff7ef;
  --cream-card: #ffffff;
  --cream-sunken: #fbeddf;
  --ink: #241243;
  --ink-soft: #6c608a;
  --outline: #ead9c7;
  --grape: #7a3bee;
  --grape-edge: #5722be;
  --grape-soft: #ede4ff;
  --sky: #2e86f0;
  --sky-edge: #1a63c2;
  --sky-soft: #d9eaff;
  --mint: #00b598;
  --mint-edge: #00907a;
  --mint-soft: #d2f5ee;
  --punch: #f83b62;
  --punch-edge: #c91e44;
  --punch-soft: #ffdfe6;
  --sunny: #f9a312;
  --sunny-edge: #d07f00;
  --sunny-soft: #ffefd1;
  --lime: #57c534;
  --lime-edge: #3d9c1e;
  --lime-soft: #e2f7d8;
  --shadow: 0 20px 60px rgba(73, 37, 113, 0.12);
  --shadow-small: 0 10px 30px rgba(73, 37, 113, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --page: min(1160px, calc(100% - 40px));
}

[data-theme="dark"] {
  --cream: #130e22;
  --cream-card: #1e1836;
  --cream-sunken: #282047;
  --ink: #f4efff;
  --ink-soft: #b8afd7;
  --outline: #3a305e;
  --grape-soft: #2c2158;
  --sky-soft: #152f50;
  --mint-soft: #123e37;
  --punch-soft: #4c1526;
  --sunny-soft: #48320c;
  --lime-soft: #1d3e11;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --shadow-small: 0 10px 30px rgba(0, 0, 0, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(122, 59, 238, 0.08), transparent 24rem),
    radial-gradient(circle at 92% 20%, rgba(0, 181, 152, 0.09), transparent 25rem),
    var(--cream);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 4px solid rgba(46, 134, 240, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.container {
  width: var(--page);
  margin-inline: auto;
}

.narrow {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--outline) 70%, transparent);
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Fredoka", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand img {
  width: 43px;
  height: 43px;
  border-radius: 13px;
  box-shadow: 0 5px 0 rgba(36, 18, 67, 0.18);
}

.brand small {
  display: block;
  margin-top: -4px;
  color: var(--ink-soft);
  font-family: "Nunito", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 12px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--grape-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-button,
.menu-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--outline);
  border-radius: 14px;
  color: var(--ink);
  background: var(--cream-card);
  box-shadow: 0 4px 0 var(--outline);
  cursor: pointer;
}

.icon-button:active,
.menu-button:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--outline);
}

.menu-button {
  display: none;
  font-size: 1.3rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 0;
  border-radius: 15px;
  color: white;
  background: var(--grape);
  box-shadow: 0 6px 0 var(--grape-edge);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--grape-edge);
}

.button:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--grape-edge);
}

.button.secondary {
  color: var(--ink);
  background: var(--cream-card);
  box-shadow: 0 6px 0 var(--outline);
}

.button.sky {
  background: var(--sky);
  box-shadow: 0 6px 0 var(--sky-edge);
}

.button.small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.92rem;
}

.text-link {
  color: var(--grape);
  font-weight: 800;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 82px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
}

.hero::before {
  top: 30px;
  right: -65px;
  background: var(--sunny-soft);
}

.hero::after {
  bottom: 15px;
  left: -95px;
  background: var(--grape-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--grape);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  box-shadow: 14px 0 0 color-mix(in srgb, currentColor 45%, transparent);
  margin-right: 14px;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: "Fredoka", system-ui, sans-serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 23px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

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

.hero-copy .lede,
.page-hero .lede,
.section-heading .lede {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  color: var(--ink-soft);
  background: color-mix(in srgb, var(--cream-card) 80%, transparent);
  font-size: 0.82rem;
  font-weight: 800;
}

.pill::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.wave-console {
  position: relative;
  width: min(490px, 100%);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px;
  border: 2px solid var(--outline);
  border-radius: 42px;
  background: var(--cream-card);
  box-shadow: 0 14px 0 var(--outline), var(--shadow);
  transform: rotate(2deg);
}

.wave-console::before {
  position: absolute;
  inset: 18px;
  border: 1px dashed color-mix(in srgb, var(--grape) 25%, transparent);
  border-radius: 30px;
  content: "";
}

.wave-bars {
  position: relative;
  width: 270px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.wave-bars span {
  width: 27px;
  height: var(--bar);
  border-radius: 999px;
  background: var(--tone);
  box-shadow: inset 0 -7px 0 rgba(36, 18, 67, 0.16);
  transform-origin: center;
  animation: pulse 1.05s ease-in-out infinite alternate;
  animation-delay: var(--delay);
}

.wave-console.paused .wave-bars span {
  animation-play-state: paused;
}

@keyframes pulse {
  from { transform: scaleY(0.7); }
  to { transform: scaleY(1.08); }
}

.console-label {
  position: relative;
  margin: 16px 0 4px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.console-sub {
  position: relative;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.play-wave {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
}

.sticker {
  position: absolute;
  z-index: 3;
  min-width: 132px;
  padding: 13px 15px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: var(--sunny);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
  text-align: center;
  transform: rotate(-7deg);
}

.sticker.top {
  top: 16px;
  right: -12px;
}

.sticker.bottom {
  bottom: 18px;
  left: -18px;
  background: var(--mint);
  transform: rotate(6deg);
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 70px 0;
}

.section.alt {
  border-block: 1px solid var(--outline);
  background: color-mix(in srgb, var(--cream-sunken) 55%, transparent);
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .section-kicker {
  justify-content: center;
}

.section-heading.center .lede {
  margin-inline: auto;
}

.feature-grid,
.value-grid,
.mode-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

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

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

.mode-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 27px;
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  background: var(--cream-card);
  box-shadow: var(--shadow-small);
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.card-number,
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  color: var(--ink);
  background: var(--tone, var(--grape-soft));
  font-family: "Fredoka", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 5px 0 color-mix(in srgb, var(--tone, var(--grape-soft)) 75%, var(--ink));
}

.card.accent-grape { border-top: 6px solid var(--grape); }
.card.accent-sky { border-top: 6px solid var(--sky); }
.card.accent-mint { border-top: 6px solid var(--mint); }
.card.accent-punch { border-top: 6px solid var(--punch); }
.card.accent-sunny { border-top: 6px solid var(--sunny); }
.card.accent-lime { border-top: 6px solid var(--lime); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--outline);
  border-radius: 26px;
  background: var(--ink);
  box-shadow: 0 9px 0 color-mix(in srgb, var(--ink) 60%, black);
}

.stat {
  padding: 18px;
  color: white;
  text-align: center;
}

.stat strong {
  display: block;
  color: white;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #d9cfee;
  font-size: 0.84rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}

.image-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--outline);
  border-radius: 34px;
  background: var(--cream-card);
  box-shadow: 0 11px 0 var(--outline), var(--shadow);
}

.image-card img {
  width: 100%;
  border-radius: 22px;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 38px;
  color: var(--ink-soft);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--mint);
  content: "✓";
  font-size: 0.82rem;
  font-weight: 900;
}

.privacy-band {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 36px;
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 0 var(--grape), var(--shadow);
}

.privacy-band::after {
  position: absolute;
  right: -65px;
  bottom: -85px;
  width: 270px;
  height: 270px;
  border: 42px solid rgba(169, 133, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.privacy-band h2,
.privacy-band p {
  position: relative;
  z-index: 1;
  color: white;
}

.privacy-band p {
  max-width: 680px;
  color: #d9cfee;
  font-size: 1.08rem;
}

.privacy-band .hero-actions {
  position: relative;
  z-index: 1;
}

.privacy-band .secondary {
  color: var(--ink);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 48px;
  border: 2px solid var(--ink);
  border-radius: 32px;
  background: var(--sunny-soft);
  box-shadow: 9px 9px 0 var(--ink);
}

.cta-panel h2 {
  margin-bottom: 9px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-panel p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 85px 0 70px;
  border-bottom: 1px solid var(--outline);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--grape-soft) 60%, transparent), transparent 55%),
    var(--cream);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.page-hero .meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mode-explorer {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
}

.mode-tabs {
  display: grid;
  gap: 9px;
}

.mode-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid var(--outline);
  border-radius: 15px;
  color: var(--ink);
  background: var(--cream-card);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.mode-tab::before {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mode-color, var(--grape));
  content: "";
}

.mode-tab[aria-selected="true"] {
  border-color: var(--grape);
  background: var(--grape-soft);
  box-shadow: 0 5px 0 var(--grape-edge);
  transform: translateY(-2px);
}

.mode-display {
  min-height: 380px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--outline);
  border-radius: 30px;
  background: var(--cream-card);
  box-shadow: var(--shadow);
}

.mode-meter {
  height: 94px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 28px 0;
}

.mode-meter span {
  width: 14px;
  height: var(--h);
  border-radius: 999px;
  background: var(--active-mode, var(--grape));
  animation: meter 900ms ease-in-out infinite alternate;
  animation-delay: var(--d);
}

@keyframes meter {
  to { transform: scaleY(0.66); }
}

.mode-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quote {
  position: relative;
  margin: 0;
  padding: 34px;
  border-radius: 24px;
  background: var(--grape-soft);
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
}

.quote footer {
  margin-top: 18px;
  color: var(--ink-soft);
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.fact {
  padding: 24px;
  border: 1px solid var(--outline);
  border-radius: 19px;
  background: var(--cream-card);
}

.fact span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fact strong,
.fact a {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-grid {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 15px;
}

.contact-method {
  padding: 22px;
  border: 1px solid var(--outline);
  border-radius: 18px;
  background: var(--cream-card);
}

.contact-method span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method a {
  display: block;
  margin: 6px 0 12px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.24rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.copy-button {
  padding: 6px 9px;
  border: 1px solid var(--outline);
  border-radius: 9px;
  color: var(--ink);
  background: var(--cream-sunken);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.contact-form {
  padding: clamp(25px, 5vw, 46px);
  border: 1px solid var(--outline);
  border-radius: 28px;
  background: var(--cream-card);
  box-shadow: var(--shadow);
}

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

.field {
  margin-bottom: 17px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--outline);
  border-radius: 13px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--cream-sunken);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.form-status {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.form-status {
  min-height: 1.4em;
  margin-top: 14px;
  color: var(--mint-edge);
  font-weight: 800;
}

.legal-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 46px;
}

.legal-nav {
  position: sticky;
  top: 102px;
  padding: 21px;
  border: 1px solid var(--outline);
  border-radius: 18px;
  background: var(--cream-card);
}

.legal-nav strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.05rem;
}

.legal-nav a {
  display: block;
  padding: 8px 9px;
  border-radius: 9px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--ink);
  background: var(--grape-soft);
}

.legal-copy {
  min-width: 0;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--outline);
  border-radius: 28px;
  background: var(--cream-card);
  box-shadow: var(--shadow-small);
}

.legal-copy h2 {
  margin-top: 45px;
  padding-top: 10px;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  letter-spacing: -0.025em;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin-top: 28px;
  font-size: 1.25rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

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

.legal-copy a {
  color: var(--grape);
  font-weight: 800;
}

.notice {
  padding: 18px 20px;
  border-left: 5px solid var(--sky);
  border-radius: 8px 16px 16px 8px;
  background: var(--sky-soft);
}

.notice p {
  margin: 0;
  color: var(--ink);
}

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

.faq-item {
  border: 1px solid var(--outline);
  border-radius: 17px;
  background: var(--cream-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--ink-soft);
}

.faq-answer[hidden] {
  display: none;
}

.social-preview {
  width: 100%;
  border: 1px solid var(--outline);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 70px;
  padding: 66px 0 28px;
  color: #d9cfee;
  background: #241243;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 0.9fr;
  gap: 42px;
}

.footer-brand .brand {
  color: white;
}

.footer-brand p {
  max-width: 350px;
  color: #bfb3d8;
}

.footer-col h3 {
  color: white;
  font-size: 1.05rem;
}

.footer-col a {
  display: block;
  margin: 8px 0;
  color: #cfc4e4;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #a99cc5;
  font-size: 0.82rem;
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-grid;
  }

  .nav-shell > .button {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    padding: 28px 20px;
    background: var(--cream);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 15px 18px;
    font-size: 1.1rem;
  }

  .hero-grid,
  .split,
  .mode-explorer,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy .lede {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

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

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

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 760px) {
  :root {
    --page: min(100% - 28px, 1160px);
  }

  .hero {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

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

  .wave-console {
    min-height: 330px;
    padding: 28px 16px;
  }

  .wave-bars {
    width: 225px;
    gap: 8px;
  }

  .wave-bars span {
    width: 23px;
  }

  .sticker {
    min-width: 110px;
    font-size: 0.72rem;
  }

  .sticker.top { right: 4px; }
  .sticker.bottom { left: 2px; }

  .section {
    padding: 72px 0;
  }

  .feature-grid,
  .value-grid,
  .mode-grid,
  .stats,
  .company-facts,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
  }

  .privacy-band {
    padding: 35px 25px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 33px 25px;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
