@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f1eadc;
  --bg-soft: #f7f1e7;
  --paper: #fffaf1;
  --ink: #201913;
  --muted: #695f53;
  --midnight: #071226;
  --gold: #c4a15b;
  --gold-deep: #9f7e38;
  --line: rgba(48, 39, 28, 0.15);
  --line-strong: rgba(48, 39, 28, 0.28);
  --shadow: rgba(56, 42, 23, 0.14);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(196, 161, 91, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(7, 18, 38, 0.08), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .38) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.16), transparent 64%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
button { font: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { font-family: Montserrat, sans-serif; line-height: 1.05; margin: 0; letter-spacing: 0; }
p { margin: 0; color: var(--muted); }

.wrap,
.section,
.split,
.showcase,
.launch,
.page-hero,
.legal-body,
.footer,
.site-header,
.seo-hub,
.article-shell { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }

.bg-aurora { display: none; }

.site-header,
.nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  min-height: 72px;
  margin-top: 14px;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 250, 241, .12);
  border-radius: 8px;
  background: rgba(7, 18, 38, .96);
  box-shadow: 0 18px 48px var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}

.brand {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff8eb;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.brand img,
.brand-badge {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 8px;
  object-fit: contain;
  background: #d8b15f;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}

.brand-badge { display: grid; place-items: center; color: #071226; font-weight: 900; }
.brand-badge svg { width: 24px; height: 24px; }

.top-nav,
.links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 248, 235, .72);
  font-size: 14px;
  font-weight: 700;
}

.top-nav a,
.links a {
  padding: 8px 10px;
  border-radius: 8px;
}

.top-nav a:hover,
.links a:hover,
.top-nav a[aria-current="page"] { background: rgba(196, 161, 91, .22); color: #fff8eb; }

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 44px;
  align-items: center;
}

.hero-copy { min-width: 0; }
.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
}

h1 { margin-top: 16px; font-size: clamp(40px, 6vw, 76px); max-width: 820px; }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: 20px; }
.lead { margin-top: 20px; max-width: 720px; font-size: 18px; color: #463d34; }

.actions,
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.btn,
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 250, 241, .68);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(56, 42, 23, .08);
}

.button.primary,
.btn.primary {
  background: var(--gold);
  color: #171004;
  border-color: var(--gold);
}

.button.secondary,
.btn:not(.primary) { color: var(--ink); }

.store-badge { gap: 10px; min-height: 58px; }
.store-badge svg { width: 24px; height: 24px; }
.sb-text { display: grid; line-height: 1.1; }
.sb-top { font-size: 11px; color: var(--muted); }
.sb-main { font-size: 15px; }
.sb-soon { padding: 4px 7px; border-radius: 8px; background: rgba(196, 161, 91, .18); color: var(--gold-deep); font-size: 12px; }

.hero-media,
.visual {
  position: relative;
  min-width: 0;
}

.hero-media::before,
.visual::before {
  content: "";
  position: absolute;
  inset: 12% 6%;
  background: rgba(196, 161, 91, .28);
  filter: blur(60px);
  z-index: -1;
}

.hero-media img,
.visual img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border: 1px solid rgba(255, 250, 241, .94);
  border-radius: 8px;
  background: rgba(255, 250, 241, .74);
  box-shadow: 0 28px 78px rgba(56, 42, 23, .18);
}

.section,
.showcase,
.launch,
.seo-hub { padding: 58px 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading .eyebrow { margin-bottom: 12px; }
.section-heading p,
.launch-sub { margin-top: 14px; }

.feature-grid,
.grid,
.link-grid,
.article-grid,
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.feature-grid article,
.card,
.link-grid a,
.article-card,
.source-list a,
.country-card,
.metric {
  border: 1px solid rgba(48, 39, 28, .14);
  border-radius: 8px;
  background: rgba(255, 250, 241, .72);
  box-shadow: 0 16px 40px rgba(56, 42, 23, .09);
}

.feature-grid article,
.card,
.article-card,
.country-card,
.metric { padding: 24px; }

.feature-grid h3,
.card h3,
.article-card h3,
.country-card h3 { margin-bottom: 10px; }

.link-grid a {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  font-weight: 800;
}

.split {
  padding: 58px 0;
  display: grid;
  gap: 34px;
  align-items: center;
}

.split img {
  border-radius: 8px;
  border: 1px solid rgba(48, 39, 28, .14);
  box-shadow: 0 18px 54px rgba(56, 42, 23, .12);
}

.screens,
.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.screens img,
.carousel-card img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(48, 39, 28, .14);
  background: #fffaf1;
  box-shadow: 0 18px 54px rgba(56, 42, 23, .12);
}

.carousel-nav,
.dots { display: none; }

.launch {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.count-unit {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, .72);
}

.num { display: block; color: var(--midnight); font-family: Montserrat, sans-serif; font-size: 28px; font-weight: 800; }
.lab { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }

.page-hero {
  padding: 70px 0 28px;
}

.page-hero.compact { max-width: 880px; }
.legal-body,
.article-shell { max-width: 880px; padding: 24px 0 68px; }
.legal-body article,
.article-shell article {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, .7);
}

.legal-body h2,
.article-shell h2 { margin-bottom: 10px; font-size: 26px; }
.updated { margin-top: 24px; font-size: 14px; }

.article-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-meta span,
.tag {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(196, 161, 91, .16);
  color: #6d5423;
  font-size: 13px;
  font-weight: 800;
}

.source-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.source-list a {
  display: block;
  padding: 14px 16px;
  color: var(--midnight);
  font-weight: 800;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.footer strong { color: var(--ink); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.footer-links a { font-weight: 800; color: var(--ink); }

@media (max-width: 900px) {
  .hero,
  .split,
  .grid.two { grid-template-columns: 1fr; }
  .feature-grid,
  .grid,
  .link-grid,
  .article-grid,
  .country-grid,
  .screens,
  .carousel-track { grid-template-columns: 1fr; }
  .top-nav,
  .links { display: none; }
  .hero { padding-top: 50px; }
  .countdown { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer { display: block; }
  .footer-links { justify-content: flex-start; margin-top: 14px; }
}