/* ============================================================
   Inno Schools — Landing Page
   Paper-cut editorial. Off-white base, ink accents, pastel purple.
   ============================================================ */

:root {
  --paper: #FFFFFF;
  --paper-2: #FBF8F2;
  --paper-3: #F1ECE0;
  --ink: #141210;
  --ink-soft: #2a2622;
  --ink-muted: #6b6358;
  --grid-line: rgba(20, 18, 16, 0.06);
  --purple: #E3D5F5;
  --purple-deep: #C7B3EE;
  --purple-soft: #F1E8FB;
  --mint: #D6EFD8;
  --peach: #FCE3CF;
  --purple-shadow: rgba(80, 55, 130, 0.18);
  --tape: rgba(227, 213, 245, 0.75);
  --shadow-paper: 0 1px 0 rgba(20, 18, 16, 0.04),
                  0 2px 6px rgba(20, 18, 16, 0.07),
                  0 10px 22px rgba(20, 18, 16, 0.09);
  --shadow-paper-lg: 0 2px 0 rgba(20, 18, 16, 0.05),
                     0 8px 14px rgba(20, 18, 16, 0.10),
                     0 24px 44px rgba(20, 18, 16, 0.16);
  --grain-opacity: 0;
  --papercut: 1;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
}

/* ---------------------------------------------------------------
   Grain overlay — SVG noise fixed to viewport
   --------------------------------------------------------------- */
/* Grain removed entirely */
body::before { content: none; }

/* Subtle grid background — fixed, behind everything */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(800px 600px at 88% 12%, rgba(227, 213, 245, 0.45), transparent 60%),
    radial-gradient(700px 500px at 8% 90%, rgba(252, 227, 207, 0.30), transparent 60%);
}

/* ---------------------------------------------------------------
   Typography
   --------------------------------------------------------------- */
.display {
  font-family: 'Gambetta', 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-feature-settings: 'ss01' on, 'ss02' on;
  letter-spacing: -0.02em;
  line-height: 0.96;
  color: var(--ink);
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--ink-muted);
}

/* ---------------------------------------------------------------
   Nav
   --------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 18, 16, 0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Gambetta', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1.5px solid var(--ink);
  padding: 2px;
  background: var(--paper);
}
.nav-logo > span:first-of-type {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 1px;
}
.nav-tagline {
  display: inline-block;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(20,18,16,0.15);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 820px) {
  .nav-tagline { display: none; }
}
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-cta:hover { background: var(--ink-soft); transform: translateY(-1px); }

/* ---------------------------------------------------------------
   Shared layout
   --------------------------------------------------------------- */
.section {
  position: relative;
  padding: 140px 40px;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section { padding: 90px 22px; }
  .nav { padding: 14px 20px; }
}

/* ---------------------------------------------------------------
   Paper primitives
   --------------------------------------------------------------- */
.paper {
  background: var(--paper);
  border: 1px solid rgba(20, 18, 16, 0.08);
  box-shadow: var(--shadow-paper);
  position: relative;
}
.paper-lg { box-shadow: var(--shadow-paper-lg); }
.paper-tilt-l { transform: rotate(calc(-1.4deg * var(--papercut))); }
.paper-tilt-r { transform: rotate(calc(1.2deg * var(--papercut))); }
.paper-tilt-xs { transform: rotate(calc(-0.6deg * var(--papercut))); }

/* Torn bottom edge */
.torn-bottom::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: -10px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M0,0 L200,0 L200,3 Q195,7 190,5 Q185,9 180,6 Q175,11 170,7 Q162,10 156,5 Q150,12 142,7 Q134,10 128,5 Q120,12 112,6 Q104,10 96,5 Q88,12 80,7 Q72,10 64,5 Q56,12 48,6 Q40,10 32,5 Q24,12 16,7 Q8,10 0,5 Z' fill='%23F4EFE6'/></svg>");
  background-size: 100% 100%;
  filter: drop-shadow(0 4px 3px rgba(20,18,16,0.08));
}
.torn-top::before {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  top: -10px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M0,14 L200,14 L200,11 Q195,7 190,9 Q185,5 180,8 Q175,3 170,7 Q162,4 156,9 Q150,2 142,7 Q134,4 128,9 Q120,2 112,8 Q104,4 96,9 Q88,2 80,7 Q72,4 64,9 Q56,2 48,8 Q40,4 32,9 Q24,2 16,7 Q8,4 0,9 Z' fill='%23F4EFE6'/></svg>");
  background-size: 100% 100%;
}

