:root {
  --bg-0: #050716;
  --bg-1: #090d2d;
  --bg-2: #12195a;
  --bg-3: #1a246d;
  --surface: rgba(19, 27, 92, 0.48);
  --surface-strong: rgba(23, 32, 109, 0.78);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --stroke: rgba(144, 176, 255, 0.18);
  --stroke-strong: rgba(124, 214, 255, 0.32);
  --text: #f4f7ff;
  --muted: #b4bddf;
  --muted-strong: #dbe3ff;
  --cyan: #59ceff;
  --cyan-strong: #79ddff;
  --indigo: #7280ff;
  --indigo-strong: #8f9bff;
  --yellow: #f4c84e;
  --green: #6fe1b6;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --display-font: "Nunito Sans", "Avenir Next Rounded", "SF Pro Rounded", "Segoe UI Rounded", sans-serif;
  --body-font: "Nunito Sans", "Avenir Next Rounded", "SF Pro Rounded", "Segoe UI Rounded", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(94, 205, 255, 0.17), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(128, 142, 255, 0.26), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #11194d 0%, #0a1034 24%, #060a21 56%, #040611 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.5px),
    radial-gradient(circle at 23% 65%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 40%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1.5px),
    radial-gradient(circle at 60% 72%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1.5px),
    radial-gradient(circle at 34% 84%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1.5px);
  opacity: 0.55;
}

body::after {
  background:
    linear-gradient(125deg, transparent 20%, rgba(255, 255, 255, 0.025) 50%, transparent 78%);
  transform: translateX(-22%);
}

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

