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

:root {
  --bg: #FAFAF8;
  --text: #1a1a1a;
  --text-secondary: #4a4a4a;
  --accent: #6B5CE7;
  --accent-light: #E8E4FF;
  --accent-dark: #4A3DB5;
  --border: #E5E3DF;
  --card-bg: #FFFFFF;
  --warm-gray: #F5F4F1;
  --success: #2E8B57;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero-wrapper {
  background: #0D0B1A;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.hero-video-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(13,11,26,0.4) 0%, rgba(13,11,26,0.9) 70%, rgba(13,11,26,1) 100%);
}
.hero {
  position: relative;
  z-index: 2;
  padding: 48px 0 56px;
  text-align: center;
}
.hero-logo {
  width: 140px;
  margin: 0 auto 24px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.hero-disgust {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero-disgust br + br { display: none; }
.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero .subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(107,92,231,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107,92,231,0.5);
}
.hero-secondary {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

/* ===== TESTIMONIALS (MAIN EVENT) ===== */
.testimonials-section {
  padding: 64px 0;
  background: var(--bg);
}
.section-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
  line-height: 1.3;
}
.section-sub {
  font-size: 17px;
  text-align: center;
  color: var(--text-secondary);
  max-width: 560px;
  margin: -24px auto 40px;
  line-height: 1.6;
}

.story-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.story-featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.story-featured .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-featured .story-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-result {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.3;
}
.story-card .stars {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.story-card blockquote {
  font-size: 15px;
  font-style: italic;
  font-family: 'Libre Baskerville', serif;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.story-card .attribution {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.story-grid .story-card {
  margin-bottom: 0;
}
.story-grid .story-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.story-grid .story-content {
  padding: 20px 24px 24px;
}
.story-grid .story-result {
  font-size: 18px;
}

.mid-cta {
  display: block;
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.mid-cta:hover { text-decoration: underline; }

/* ===== RESULTS STRIP ===== */
.results-strip {
  background: #0D0B1A;
  padding: 40px 0;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.result-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 42px;
  font-weight: 700;
  color: #C4B5FD;
  display: block;
  margin-bottom: 4px;
}
.result-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* ===== VIDEO BLOCKS ===== */
.video-block {
  margin: 48px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(107, 92, 231, 0.12);
  border: 1px solid var(--border);
}
.video-block video {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== DISCOMFORT IMAGE ===== */
.discomfort-section {
  padding: 48px 0 0;
}
.discomfort-img {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.discomfort-caption {
  text-align: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 20px;
  line-height: 1.5;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
  padding: 64px 0;
  background: var(--warm-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(107,92,231,0.1);
}
.product-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}
.product-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card img {
  width: 160px;
  height: auto;
  margin: 12px auto 20px;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}
.product-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  margin-bottom: 4px;
}
.product-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.product-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s;
}
.product-btn:hover { transform: translateY(-2px); }

/* ===== SCIENCE SECTION ===== */
.science-section {
  padding: 64px 0;
}
.science-visual {
  margin-bottom: 40px;
}
.visual-placeholder {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(107, 92, 231, 0.08);
}
.visual-placeholder img {
  display: block;
  width: 100%;
  height: auto;
}
.science-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.science-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sp-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.science-point strong {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}
.science-point p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
  color: white;
}
.final-cta h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  color: white;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .cta-btn {
  display: inline-block;
  background: white;
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.final-cta .cta-btn:hover { transform: translateY(-2px); }

.disclosure {
  text-align: center;
  padding: 40px 0;
  font-size: 12px;
  color: #999;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .hero { padding: 36px 0 40px; }
  .hero-logo { width: 110px; }
  .hero h1 { font-size: 28px; }
  .hero-disgust { font-size: 15px; }
  .hero .subtitle { font-size: 15px; }
  .hero-cta { padding: 14px 32px; font-size: 15px; }

  .section-heading { font-size: 22px; margin-bottom: 28px; }

  .story-featured { grid-template-columns: 1fr; }
  .story-featured .story-image img { height: 220px; }
  .story-featured .story-content { padding: 24px; }
  .story-result { font-size: 18px; }

  .story-grid { grid-template-columns: 1fr; }
  .story-grid .story-image img { height: 180px; }

  .results-grid { grid-template-columns: 1fr; gap: 16px; }
  .result-number { font-size: 32px; }
  .results-strip { padding: 32px 0; }

  .discomfort-caption { font-size: 16px; }

  .product-cards { grid-template-columns: 1fr; }
  .product-card img { width: 140px; }

  .final-cta { padding: 36px 24px; }
  .final-cta h2 { font-size: 22px; }
  .final-cta .cta-btn { padding: 14px 28px; font-size: 15px; }

  .video-block { margin: 32px 0; }
}