/* Tape piece */
.tape {
  position: absolute;
  width: 80px; height: 22px;
  background: var(--tape);
  border-left: 1px dashed rgba(80, 55, 130, 0.25);
  border-right: 1px dashed rgba(80, 55, 130, 0.25);
  box-shadow: 0 1px 2px rgba(20,18,16,0.1);
  z-index: 3;
}
.tape::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.05) 50%,
    rgba(255,255,255,0.2) 100%);
}

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  padding: 130px 40px 90px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  padding: 9px 18px 9px 12px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: 0 2px 6px var(--purple-shadow);
  margin-bottom: 36px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 8px 0 0;
  width: 100%;
  max-width: 1100px;
}
.hero-slab {
  display: inline-block;
  font-family: 'Archivo Black', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 4.2vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
  background: var(--ink);
  padding: 14px 28px 16px;
  text-transform: uppercase;
  box-shadow: 6px 8px 0 rgba(20, 18, 16, 0.10);
  transform: rotate(-0.3deg);
  white-space: nowrap;
  max-width: 100%;
}
.hero-slab:nth-child(2) { transform: rotate(0.4deg); }
.hero-slab:nth-child(3) { transform: rotate(-0.2deg); }
.hero-slab-purple {
  background: var(--purple-deep);
  color: var(--ink);
  transform: rotate(0.6deg) !important;
  box-shadow: 6px 8px 0 var(--purple-shadow);
}

@media (max-width: 900px) {
  .hero-slab {
    white-space: normal;
    font-size: clamp(28px, 8vw, 56px);
    padding: 12px 18px 14px;
  }
}

/* Legacy classes — neutralized */
.hero-line, .hero-line-1, .hero-line-2, .hero-line-3, .hero-tagline { display: none; }

.hero-sub {
  max-width: 720px;
  margin: 38px auto 38px;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  text-wrap: pretty;
  text-align: center;
}
.hero-sub strong {
  background: var(--purple);
  padding: 1px 8px;
  border-radius: 3px;
  font-weight: 600;
  color: var(--ink);
}

/* Legacy block — fully removed */

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-meta { display: none; }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s;
  box-shadow: 0 4px 0 rgba(20,18,16,0.15), 0 10px 22px rgba(20,18,16,0.18);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(20,18,16,0.15), 0 14px 30px rgba(20,18,16,0.2);
}
.btn-primary .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn-primary:hover .arrow { transform: translateX(4px); }

/* Hidden — replaced by .hero-meta */
.hero-note, .hero-scrap, .hero-constellation { display: none !important; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: drift 2.6s ease-in-out infinite;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 30px;
  background: var(--ink-muted);
}
@keyframes drift {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

/* ---------------------------------------------------------------
   HOW IT WORKS
   --------------------------------------------------------------- */
.hiw-head {
  max-width: 820px;
  margin-bottom: 80px;
}
.hiw-head h2 {
  font-family: 'Gambetta', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 20px 0 24px;
}
.hiw-head h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  display: inline-block;
}
.hiw-head h2 em::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px; bottom: 6px;
  height: 12px;
  background: var(--purple);
  z-index: -1;
  transform: rotate(-0.5deg);
}
.hiw-head p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
}

.hiw-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .hiw-layout { grid-template-columns: 1fr; gap: 40px; }
}

.hiw-sticky {
  position: sticky;
  top: 100px;
  align-self: start;
  height: fit-content;
}

.hiw-visual {
  aspect-ratio: 16 / 10;
  max-height: 320px;
  position: relative;
  background: var(--paper-2);
  border: 1px solid rgba(20,18,16,0.08);
  box-shadow: var(--shadow-paper-lg);
  padding: 28px;
  overflow: hidden;
}
.hiw-visual .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,18,16,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,18,16,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hiw-visual-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
  z-index: 2;
}
.hiw-stage {
  position: absolute;
  inset: 70px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-stage > * {
  animation: stageFade 0.35s ease both;
}
@keyframes stageFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 180px;
}
.hiw-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 36px 20px;
  border-top: 1px solid rgba(20,18,16,0.1);
  cursor: pointer;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  will-change: background;
}
.hiw-step:last-child {
  border-bottom: 1px solid rgba(20,18,16,0.1);
}
.hiw-step.active {
  background: var(--paper);
  box-shadow: var(--shadow-paper);
}
.hiw-step.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ink);
}
.hiw-step-num {
  font-family: 'Gambetta', serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--ink-muted);
  transition: color 0.3s;
}
.hiw-step.active .hiw-step-num { color: var(--ink); }
.hiw-step-body h3 {
  font-family: 'Gambetta', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.hiw-step-body p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s;
}
.hiw-step.active .hiw-step-body p {
  max-height: 140px;
  opacity: 1;
  margin-top: 4px;
}

