:root {
  color-scheme: dark;
  --blue: #0B4F9E;
  --blue-dark: #083A76;
  --blue-light: #3D7FC4;
  --yellow: #FFCC00;
  --yellow-deep: #B38A00;
  --ink: #06101f;
  --surface: rgba(255, 255, 255, 0.05);
  --border: rgba(61, 127, 196, 0.18);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.42);
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #06101f;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(11, 79, 158, 0.45); }

.font-display { font-family: "Space Grotesk", Inter, system-ui, sans-serif; }

.aurora {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.aurora::before, .aurora::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.5; will-change: transform;
}
.aurora::before {
  width: 60vmax; height: 60vmax; top: -22vmax; left: -12vmax;
  background: radial-gradient(circle at 30% 30%, #0B4F9E, transparent 60%);
  animation: drift1 22s ease-in-out infinite alternate;
}
.aurora::after {
  width: 50vmax; height: 50vmax; bottom: -24vmax; right: -14vmax;
  background: radial-gradient(circle at 70% 70%, #FFCC00, transparent 65%);
  opacity: 0.22;
  animation: drift2 26s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(12vmax,8vmax) scale(1.12); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1.08); } to { transform: translate(-10vmax,-6vmax) scale(0.95); } }

.grid-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .3;
  background-image:
    linear-gradient(rgba(61,127,196,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,127,196,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}

.page { position: relative; z-index: 10; }
.shell { max-width: 72rem; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
@media (min-width: 640px) { .shell { padding-left: 2rem; padding-right: 2rem; } }

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 1.5rem; padding-bottom: 1.5rem;
}
.brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: inherit;
}
.brand:hover { opacity: 0.92; }
.brand img {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,204,0,.28), 0 0 28px -8px rgba(11,79,158,.55);
}
.brand-name { font-weight: 600; letter-spacing: -0.02em; font-size: 1.05rem; }
.brand-name span { color: var(--yellow); }

.lang-switch {
  display: flex; align-items: center; gap: 0.15rem;
  padding: 0.2rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  font-size: 0.875rem;
}
.lang-btn {
  appearance: none; border: 0; background: transparent;
  color: var(--muted); cursor: pointer;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.lang-btn[aria-pressed="true"], .lang-btn.is-active {
  background: rgba(255,204,0,.16);
  color: #fff;
}

.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(255,204,0,.32);
  background: rgba(11,79,158,.22);
  box-shadow: 0 0 0 1px rgba(11,79,158,.2), 0 0 36px -10px rgba(255,204,0,.35);
}
.glow-text { text-shadow: 0 0 28px rgba(11,79,158,.45); }

.hero { text-align: center; padding-top: 2.5rem; padding-bottom: 3.5rem; }
@media (min-width: 640px) { .hero { padding-top: 4.5rem; padding-bottom: 5rem; } }

.hero h1 {
  margin: 1.5rem auto 0;
  max-width: 18ch;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  letter-spacing: -0.03em;
}
.hero .lede {
  margin: 1.4rem auto 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.55;
}

.store-row {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
}
.store-badge {
  display: inline-flex; align-items: center; gap: 0.65rem;
  min-width: 10.5rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--faint);
  cursor: not-allowed;
  user-select: none;
  opacity: 0.72;
}
.store-badge strong {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 0.95rem;
  line-height: 1.1;
}
.store-badge small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.store-badge svg { width: 1.35rem; height: 1.35rem; flex-shrink: 0; }

a.store-badge.available {
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  border-color: rgba(61, 127, 196, 0.45);
  background: rgba(255, 255, 255, 0.07);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
a.store-badge.available strong { color: var(--text); }
a.store-badge.available small { color: var(--muted); }
a.store-badge.available:hover,
a.store-badge.available:focus-visible {
  transform: translateY(-2px);
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(11, 79, 158, 0.35);
}
a.store-badge.available:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  a.store-badge.available { transition: none; }
  a.store-badge.available:hover, a.store-badge.available:focus-visible { transform: none; }
}

.hero-visual {
  margin: 2.5rem auto 0;
  max-width: 18rem;
  position: relative;
}
@media (min-width: 640px) {
  .hero-visual { max-width: 20rem; }
}
.hero-visual .hero-shot {
  width: 100%;
  max-height: min(58vh, 32rem);
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.75), 0 0 0 1px rgba(11,79,158,.25);
  display: block;
  background: #0a1a33;
}
.hero-visual .float-logo {
  position: absolute;
  left: -0.75rem;
  bottom: -0.75rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.1rem;
  border: 2px solid rgba(255,255,255,.2);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.6);
  background: #0B4F9E;
  object-fit: cover;
  display: block;
}
@media (min-width: 640px) {
  .hero-visual .float-logo {
    width: 5.25rem;
    height: 5.25rem;
    left: -1rem;
    bottom: -1rem;
  }
}

