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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  background: #F4F3EE;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ===== NAV ===== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #F4F3EE;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.nav-logo-mark {
  width: 8px;
  height: 8px;
  background: #2D5F4F;
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0f172a;
}

.nav-signin {
  padding: 8px 20px;
  background: #0f172a;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-signin:hover {
  background: #1e293b;
  color: #fff !important;
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  background: #fff;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

/* Hero visual — image showcase */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.08;
  color: #0f172a;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 560px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #0a0a0a;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-btn:hover {
  background: #1F4538;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 95, 79, 0.3);
}

/* ===== FAQ ===== */
.faq {
  padding: 120px 0;
  background: #fafafa;
  border-top: 1px solid #f1f5f9;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-item summary {
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: #94a3b8;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 0;
  background: #0f172a;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-btn-white {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #0f172a;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* ===== FOOTER ===== */
.landing-footer {
  padding: 32px 0;
  background: #F4F3EE;
  border-top: none;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0f172a;
}

.footer-logo-mark {
  width: 6px;
  height: 6px;
  background: #2D5F4F;
  border-radius: 50%;
  display: inline-block;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #64748b;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #0f172a;
}

.footer-copy {
  color: #475569;
}

/* ===== AUTH MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 44px 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.modal-box h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.modal-box p {
  color: #64748b;
  margin-bottom: 24px;
  font-size: 0.925rem;
}

.modal-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 14px;
  color: #0f172a;
}

.modal-input:focus {
  border-color: #0f172a;
}

.modal-input::placeholder {
  color: #94a3b8;
}

.modal-btn {
  width: 100%;
  padding: 13px;
  background: #0f172a;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}

.modal-btn:hover {
  background: #1e293b;
}

.modal-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-toggle {
  margin-top: 20px;
  font-size: 0.875rem;
  color: #94a3b8;
}

.modal-toggle a {
  color: #0f172a;
  font-weight: 600;
}

.modal-toggle a:hover {
  text-decoration: underline;
}

.modal-link {
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 500;
}

.modal-link:hover {
  color: #1e293b;
  text-decoration: underline;
}

.modal-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.875rem;
  margin-bottom: 16px;
  text-align: left;
}

/* ===== CONTACT MODAL ===== */
.contact-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  line-height: 1.5;
}

.contact-success {
  text-align: center;
  padding: 40px 20px;
}

.contact-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #10b981;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-success h2 {
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-success p {
  color: #64748b;
  font-size: 0.95rem;
}

/* ===== TERMS CHECKBOX ===== */
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-bottom: 16px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.4;
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #0f172a;
  cursor: pointer;
}

.terms-checkbox a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

/* ===== ONBOARDING LABEL (used by onboarding page) ===== */
.onboarding-label {
  display: block;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .faq {
    padding: 80px 0;
  }
  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: 1.75rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .nav-links a:not(.nav-signin) {
    display: none;
  }

  .modal-box {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }
}

/* ============================================================
   REBUILT LANDING PAGE — NEW SECTIONS
   Design system: Inter 400/500/600, 0.5px borders, no shadows
   ============================================================ */


/* ===== SHARED ===== */
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* ===== HERO OVERRIDES ===== */
.hero {
  padding: 80px 0 56px !important;
  background: #F4F3EE !important;
}

.hero-split {
  gap: 48px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: #475569;
  margin-bottom: 8px;
  max-width: none;
}

.hero-cred {
  font-size: 13px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero .cta-btn,
.pricing-section .cta-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #0f172a;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: none;
}

.hero .cta-btn:hover,
.pricing-section .cta-btn:hover {
  background: #1e293b;
  transform: none;
  box-shadow: none;
}

.cta-btn-white {
  display: inline-block;
  padding: 12px 20px;
  background: #ffffff;
  color: #0f172a;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: none;
}

.cta-btn-white:hover {
  background: #f1f5f9;
  transform: none;
  box-shadow: none;
}

