/* ── Reset & Root ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #08080a;
  --bone: #f0ece4;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-glow: rgba(201,168,76,0.35);
  --stone: #7a7568;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.07);
}

html {
  scroll-behavior: smooth;
  touch-action: manipulation;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Ambient Glow — pure radial gradients, no blur filter ── */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 25% 30%, rgba(201,168,76,0.08), transparent 70%),
    radial-gradient(ellipse 50% 60% at 75% 70%, rgba(160,96,64,0.06), transparent 70%);
}

/* ── CSS-only floating motes (no canvas, no JS) ── */
.motes {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mote {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
}
.mote:nth-child(1)  { left: 12%; top: 18%; animation: float-mote 12s 0s ease-in-out infinite; }
.mote:nth-child(2)  { left: 28%; top: 60%; animation: float-mote 16s 2s ease-in-out infinite; }
.mote:nth-child(3)  { left: 55%; top: 25%; animation: float-mote 14s 4s ease-in-out infinite; }
.mote:nth-child(4)  { left: 72%; top: 70%; animation: float-mote 18s 1s ease-in-out infinite; }
.mote:nth-child(5)  { left: 40%; top: 80%; animation: float-mote 13s 3s ease-in-out infinite; }
.mote:nth-child(6)  { left: 85%; top: 35%; animation: float-mote 15s 5s ease-in-out infinite; }
.mote:nth-child(7)  { left: 8%;  top: 50%; animation: float-mote 17s 6s ease-in-out infinite; }
.mote:nth-child(8)  { left: 60%; top: 10%; animation: float-mote 11s 1.5s ease-in-out infinite; }
.mote:nth-child(9)  { left: 35%; top: 40%; animation: float-mote 19s 3.5s ease-in-out infinite; }
.mote:nth-child(10) { left: 90%; top: 55%; animation: float-mote 14s 7s ease-in-out infinite; }
.mote:nth-child(11) { left: 18%; top: 85%; animation: float-mote 16s 4.5s ease-in-out infinite; }
.mote:nth-child(12) { left: 50%; top: 50%; animation: float-mote 20s 2.5s ease-in-out infinite; }

@keyframes float-mote {
  0%       { opacity: 0; transform: translateY(0); }
  15%      { opacity: 0.35; }
  50%      { opacity: 0.2; transform: translateY(-40px) translateX(10px); }
  85%      { opacity: 0.35; }
  100%     { opacity: 0; transform: translateY(0); }
}

/* ── Grain — tiny base64 PNG tile (no SVG filter) ── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAElBMVEUAAAAAAAAAAAAAAAAAAAAAAADgKxmiAAAABnRSTlMFCA0RFRkEEooAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABpSURBVDjL7dCxDYAwDETRH8gCrMAKrMAKrMAKrMAKrMAK2QARCgUpKJC4yvfTne3/TsZa60nKPAGE+gBcxAOw0A+gRA+AknoAEnoBJNQL4KkfAIAaAHT9AAr0ANDpBZBTT0BJ9YesTfYGS7YNFt0O3TMAAAAASUVORK5CYII=");
  background-size: 48px 48px;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8,8,10,0.7);
  border-bottom: 1px solid var(--glass-border);
  transition: padding 0.3s;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bone);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
}
.logo .accent { color: var(--gold); }
.logo .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 2px;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.7); }
}

.nav-pill {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  background: rgba(201,168,76,0.06);
}

/* ── Sections shared ── */
section {
  position: relative;
  z-index: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 32px 80px;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-eyebrow .line {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 1s 0.5s ease forwards;
}
.hero-headline .shimmer {
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 40%, var(--bone) 50%, var(--gold) 60%, var(--gold-light) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}

.hero-sub {
  margin-top: 28px;
  font-size: clamp(15px, 2vw, 19px);
  color: var(--stone);
  max-width: 520px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s 0.7s ease forwards;
}

/* ── Philosophy Section ── */
.philosophy {
  padding: 120px 32px;
  display: flex;
  justify-content: center;
}
.philosophy-inner {
  max-width: 800px;
  text-align: center;
}
.philosophy-inner .section-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.philosophy-inner blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--bone);
}
.philosophy-inner blockquote em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── Countdown / Launch Strip ── */
.launch-strip {
  padding: 80px 32px;
  text-align: center;
}
.launch-strip .year-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  background: rgba(201,168,76,0.04);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}
.year-badge .ring {
  width: 10px; height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.store-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: default;
  user-select: none;
  transition: border-color 0.3s;
}
.store-badge:hover {
  border-color: rgba(201,168,76,0.2);
}
.store-badge svg { height: 20px; width: auto; }
.store-badge .lbl { display: flex; flex-direction: column; line-height: 1; }
.store-badge .lbl span:first-child {
  font-size: 8px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2px;
}
.store-badge .lbl span:last-child {
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.footer-logo .accent { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: var(--stone);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .navbar { padding: 16px 20px; }
  .logo { font-size: 20px; }
  .nav-pill { font-size: 9px; padding: 5px 12px; }
  .hero { padding: 120px 20px 80px; }
  .hero-headline { letter-spacing: -0.02em; }
  .hero-sub { font-size: 15px; }
  .philosophy { padding: 80px 20px; }
  .launch-strip { padding: 60px 20px; }
  .store-row { flex-direction: column; align-items: center; }
  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 20px;
  }
}
