/* ================================================
   SHED — Clean Sinks. Every Shave.
   Design System
   ================================================ */

:root {
  --cream:        #F3EEE3;
  --cream-dark:   #E8E0D0;
  --cream-light:  #FAF7F2;
  --ink:          #1A1A1A;
  --ink-60:       rgba(26, 26, 26, 0.6);
  --ink-30:       rgba(26, 26, 26, 0.3);
  --ink-10:       rgba(26, 26, 26, 0.08);
  --green:        #5C9E78;
  --green-light:  #EAF4EE;
  --green-dark:   #3D7A57;
  --orange:       #D97B2E;
  --orange-hover: #C26A1E;
  --white:        #FFFFFF;
  --font:         'Inter', -apple-system, sans-serif;
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:       0 4px 24px rgba(26,26,26,0.08);
  --shadow-lg:    0 12px 48px rgba(26,26,26,0.14);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* ---- Container ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(217,123,46,0.25);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,123,46,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--ink-30);
  transition: border-color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(243, 238, 227, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-10);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav-logo-reg {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 600;
  opacity: 0.5;
}
.nav-cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 20px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-bg-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(180px, 30vw, 420px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ink-10);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 40px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.headline-accent {
  color: var(--green);
  display: inline-block;
  position: relative;
}
.headline-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  opacity: 0.25;
  border-radius: 2px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-60);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 28px;
}
.hero-product-tag {
  display: inline-flex;
  margin-bottom: 36px;
}
.tag-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 8px 16px;
  border-radius: 100px;
}
.hero-btn { font-size: 0.95rem; padding: 18px 36px; }

/* MESH LINER ILLUSTRATION */
.sheet-illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.mesh-liner {
  width: 200px;
  height: 160px;
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  border: 1.5px solid var(--green);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}
.mesh-perf-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(92,158,120,0.35) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  border-radius: 9px;
}
.mesh-drain-hole {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: rgba(92,158,120,0.08);
}
.mesh-brand {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--green);
  white-space: nowrap;
}
.mesh-brand sup {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 600;
}
/* Water drop animations */
.mesh-water-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.water-drop {
  position: absolute;
  width: 5px;
  height: 7px;
  border-radius: 50% 50% 60% 60%;
  background: rgba(92,158,120,0.5);
  opacity: 0;
}
.wd1 { left: 25%; top: 40%; animation: dropFall 2.4s ease-in infinite 0s; }
.wd2 { left: 55%; top: 35%; animation: dropFall 2.4s ease-in infinite 0.8s; }
.wd3 { left: 40%; top: 45%; animation: dropFall 2.4s ease-in infinite 1.6s; }
@keyframes dropFall {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(18px); }
}
.mesh-hair-group {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 50px;
}
.hair-svg { width: 100%; height: 100%; }
.product-specs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.spec-dot { color: var(--green); }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  width: 340px;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-30);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink-30), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ================================================
   SECTIONS (shared)
   ================================================ */
.section { padding: 96px 0; }
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}

/* Animate in */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   PROBLEM
   ================================================ */
.problem-section {
  background: var(--ink);
  color: var(--cream);
}
.problem-section [data-animate] { --ink-60: rgba(243,238,227,0.55); }
.problem-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.problem-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  padding-top: 6px;
}
.problem-statements { display: flex; flex-direction: column; gap: 40px; }
.problem-item { display: flex; gap: 28px; align-items: flex-start; }
.problem-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  flex-shrink: 0;
  padding-top: 4px;
}
.problem-item p {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(243,238,227,0.75);
  line-height: 1.65;
}
.divider-text {
  border-top: 1px solid rgba(243,238,227,0.12);
  padding-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(243,238,227,0.35);
  line-height: 1.2;
}
.divider-accent { color: var(--orange); }

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-section { background: var(--cream-light); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 72px;
}
.step {
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-10);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.step--arrow {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
.step--arrow:hover { transform: none; box-shadow: none; }
.step-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 20px;
}
.step-icon { height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }

/* Step sheet illustrations */
.step-sheet {
  width: 80px;
  height: 64px;
  background: #fff;
  border-radius: 6px;
  border: 1.5px solid var(--green);
  position: relative;
  overflow: hidden;
}
/* Mesh liner step */
.step-sheet--mesh {
  background-image: radial-gradient(circle, rgba(92,158,120,0.3) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
}
.step-drain-center {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
}
/* Flow step */
.step-sheet--flow { background: rgba(255,255,255,0.5); }
.flow-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px;
}
.flow-drop {
  width: 4px;
  height: 6px;
  border-radius: 50% 50% 60% 60%;
  background: var(--green);
  opacity: 0;
}
.fa1 { animation: dropFall 1.6s ease-in infinite 0s; }
.fa2 { animation: dropFall 1.6s ease-in infinite 0.5s; }
.fa3 { animation: dropFall 1.6s ease-in infinite 1.0s; }
.flow-hair-line {
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: var(--ink-30);
  border-radius: 1px;
}
.flow-hair-line::before {
  content: '';
  position: absolute;
  left: 20%;
  top: -2px;
  width: 30%;
  height: 5px;
  background: var(--ink-30);
  border-radius: 50%;
  opacity: 0.5;
}
.toss-icon { width: 52px; height: 52px; }
.step-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--ink-60);
  line-height: 1.6;
}

.trim-fold-gone {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.tfg-word {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink-10);
  line-height: 1;
  transition: color 0.3s;
}
.tfg-word:hover { color: var(--ink-30); }
.tfg-gone { color: var(--green); opacity: 0.7; }
.tfg-gone:hover { color: var(--green); opacity: 1; }

/* ================================================
   FEATURES
   ================================================ */
