:root {
  --bg: #0b0f14;
  --bg-soft: rgba(15, 21, 30, 0.88);
  --panel: rgba(15, 22, 32, 0.74);
  --panel-strong: rgba(15, 22, 32, 0.94);
  --line: rgba(243, 245, 247, 0.08);
  --line-strong: rgba(125, 215, 229, 0.24);
  --text: #f3f5f7;
  --muted: #8c95a3;
  --accent: #7dd7e5;
  --accent-soft: rgba(125, 215, 229, 0.14);
  --danger: #ff8383;
  --success: #8fe1b5;
  --radius: 26px;
  --radius-sm: 18px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --shell: min(1160px, calc(100vw - 32px));
  --font-sans: "Onest", "Manrope", "Segoe UI", sans-serif;
  --page-scroll: 0;
  --scene-scale: 1.06;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  isolation: isolate;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid rgba(125, 215, 229, 0.9);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.page-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-scene-gradient,
.page-scene-mesh,
.page-scene-canvas,
.page-scene-vignette {
  position: absolute;
  inset: -8%;
}

.page-scene-gradient {
  background:
    radial-gradient(circle at 14% 16%, rgba(92, 126, 168, 0.16), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(98, 132, 176, 0.14), transparent 32%),
    radial-gradient(circle at 68% 78%, rgba(64, 92, 132, 0.1), transparent 30%);
  opacity: 0.2;
  transform:
    translate3d(
      0,
      calc(var(--page-scroll) * -24px),
      0
    )
    scale(var(--scene-scale));
  transition: transform 420ms ease-out, opacity 420ms ease-out;
}

.page-scene-mesh {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.13) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 26% 74%, rgba(255, 255, 255, 0.08) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 44% 32%, rgba(255, 255, 255, 0.07) 0 0.75px, transparent 1.4px),
    radial-gradient(circle at 62% 14%, rgba(255, 255, 255, 0.1) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.08) 0 0.75px, transparent 1.4px),
    radial-gradient(circle at 90% 66%, rgba(255, 255, 255, 0.1) 0 0.85px, transparent 1.5px),
    radial-gradient(circle at 72% 84%, rgba(255, 255, 255, 0.07) 0 0.75px, transparent 1.4px);
  opacity: 0.036;
  transform:
    translate3d(
      calc(var(--page-scroll) * 8px),
      calc(var(--page-scroll) * -14px),
      0
    )
    scale(1.04);
  transition: transform 420ms ease-out, opacity 420ms ease-out;
}

.page-scene-canvas {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  mix-blend-mode: normal;
  filter: saturate(1.12) brightness(1.16);
}

.page-scene-vignette {
  background:
    linear-gradient(180deg, rgba(6, 9, 13, 0.28), rgba(6, 9, 13, 0.08) 18%, rgba(6, 9, 13, 0.14) 72%, rgba(6, 9, 13, 0.28) 100%),
    radial-gradient(circle at center, transparent 46%, rgba(4, 7, 11, 0.56) 100%);
}

.cursor-orb,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.cursor-orb {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(125, 215, 229, 0.42), rgba(125, 215, 229, 0.08) 58%, rgba(125, 215, 229, 0) 72%);
}

.cursor-ring {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  border: 1px solid rgba(125, 215, 229, 0.24);
  background: radial-gradient(circle, rgba(125, 215, 229, 0.08), transparent 68%);
}

.site-header,
main,
.site-footer,
.cookie-notice {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding 180ms ease, backdrop-filter 180ms ease, background-color 180ms ease;
}

.site-header[data-shrink="true"] {
  padding: 8px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 19, 0.45);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.site-header-static {
  position: relative;
}

