/* White Lights — marketing site
   Palette: charcoal blacks, warm-white light cores, muted golden halo.
   No external fonts or scripts; the page must stay self-contained and fast. */

/* -------- reset-ish -------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

:root {
  --bg: #0d0c0a;
  --bg-raised: #14120f;
  --ink: #f0e9dd;
  --ink-dim: #b0a795;
  --ink-faint: #7d766a;
  --halo: #e8c891;
  --line: rgba(240, 233, 221, 0.12);
  --glow: 0 0 24px rgba(255, 244, 224, 0.35);
  --container: 1120px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }

a { color: var(--halo); text-decoration: none; border-bottom: 1px solid rgba(232, 200, 145, 0.35); }
a:hover { border-bottom-color: var(--halo); }

/* -------- type -------- */
h1, h2, h3 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: 1.15rem; margin-bottom: 0.5em; letter-spacing: -0.01em; }

p { color: var(--ink-dim); }
h1 + p, h2 + p { margin-top: 0.2em; }
.body-lg { font-size: 1.15rem; }
.lede { font-size: clamp(1.05rem, 1.8vw, 1.3rem); max-width: 34em; }
.fine { font-size: 0.85rem; color: var(--ink-faint); }

.kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--halo);
  margin-bottom: 1.1em;
}

em { font-style: italic; color: var(--ink); }

/* -------- header -------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 44px);
}
.brand { display: flex; align-items: center; gap: 12px; border: none; }
.brand-mark { width: 44px; height: 16px; fill: #fff7ea; filter: drop-shadow(0 0 6px rgba(255, 244, 224, 0.55)); }
.brand-name { font-weight: 650; letter-spacing: 0.04em; color: var(--ink); font-size: 1.02rem; }
.coming-pill {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  backdrop-filter: blur(6px);
  background: rgba(13, 12, 10, 0.35);
}

/* -------- hero -------- */
.hero { position: relative; min-height: min(92vh, 900px); display: flex; align-items: center; }
.hero-media {
  position: absolute; inset: 0;
  background-image: url("assets/hero.webp");
  background-size: cover;
  background-position: 22% center;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(13,12,10,0) 26%),
    linear-gradient(100deg, rgba(13,12,10,0.55) 0%, rgba(13,12,10,0) 45%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; display: flex; justify-content: flex-end; }
.hero-copy { max-width: 34rem; padding: 18vh 0 12vh; }
.hero-copy h1 { text-shadow: 0 2px 28px rgba(0, 0, 0, 0.75), 0 0 8px rgba(0, 0, 0, 0.4); }
.hero-copy .lede { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8); }
.hero-copy .lede { margin-top: 1.1em; }
.hero-actions { margin-top: 2em; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--bg);
  background: var(--ink);
  border-radius: 12px;
  padding: 13px 22px;
  box-shadow: var(--glow);
}
.cta-badge svg { width: 16px; height: 20px; }

/* -------- verdict -------- */
section { padding: clamp(72px, 11vw, 140px) 0; }
.verdict { text-align: center; }
.verdict .container.narrow { margin-bottom: clamp(32px, 5vw, 56px); }
.verdict-img { border-radius: 16px; margin: 0 auto; }

/* -------- passport split -------- */
.passport { background: var(--bg-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.split-media img { border-radius: 16px; }
.split-copy p + p { margin-top: 1em; }

/* -------- features -------- */
.features .container.narrow { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  background: linear-gradient(170deg, rgba(255, 244, 224, 0.035), rgba(255, 244, 224, 0) 40%);
}
.feature h3::before {
  content: "";
  display: block;
  width: 34px; height: 8px;
  margin-bottom: 16px;
  background: radial-gradient(circle 4px at 5px 4px, #fff7ea 55%, transparent 60%),
              radial-gradient(circle 4px at 17px 4px, #fff7ea 55%, transparent 60%),
              radial-gradient(circle 4px at 29px 4px, #fff7ea 55%, transparent 60%);
  filter: drop-shadow(0 0 5px rgba(255, 244, 224, 0.6));
}
.emblems { display: flex; gap: 14px; margin: 4px 0 14px; }
.emblems img { width: 72px; height: 72px; border-radius: 50%; }

/* -------- chalk break -------- */
.chalk-break { position: relative; padding: 0; overflow: hidden; }
.chalk-break img { width: 100%; height: clamp(380px, 60vh, 640px); object-fit: cover; }
.chalk-break blockquote {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding-bottom: clamp(36px, 7vh, 72px);
}
.chalk-break blockquote p {
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}
.chalk-break::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,12,10,0.82) 0%, rgba(13,12,10,0) 45%);
  pointer-events: none;
}
.chalk-break blockquote { z-index: 1; }

/* -------- data -------- */
.data { text-align: center; }
.data .body-lg { max-width: 38em; margin-left: auto; margin-right: auto; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: clamp(40px, 6vw, 64px) auto;
}
.stat { border-top: 1px solid var(--line); padding-top: 22px; }
.stat-num {
  display: block;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.data .fine { max-width: 48em; margin: 0 auto; }

/* -------- closer -------- */
.closer { position: relative; text-align: center; min-height: 74vh; display: flex; align-items: center; padding: 0; }
.closer-media {
  position: absolute; inset: 0;
  background-image: url("assets/lockout.webp");
  background-size: cover;
  background-position: center 30%;
}
.closer-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--bg) 0%, rgba(13,12,10,0.15) 40%),
    linear-gradient(to top, var(--bg) 0%, rgba(13,12,10,0.2) 42%);
}
.closer-copy { position: relative; z-index: 1; width: 100%; padding-top: 10vh; padding-bottom: 10vh; }
.closer-copy .lede { margin: 0.8em auto 2em; }

/* -------- footer -------- */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 56px; }
.footer-inner { text-align: center; }
.footer-inner .brand-mark { margin: 0 auto 20px; }
.footer-inner p { max-width: 46em; margin: 0 auto 12px; font-size: 0.92rem; }

/* -------- reveal animation -------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------- responsive -------- */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero { align-items: flex-end; }
  .hero-media { background-position: 30% center; }
  .hero-media::after {
    background:
      linear-gradient(to top, var(--bg) 4%, rgba(13,12,10,0.25) 55%, rgba(13,12,10,0) 75%);
  }
  .hero-inner { justify-content: flex-start; }
  .hero-copy { padding: 52vh 0 64px; }
  .coming-pill { display: none; }
}