.features-section { background: var(--cream); }
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.features-intro {
  font-size: 1rem;
  color: var(--ink-60);
  line-height: 1.7;
  max-width: 340px;
}
.features-right { display: flex; flex-direction: column; gap: 32px; }
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-10);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-text h4 {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 0.875rem;
  color: var(--ink-60);
  line-height: 1.5;
}

/* ================================================
   MARQUEE
   ================================================ */
.proof-section {
  padding: 40px 0;
  background: var(--cream-dark);
  overflow: hidden;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.proof-marquee-wrap { overflow: hidden; }
.proof-marquee { display: flex; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-item {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding: 0 24px;
}
.marquee-sep {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.82rem;
  padding: 0 8px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.proof-marquee:hover .marquee-track { animation-play-state: paused; }

/* ================================================
   PRICING
   ================================================ */
.pricing-section { background: var(--cream-light); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.pricing-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}
.pricing-badge--featured {
  background: rgba(92,158,120,0.2);
  color: var(--green);
}
.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-per {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.5;
}
.pricing-desc {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.pricing-features svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ================================================
   SIGNUP
   ================================================ */
.signup-section {
  background: var(--cream);
  padding: 120px 0;
}
.signup-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.signup-headline {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.signup-accent { color: var(--green); }
.signup-sub {
  font-size: 1rem;
  color: var(--ink-60);
  line-height: 1.65;
  margin-bottom: 32px;
}
.signup-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-60);
}
.proof-avatars { display: flex; }
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -8px;
}
.av1 { background: linear-gradient(135deg, #7DB899, #4A8D64); margin-left: 0; }
.av2 { background: linear-gradient(135deg, #D4A574, #B8845A); }
.av3 { background: linear-gradient(135deg, #8BA9C9, #5A7EA8); }

/* FORM */
.signup-right { position: relative; }
.signup-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--ink-10);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--ink-10);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input::placeholder { color: var(--ink-30); }
.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(92,158,120,0.15);
  background: #fff;
}
.form-input.error { border-color: #E05C5C; box-shadow: 0 0 0 3px rgba(224,92,92,0.12); }
.form-error { font-size: 0.75rem; color: #E05C5C; font-weight: 500; min-height: 18px; }
.form-fine {
  font-size: 0.72rem;
  color: var(--ink-30);
  line-height: 1.5;
  text-align: center;
}

/* Success State */
.signup-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--ink-10);
  box-shadow: var(--shadow-lg);
  gap: 16px;
}
.signup-success.show { display: flex; }
.success-icon { width: 56px; height: 56px; }
.success-icon svg { width: 100%; height: 100%; }
.success-title { font-size: 2rem; font-weight: 900; letter-spacing: -0.02em; }
.success-sub { font-size: 0.95rem; color: var(--ink-60); line-height: 1.6; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.footer-logo sup { font-size: 0.45em; vertical-align: super; opacity: 0.5; font-weight: 600; }
.footer-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,238,227,0.4);
}
.footer-links { display: flex; gap: 24px; margin-top: 8px; }
.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(243,238,227,0.45);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(243,238,227,0.25);
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ================================================
   VS COMPARISON TABLE
   ================================================ */
.vs-section { background: var(--cream-light); }
.vs-table {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-10);
  box-shadow: var(--shadow);
}
.vs-header {
  display: grid;
  grid-template-columns: 1fr 120px 120px 140px;
  background: var(--ink);
  color: var(--cream);
  padding: 0;
}
.vs-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px 140px;
  border-top: 1px solid var(--ink-10);
  transition: background var(--transition);
}
.vs-row:hover { background: rgba(92,158,120,0.04); }
.vs-col {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}
.vs-col-feature {
  font-weight: 600;
  color: var(--ink);
}
.vs-header .vs-col-feature { color: rgba(243,238,227,0.5); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.vs-col-old {
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-60);
  background: rgba(255,255,255,0.5);
  border-left: 1px solid var(--ink-10);
}
.vs-header .vs-col-old {
  color: rgba(243,238,227,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border-left: 1px solid rgba(243,238,227,0.1);
}
.vs-col-shed {
  justify-content: center;
  background: var(--green-light);
  border-left: 2px solid var(--green);
  font-weight: 700;
}
.vs-header .vs-col-shed {
  background: var(--green);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.vs-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}
.vs-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(224,92,92,0.12);
  color: #D65C5C;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}
.vs-meh {
  color: var(--ink-30);
  font-size: 1rem;
  font-weight: 700;
}
.vs-yes-neutral {
  color: var(--ink-30);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 48px;
  }
  .hero-content { padding-right: 0; }
  .hero-bg-text { font-size: clamp(100px, 40vw, 220px); }
  .hero-visual { justify-content: flex-start; }
  .problem-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 72px;
  }
  .step--arrow { transform: rotate(90deg); }
  .features-layout { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .signup-wrap { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 48px; }
  .section { padding: 72px 0; }
  .signup-form { padding: 28px 20px; }
  .product-card { width: 280px; padding: 28px; }
  .exp-stats { flex-direction: column; gap: 24px; align-items: center; }
  .exp-stat-divider { width: 60px; height: 1px; }
}

/* ================================================
   EXPERIENCE STATEMENT
   ================================================ */
.experience-section {
  background: var(--cream-dark);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.experience-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.exp-quote-mark {
  font-size: 7rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: -8px;
  font-family: Georgia, serif;
  user-select: none;
}
.exp-quote {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  border: none;
  font-style: normal;
}
.exp-quote em {
  color: var(--green);
  font-style: italic;
}
.exp-attribution {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.exp-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.exp-stat {
  text-align: center;
  flex: 1;
  max-width: 180px;
}
.exp-stat-num {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.exp-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-60);
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.exp-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--ink-10);
  flex-shrink: 0;
}

