/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0908;
  --bg-2: #111009;
  --bg-3: #1A150E;
  --ink: #DC2626;
  --ink-2: #991B1B;
  --ink-3: #7F1D1D;
  --cream: #FAF7F2;
  --cream-2: #C8C0B4;
  --cream-3: #8A8076;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NOISE OVERLAY === */
.ink-noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* === NOISE FILTER (hidden SVG defs) === */
svg { display: none; }

/* === SECTION BASE === */
section { position: relative; z-index: 1; }

.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ink);
  opacity: 0.5;
}

.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 4rem;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(220,38,38,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(220,38,38,0.04) 0%, transparent 60%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--ink) 30%, var(--ink-2) 60%, transparent 100%);
  opacity: 0.4;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin-bottom: 2rem;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Headline */
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin-bottom: 2rem;
}

.hero-headline .line1 { display: block; color: var(--cream); }
.hero-headline .line2 { display: block; color: var(--cream); }
.hero-headline .line3 { display: block; color: var(--ink); }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream-2);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cta-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--cream-2);
}

.cta-sub {
  font-size: 0.8rem;
  color: var(--cream-3);
  letter-spacing: 0.05em;
}

/* Globe visual */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 2rem; }

.ink-globe {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 0 60px rgba(220,38,38,0.25));
}

.globe-svg { width: 100%; height: auto; }

.stat-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.75rem;
}

.stat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; flex: 1; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--cream); letter-spacing: 0.05em; }
.stat-label { font-size: 0.65rem; color: var(--cream-3); letter-spacing: 0.05em; text-transform: uppercase; text-align: center; }
.stat-div { width: 1px; height: 28px; background: rgba(255,255,255,0.08); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream-3), transparent);
  animation: scrollDrop 1.5s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === MACHINE VIBRATION ANIMATION === */
.lamp-anim {
  animation: lampFlicker 4s ease-in-out infinite;
}

@keyframes lampFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
  52% { opacity: 1; }
  70% { opacity: 0.9; }
}

.vib-line {
  animation: vibPulse 0.15s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes vibPulse {
  0% { opacity: 0.2; transform: translateX(-1px); }
  100% { opacity: 0.45; transform: translateX(1px); }
}

/* === BUTTON SHINE / HOVER ENHANCEMENTS === */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-secondary:hover {
  background: rgba(220,38,38,0.06);
}

/* === SCROLL-REVEAL ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-in {
  opacity: 0;
}

.animate-in.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-in-left.visible {
  animation: fadeInLeft 0.6s ease-out forwards;
}

/* Stagger delays for children */
.problem-grid > .problem-card:nth-child(1) { animation-delay: 0ms; }
.problem-grid > .problem-card:nth-child(2) { animation-delay: 80ms; }
.problem-grid > .problem-card:nth-child(3) { animation-delay: 160ms; }
.problem-grid > .problem-card:nth-child(4) { animation-delay: 240ms; }

.stack-grid > .stack-card:nth-child(1) { animation-delay: 0ms; }
.stack-grid > .stack-card:nth-child(2) { animation-delay: 80ms; }
.stack-grid > .stack-card:nth-child(3) { animation-delay: 160ms; }
.stack-grid > .stack-card:nth-child(4) { animation-delay: 240ms; }
.stack-grid > .stack-card:nth-child(5) { animation-delay: 320ms; }

.features-grid > .feature-card:nth-child(1) { animation-delay: 0ms; }
.features-grid > .feature-card:nth-child(2) { animation-delay: 100ms; }
.features-grid > .feature-card:nth-child(3) { animation-delay: 200ms; }
.features-grid > .feature-card:nth-child(4) { animation-delay: 300ms; }

.product-cards > .product-card:nth-child(1) { animation-delay: 0ms; }
.product-cards > .product-card:nth-child(2) { animation-delay: 80ms; }
.product-cards > .product-card:nth-child(3) { animation-delay: 160ms; }
.product-cards > .product-card:nth-child(4) { animation-delay: 240ms; }

.manifesto-stat-block > .m-stat:nth-child(1) { animation-delay: 0ms; }
.manifesto-stat-block > .m-stat:nth-child(2) { animation-delay: 120ms; }
.manifesto-stat-block > .m-stat:nth-child(3) { animation-delay: 240ms; }

/* === SECTION ENTRANCE ANIMATIONS === */
.hero-inner > * {
  animation: fadeInUp 0.7s ease-out forwards;
}
.hero-inner > *:nth-child(1) { animation-delay: 0ms; }
.hero-inner > *:nth-child(2) { animation-delay: 120ms; }

.hero-badge { opacity: 0; }
.hero-headline { opacity: 0; }
.hero-sub { opacity: 0; }
.hero-cta { opacity: 0; }
.hero-visual { opacity: 0; }

.hero-badge { animation-delay: 100ms !important; }
.hero-headline { animation-delay: 200ms !important; }
.hero-sub { animation-delay: 320ms !important; }
.hero-cta { animation-delay: 440ms !important; }
.hero-visual { animation-delay: 200ms !important; }

/* === STAT ROW HOVER === */
.stat:hover .stat-num {
  color: var(--ink);
  transition: color 0.2s;
}

/* === FEATURE CARD ICON MICRO-ANIMATION === */
.problem-icon svg {
  transition: transform 0.3s ease;
}
.problem-card:hover .problem-icon svg {
  transform: scale(1.1);
}

/* === LINK UNDERLINE HOVER === */
.product-card-link {
  position: relative;
  display: inline-block;
}

.product-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s ease;
}

