/* ============================================================
   the hundred. — black / lime typographic poster
   ============================================================ */
:root {
  --black: #0A0A0A;
  --lime: #8FD613;
  --white: #FFFFFF;
  --dim: rgba(255, 255, 255, 0.64);
  --display: "Space Grotesk", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display, .big, .brand, .btn, .num, .step-n {
  font-family: var(--display);
  text-transform: lowercase;
  line-height: 1.05;
}
.lime { color: var(--lime); }
a { color: inherit; text-decoration: none; }
strong { color: var(--white); }
em { color: var(--dim); }
.todo { color: var(--lime); opacity: 0.55; font-size: 0.8em; }

/* ---------- ribbon + nav ---------- */
.ribbon {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: block; text-align: center;
  background: var(--lime); color: var(--black);
  font-weight: 600; font-size: 14px; padding: 8px 16px;
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px;
  background: linear-gradient(rgba(10,10,10,0.92), rgba(10,10,10,0));
}
.brand { font-size: 22px; font-weight: 600; letter-spacing: 0.01em; }
.nav-cta { display: flex; gap: 10px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: 17px;
  padding: 14px 30px; border-radius: 999px; border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: var(--black); }
.btn-lime:hover { background: #a4ee22; }
.btn-ghost { border-color: var(--white); color: var(--white); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-black { background: var(--black); color: var(--white); font-size: 19px; padding: 16px 38px; border: none; }
.btn-sm { font-size: 14px; padding: 9px 20px; }
.btn-xl { font-size: 22px; padding: 20px 46px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ---------- cinematic scrub sections ---------- */
.cinematic { position: relative; height: 520vh; background: var(--black); }
.cinematic.short { height: 320vh; }
.cinematic .sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.cinematic canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.shade {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(10,10,10,0.78) 100%);
}
.overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  text-align: center; pointer-events: none; padding: 0 24px;
}
.line { grid-area: 1 / 1; opacity: 0; max-width: 880px; }
.line .cta-row { pointer-events: auto; }
.display { font-size: clamp(54px, 9vw, 120px); font-weight: 700; color: var(--white); }
.hero-line h1 { font-size: clamp(26px, 3.4vw, 44px); font-weight: 500; margin-top: 10px; }
.hero-line .sub { color: var(--dim); max-width: 640px; margin: 18px auto 0; }
.big { font-size: clamp(48px, 7vw, 100px); font-weight: 700; }
.overlay .display, .overlay h1, .overlay .big { text-shadow: 0 4px 40px rgba(0,0,0,0.75), 0 1px 8px rgba(0,0,0,0.5); }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-size: 14px; color: var(--dim);
  letter-spacing: 0.2em; transition: opacity 0.4s;
}

/* ---------- panels ---------- */
.panel { padding: 130px 24px; position: relative; }
.wrap { max-width: 1060px; margin: 0 auto; text-align: center; }
.wrap.narrow { max-width: 740px; }
.panel h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; margin-bottom: 30px; }
.panel p { color: var(--dim); margin-bottom: 18px; font-size: 19px; }
.panel p strong { color: var(--white); }
.punch { font-size: 22px !important; }