.site-header-static::before {
  background: rgba(10, 14, 19, 0.7);
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(13, 18, 25, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.site-nav[data-open="true"] {
  display: flex;
}

.site-nav-static {
  display: flex;
  position: static;
  width: auto;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  flex-direction: row;
  align-items: center;
}

.nav-toggle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
  cursor: pointer;
}

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

.button-primary {
  background: linear-gradient(135deg, rgba(125, 215, 229, 0.92), rgba(141, 232, 245, 0.72));
  color: #081016;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(125, 215, 229, 0.2);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button-nav {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: clip;
  padding: 32px 0 24px;
  background: transparent;
}

.hero-shell {
  position: relative;
  display: grid;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 36px;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

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

.hero-copy h1,
.privacy-main h1,
.legal-main h1 {
  margin: 0 0 18px;
  font-size: clamp(2.9rem, 8vw, 5.9rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 10.6ch;
  padding-inline-end: 0.08em;
  line-height: 1;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

.hero-lead,
.privacy-lead {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.hero-actions,
.cta-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-panel {
  align-self: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.82;
}

.hero-scene canvas,
.hero-grid,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 82%);
  opacity: 0.12;
}

.hero-glow {
  filter: blur(120px);
  opacity: 0.18;
}

.hero-glow-one {
  background: radial-gradient(circle, rgba(125, 215, 229, 0.36), transparent 64%);
  transform: translate(-12%, -8%);
}

.hero-glow-two {
  background: radial-gradient(circle, rgba(98, 126, 180, 0.28), transparent 68%);
  transform: translate(35%, 24%);
}

.panel-card,
.feature-card,
.proof-card,
.timeline-card,
.tech-card,
.privacy-card,
.list-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: var(--shadow);
}

.panel-card,
.privacy-card {
  padding: 22px;
}

.panel-card-large {
  padding: 24px;
}

.panel-label,
.panel-title,
.panel-text,
.section-head h2,
.section-text,
.feature-card h3,
.feature-card p,
.proof-card p,
.timeline-card h3,
.timeline-card p,
.tech-card h3,
.tech-card p,
.privacy-card h2,
.privacy-card p,
.footer-brand,
.footer-copy,
.cta-copy h2,
.cta-copy p {
  margin: 0;
}

.panel-title {
  margin-top: 10px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.panel-title-small {
  font-size: clamp(1.2rem, 1.8vw, 1.52rem);
}

.panel-text {
  margin-top: 10px;
  color: var(--muted);
}

.section {
  padding: 42px 0;
  background: transparent;
}

.section-alt {
  background: transparent;
}

.section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-head h2,
.cta-copy h2,
.privacy-card h2 {
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-text,
.cta-copy p,
.privacy-card p,
.footer-copy {
  margin-top: 12px;
  color: var(--muted);
}

.card-grid,
.tech-grid,
.timeline,
.faq-list,
.format-grid {
  display: grid;
  gap: 16px;
}

.feature-card,
.tech-card,
.timeline-card,
.proof-card,
.faq-item {
  padding: 22px;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.feature-card h3,
.tech-card h3,
.timeline-card h3 {
  font-size: 1.12rem;
}

.feature-card p,
.tech-card p,
.timeline-card p,
.proof-card p {
  margin-top: 10px;
  color: var(--muted);
}

.service-card p {
  margin-top: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(125, 215, 229, 0.16);
  background: rgba(125, 215, 229, 0.07);
  color: #d9e6ed;
  font-size: 0.8rem;
}

.proof-grid,
.split-layout,
.cta-grid {
  display: grid;
  gap: 18px;
}

.proof-stack {
  display: grid;
  gap: 14px;
}

.proof-card {
  position: relative;
  padding-left: 28px;
}

.proof-line {
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.list-panel {
  padding: 18px;
}

.list-row {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.list-row:last-child {
  border-bottom: 0;
}

.list-mark {
  color: var(--accent);
}

.timeline-index {
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.format-chip {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 14px;
  color: var(--muted);
}

.section-cta {
  padding-bottom: 72px;
  background: transparent;
}

.cta-grid {
  align-items: start;
}

.section-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 24px;
}

.site-footer {
  padding: 20px 0 42px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-shell-home {
  gap: 24px;
}

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

.footer-brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.cta-links a {
  color: #d8e2ea;
}

.legal-compact {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(12, 18, 25, 0.76);
}

.legal-compact-title,
.legal-compact-copy {
  margin: 0;
}

.legal-compact-title {
  font-size: 1.08rem;
  font-weight: 700;
}

.legal-compact-copy {
  margin-top: 10px;
  max-width: 72ch;
  color: var(--muted);
}

.legal-compact-links,
.legal-nav,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-compact-links {
  margin-top: 18px;
}

.button-legal {
  min-height: 44px;
}

.privacy-main,
.legal-main {
  padding: 32px 0 72px;
  background: transparent;
}

.privacy-shell,
.legal-shell {
  display: grid;
  gap: 20px;
}

.privacy-card {
  display: grid;
  gap: 20px;
}

.legal-lead {
  max-width: 70ch;
}

.legal-nav {
  margin-top: 8px;
}

.legal-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #d6dce2;
}

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

.legal-section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: var(--shadow);
}

.legal-section h2,
.legal-subheading {
  margin: 0;
}

.legal-section h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.78rem);
  line-height: 1.1;
}

.legal-richtext {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.legal-richtext p {
  margin: 0;
  color: var(--muted);
}

.legal-richtext b,
.legal-richtext strong {
  color: var(--text);
}

.legal-richtext a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-subheading {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--text);
}

.cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 92;
  max-width: 620px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(11, 16, 23, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-copy {
  margin: 0;
  color: #d7dee5;
  font-size: 0.96rem;
}

.cookie-actions {
  margin-top: 14px;
}

.button-cookie {
  min-height: 42px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    gap: 18px;
  }

  .button-nav {
    width: auto;
  }

  .hero-shell,
  .proof-grid,
  .split-layout,
  .cta-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
    gap: 32px;
  }

  .panel-card {
    padding: 26px;
  }

  .card-grid,
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-shell {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-shell-home {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .cookie-notice {
    right: auto;
  }
}

@media (min-width: 1120px) {
  .hero-section {
    padding-top: 46px;
  }

  .card-grid,
  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .timeline-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (pointer: coarse) {
  .cursor-orb,
  .cursor-ring {
    display: none;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .page-scene,
  .cursor-orb,
  .cursor-ring {
    display: none;
  }
}
