:root {
  --page-bg: #050812;
  --page-bg-soft: #0a1020;
  --page-panel: rgba(13, 20, 34, 0.82);
  --page-panel-strong: rgba(16, 25, 43, 0.94);
  --page-line: rgba(181, 202, 255, 0.14);
  --page-line-strong: rgba(181, 202, 255, 0.24);
  --page-text: #f7f9ff;
  --page-soft: #dfe8ff;
  --page-muted: #99a8c5;
  --page-cyan: #7edbff;
  --page-blue: #78a8ff;
  --page-mint: #8ce7bd;
  --page-gold: #ffd173;
  --page-coral: #ff8f9f;
  --page-violet: #b8a3ff;
  --page-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  --page-max: 1220px;
  --page-radius: 28px;
  --page-radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--page-text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 8%, rgba(126, 219, 255, 0.18), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(255, 209, 115, 0.14), transparent 26%),
    radial-gradient(circle at 72% 78%, rgba(140, 231, 189, 0.12), transparent 28%),
    linear-gradient(180deg, #050812 0%, #08101d 46%, #050812 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.15;
  pointer-events: none;
}

body::before {
  top: -12rem;
  left: -11rem;
  background: rgba(120, 168, 255, 0.82);
}

body::after {
  right: -12rem;
  bottom: -13rem;
  background: rgba(255, 143, 159, 0.72);
}

::selection {
  background: rgba(126, 219, 255, 0.28);
  color: var(--page-text);
}

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

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

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

a:focus-visible,
.btn:focus-visible,
.site-nav-toggle:focus-visible {
  outline: 3px solid rgba(126, 219, 255, 0.42);
  outline-offset: 3px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.94em;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--page-max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(44px, 6vw, 78px) 0;
  content-visibility: auto;
  contain-intrinsic-size: 620px;
}

.section-tight {
  padding: clamp(34px, 5vw, 58px) 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-copy,
.hero-lede,
.hero-subhead,
.feature-card p,
.proof-card p,
.detail-card p,
.media-caption,
.footer-cta p,
.next-strip p,
.page-summary p,
.feature-page-hero p,
.quote-note {
  color: var(--page-muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
}

h3 {
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
}

h4 {
  font-size: 1rem;
}

p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

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

.btn-primary {
  color: #06101d;
  background: linear-gradient(135deg, #8bddff, #78a8ff 55%, #8ce7bd);
  box-shadow: 0 16px 40px rgba(126, 219, 255, 0.26);
}

.btn-secondary {
  color: var(--page-soft);
  border-color: rgba(181, 202, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.btn-secondary:hover {
  border-color: rgba(126, 219, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-premium,
.site-nav-actions .btn.nav-premium-cta {
  color: #1b1200;
  border-color: rgba(255, 209, 115, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 246, 184, 0.98), rgba(255, 209, 115, 0.98) 42%, rgba(255, 143, 159, 0.98)),
    #ffd173;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 18px 44px rgba(255, 188, 86, 0.26);
}

.btn-premium::after,
.site-nav-actions .btn.nav-premium-cta::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
}

.link-quiet {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--page-muted);
  font-weight: 800;
  transition: color 0.18s ease;
}

.link-quiet:hover {
  color: var(--page-text);
}

.eyebrow,
.section-kicker,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--page-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before,
.mini-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--page-gold), var(--page-coral));
  box-shadow: 0 0 0 4px rgba(255, 143, 159, 0.09);
}

.hero-wrap {
  position: relative;
  padding: clamp(44px, 7vw, 84px) 0 clamp(34px, 5vw, 58px);
  overflow: hidden;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  right: max(24px, 6vw);
  top: 18%;
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  border-radius: 999px;
  border: 1px solid rgba(126, 219, 255, 0.12);
  background: radial-gradient(circle, rgba(126, 219, 255, 0.08), transparent 68%);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(26px, 4.6vw, 52px);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-lede {
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.1vw, 1.22rem);
}

.hero-subhead {
  max-width: 58ch;
}

.hero-actions,
.hero-links,
.feature-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.proof-card,
.detail-card,
.feature-card,
.media-frame,
.page-summary,
.next-strip,
.footer-cta {
  border: 1px solid var(--page-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--page-panel);
  box-shadow: var(--page-shadow);
}

.proof-card {
  min-height: 124px;
  padding: 16px;
  border-radius: 20px;
}

.proof-card strong,
.detail-card strong,
.feature-card strong {
  display: block;
  color: var(--page-soft);
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

.proof-card p {
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.52;
}

.hero-stage {
  position: relative;
  min-width: 0;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 6% 4% auto auto;
  width: 56%;
  height: 48%;
  border-radius: 999px;
  background: rgba(126, 219, 255, 0.16);
  filter: blur(60px);
  pointer-events: none;
}

.stage-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: 16px;
  align-items: end;
}

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

.media-frame {
  align-self: start;
  overflow: hidden;
  border-radius: var(--page-radius);
}

.media-frame.compact {
  border-radius: 22px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-shell {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.media-shell.tall {
  aspect-ratio: 4 / 5.45;
}

.media-shell.square {
  aspect-ratio: 1 / 1;
}

.media-shell.wide {
  aspect-ratio: 16 / 7.2;
}

.media-shell.auto,
.feature-page .media-shell {
  aspect-ratio: auto;
}

.media-shell.auto img,
.feature-page .media-shell img {
  height: auto;
  max-height: min(62vh, 520px);
  object-fit: contain;
  background: rgba(0, 0, 0, 0.18);
}

.feature-page .media-shell.tall img {
  max-height: min(68vh, 560px);
}

.media-caption {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
  font-size: 0.93rem;
}

.media-caption strong {
  color: var(--page-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.feature-card {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 0;
  padding: 20px;
  overflow: hidden;
  border-radius: var(--page-radius);
}

.feature-accent-rails {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 0;
  display: grid;
  gap: 6px;
  justify-items: end;
  opacity: 0.72;
  pointer-events: none;
}

.feature-accent-rails span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent));
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent) 28%, transparent);
}