/* ---------- breakdown grid ---------- */
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px;
}
.cell {
  position: relative; overflow: hidden; min-height: 250px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 22px;
  padding: 36px 26px; text-align: left; background: rgba(255,255,255,0.02);
}
.cell::after {
  content: attr(data-n); position: absolute; right: -10px; bottom: -52px;
  font-family: var(--display); font-weight: 700; font-size: 200px; line-height: 1;
  color: rgba(143,214,19,0.07); pointer-events: none;
}
.cell .num { display: block; font-size: 84px; font-weight: 700; color: var(--lime); line-height: 1; }
.cell h3 { font-size: 26px; margin: 4px 0 10px; }
.cell p { font-size: 15px; margin: 0; }
.cell.feature { grid-column: span 2; background: rgba(143,214,19,0.05); border-color: rgba(143,214,19,0.3); }
.cell.feature .num { font-size: 110px; }
.cell.feature p { max-width: 420px; }
.tag {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--display); text-transform: lowercase; font-weight: 600;
  font-size: 13px; letter-spacing: 0.06em; color: var(--black);
  background: var(--lime); padding: 5px 14px; border-radius: 999px;
}
.chips { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.chips span {
  font-family: var(--display); text-transform: lowercase; font-size: 13px; font-weight: 500;
  color: var(--lime); border: 1px solid rgba(143,214,19,0.4);
  padding: 5px 14px; border-radius: 999px;
}
.equals-banner {
  margin-top: 18px; background: var(--lime); color: var(--black);
  border-radius: 22px; padding: 38px 24px; text-align: center;
  font-family: var(--display); text-transform: lowercase; font-weight: 700;
  font-size: clamp(40px, 6vw, 84px); line-height: 1;
}
.equals-banner .dot { color: var(--black); opacity: 0.35; }
.footnote { margin-top: 34px; font-size: 16px !important; }

/* ---------- steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.steps li { text-align: left; border-top: 3px solid var(--lime); padding-top: 22px; }
.step-n { font-size: 46px; font-weight: 700; color: var(--lime); }
.steps h3 { font-size: 24px; margin: 6px 0 10px; }
.steps p { font-size: 15px; margin: 0; }

/* ---------- pull quotes ---------- */
.quotes { margin-top: 50px; display: flex; flex-direction: column; gap: 22px; }
blockquote {
  position: relative; text-align: left;
  font-family: var(--display); text-transform: lowercase;
  font-size: clamp(24px, 3vw, 36px); font-weight: 600; color: var(--white);
  line-height: 1.25; padding: 34px 38px 34px 104px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 22px;
  background: rgba(255,255,255,0.02);
}
blockquote::before {
  content: "“"; position: absolute; left: 26px; top: -8px;
  font-family: var(--display); font-weight: 700; font-size: 120px; line-height: 1.1;
  color: var(--lime);
}
blockquote .hl { color: var(--lime); }
.quotes blockquote:nth-child(1) { margin-right: 12%; }
.quotes blockquote:nth-child(2) { margin-left: 12%; border-color: rgba(143,214,19,0.35); background: rgba(143,214,19,0.05); }
.quotes blockquote:nth-child(3) { margin-right: 12%; }

/* ---------- proof ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.proof {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 22px;
  padding: 36px 26px; text-align: left; background: rgba(255,255,255,0.02);
}
.proof .num {
  display: block; font-family: var(--display); text-transform: lowercase;
  font-size: 60px; font-weight: 700; color: var(--lime); line-height: 1.1; margin-bottom: 12px;
}
.proof h3 { font-size: 22px; margin-bottom: 10px; }
.proof p { font-size: 15px; margin: 0 0 8px; }
.proof-shot { margin-top: 18px; }
.proof-shot img {
  width: 100%; display: block; border-radius: 14px;
  border: 1px solid rgba(143,214,19,0.3);
}
.proof-shot figcaption {
  font-family: var(--display); text-transform: lowercase;
  font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 10px;
}

/* ---------- kicker labels ---------- */
.kicker {
  display: inline-block; font-family: var(--display); text-transform: lowercase;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: var(--lime);
  border: 1px solid rgba(143,214,19,0.4); padding: 5px 16px; border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- WIN block ---------- */
.lime-block { background: var(--lime); color: var(--black); }
.lime-block h2, .lime-block strong { color: var(--black); }
.lime-block p { color: rgba(10,10,10,0.78); }
.lime-block em { color: rgba(10,10,10,0.6); }
.lime-block p strong { color: var(--black); }
.lime-block .todo { color: var(--black); opacity: 0.5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 34px 0 18px; }
.form-grid input {
  font-family: var(--body); font-size: 16px; padding: 16px 20px;
  border-radius: 14px; border: 2px solid rgba(10,10,10,0.25);
  background: rgba(255,255,255,0.55); color: var(--black); outline: none;
}
.form-grid input:focus { border-color: var(--black); background: var(--white); }
.form-grid input::placeholder { color: rgba(10,10,10,0.5); }
.form-grid .full { grid-column: 1 / -1; }
.thanks { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--black) !important; margin-top: 20px; }
.deadline { margin-top: 30px; font-weight: 500; }
.small-print { font-size: 13px !important; opacity: 0.7; margin-top: 24px; }

/* ---------- FAQ ---------- */
#faq {
  background: #111409;
  border-top: 1px solid rgba(143,214,19,0.25);
  border-bottom: 1px solid rgba(143,214,19,0.25);
}
details {
  text-align: left; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  background: rgba(255,255,255,0.03); padding: 22px 26px; margin-bottom: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
details:hover { border-color: rgba(143,214,19,0.35); }
details[open] { border-color: rgba(143,214,19,0.5); background: rgba(143,214,19,0.05); }
summary {
  font-family: var(--display); font-size: 21px; font-weight: 600;
  cursor: pointer; list-style: none; position: relative; padding-right: 36px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; color: var(--lime); }
details[open] summary::after { content: "–"; }
details p { margin-top: 12px; font-size: 16px; }

/* ---------- final CTA + footer ---------- */
.final { padding: 180px 24px; }
.giant { font-size: clamp(56px, 9vw, 130px) !important; }
.final .sub { font-size: 24px; margin-top: 10px; }
footer { text-align: center; padding: 60px 24px 80px; border-top: 1px solid rgba(255,255,255,0.1); }
footer .brand { font-size: 28px; display: block; margin-bottom: 14px; }
footer p { color: var(--dim); font-size: 14px; margin-bottom: 4px; }

/* ---------- reveals (staggered) ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.grid .cell:nth-child(2), .steps li:nth-child(2), .proof-grid .proof:nth-child(2) { transition-delay: 0.12s; }
.grid .cell:nth-child(3), .steps li:nth-child(3), .proof-grid .proof:nth-child(3) { transition-delay: 0.24s; }
.grid .cell:nth-child(4), .steps li:nth-child(4) { transition-delay: 0.36s; }
.grid .cell:nth-child(5) { transition-delay: 0.48s; }
.grid .cell:nth-child(6) { transition-delay: 0.6s; }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(143,214,19,0.35);
  border-bottom: 1px solid rgba(143,214,19,0.35);
  padding: 18px 0; background: var(--black);
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--display); text-transform: lowercase;
  font-size: 26px; font-weight: 600; color: var(--lime);
  padding-right: 8px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- glow + interaction punch ---------- */
.btn-lime { box-shadow: 0 0 0 rgba(143,214,19,0); }
.btn-lime:hover { box-shadow: 0 8px 34px rgba(143,214,19,0.45); }
.btn-ghost:hover { box-shadow: 0 8px 28px rgba(143,214,19,0.18); }
.cell { transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.25s ease; }
.cell:hover { border-color: rgba(143,214,19,0.55); }
summary:hover { color: var(--lime); }

/* ---------- progress bar ---------- */
.progressbar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 80; pointer-events: none; }
.progressbar-fill { height: 100%; width: 0; background: var(--lime); box-shadow: 0 0 12px rgba(143,214,19,0.8); }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 70; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 25% { transform: translate(-4%,3%); }
  50% { transform: translate(3%,-4%); } 75% { transform: translate(-2%,-2%); }
}

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 65;
  display: none; gap: 10px; padding: 12px 16px;
  background: linear-gradient(rgba(10,10,10,0), rgba(10,10,10,0.95) 40%);
}
.mobile-cta .btn { flex: 1; text-align: center; font-size: 16px; padding: 14px 10px; }