.hiw-coming-soon {
  margin-top: 80px;
  padding: 40px 44px;
  background: transparent;
  border: 1px dashed rgba(20,18,16,0.2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  line-height: 1.8;
}
.hiw-coming-soon strong {
  display: block;
  color: var(--ink);
  margin-bottom: 14px;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.coming-soon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.coming-soon-list li {
  white-space: nowrap;
}
.coming-soon-list li::before {
  content: '★';
  margin-right: 10px;
  color: var(--purple-deep);
  font-size: 11px;
}
@media (max-width: 720px) {
  .coming-soon-list {
    flex-direction: column;
    gap: 10px;
  }
}

/* ---------------------------------------------------------------
   MODULE EXAMPLES
   --------------------------------------------------------------- */
.mod-head {
  max-width: 820px;
  margin-bottom: 80px;
}
.mod-head h2 {
  font-family: 'Gambetta', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 20px 0 24px;
}
.mod-head p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
}

.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
@media (max-width: 960px) {
  .mod-grid { grid-template-columns: 1fr; gap: 60px; }
}

.mod-card {
  background: var(--paper);
  border: 1px solid rgba(20,18,16,0.08);
  box-shadow: var(--shadow-paper-lg);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mod-card:nth-child(1) { transform: rotate(calc(-1.2deg * var(--papercut))); }
.mod-card:nth-child(2) { transform: rotate(calc(0.8deg * var(--papercut))) translateY(20px); }
.mod-card:nth-child(3) { transform: rotate(calc(-0.6deg * var(--papercut))); }
.mod-card:hover {
  transform: rotate(0) translateY(-6px) !important;
  z-index: 2;
}

.mod-card .tape {
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
}

.mod-field {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.mod-field .dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--purple-deep);
  margin-right: 8px;
  vertical-align: middle;
}
.mod-title {
  font-family: 'Gambetta', serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(20,18,16,0.15);
}

.mod-preview {
  background: var(--paper-2);
  border: 1px solid rgba(20,18,16,0.06);
  margin: -32px -28px 22px;
  margin-bottom: 22px;
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mod-preview svg {
  width: 100%; height: 100%;
}

.mod-row {
  margin-bottom: 14px;
}
.mod-row-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.mod-row-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.mod-row-text strong { color: var(--ink); font-weight: 500; }

.mod-walk {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--purple);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
}
.mod-walk-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  opacity: 0.7;
}

/* ---------------------------------------------------------------
   SOCIAL PROOF
   --------------------------------------------------------------- */
.social-head {
  max-width: 900px;
  margin-bottom: 60px;
}
.social-head h2 {
  font-family: 'Gambetta', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 20px 0 20px;
}
.social-head h2 .big-num {
  position: relative;
  display: inline-block;
}
.social-head h2 .big-num::after {
  content: '';
  position: absolute;
  left: -6px; right: -6px;
  bottom: 4px;
  height: 18px;
  background: var(--purple);
  z-index: -1;
  transform: rotate(-0.8deg);
}
.social-head p {
  font-size: 17px;
  color: var(--ink-muted);
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 80px;
}
@media (max-width: 700px) {
  .stats-row { grid-template-columns: 1fr; }
}
.stat-card {
  background: var(--paper);
  border: 1px solid rgba(20,18,16,0.08);
  box-shadow: var(--shadow-paper);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.stat-card:nth-child(1) { transform: rotate(calc(-0.6deg * var(--papercut))); }
.stat-card:nth-child(2) { transform: rotate(calc(0.5deg * var(--papercut))); background: var(--purple); border-color: rgba(80,55,130,0.12); }
.stat-num {
  font-family: 'Gambetta', serif;
  font-weight: 600;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.stat-num .plus {
  color: var(--ink-muted);
  font-weight: 400;
}
.stat-label {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 960px) {
  .quotes-grid { grid-template-columns: 1fr; }
}
.quote-card {
  background: var(--paper);
  border: 1px solid rgba(20,18,16,0.08);
  box-shadow: var(--shadow-paper);
  padding: 36px 32px 32px;
  position: relative;
}
.quote-card:nth-child(1) { transform: rotate(calc(-0.8deg * var(--papercut))); }
.quote-card:nth-child(2) { transform: rotate(calc(0.6deg * var(--papercut))) translateY(16px); }
.quote-card:nth-child(3) { transform: rotate(calc(-0.4deg * var(--papercut))); }
.quote-mark {
  font-family: 'Gambetta', serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--purple-deep);
  position: absolute;
  top: 26px; left: 24px;
  opacity: 0.8;
}
.quote-text {
  font-family: 'Gambetta', serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.38;
  letter-spacing: -0.015em;
  margin-top: 20px;
  margin-bottom: 24px;
  color: var(--ink);
}
.quote-attr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding-top: 16px;
  border-top: 1px dashed rgba(20,18,16,0.15);
  line-height: 1.6;
}
.quote-attr strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
}