.feature-accent-rails span:nth-child(1) {
  width: 44px;
}

.feature-accent-rails span:nth-child(2) {
  width: 34px;
}

.feature-accent-rails span:nth-child(3) {
  width: 24px;
}

.feature-card h3 {
  max-width: 13ch;
  position: relative;
  z-index: 1;
}

.feature-card > div {
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.97rem;
  position: relative;
  z-index: 1;
}

.feature-card .btn {
  justify-self: start;
  position: relative;
  z-index: 1;
}

.feature-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--page-soft);
  font-size: 0.92rem;
  line-height: 1.42;
}

.feature-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 0.58em;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}

.feature-card.safety {
  --accent: var(--page-cyan);
}

.feature-card.utilities {
  --accent: var(--page-mint);
}

.feature-card.community {
  --accent: var(--page-coral);
}

.feature-card.premium {
  --accent: var(--page-gold);
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.8;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.quick-strip article {
  min-height: 120px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.04);
}

.quick-strip strong {
  display: block;
  color: var(--page-soft);
}

.quick-strip p {
  margin-top: 8px;
  color: var(--page-muted);
  font-size: 0.94rem;
}

.premium-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 24px;
  border: 1px solid rgba(255, 209, 115, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 209, 115, 0.12), rgba(255, 143, 159, 0.06)),
    var(--page-panel-strong);
  box-shadow: var(--page-shadow);
}

.premium-mini h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}

.premium-mini p {
  margin-top: 12px;
  max-width: 68ch;
  color: var(--page-muted);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 24px;
}

.footer-cta h2,
.next-strip h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
}

.next-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 2.6vw, 26px);
  border-radius: 24px;
}

.feature-page .hero-wrap {
  padding-bottom: clamp(28px, 4vw, 46px);
}

.feature-page .section {
  padding: clamp(30px, 4vw, 48px) 0;
}

.feature-page .section-tight {
  padding: clamp(20px, 3vw, 36px) 0;
}

.feature-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4.6vw, 52px);
  align-items: center;
}

.feature-page-hero h1 {
  max-width: 12.8ch;
}

.page-summary {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
}

.page-summary strong {
  color: var(--page-soft);
  font-family: "Sora", sans-serif;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.detail-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
}

.detail-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--page-muted);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

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

.media-grid.mixed {
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.95fr));
}

