:root {
  --bg: #08090b;
  --bg-soft: #111316;
  --panel: #15181d;
  --panel-strong: #1c2026;
  --text: #f4f1eb;
  --muted: #a8a29a;
  --muted-strong: #d4cec4;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --red: #b31822;
  --red-bright: #ef3340;
  --gold: #d8b15e;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
  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;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(179, 24, 34, 0.08), transparent 360px),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body::selection {
  background: var(--red);
  color: white;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 750;
  font-size: 0.98rem;
}

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

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.language-toggle button {
  width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.language-toggle button.is-active {
  background: var(--text);
  color: var(--bg);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.mobile-menu {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 17, 21, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 12px;
  color: var(--muted-strong);
}

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

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

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

.button-primary {
  background: var(--red-bright);
  color: white;
  box-shadow: 0 14px 34px rgba(239, 51, 64, 0.22);
}

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

.button-small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 140px 0 36px;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 32%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 32%;
  transform: scale(1.03);
  animation: heroBreath 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.88), rgba(8, 9, 11, 0.46) 48%, rgba(8, 9, 11, 0.78)),
    linear-gradient(180deg, rgba(8, 9, 11, 0.15), rgba(8, 9, 11, 0.92));
}

@keyframes heroBreath {
  from {
    transform: scale(1.03) translateY(0);
  }
  to {
    transform: scale(1.06) translateY(-10px);
  }
}

.hero-content {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 62px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 850;
  font-size: 0.78rem;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 5.8rem;
  line-height: 0.96;
  font-weight: 850;
}

.hero-subline {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: 1.17rem;
}

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

.stats-bar {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 10, 12, 0.7);
  backdrop-filter: blur(20px);
}