.section { padding-bottom: 4.5rem; }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 2.5rem; }
.section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.section-head p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: 1fr 1fr 1fr; } }

.feature-card {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.35rem 1.25rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,204,0,.35);
  box-shadow: 0 18px 50px -24px rgba(11,79,158,.7);
}
.feature-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.8rem;
  display: grid; place-items: center;
  background: rgba(11,79,158,.35);
  border: 1px solid rgba(255,204,0,.2);
  color: var(--yellow);
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}
.feature-card h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.feature-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.feature-card .tag {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-light);
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.stat strong {
  display: block;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 1.55rem;
  color: var(--yellow);
}
.stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; }
  .split.reverse { grid-template-columns: 0.95fr 1.05fr; }
  .split.reverse .split-copy { order: 2; }
}
.split-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}
.split-copy p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.split-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}
.split-copy li { margin-bottom: 0.45rem; }
.trail-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.65rem;
}
.trail-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  display: block;
  background: #0a1a33;
}
.split-media img {
  width: 100%;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,.12);
  display: block;
  object-fit: cover;
  object-position: center top;
  max-height: 28rem;
  background: #0a1a33;
}

.privacy-band {
  border-radius: 1.5rem;
  border: 1px solid rgba(255,204,0,.22);
  background: linear-gradient(180deg, rgba(11,79,158,.22), transparent);
  padding: 1.75rem 1.35rem;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(11,79,158,.15), 0 0 40px -12px rgba(255,204,0,.25);
}
@media (min-width: 640px) { .privacy-band { padding: 2.5rem; } }
.privacy-band h2 {
  margin: 0.5rem 0 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.privacy-band p {
  margin: 0.85rem auto 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.55;
}
.privacy-points {
  margin: 1.5rem auto 0;
  max-width: 46rem;
  display: grid;
  gap: 0.75rem;
  text-align: left;
}
@media (min-width: 700px) { .privacy-points { grid-template-columns: 1fr 1fr; } }
.privacy-points li {
  list-style: none;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.privacy-points strong { color: #fff; }

.cta-band {
  border-radius: 1.5rem;
  border: 1px solid rgba(61,127,196,.28);
  background: linear-gradient(180deg, rgba(11,79,158,.18), transparent);
  padding: 2rem 1.35rem;
  text-align: center;
}
@media (min-width: 640px) { .cta-band { padding: 3rem 2rem; } }
.cta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}
.cta-band p {
  margin: 0.9rem auto 0;
  max-width: 34rem;
  color: var(--muted);
}
.cta-band a.mail {
  display: inline-flex;
  margin-top: 1.4rem;
  padding: 0.9rem 1.4rem;
  border-radius: 1rem;
  background: var(--yellow);
  color: #10203a;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 36px -12px rgba(255,204,0,.55);
}
.cta-band a.mail:hover { filter: brightness(1.05); }

.attr {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--faint);
  line-height: 1.5;
}
.attr a { color: var(--blue-light); }

.site-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 1rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  text-align: center;
  color: var(--faint);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 0.65rem 1rem;
  align-items: center; justify-content: center;
}
.footer-links a {
  color: var(--yellow);
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }
.footer-links .sep { color: rgba(255,255,255,.22); }

/* Legal pages */
.legal-wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}
@media (min-width: 640px) { .legal-wrap { padding-left: 2rem; padding-right: 2rem; } }
.legal-prose { color: var(--muted); font-size: 0.925rem; line-height: 1.65; }
.legal-prose h1 {
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  text-shadow: 0 0 28px rgba(11,79,158,.4);
}
.legal-prose .meta { margin: 0.6rem 0 0; color: var(--faint); font-size: 0.78rem; }
.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  color: rgba(255,255,255,.92);
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}
.legal-prose h3 {
  margin: 1.25rem 0 0.5rem;
  color: rgba(255,255,255,.86);
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.legal-prose p, .legal-prose li { margin-bottom: 0.75rem; }
.legal-prose ul { list-style: disc; padding-left: 1.25rem; }
.legal-prose a { color: #7eb6ef; text-decoration: underline; }
.legal-prose strong { color: rgba(255,255,255,.9); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

.lang-block[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora::before, .aurora::after { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .feature-card { transition: none; }
  .feature-card:hover { transform: none; }
}