/* ---------------------------------------------------------------
   WAITLIST FORM
   --------------------------------------------------------------- */
.waitlist {
  background: var(--ink);
  color: var(--paper);
  margin: 60px 40px;
  border-radius: 0;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  max-width: calc(1360px - 0px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .waitlist { margin: 40px 16px; padding: 60px 26px; }
}

.waitlist::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

.waitlist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
@media (max-width: 860px) {
  .waitlist-layout { grid-template-columns: 1fr; gap: 50px; }
}

.waitlist-left .eyebrow {
  color: var(--purple);
}
.waitlist-left .eyebrow::before {
  background: var(--purple);
}
.waitlist-left h2 {
  font-family: 'Gambetta', serif;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 20px 0 22px;
}
.waitlist-left p {
  font-size: 17px;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.6;
  max-width: 460px;
}
.waitlist-left p strong {
  color: var(--purple);
  font-weight: 500;
}

.urgency {
  margin-top: 36px;
  padding: 18px 22px;
  background: rgba(244, 239, 230, 0.08);
  border: 1px solid rgba(244, 239, 230, 0.14);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.urgency .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
.urgency-num {
  font-family: 'Gambetta', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--purple);
  margin-right: 4px;
}

.form {
  background: var(--paper);
  color: var(--ink);
  padding: 40px 36px;
  position: relative;
  transform: rotate(calc(0.8deg * var(--papercut)));
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.form .tape {
  top: -14px;
  left: 30px;
  transform: rotate(-6deg);
}

.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 6px;
  margin-top: 18px;
}
.form-label:first-of-type { margin-top: 0; }

.form-input, .form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(20,18,16,0.2);
  padding: 10px 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.form-input:focus, .form-select:focus {
  border-bottom-color: var(--ink);
}
.form-input::placeholder {
  color: rgba(20,18,16,0.3);
}

.form-submit {
  margin-top: 32px;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 28px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.2s, background 0.2s;
}
.form-submit:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-fine {
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-align: center;
}

.form-error {
  color: #c0392b;
  font-size: 13px;
  margin-bottom: 12px;
}
.form-field-error {
  color: #c0392b;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}
.form-success {
  text-align: center;
  padding: 20px 0;
}
.form-success-check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 28px;
}
.form-success h3 {
  font-family: 'Gambetta', serif;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--ink-muted);
}

/* ---------------------------------------------------------------
   SECONDARY CTA
   --------------------------------------------------------------- */
.second-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.second-cta h2 {
  font-family: 'Gambetta', serif;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.second-cta p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 20px;
}
.second-cta .cta-line {
  font-family: 'Gambetta', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 36px;
}

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.footer {
  border-top: 1px solid rgba(20,18,16,0.1);
  padding: 60px 40px 48px;
  max-width: 1360px;
  margin: 120px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  width: 32px; height: 32px;
  border-radius: 4px;
}
.footer-logo-text {
  font-family: 'Gambetta', serif;
  font-weight: 600;
  font-size: 18px;
}
.footer-tag {
  font-family: 'Gambetta', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-muted);
}
.footer-right {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}

/* ---------------------------------------------------------------
   Reveal-on-scroll
   --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ---------------------------------------------------------------
   Tweaks panel
   --------------------------------------------------------------- */
.tweaks {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  background: var(--paper);
  border: 1px solid rgba(20,18,16,0.12);
  box-shadow: 0 20px 50px rgba(20,18,16,0.2);
  padding: 18px 20px;
  width: 280px;
  font-family: 'Inter Tight', sans-serif;
  display: none;
}
.tweaks.open { display: block; }
.tweaks h4 {
  font-family: 'Gambetta', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.tweak-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
}
.tweak-row label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.tweak-row input[type="range"] {
  width: 130px;
  accent-color: var(--ink);
}
.tweak-row select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid rgba(20,18,16,0.15);
  background: var(--paper);
  border-radius: 4px;
}