.hero-tagstrip {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EDEBE3;
  border: 0.5px solid #d9d5c8;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 400;
  color: #475569;
}

.hero-tag svg {
  color: #94a3b8;
  flex-shrink: 0;
}

/* Hero dashboard */
.hero-dashboard {
  background: #EDEBE3;
  border: none;
  border-radius: 12px;
  padding: 16px;
  box-shadow: none;
  width: 100%;
}

.hero-dash-title {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 10px;
}

.hero-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-dash-card {
  background: #ffffff;
  border: 0.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
}

.hero-dash-card--eric {
  border-left: 3px solid #2D5F4F;
}

.hero-dash-label {
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 4px;
}

.hero-dash-value {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 4px;
}

.hero-dash-meta {
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
  margin-top: 4px;
}

.hero-dash-status--good {
  font-size: 18px;
  font-weight: 500;
  color: #10B981;
}

.hero-dash-status--watch {
  font-size: 18px;
  font-weight: 500;
  color: #d97706;
}

.hero-dash-status--build {
  font-size: 18px;
  font-weight: 500;
  color: #2D5F4F;
}

/* ===== S2: THE GAP ===== */
.the-gap {
  padding: 56px 0;
  background: #F4F3EE;
}

.the-gap-header {
  text-align: left;
  max-width: none;
  margin: 0;
}

.the-gap h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.the-gap-body {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  font-weight: 400;
}

.gap-chart {
  max-width: 600px;
  margin: 20px 0 0;
}

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

.gap-caption {
  font-size: 12px;
  font-style: italic;
  color: #94a3b8;
  margin-top: 8px;
  font-weight: 400;
  text-align: left;
}

/* ===== S3: THE FRAME ===== */
.the-frame {
  padding: 56px 0;
  background: #F4F3EE;
}

.the-frame h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 20px;
}

.frame-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.frame-card {
  background: #ffffff;
  border: 0.5px solid #d9d5c8;
  border-radius: 12px;
  padding: 16px 20px;
}

.frame-num {
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 8px;
}

.frame-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.frame-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

/* ===== S4: ERIC ===== */
.eric-section {
  padding: 56px 0;
  background: #F4F3EE;
}

.eric-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 8px;
}

.eric-sub {
  font-size: 17px;
  color: #475569;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 12px;
}

.eric-body {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  font-weight: 400;
  max-width: 640px;
}

.eric-card {
  background: #EDEBE3;
  border: none;
  border-radius: 12px;
  padding: 16px;
  box-shadow: none;
  max-width: 640px;
  margin: 16px 0 0;
}

.eric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.eric-header-label {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
}

.eric-header-meta {
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
  margin-top: 2px;
}

.eric-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
}

.eric-status-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  flex-shrink: 0;
}

.eric-dialogue {
  background: #ffffff;
  border: 0.5px solid #d9d5c8;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}

.eric-dialogue-line {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 6px;
}

.eric-dialogue-line:last-child {
  margin-bottom: 0;
}

.eric-dialogue-speaker {
  font-size: 11px;
  font-weight: 500;
  color: #0f172a;
  min-width: 32px;
  display: inline-block;
}

.eric-waveform {
  margin-bottom: 0;
}

.eric-waveform svg {
  width: 100%;
  height: 36px;
}

.eric-data {
  border-top: 0.5px solid #e2e8f0;
  padding-top: 12px;
  margin-top: 12px;
}

.eric-data-label {
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 6px;
}

.eric-data-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.eric-pill {
  display: inline-block;
  background: #EDEBE3;
  border: 0.5px solid #d9d5c8;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 400;
  color: #475569;
}

.eric-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
  max-width: 640px;
}

.eric-phase-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 6px;
}

.eric-phase p {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
}

.eric-closing {
  font-size: 13px;
  font-style: italic;
  color: #94a3b8;
  margin-top: 20px;
  font-weight: 400;
  text-align: left;
}