.stat {
  min-height: 118px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.section + .section {
  border-top: 1px solid var(--line);
}

.section-intro {
  max-width: 790px;
}

.section-intro h2 {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1.02;
  font-weight: 830;
}

.section-intro p:not(.section-label) {
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 1.06rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.image-panel img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quote-panel {
  margin-top: 42px;
  padding: 34px;
  border-left: 4px solid var(--red-bright);
  background: linear-gradient(90deg, rgba(179, 24, 34, 0.18), rgba(255, 255, 255, 0.04));
}

.quote-panel blockquote {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.16;
  font-weight: 780;
}

.quote-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

.purpose-punchline {
  margin-top: 42px;
  padding: 30px 34px;
  border: 1px solid rgba(216, 177, 94, 0.42);
  border-radius: 8px;
  background: rgba(216, 177, 94, 0.08);
  color: var(--text);
  font-size: 1.65rem;
  line-height: 1.18;
  font-weight: 830;
}

.three-grid,
.record-grid,
.proof-grid,
.package-grid,
.partner-grid,
.media-grid {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

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

.feature-card,
.proof-card,
.record-card,
.benefit-card,
.package-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.feature-card,
.proof-card,
.record-card,
.benefit-card {
  min-height: 230px;
  padding: 26px;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(239, 51, 64, 0.14);
  color: var(--red-bright);
  font-weight: 850;
  font-size: 0.78rem;
}

.feature-card h3,
.proof-card h3,
.record-card h3,
.benefit-card h3,
.package-card h3 {
  margin: 22px 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.feature-card p,
.proof-card span,
.benefit-card p,
.package-card li,
.timeline-item p {
  color: var(--muted);
}

.challenge-section {
  width: 100%;
  padding-left: max(20px, calc((100% - 1200px) / 2));
  padding-right: max(20px, calc((100% - 1200px) / 2));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(179, 24, 34, 0.1));
}

.route-card {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

.route-line {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  overflow-x: auto;
}

.route-stop {
  position: relative;
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.route-stop::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 30px;
  height: 2px;
  background: var(--red-bright);
}

.route-stop:last-child {
  border-right: 0;
}

.route-stop span {
  display: block;
  color: var(--gold);
  font-weight: 850;
}

.route-stop strong {
  display: block;
  margin-top: 12px;
}

.challenge-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px;
  border-top: 1px solid var(--line);
}

.challenge-stat strong {
  font-size: 2.4rem;
  line-height: 1;
}

.challenge-stat span {
  color: var(--muted);
}

.proof-card p,
.record-card span {
  margin: 0;
  color: var(--gold);
  font-weight: 760;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.proof-card span {
  display: block;
  margin-top: 18px;
}

.record-section {
  position: relative;
}

.record-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(239, 51, 64, 0.08), transparent),
    var(--panel);
}

.record-card h3 {
  font-size: 2rem;
}

.credibility-note,
.muted-note {
  margin: 24px 0 0;
  color: var(--muted);
}

.cta-strip {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.cta-strip p {
  margin: 0;
  color: var(--muted);
}

.domain-link {
  color: var(--muted-strong);
  font-weight: 760;
}

.benefit-stack {
  display: grid;
  gap: 16px;
}

.benefit-card {
  min-height: 0;
}

.benefit-card h3 {
  margin-top: 0;
}

.funding-panel {
  margin-top: 42px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.funding-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--muted-strong);
  font-weight: 720;
}

.funding-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.funding-bar span {
  display: block;
  height: 100%;
  min-width: 4px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

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

.package-card {
  min-height: 420px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card-featured {
  border-color: rgba(239, 51, 64, 0.55);
  background:
    linear-gradient(180deg, rgba(239, 51, 64, 0.16), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.package-card h3 {
  margin: 0;
}

.package-card p {
  margin: 12px 0 0;
  color: var(--gold);
  font-weight: 760;
}

.package-card ul {
  margin: 28px 0;
  padding-left: 19px;
}

.package-card li + li {
  margin-top: 10px;
}

.package-card a {
  color: var(--text);
  font-weight: 760;
}

.compact-section {
  padding-top: 96px;
}

.bento-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bento-item {
  min-height: 128px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  font-weight: 700;
}

.bento-wide {
  grid-column: span 2;
  background: rgba(239, 51, 64, 0.1);
}

.partner-section {
  text-align: left;
}

.partner-grid {
  grid-template-columns: repeat(5, 1fr);
}

.logo-slot {
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.logo-slot span {
  display: block;
  font-weight: 780;
}

.logo-slot small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.timeline {
  margin-top: 52px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item time {
  color: var(--gold);
  font-weight: 780;
}

.timeline-item p {
  margin: 0;
}

.about-section .image-panel img {
  aspect-ratio: 5 / 4;
}

.fact-list {
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.fact-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.fact-list dd {
  margin: 5px 0 0;
  font-weight: 760;
}

.media-grid {
  grid-template-columns: 1fr 0.8fr;
  align-items: stretch;
}

.pdf-preview {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 51, 64, 0.18), rgba(216, 177, 94, 0.1)),
    var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pdf-preview span {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-weight: 850;
}

.pdf-preview strong {
  display: block;
  max-width: 440px;
  margin-top: 86px;
  font-size: 2rem;
  line-height: 1.1;
}

.pdf-preview small {
  margin-top: 12px;
  color: var(--muted);
}

.media-actions {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
}

.direct-contact {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  color: var(--muted-strong);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-form label,
.contact-form fieldset {
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--muted-strong);
  font-weight: 720;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form fieldset,
.full-field,
.contact-form .button,
.form-note,
.form-success {
  grid-column: 1 / -1;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.interest-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 650;
}

.interest-grid input {
  width: auto;
  margin: 0;
  accent-color: var(--red-bright);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-success {
  margin: 0;
  color: var(--gold);
  font-weight: 760;
}

.legal-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 96px;
}

.legal-card {
  padding: 34px;
}

.legal-card h2 {
  margin: 0 0 28px;
  font-size: 2rem;
  line-height: 1.15;
}

.legal-card h3 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--muted-strong);
}

.legal-card h3:first-of-type {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.legal-card a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 4px;
}

.legal-preview {
  max-width: 920px;
  color: var(--muted-strong);
}

.legal-accordion details {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.legal-accordion summary {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 780;
  cursor: pointer;
}

.legal-accordion summary::marker {
  color: var(--gold);
}

.legal-accordion summary:hover {
  color: var(--gold);
}

.legal-full-text {
  margin-top: 18px;
  padding-top: 4px;
}

.footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer a {
  color: var(--muted-strong);
}

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

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

@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: 1180px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-block;
  }

  .hero h1 {
    font-size: 4.7rem;
  }

  .stats-bar,
  .three-grid,
  .record-grid,
  .proof-grid,
  .package-grid,
  .partner-grid,
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 920px) {
  .split-section,
  .contact-section,
  .media-grid,
  .legal-section {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 96px 0;
  }

  .section-intro h2 {
    font-size: 2.8rem;
  }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .contact-section {
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .mobile-menu,
  .section,
  .hero-content,
  .stats-bar,
  .footer {
    width: min(100% - 28px, 1200px);
  }

  .site-header .button-small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-subline {
    font-size: 1rem;
  }

  .section-intro h2 {
    font-size: 2.25rem;
  }

  .three-grid,
  .record-grid,
  .proof-grid,
  .package-grid,
  .partner-grid,
  .bento-grid,
  .fact-list,
  .contact-form,
  .interest-grid {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-column: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .challenge-stat,
  .funding-topline,
  .footer {
    flex-direction: column;
  }

  .footer div {
    justify-content: flex-start;
  }

  .pdf-preview strong {
    font-size: 1.55rem;
  }
}

@media (max-width: 460px) {
  .language-toggle button {
    width: 34px;
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .hero-actions,
  .media-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 96px;
  }

  .quote-panel {
    padding: 24px;
  }

  .quote-panel blockquote {
    font-size: 1.45rem;
  }
}
