:root {
  --bg: #0A0A0B;
  --bg2: #121214;
  --accent: #FFC700;
  --accent-hover: #E6B400;
  --tx: #F4F4F2;
  --tx2: #B5B5B0;
  --display: "Archivo Black", Inter, system-ui, sans-serif;
  --body: Inter, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--tx);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { list-style: none; }

.wrap {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.logo {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--tx);
}

.eyebrow {
  display: inline-block;
  background: var(--accent);
  color: #0A0A0B;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 7px 14px;
  margin-bottom: 22px;
}

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(36px, 7.2vw, 88px);
  max-width: 16ch;
  margin: 0 auto 20px;
}

h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  margin-bottom: 28px;
}

.hl { color: var(--accent); }

.sub {
  font-size: 18px;
  color: var(--tx2);
  max-width: 42ch;
  margin: 0 auto 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0A0A0B;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  padding: 22px 48px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
}
.btn:hover { background: var(--accent-hover); }

/* ── HERO ── */
.hero {
  padding: 28px 20px 80px;
  text-align: center;
  background: var(--bg);
}
.hero .logo {
  display: block;
  text-align: left;
  margin-bottom: 48px;
}
.hero .eyebrow { margin-bottom: 28px; }

.vsl-wrap {
  width: min(900px, 100%);
  margin: 0 auto 32px;
}
#vsl {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 6px solid var(--accent);
  overflow: hidden;
}
#vsl iframe,
#vsl video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.vsl-ph {
  position: absolute;
  inset: 0;
  background: #0A0A0B;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 10px;
}
.vsl-ph p {
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: 0.08em;
}
.vsl-ph span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.vsl-ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #0A0A0B;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.play:hover { background: var(--accent-hover); }

/* ── LEARN ── */
.block-learn {
  background: var(--bg2);
  padding: 140px 0;
}
.block-learn h2 { max-width: 12ch; }
.learn-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 12px;
  max-width: 720px;
}
.learn-list li {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.ico {
  font-family: var(--display);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.04em;
  min-width: 36px;
  padding-top: 4px;
}
.learn-list strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.learn-list p { color: var(--tx2); font-size: 18px; }

/* ── WHO ── */
.who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  min-height: 640px;
}
.who-photo {
  min-height: 640px;
  background: var(--bg2);
}
.who-photo img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  border-radius: 0;
}
.who-ph {
  height: 100%;
  min-height: 640px;
  display: grid;
  place-items: center;
  color: #555;
  font-size: 14px;
}
.who-copy {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.who-copy h2 { font-size: clamp(56px, 8vw, 88px); margin-bottom: 12px; }
.who-role {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}
.who-copy p {
  color: var(--tx2);
  margin-bottom: 16px;
  max-width: 42ch;
}
.who-copy .btn { margin-top: 20px; align-self: flex-start; }

/* ── PROOF ── */
.proof {
  background: var(--bg2);
  padding: 140px 0;
}
.proof-sub { margin-left: 0; margin-right: 0; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.shot {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: zoom-in;
  border-radius: 8px;
  overflow: hidden;
}
.shot img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* ── FINAL CTA ── */
.final {
  background: var(--bg2);
  padding: 140px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.final h2 { max-width: 14ch; }
.final-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--tx2);
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  padding: 64px 20px 40px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-age { font-size: 13px; color: var(--tx2); margin-top: 10px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 14px; color: var(--tx2); }
.footer-nav a:hover { color: var(--tx); }
.copy { width: min(1100px, calc(100% - 40px)); margin: 0 auto 20px; font-size: 13px; color: var(--tx2); }
.disclaimer {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  font-size: 12px;
  color: #6a6a66;
  line-height: 1.6;
}

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 40px;
}
#lightbox[hidden] { display: none; }
#lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; }
.lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: 0;
  border: 0;
  color: var(--tx);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── LEGAL ── */
.page { padding: 80px 0 80px; max-width: 680px; }
.page h1 { font-size: 42px; margin-bottom: 24px; }
.page p { color: var(--tx2); margin-bottom: 14px; }
.back-link { color: var(--accent); font-size: 14px; display: inline-block; margin-bottom: 28px; font-weight: 700; }

@media (max-width: 900px) {
  .block-learn { padding: 80px 0; }
  .proof { padding: 80px 0; }
  .who { grid-template-columns: 1fr; }
  .who-photo, .who-photo img, .who-ph { min-height: 320px; }
  .who-copy { padding: 56px 20px 80px; }
  .proof-grid { grid-template-columns: 1fr; }
  .shot img { height: 220px; }
  .final { min-height: auto; padding: 80px 20px; }
}

@media (max-width: 390px) {
  .hero { padding: 16px 16px 48px; }
  .hero .logo { margin-bottom: 24px; }
  h1 { font-size: 36px; }
  .sub { font-size: 16px; margin-bottom: 20px; }
  #vsl { border-width: 4px; }
  .btn { width: 100%; padding: 18px 24px; }
  .learn-list { gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