footer a:hover { color: var(--lime); }

/* ---------- brand details ---------- */
::selection { background: var(--lime); color: var(--black); }
.sticker {
  display: inline-block; transform: rotate(-4deg);
  background: var(--black); color: var(--lime);
  font-family: var(--display); text-transform: lowercase; font-weight: 600;
  font-size: 18px; padding: 8px 22px; border-radius: 999px; margin-bottom: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .grain { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid, .steps, .proof-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid, .steps, .proof-grid, .form-grid { grid-template-columns: 1fr; }
  .cell.feature { grid-column: auto; }
  .quotes blockquote:nth-child(1), .quotes blockquote:nth-child(3) { margin-right: 0; }
  .quotes blockquote:nth-child(2) { margin-left: 0; }
  blockquote { padding: 28px 24px 28px 74px; }
  blockquote::before { font-size: 84px; left: 18px; }
  .nav { padding: 12px 16px; }
  .nav .nav-cta { display: none; }
  .ribbon { font-size: 12px; padding: 7px 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ribbon .enter-hint { display: none; }
  .nav { top: 30px; }
  .hero-line .sub { font-size: 15px; }
  .panel { padding: 90px 20px; }
  .mobile-cta { display: flex; }
  .marquee-track span { font-size: 19px; }
  body { padding-bottom: 70px; }
}