a {
  color: inherit;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

li + li {
  margin-top: 0.5rem;
}

.page-glow {
  position: fixed;
  inset: auto auto -20vh -10vw;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(89, 206, 255, 0.14), transparent 72%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: linear-gradient(180deg, rgba(7, 10, 29, 0.78), rgba(7, 10, 29, 0.42));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.topnav a,
.footer-links a,
.legal-links a,
.legal-home {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.topnav a:hover,
.footer-links a:hover,
.legal-links a:hover,
.legal-home:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--stroke-strong);
  background: linear-gradient(135deg, rgba(79, 169, 255, 0.22), rgba(93, 113, 255, 0.22));
  box-shadow: 0 14px 38px rgba(16, 22, 70, 0.35);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  border-color: rgba(121, 221, 255, 0.56);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.95rem;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero {
  padding: 56px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 32px;
}

.hero-copy,
.hero-visual,
.gallery-card,
.feature-card,
.step-card,
.premium-card,
.faq-card,
.legal-panel,
.legal-card,
.stat-card {
  animation: fade-up 720ms ease both;
}

.hero-copy {
  animation-delay: 80ms;
}

.hero-visual {
  animation-delay: 160ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.premium-card h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(1.425rem, 3vw, 2.75rem);
  max-width: none;
  text-wrap: wrap;
}

.accent-underline {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.accent-underline::after {
  content: "";
  position: absolute;
  left: 0.06em;
  right: 0.06em;
  bottom: 0.05em;
  height: 0.14em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 200, 78, 0.9), rgba(244, 200, 78, 0.35));
  z-index: -1;
}

.hero-text,
.section-heading p,
.section-copy p,
.premium-card p,
.legal-lead,
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-text {
  margin-top: 22px;
  max-width: 58ch;
  font-size: 1.12rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.store-link {
  display: inline-flex;
  align-items: center;
}

.store-link img {
  width: 180px;
  height: auto;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.hero-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-card strong,
.gallery-card strong,
.premium-point strong,
.step-card h3,
.faq-card h3 {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.stat-card span,
.gallery-card span,
.premium-point span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.hero-visual {
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-stage {
  position: relative;
  width: min(100%, 560px);
  min-height: 760px;
}

.orbit-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 140px rgba(63, 113, 255, 0.12);
}

.orbit-ring-large {
  inset: 54px 24px 90px;
}

.orbit-ring-small {
  inset: 126px 94px 170px;
  border-color: rgba(89, 206, 255, 0.14);
}

.hero-shot {
  position: absolute;
  margin: 0;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-shot img {
  width: 100%;
  height: auto;
}

.hero-shot-main {
  width: min(74%, 360px);
  left: 16%;
  top: 38px;
  z-index: 2;
}

.hero-shot-secondary {
  width: min(48%, 230px);
  right: 2%;
  bottom: 98px;
  z-index: 1;
  opacity: 0.94;
}

.floating-card {
  position: absolute;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(104, 211, 255, 0.18), rgba(109, 125, 255, 0.16)),
    rgba(13, 18, 58, 0.84);
  border: 1px solid rgba(122, 214, 255, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  z-index: 3;
}

.floating-card-top {
  left: 2%;
  top: 166px;
}

.floating-card-bottom {
  left: 8%;
  bottom: 74px;
}

.floating-label,
.feature-kicker,
.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-label {
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
}

.floating-card strong {
  display: block;
  font-family: var(--display-font);
  font-size: 1.06rem;
  letter-spacing: 0;
}

.floating-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.trust-strip {
  padding: 0 0 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.section {
  padding: 54px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.68fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.section-copy h2,
.premium-card h2,
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

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

.gallery-card,
.feature-card,
.step-card,
.premium-card,
.faq-card,
.legal-panel,
.legal-card {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.03)),
    rgba(7, 12, 37, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.gallery-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.gallery-card img {
  width: min(100%, 260px);
  height: auto;
  aspect-ratio: 1284 / 2778;
  object-fit: contain;
  margin-inline: auto;
  border-radius: 28px;
}

.gallery-card figcaption {
  padding: 16px 2px 6px;
  width: 100%;
}

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

.feature-card {
  padding: 24px;
}

.feature-kicker {
  background: rgba(89, 206, 255, 0.11);
  color: var(--cyan-strong);
  border: 1px solid rgba(89, 206, 255, 0.16);
}

.feature-card h3,
.step-card h3,
.faq-card h3,
.legal-card h2 {
  margin: 16px 0 12px;
  font-family: var(--display-font);
  font-size: 1.32rem;
  letter-spacing: 0;
}

.feature-card ul {
  color: var(--muted);
  line-height: 1.6;
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 22px;
}

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

.step-card {
  padding: 24px;
}

.step-index {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-card p {
  color: var(--muted);
  line-height: 1.65;
}

.premium-card {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.premium-points {
  display: grid;
  gap: 14px;
}

.premium-point {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-section {
  padding-bottom: 72px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  padding: 24px;
}

.faq-card p {
  color: var(--muted);
  line-height: 1.65;
}

.faq-card a,
.legal-card a,
.legal-panel a {
  color: var(--text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer,
.legal-footer {
  padding: 26px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(4, 7, 18, 0.28);
}

.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-copy {
  max-width: 54ch;
  color: var(--muted);
  line-height: 1.65;
}

.footer-links,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.legal-page .topbar {
  position: relative;
}

.legal-main {
  padding: 42px 0 72px;
}

.legal-shell {
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-panel {
  padding: 28px;
  margin-bottom: 18px;
}

.legal-hero {
  display: grid;
  gap: 16px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-card {
  padding: 26px 28px;
  margin-top: 18px;
}

.legal-card h2 {
  margin-top: 0;
}

.legal-card ul,
.legal-card ol {
  color: var(--muted);
  line-height: 1.65;
}

.legal-card li strong,
.premium-point strong,
.gallery-card strong,
.faq-card h3 {
  color: var(--text);
}

.legal-note {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(89, 206, 255, 0.08);
  border: 1px solid rgba(89, 206, 255, 0.16);
  color: var(--muted-strong);
}

.legal-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.legal-home {
  font-weight: 700;
}

.legal-company-card {
  width: 100%;
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(9, 13, 45, 0.08);
  color: #4f556f;
}

.legal-company-card p {
  margin-top: 12px;
  font-size: 1.03rem;
  line-height: 1.5;
}

.legal-company-card p:first-child {
  margin-top: 0;
}

.legal-company-card strong {
  color: #3a3f59;
}

.legal-company-card a {
  color: #4c2fe3;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(calc(100% - 18px), 980px);
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(9, 13, 45, 0.08);
  box-shadow: 0 18px 46px rgba(8, 11, 34, 0.28);
  z-index: 40;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-banner-copy {
  color: #4f556f;
  font-size: 1rem;
  line-height: 1.45;
}

.cookie-banner-copy a {
  color: #4c2fe3;
  font-weight: 700;
}

.cookie-banner button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #8a4df4, #5f40d9);
  color: #fff;
  font-family: var(--body-font);
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan-strong);
  outline-offset: 4px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .section-heading,
  .schedule-grid,
  .premium-card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 880px) {
  .topbar-inner {
    min-height: 70px;
  }

  .topnav {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .stats-grid,
  .gallery-grid,
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-shot-main {
    width: min(72%, 330px);
    left: 12%;
  }

  .hero-shot-secondary {
    width: min(44%, 210px);
    right: 0;
  }

  .floating-card-top {
    left: 0;
    top: 148px;
  }

  .floating-card-bottom {
    left: 4%;
    bottom: 62px;
  }

  .footer-grid,
  .legal-footer-inner {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .shell,
  .legal-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .button,
  .button-small {
    width: 100%;
  }

  .topbar-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
    font-size: 0.96rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .topbar-cta {
    display: inline-flex;
    width: auto;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
    flex: 0 0 auto;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .store-link {
    width: 100%;
    justify-content: center;
  }

  .store-link img {
    width: 188px;
  }

  .gallery-card img {
    width: min(100%, 300px);
  }

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

  .orbit-stage {
    min-height: 650px;
  }

  .hero-shot-main {
    width: min(76%, 300px);
    left: 10%;
    top: 28px;
  }

  .hero-shot-secondary {
    width: min(48%, 180px);
    right: 4%;
    bottom: 118px;
  }

  .orbit-ring-large {
    inset: 46px 8px 110px;
  }

  .orbit-ring-small {
    inset: 112px 52px 180px;
  }

  .floating-card {
    max-width: 210px;
    padding: 14px 15px;
  }

  .floating-card-top {
    top: 112px;
  }

  .floating-card-bottom {
    left: 2%;
    bottom: 58px;
  }

  .gallery-card,
  .feature-card,
  .step-card,
  .premium-card,
  .faq-card,
  .legal-panel,
  .legal-card {
    border-radius: 24px;
  }

  .feature-card,
  .step-card,
  .faq-card,
  .legal-panel,
  .legal-card {
    padding: 20px;
  }

  .hero-text,
  .section-heading p,
  .section-copy p,
  .premium-card p,
  .legal-lead,
  .legal-card p,
  .legal-card li {
    font-size: 1rem;
  }

  .cookie-banner {
    bottom: 10px;
    width: min(calc(100% - 12px), 980px);
    padding: 12px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner button {
    width: 100%;
  }
}

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