.product-card-link:hover::after {
  width: 100%;
}

/* === WAITLIST FORM SUBMIT BUTTON MICRO-ANIMATION === */
.waitlist-submit {
  position: relative;
  overflow: hidden;
}

.waitlist-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.4s ease;
}

.waitlist-submit:hover:not(:disabled)::before {
  left: 100%;
}

/* === FOCUS STATES === */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* === SECTION DIVIDER GRADIENT LINE === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,0.3), transparent);
  margin: 0;
}

/* === MANIFESTO STAT HOVER === */
.m-stat:hover {
  background: rgba(220,38,38,0.03);
}

/* === INK NOISE TEXTURE === */
.ink-noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* === PROBLEM === */
.problem { padding: 8rem 0; background: var(--bg-2); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.problem-card {
  padding: 2rem 2rem 2.5rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.75rem;
  transition: border-color 0.3s;
}

.problem-card:hover { border-color: rgba(220,38,38,0.25); }

.problem-icon {
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--cream-2);
  font-weight: 300;
}

.problem-quote {
  padding: 2rem 2.5rem;
  border-left: 2px solid var(--ink);
  background: rgba(220,38,38,0.04);
  border-radius: 0 0.75rem 0.75rem 0;
}

.problem-quote blockquote {
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--cream-2);
  font-weight: 300;
}

/* === STACK === */
.stack { padding: 8rem 0; background: var(--bg); }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stack-card {
  padding: 2.5rem;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  display: flex;
  gap: 2rem;
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.stack-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--ink), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stack-card:hover::before { opacity: 1; }
.stack-card:hover { border-color: rgba(220,38,38,0.2); }

.stack-card--wide { grid-column: span 1; }
.stack-card--accent { border-color: rgba(220,38,38,0.25); background: linear-gradient(135deg, var(--bg-2), rgba(220,38,38,0.05)); }

.stack-card-inner { flex: 1; }

.stack-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.stack-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.stack-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--cream-2);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.stack-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag {
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.tag--red { border-color: rgba(220,38,38,0.4); color: var(--ink); }

/* Stack visual widgets */
.stack-visual { display: flex; align-items: center; justify-content: center; min-width: 160px; }

.cal-widget {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  padding: 1rem;
  width: 160px;
}

.cal-header { display: flex; gap: 0.4rem; margin-bottom: 0.75rem; }
.cal-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.cal-dot.active { background: var(--ink); }

.cal-row { display: flex; gap: 0.25rem; margin-bottom: 0.4rem; }
.cal-slot {
  flex: 1;
  padding: 0.35rem 0.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: 0.3rem;
  font-size: 0.6rem;
  color: var(--cream-3);
  text-align: center;
}

.cal-slot.booked { background: rgba(220,38,38,0.2); color: var(--cream-2); }

.payroll-widget { width: 160px; }

.pay-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pay-name { font-size: 0.65rem; color: var(--cream-3); width: 28px; }
.pay-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.pay-fill { height: 100%; background: var(--ink); border-radius: 2px; }
.pay-amt { font-size: 0.65rem; color: var(--cream-2); font-weight: 500; }

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 0;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.manifesto-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin-bottom: 2rem;
}

.highlight { color: var(--ink); }

.manifesto-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--cream-2);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.manifesto-stat-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  overflow: hidden;
}

.m-stat {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.m-stat:last-child { border-bottom: none; }
.m-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ink);
  opacity: 0;
  transition: opacity 0.3s;
}

.m-stat:hover::before { opacity: 1; }

.m-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1;
}

.m-desc {
  font-size: 0.78rem;
  color: var(--cream-3);
  letter-spacing: 0.05em;
}

/* === CLOSING === */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(220,38,38,0.08) 0%, transparent 70%),
    var(--bg);
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-icon {
  margin-bottom: 2rem;
  opacity: 0.7;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 1rem;
}

.closing-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 3rem;
}

.closing-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.closing-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--cream-2);
  font-weight: 300;
}

.closing-cta {
  margin-top: 2.5rem;
}

.btn-primary--large {
  padding: 1rem 3rem;
  font-size: 1.25rem;
}

/* === FOOTER === */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--bg);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.4rem; }

.footer-logo { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.footer-tagline { font-size: 0.75rem; color: var(--cream-3); }

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--cream-3);
}

.footer-sep { color: rgba(255,255,255,0.15); }