/* ===== S5: ANALYSES ===== */
.analyses-section {
  padding: 56px 0;
  background: #F4F3EE;
}

.analyses-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 24px;
}

.analysis-block {
  margin-bottom: 32px;
}

.analysis-block:last-child {
  margin-bottom: 0;
}

.analysis-block h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
}

.analysis-block > p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
  max-width: 640px;
  margin: 0 0 12px;
}

.analysis-card {
  background: #ffffff;
  border: 0.5px solid #d9d5c8;
  border-radius: 12px;
  padding: 14px;
  box-shadow: none;
  max-width: 640px;
}

.analysis-card-row {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}

.analysis-card-col {
  flex: 1;
}

.analysis-metric-label {
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  text-transform: none;
  letter-spacing: normal;
}

.analysis-grade {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin: 4px 0;
}

.analysis-score {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  margin: 4px 0;
}

.analysis-trend {
  width: 100%;
  height: 40px;
  margin-top: 8px;
}

.analysis-trend-label {
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
  text-align: center;
  margin-top: 4px;
}

.analysis-card-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 640px;
}

.analysis-status {
  font-size: 14px;
  font-weight: 500;
  margin: 4px 0 8px;
}

.analysis-status--ok {
  color: #10B981;
}

.analysis-status--watch {
  color: #d97706;
}

.analysis-nutrient {
  font-size: 12px;
  font-weight: 400;
  color: #475569;
  margin-bottom: 4px;
  margin-top: 8px;
}

.analysis-bar {
  height: 4px;
  background: #f1f5f9;
  border-radius: 2px;
  overflow: hidden;
}

.analysis-bar-fill {
  height: 100%;
  background: #10B981;
  border-radius: 2px;
}

.analysis-bar-fill--watch {
  background: #d97706;
}

.analysis-card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.analysis-phase-badge {
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 4px;
}

.analysis-score-big {
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
}

.analysis-components {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.analysis-component-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
  color: #475569;
  margin-bottom: 4px;
}

/* ===== S6: WHAT STEADY ISN'T ===== */
.isnt-section {
  padding: 56px 0;
  background: #F4F3EE;
}

.isnt-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0;
}

.isnt-list {
  max-width: 640px;
  margin: 24px 0 0;
}

.isnt-line {
  font-size: 16px;
  color: #0f172a;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 16px;
}

.isnt-line:last-child {
  margin-bottom: 0;
}

/* ===== S7: HOW IT WORKS ===== */
.how-section {
  padding: 56px 0;
  background: #F4F3EE;
}

.how-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0;
}

.steps-list {
  max-width: 560px;
  margin: 24px 0 0;
}

