:root {
  --bg: #0C0C0C;
  --bg-2: #141414;
  --bg-3: #1A1A1A;
  --fg: #F5F5F0;
  --fg-muted: #8A8A85;
  --accent: #F59E0B;
  --accent-dim: rgba(245,158,11,0.12);
  --border: rgba(245,158,11,0.15);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* SECTION LABELS */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* HERO */
.hero {
  padding: 140px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-lede {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* THUMBNAIL STACK */
.thumbnail-stack {
  position: relative;
  height: 400px;
}
.thumb-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  transition: transform 0.3s ease;
}
.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
  background: rgba(12,12,12,0.75);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.thumb-card-1 {
  width: 260px;
  height: 170px;
  top: 20px;
  left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}
.thumb-card-2 {
  width: 240px;
  height: 155px;
  top: 80px;
  left: 80px;
  transform: rotate(2deg);
  z-index: 2;
}
.thumb-card-3 {
  width: 250px;
  height: 160px;
  top: 160px;
  left: 40px;
  transform: rotate(-1.5deg);
  z-index: 3;
}
.thumb-card:hover { transform: rotate(0deg) scale(1.04) !important; z-index: 10; }

/* THE PROBLEM */
.theproblem {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.theproblem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 48px 0 60px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
}
.problem-card {
  background: var(--bg-2);
  padding: 40px 36px;
  transition: background 0.2s;
}
.problem-card:hover { background: var(--bg-3); }
.problem-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.problem-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.problem-punchline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 32px;
  background: var(--bg-2);
}
.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 64px;
}
.process-flow { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 320px;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-content p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 440px;
}
.step-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.process-arrow {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

/* PHILOSOPHY */
.philosophy {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.philosophy-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 64px;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.phil-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.phil-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phil-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.phil-item p {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  background: var(--accent);
  padding: 80px 32px;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #0C0C0C;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.manifesto-attribution {
  font-size: 0.95rem;
  color: rgba(12,12,12,0.65);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* CLOSING */
.closing {
  padding: 100px 32px 80px;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}
.footer-copy {
  color: var(--fg-muted);
  font-size: 0.75rem;
  opacity: 0.5;
}

/* WAITLIST FORM */
.waitlist-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  max-width: 420px;
}
.waitlist-form--center {
  margin: 32px auto 16px;
  justify-content: center;
}
.waitlist-input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: var(--fg-muted); }
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-btn {
  background: var(--accent);
  color: #0C0C0C;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.waitlist-btn:hover { opacity: 0.85; }
.waitlist-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.waitlist-confirm {
  color: var(--accent);
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 20px;
}
.waitlist-confirm--center { text-align: center; }

/* HERO TRY-IT-NOW CTA (shown to waitlisted users instead of waitlist form) */
.hero-try-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0C0C0C;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  margin-bottom: 20px;
}
.hero-try-btn:hover { opacity: 0.85; }

/* LIVE STRIP --- "Made in the last 24 hours" */
.live-strip {
  padding: 80px 32px;
  border-top: 1px solid var(--border);
}
.live-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.live-strip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(1.35); }
}
.live-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.live-strip-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  aspect-ratio: 16 / 9;
  cursor: default;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.live-strip-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.live-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.live-strip-item:hover img { transform: scale(1.04); }
.live-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.88) 0%, rgba(12,12,12,0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.live-strip-item:hover .live-strip-overlay {
  opacity: 1;
  transform: translateY(0);
}
.live-strip-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin: 0 0 7px 0;
}
@keyframes live-strip-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.live-strip-item--new {
  animation: live-strip-fadein 0.5s ease forwards;
}

/* GALLERY */
.gallery {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  aspect-ratio: 16 / 9;
  cursor: default;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
/* Overlay: hidden by default, slides up on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.92) 0%, rgba(12,12,12,0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 8px;
}
.gallery-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0C0C0C;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .thumbnail-stack { height: 280px; }
  .thumb-card-1 { width: 200px; height: 130px; }
  .thumb-card-2 { width: 190px; height: 120px; }
  .thumb-card-3 { width: 195px; height: 125px; }
  .problem-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .nav-links { display: none; }
  .waitlist-form { flex-direction: column; max-width: 100%; }
  .waitlist-form--center { max-width: 100%; }
  .waitlist-btn { width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  /* Always show overlay on mobile (no hover) */
  .gallery-overlay { opacity: 1; transform: none; }
  /* Live strip: 2-col on mobile, overlay always visible */
  .live-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .live-strip-overlay { opacity: 1; transform: none; }
}