.footer-copy p { font-size: 0.7rem; color: var(--cream-3); }

/* === FEATURES === */
.features { padding: 8rem 0; background: var(--bg-3); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-card {
  padding: 2.5rem;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--ink), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover { border-color: rgba(220,38,38,0.2); }

.feature-card--hero {
  grid-column: span 2;
  display: flex;
  gap: 3rem;
  align-items: center;
  border-color: rgba(220,38,38,0.2);
  background: linear-gradient(135deg, var(--bg-2), rgba(220,38,38,0.04));
}

.feature-card--hero::before { opacity: 0.6; }

.feature-card--accent { border-color: rgba(255,255,255,0.04); background: rgba(255,255,255,0.01); }

.feature-card-inner { flex: 1; }

.feature-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #86EFAC;
  margin-bottom: 1rem;
}

.feature-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--cream-2);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.feature-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }

.feature-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--ink);
  border-radius: 6px;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s;
}

.feature-cta:hover { background: var(--ink-2); }

/* Consent preview widget */
.feature-visual { min-width: 260px; max-width: 300px; }

.consent-preview {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.consent-header-bar {
  background: rgba(220,38,38,0.08);
  border-bottom: 1px solid rgba(220,38,38,0.15);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.consent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 2s ease-in-out infinite;
}

.consent-logo-txt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  flex: 1;
}

.consent-badge-txt {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2px 8px;
}

.consent-rows { padding: 12px 14px; }

.consent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.75rem;
}

.consent-row:last-child { border-bottom: none; }
.consent-row-label { color: var(--cream-3); }
.consent-row-val { color: var(--cream); font-weight: 500; }

.consent-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.consent-status.signed { color: #86EFAC; }
.consent-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86EFAC;
}

.consent-sig-preview {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 14px;
  background: rgba(255,255,255,0.01);
}

/* === HERO CTAs === */
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--ink);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--ink-2); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

/* === PRODUCT SHOWCASE === */
.product {
  padding: 6rem 2rem;
  background: var(--bg);
}

.product-intro {
  color: var(--cream-3);
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: rgba(220,38,38,0.3); }

.product-card--soon {
  opacity: 0.7;
}

.product-card-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86EFAC;
  margin-bottom: 1rem;
}

.product-card-badge--soon {
  background: rgba(252,211,77,0.1);
  border-color: rgba(252,211,77,0.3);
  color: #FCD34D;
}

.product-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--cream-3);
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.product-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--cream-2);
  font-weight: 300;
  margin-bottom: 1rem;
}

.product-card-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.detail-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--cream-3);
}

.product-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
}
.product-card-link:hover { color: #EF4444; }

/* === WAITLIST SECTION === */
.waitlist {
  padding: 7rem 2rem;
  background: var(--bg-3);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.waitlist-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.waitlist-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.waitlist-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-2);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.waitlist-bullets { display: flex; flex-direction: column; gap: 0.75rem; }

.waitlist-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cream-2);
}

.bullet-check {
  color: #86EFAC;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Waitlist form */
.waitlist-form-wrap {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.5rem;
}

.waitlist-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row--half > div { display: flex; flex-direction: column; gap: 0.5rem; }

.waitlist-form label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
  color: var(--cream-3);
  opacity: 0.7;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  appearance: none;
}
.waitlist-form input::placeholder { color: var(--cream-3); }
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--ink);
}
.waitlist-form select option { background: var(--bg-3); color: var(--cream); }

.waitlist-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--ink);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.waitlist-submit:hover:not(:disabled) { background: var(--ink-2); }
.waitlist-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.waitlist-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  margin-top: 0.5rem;
}

.success-icon {
  color: #86EFAC;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.success-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.success-text strong { color: var(--cream); font-size: 0.95rem; }
.success-text span { color: var(--cream-2); font-size: 0.85rem; line-height: 1.5; }

.waitlist-error {
  font-size: 0.85rem;
  color: #FCA5A5;
  padding: 0.75rem;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 8px;
}
.waitlist-error a { color: var(--ink); }

/* === FOOTER LINKS === */
.footer-link {
  color: var(--cream-3);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--cream); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner,
  .manifesto-inner { grid-template-columns: 1fr; }

  .hero { padding: 6rem 2rem 4rem; }
  .hero-visual { order: -1; }
  .ink-globe { max-width: 280px; margin: 0 auto; }

  .stack-grid,
  .problem-grid { grid-template-columns: 1fr; }

  .stack-card { flex-direction: column; }
  .stack-visual { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card--hero { grid-column: span 1; flex-direction: column; gap: 2rem; }
  .feature-visual { min-width: unset; max-width: 100%; }

  .product-cards { grid-template-columns: 1fr; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .section-headline { font-size: 2.5rem; }
  .hero-headline { font-size: 4rem; }
  .stat-row { gap: 0.75rem; }
  .stat-num { font-size: 1.2rem; }
  .waitlist-headline { font-size: 2.5rem; }
  .form-row--half { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}