.step-item {
  background: #EDEBE3;
  border: none;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.step-num {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  flex-shrink: 0;
  min-width: 28px;
}

.step-text {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

/* ===== S8: PRICING ===== */
.pricing-section {
  padding: 56px 0;
  background: #F4F3EE;
}

.pricing-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.pricing-body {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  font-weight: 400;
  max-width: 560px;
}

.pricing-card {
  background: #ffffff;
  border: 0.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 24px;
  max-width: 480px;
  margin: 16px auto;
  box-shadow: none;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-badge {
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
}

.pricing-price-block {
  text-align: right;
}

.pricing-price {
  font-size: 28px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1;
}

.pricing-price-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
  margin-top: 2px;
}

.pricing-divider {
  border: none;
  border-top: 0.5px solid #e2e8f0;
  margin: 16px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-feature {
  padding: 0 0 0 24px;
  font-size: 13px;
  font-weight: 400;
  color: #475569;
  line-height: 1.9;
  position: relative;
}

.pricing-feature::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 500;
}

.pricing-cta-wrap {
  text-align: center;
  margin-top: 24px;
}

.pricing-cta-wrap .cta-btn {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.pricing-intent-block {
  max-width: 480px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid #E5E5E3;
  text-align: center;
}
.pricing-intent-block__copy {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 16px 0;
}
.pricing-intent-block__copy strong { color: #0a0a0a; font-weight: 600; }
.pricing-intent-block__btn {
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-intent-block__btn:hover {
  background: #1F4538;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 95, 79, 0.3);
}
.pricing-intent-block__thanks {
  margin-top: 16px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* ===== S9: FAQ ===== */
.faq {
  padding: 56px 0;
  background: #F4F3EE;
}

.faq h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0;
}

.faq-list {
  max-width: none;
  margin: 24px 0 0;
}

.faq-entry {
  padding: 14px 0;
  border-top: 0.5px solid #e2e8f0;
  border-bottom: none;
}

.faq-entry:last-child {
  border-bottom: 0.5px solid #e2e8f0;
}

.faq-q {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  margin: 0 0 6px;
}

.faq-a {
  font-size: 13px;
  font-weight: 400;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ===== S10: FINAL CTA ===== */
.final-cta {
  padding: 48px 0 !important;
  background: #0f172a !important;
  text-align: center;
  border-bottom: none;
}

.final-cta h2 {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff !important;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 12px !important;
}

.final-cta p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0 0 24px;
  max-width: none;
  line-height: 1.5;
}

/* ===== FOOTER DESC ===== */
.footer-desc {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

/* ===== RESPONSIVE: NEW SECTIONS ===== */
@media (max-width: 768px) {
  .hero {
    padding: 72px 0 40px !important;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-dash-grid {
    grid-template-columns: 1fr 1fr;
  }

  .the-gap,
  .the-frame,
  .eric-section,
  .analyses-section,
  .isnt-section,
  .how-section,
  .pricing-section {
    padding: 40px 0;
  }

  .faq {
    padding: 40px 0;
  }

  .final-cta {
    padding: 36px 0 !important;
  }

  .the-gap h2,
  .the-frame h2,
  .eric-section h2,
  .analyses-section h2,
  .isnt-section h2,
  .how-section h2,
  .pricing-section h2,
  .faq h2,
  .final-cta h2 {
    font-size: 20px;
  }

  .frame-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .eric-phases {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 64px 0 32px !important;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-dash-grid {
    grid-template-columns: 1fr;
  }

  .the-gap,
  .the-frame,
  .eric-section,
  .analyses-section,
  .isnt-section,
  .clinical-section,
  .how-section,
  .pricing-section {
    padding: 32px 0;
  }

  .faq {
    padding: 32px 0;
  }

  .final-cta {
    padding: 32px 0 !important;
  }

  .the-gap h2,
  .the-frame h2,
  .eric-section h2,
  .analyses-section h2,
  .isnt-section h2,
  .clinical-section__title,
  .how-section h2,
  .pricing-section h2,
  .faq h2,
  .final-cta h2 {
    font-size: 20px;
  }

  .eric-card {
    padding: 12px;
  }

  .pricing-card {
    padding: 20px;
  }

  .analysis-card-pair {
    grid-template-columns: 1fr;
  }

  .landing-container {
    padding: 0 16px;
  }
}

/* ===========================================================
   Clinical Section
   =========================================================== */

.clinical-section {
  padding: 56px 0;
  background: #F4F3EE;
}

.clinical-section__header {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  padding: 0 24px;
}

.clinical-section__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D5F4F;
  margin-bottom: 16px;
}

.clinical-section__title {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.clinical-section__lede {
  font-size: 17px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.clinical-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.clinical-pillar {
  background: #FFFFFF;
  border: 0.5px solid #d9d5c8;
  border-radius: 12px;
  padding: 16px 20px;
}

.clinical-pillar__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D5F4F;
  margin-bottom: 8px;
}

.clinical-pillar__title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 8px;
}

.clinical-pillar__body {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .clinical-section {
    padding: 40px 0;
  }

  .clinical-section__header {
    padding: 0 20px;
  }

  .clinical-section__title {
    font-size: 20px;
  }

  .clinical-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