.flow-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.04);
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #06101d;
  background: linear-gradient(135deg, var(--page-cyan), var(--page-mint));
  font-weight: 900;
}

.flow-step strong {
  display: block;
  color: var(--page-soft);
}

.flow-step p {
  margin-top: 8px;
  color: var(--page-muted);
}

.quote-note {
  padding: 18px 20px;
  border-left: 3px solid var(--page-gold);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 209, 115, 0.08);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.52s ease,
    transform 0.52s ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.section-safety::before,
.section-utilities::before,
.section-premium::before {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}

.section-safety,
.section-utilities,
.section-premium {
  position: relative;
  overflow: hidden;
}

.section-safety::before {
  right: -8rem;
  top: 8%;
  background: var(--page-cyan);
}

.section-utilities::before {
  left: -9rem;
  top: 18%;
  background: var(--page-mint);
}

.section-premium::before {
  right: -9rem;
  top: 16%;
  background: var(--page-gold);
}

.section-safety .safety-proof {
  min-height: 0;
  align-self: start;
}

.section-safety .shot-media {
  height: auto;
  min-height: 0;
}

.section-safety .shot-media picture {
  height: auto;
}

.section-safety .shot-media img {
  height: auto;
  max-height: min(58vh, 420px);
}

.section-safety .safety-proof .shot-media {
  display: none;
}

.section-safety .safety-proof figcaption {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1180px) {
  .hero,
  .feature-page-hero {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 920px) {
  .hero-proof-grid,
  .quick-strip,
  .flow-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-mini,
  .footer-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    background: linear-gradient(180deg, #050812 0%, #08101d 50%, #050812 100%);
  }

  body::before,
  body::after,
  .section-safety::before,
  .section-utilities::before,
  .section-premium::before {
    display: none;
  }

  .container {
    width: calc(100vw - 32px);
    max-width: var(--page-max);
  }

  .site-shell,
  .hero-wrap,
  main,
  .section {
    max-width: 100%;
    overflow-x: clip;
  }

  .hero,
  .feature-page-hero,
  .hero > *,
  .feature-page-hero > *,
  .hero-copy,
  .hero-stage,
  .stage-grid,
  .stage-stack,
  .section-head,
  .premium-mini,
  .footer-cta,
  .feature-card,
  .detail-card {
    min-width: 0;
    max-width: 100%;
  }

  .hero,
  .feature-page-hero,
  .hero-copy,
  .hero-actions,
  .hero-links,
  .hero-stage,
  .hero-proof-grid {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .section {
    padding: 54px 0;
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  h1 {
    font-size: 2.12rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-wrap {
    padding: 48px 0 36px;
  }

  .hero-wrap::before {
    display: none;
  }

  .hero-lede,
  .hero-subhead {
    width: 100%;
    max-width: calc(100vw - 48px);
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-actions .btn,
  .feature-actions .btn,
  .footer-actions .btn {
    width: 100%;
  }

  .hero-links,
  .feature-actions,
  .footer-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .stage-grid,
  .feature-grid,
  .detail-grid,
  .media-grid,
  .media-grid.two,
  .media-grid.mixed,
  .quick-strip,
  .flow-band {
    grid-template-columns: 1fr;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .media-frame,
  .feature-card,
  .premium-mini,
  .next-strip,
  .footer-cta {
    border-radius: 22px;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100vw - 24px);
  }

  .hero,
  .feature-page-hero,
  .hero-copy,
  .hero-actions,
  .hero-links,
  .hero-stage,
  .hero-proof-grid {
    max-width: calc(100vw - 24px);
  }

  .hero-lede,
  .hero-subhead {
    max-width: calc(100vw - 48px);
  }

  .btn {
    min-height: 46px;
    padding-inline: 16px;
  }

  .feature-card,
  .detail-card,
  .proof-card {
    padding: 16px;
  }

  .feature-accent-rails {
    top: 16px;
    right: 16px;
    opacity: 0.42;
    transform: scale(0.84);
    transform-origin: top right;
  }
}

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

@media (prefers-reduced-data: reduce) {
  body {
    background: linear-gradient(180deg, #050812 0%, #08101d 52%, #050812 100%);
  }

  body::before,
  body::after,
  .section-safety::before,
  .section-utilities::before,
  .section-premium::before {
    display: none;
  }
}
