:root {
  color-scheme: dark;
  --bg: #090a16;
  --bg-2: #111323;
  --panel: rgba(18, 20, 36, 0.74);
  --panel-strong: rgba(25, 28, 48, 0.9);
  --text: #fbfcff;
  --muted: #b9bed5;
  --soft: #8188a6;
  --line: rgba(255, 255, 255, 0.14);
  --teal: #22f1d0;
  --purple: #9d6bff;
  --pink: #ff6ed4;
  --danger: #ff9cba;
  --success: #98ffe8;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(157, 107, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 12% 28%, rgba(34, 241, 208, 0.17), transparent 28rem),
    linear-gradient(135deg, #090a16 0%, #101122 54%, #090a16 100%);
  color: var(--text);
  min-height: 100vh;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

a {
  color: inherit;
}

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

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  backdrop-filter: blur(18px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 9, 20, 0.42);
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 760;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 31px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 10px;
  color: inherit;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a[aria-current="true"] {
  color: var(--text);
  border-color: rgba(34, 241, 208, 0.36);
  background: rgba(34, 241, 208, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 750;
}

.brand-logo {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(34, 241, 208, 0.2));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  color: var(--text);
  border: 1px solid rgba(34, 241, 208, 0.42);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(34, 241, 208, 0.08);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: 48px;
  align-items: center;
  padding: 42px 0 78px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.15rem, 6.7vw, 6.8rem);
  line-height: 0.91;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: #d8dcf0;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.35;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 760;
  font-size: 0.96rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #06110f;
  background: linear-gradient(135deg, var(--teal), #b9fff0);
  box-shadow: 0 18px 48px rgba(34, 241, 208, 0.24);
}

.button.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.trust-line {
  margin: 26px 0 0;
  color: var(--soft);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111323;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to bottom, rgba(9, 10, 22, 0.05), rgba(9, 10, 22, 0.76)),
    radial-gradient(circle at 52% 30%, rgba(34, 241, 208, 0.2), transparent 22rem);
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.waveform-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  height: 118px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 10, 20, 0.66);
  backdrop-filter: blur(20px);
}

.waveform-panel span {
  flex: 1;
  height: calc(18px + var(--h, 44) * 1px);
  border-radius: 999px;
  background: linear-gradient(to top, rgba(34, 241, 208, 0.48), rgba(157, 107, 255, 0.95));
  box-shadow: 0 0 18px rgba(34, 241, 208, 0.16);
  animation: pulse 2400ms ease-in-out infinite;
  animation-delay: calc(var(--i, 1) * -80ms);
}

.waveform-panel span:nth-child(1) { --h: 18; --i: 1; }
.waveform-panel span:nth-child(2) { --h: 42; --i: 2; }
.waveform-panel span:nth-child(3) { --h: 74; --i: 3; }
.waveform-panel span:nth-child(4) { --h: 38; --i: 4; }
.waveform-panel span:nth-child(5) { --h: 82; --i: 5; }
.waveform-panel span:nth-child(6) { --h: 56; --i: 6; }
.waveform-panel span:nth-child(7) { --h: 28; --i: 7; }
.waveform-panel span:nth-child(8) { --h: 66; --i: 8; }
.waveform-panel span:nth-child(9) { --h: 92; --i: 9; }
.waveform-panel span:nth-child(10) { --h: 52; --i: 10; }
.waveform-panel span:nth-child(11) { --h: 22; --i: 11; }
.waveform-panel span:nth-child(12) { --h: 63; --i: 12; }
.waveform-panel span:nth-child(13) { --h: 78; --i: 13; }
.waveform-panel span:nth-child(14) { --h: 33; --i: 14; }
.waveform-panel span:nth-child(15) { --h: 86; --i: 15; }
.waveform-panel span:nth-child(16) { --h: 46; --i: 16; }
.waveform-panel span:nth-child(17) { --h: 24; --i: 17; }
.waveform-panel span:nth-child(18) { --h: 57; --i: 18; }
.waveform-panel span:nth-child(19) { --h: 71; --i: 19; }
.waveform-panel span:nth-child(20) { --h: 31; --i: 20; }

.truth-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.truth-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) 1fr;
  gap: 42px;
  padding: 82px 0;
}

.section-label {
  margin: 0 0 18px;
  color: var(--teal);
  font-weight: 780;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
}

.truth-list {
  display: grid;
  gap: 16px;
}

.truth-list article,
.clarity-card,
.glass-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.truth-list article {
  padding: 22px;
}

.truth-list p,
.clarity-card p,
.request-copy p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.72;
}

.truth-list p {
  margin: 10px 0 0;
}

.clarity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 86px 0 18px;
}

.clarity-card {
  padding: 34px;
}

.clarity-card.muted {
  background: rgba(157, 107, 255, 0.08);
}

.clarity-card p {
  margin: 18px 0 0;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: start;
  padding: 88px 0 102px;
}

.request-copy {
  position: sticky;
  top: 112px;
}

.request-copy p {
  max-width: 520px;
  font-size: 1.07rem;
}

.quiet-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
  color: var(--muted);
}

.quiet-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quiet-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(34, 241, 208, 0.7);
}

.beta-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 8px;
  color: #eef1ff;
  font-size: 0.91rem;
  font-weight: 710;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 9, 20, 0.72);
  color: var(--text);
  min-height: 48px;
  padding: 13px 14px;
  font: inherit;
  font-weight: 500;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 116px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(34, 241, 208, 0.72);
  box-shadow: 0 0 0 3px rgba(34, 241, 208, 0.13);
}

.checkbox-field {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-weight: 620;
  line-height: 1.5;
}

.checkbox-field input {
  min-height: 20px;
  padding: 0;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-status {
  display: none;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 680;
  line-height: 1.45;
}

.form-status[data-state="error"] {
  display: block;
  border: 1px solid rgba(255, 156, 186, 0.38);
  background: rgba(255, 156, 186, 0.11);
}

.form-status[data-state="success"] {
  display: block;
  border: 1px solid rgba(152, 255, 232, 0.38);
  background: rgba(34, 241, 208, 0.11);
}

.fallback-title {
  margin: 0 0 12px;
}

.fallback-summary {
  min-height: 176px;
  margin: 0;
  background: rgba(7, 9, 20, 0.82);
  color: #eef1ff;
  font-weight: 520;
}

.fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.fallback-actions .button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.turnstile-slot:not([hidden]) {
  min-height: 65px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
}

.footer-grid nav {
  display: flex;
  gap: 18px;
}

.footer-grid .language-switcher {
  margin-left: auto;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
}

.legal-page {
  max-width: 820px;
  padding: 88px 0 120px;
}

.legal-page h1 {
  margin: 0 0 28px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.94;
}

.legal-page h2 {
  margin-top: 42px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.legal-page p {
  font-size: 1.03rem;
}

.policy-badge,
.translation-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.055);
}

.policy-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 760;
}

.translation-note {
  margin: 0 0 28px;
  color: #d8dcf0;
}

.legal-page a {
  color: var(--success);
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.72;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

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

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

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-header .language-switcher {
    margin-left: auto;
  }

  .hero,
  .truth-grid,
  .clarity,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .request-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-header {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    flex-direction: column;
    padding: 18px 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-header .language-switcher {
    margin-left: 0;
  }

  .language-switcher {
    max-width: 100%;
    overflow-x: visible;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

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

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

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .waveform-panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
    height: 96px;
    gap: 4px;
    padding: 14px;
  }

  .truth-grid,
  .clarity,
  .request-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .beta-form,
  .clarity-card {
    padding: 20px;
  }
}
