/* =========================================
   HOLDOFF — Landing Page Stylesheet
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FAF6F0;
  --fg: #2A2522;
  --accent: #C97B5D;
  --accent-warm: #E8A87C;
  --accent-deep: #9B4F32;
  --muted: #8A7F79;
  --border: #E5DED4;
  --surface: #F2EDE5;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;
}

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

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

em {
  font-style: italic;
  color: var(--accent);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  text-decoration: none;
  flex: 1;
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  padding: 0.4rem 1rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--accent);
  color: #fff;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__auth {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav__user-email {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav__logout {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s;
}

.nav__logout:hover {
  color: var(--accent);
}

.hero__cta {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  border-radius: 6px;
  padding: 0.9rem 2rem;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}

.hero__cta:hover {
  background: var(--accent-deep);
}

/* Secondary "See it in action" link in hero */
.hero__examples-link {
  display: inline-block;
  margin-top: 1rem;
  margin-left: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.hero__examples-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Detox secondary CTA in hero */
.hero__detox-link {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.hero__detox-link:hover { opacity: 1; }

/* --- Section Eyebrow --- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(200, 123, 93, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 30% 80%, rgba(232, 168, 124, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  border-radius: 0;
}

.hero__inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* =========================================
   THE PROBLEM
   ========================================= */
.the-problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3xl) 2rem;
}

.the-problem__inner {
  max-width: 680px;
  margin: 0 auto;
}

.the-problem__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 3rem;
}

.the-problem__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 2.5rem;
  letter-spacing: -0.03em;
}

.the-problem__body p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.the-problem__body p:last-child {
  margin-bottom: 0;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  padding: var(--space-3xl) 2rem;
}

.how-it-works__inner {
  max-width: 820px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: var(--space-xl);
  line-height: 1.15;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  align-items: start;
}

.step__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 0.25rem;
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.step__content p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.step__divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* =========================================
   THREE FEATURES
   ========================================= */
.features {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-3xl) 2rem;
}

.features__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features .section-eyebrow {
  color: var(--accent-warm);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
}

.feature-card__icon {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(250, 246, 240, 0.6);
  line-height: 1.65;
}

/* =========================================
   PHILOSOPHY
   ========================================= */
.philosophy {
  background: var(--accent);
  padding: var(--space-3xl) 2rem;
}

.philosophy__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.philosophy__quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

.philosophy__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.philosophy__caption {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

/* =========================================
   THE TRUTH
   ========================================= */
.the-truth {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 2rem;
}

.the-truth__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.truth-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.truth-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =========================================
   CLOSING
   ========================================= */
.closing {
  padding: var(--space-3xl) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(200, 123, 93, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.closing__sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

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

.footer__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer__spirals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.footer__spirals-index {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  width: 100%;
  margin-bottom: 0.25rem;
}

.footer__spirals-link {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
}

.footer__spirals-link:hover { color: var(--accent); }

.footer__legal {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer__cols {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 120px;
}

.footer__col-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer__col-link:hover { color: var(--accent); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .nav {
    padding: 1.25rem 1.5rem;
  }

  .hero {
    padding: 7rem 1.5rem 5rem;
  }

  .hero__headline {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 0;
  }

  .step__number {
    font-size: 2.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .truth-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .philosophy__quote {
    font-size: 1.5rem;
  }

  .the-problem,
  .how-it-works,
  .features,
  .philosophy,
  .the-truth,
  .closing,
  .footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 480px) {
  .the-problem__heading {
    font-size: 1.6rem;
  }

  .footer__tagline {
    font-size: 0.9rem;
  }
}

/* =========================================
   HERO — WAITLIST INLINE FORM
   ========================================= */
.hero__sub2 {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.hero__waitlist {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.hero__waitlist-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.hero__waitlist-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__waitlist-input {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}

.hero__waitlist-input:focus {
  border-color: var(--accent);
}

.hero__waitlist-btn {
  padding: 0.65rem 1.25rem;
  background: transparent;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.hero__waitlist-btn:hover {
  background: var(--accent);
  color: #fff;
}

.hero__waitlist-confirm {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* =========================================
   FOOTER — CONTACT LINK
   ========================================= */
.footer__contact {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--border);
}

.footer__contact:hover {
  color: var(--accent);
}

/* =========================================
   SANDBOX TRIAL
   ========================================= */
.sandbox {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.sandbox__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.sandbox__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.sandbox__heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 2rem;
}

.sandbox__input-row {
  margin-bottom: 1rem;
}

.sandbox__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.sandbox__textarea:focus {
  border-color: var(--accent);
}

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

.sandbox__actions {
  display: flex;
  justify-content: center;
}

.sandbox__btn {
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.sandbox__btn:hover { background: var(--accent-deep); }
.sandbox__btn:disabled { opacity: 0.6; cursor: not-allowed; }

.sandbox__verdict-zone {
  margin-top: 1.5rem;
  text-align: left;
}

.sandbox-verdict {
  border-radius: 8px;
  padding: 1.25rem;
}

.sandbox-verdict--safe {
  background: rgba(90, 143, 106, 0.1);
  border: 1px solid rgba(90, 143, 106, 0.3);
}

.sandbox-verdict__icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.sandbox-verdict__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #3A6B47;
  margin-bottom: 0.35rem;
}

.sandbox-verdict__note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 0.5rem;
}

/* =========================================
   SANDBOX INTERCEPT MODAL
   ========================================= */
.sandbox-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(42, 37, 34, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
}

.sandbox-modal.is-open { display: flex; }

.sandbox-modal__card {
  background: var(--bg);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 12px 48px rgba(42, 37, 34, 0.22);
  position: relative;
  overflow: hidden;
}

.sandbox-modal__body {
  margin-bottom: 1.5rem;
}

.sandbox-modal__spiral-icon {
  margin: 0 auto 1.25rem;
  width: 48px;
  height: 48px;
}

.sandbox-modal__headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.sandbox-modal__sub {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Countdown — large number overlay on the card */
.sandbox-modal__card::before {
  content: attr(data-countdown);
  display: none;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201, 123, 93, 0.12);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.04em;
}

.sandbox-modal__body--counting .sandbox-modal__card::before {
  display: block;
}

/* Countdown number shown inline */
.sandbox-modal__body--counting::after {
  content: attr(data-countdown);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 0.75rem;
}

/* Behavioral profile */
.sandbox-modal__profile {
  margin: 1.25rem 0;
}

.sandbox-modal__badge {
  display: inline-block;
  background: rgba(201, 123, 93, 0.12);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.sandbox-modal__profile-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--fg);
  line-height: 1.55;
}

.sandbox-modal__final {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.sandbox-modal__footer {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.sandbox-modal__cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: transparent;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.sandbox-modal__cta:hover {
  background: var(--accent);
  color: #fff;
}

/* =========================================
   SANDBOX PAYWALL CTA
   ========================================= */
.sandbox-paywall {
  text-align: center;
  padding: 3rem 2rem 4rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.sandbox-paywall__text {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.sandbox-paywall__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  border-radius: 6px;
  padding: 0.85rem 2rem;
  transition: background 0.15s;
  margin-bottom: 0.75rem;
}

.sandbox-paywall__cta:hover { background: var(--accent-deep); }

.sandbox-paywall__note {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .sandbox {
    padding: 4rem 1.5rem;
  }

  .sandbox-modal__card {
    padding: 2rem 1.5rem;
  }
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(42, 37, 34, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
}

.contact-modal.is-open {
  display: flex;
}

.contact-modal__card {
  background: #FAF6F0;
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  max-width: 420px;
  width: 92%;
  box-shadow: 0 8px 32px rgba(42, 37, 34, 0.18);
}

.contact-modal__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2A2522;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.contact-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #8A7F79;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.15s;
}

.contact-modal__close:hover {
  color: #2A2522;
}

.contact-modal__field {
  margin-bottom: 1rem;
}

.contact-modal__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #8A7F79;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-modal__input,
.contact-modal__textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #E5DED4;
  border-radius: 6px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #2A2522;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.contact-modal__input:focus,
.contact-modal__textarea:focus {
  border-color: #C97B5D;
}

.contact-modal__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-modal__submit {
  width: 100%;
  padding: 0.75rem;
  background: #C97B5D;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.15s;
}

.contact-modal__submit:hover {
  background: #9B4F32;
}

.contact-modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-modal__success {
  color: #5A8F6A;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
}

.contact-modal__error {
  color: #C05A4A;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  text-align: center;
}

@media (max-width: 480px) {
  .contact-modal__card {
    padding: 1.75rem 1.25rem;
  }
}

/* =========================================
   WHO IT'S FOR
   ========================================= */
.who-its-for {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-3xl) 2rem;
}

.who-its-for__inner {
  max-width: 720px;
  margin: 0 auto;
}

.who-its-for .section-eyebrow {
  color: var(--accent-warm);
}

.who-its-for__block {
  margin-top: 2rem;
}

.who-its-for__copy {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 1.25rem;
}

.who-its-for__sub {
  font-size: 1.1rem;
  color: rgba(250, 246, 240, 0.65);
  line-height: 1.7;
}

/* =========================================
   SOCIAL PROOF
   ========================================= */
.social-proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 2rem;
}

.social-proof__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.proof-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
}

/* Placeholder cards are styled differently from real ones */
.proof-card--placeholder {
  opacity: 0.45;
  border-style: dashed;
}

.proof-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.proof-card__author {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* =========================================
   WAITLIST CTA SECTION
   ========================================= */
.waitlist-cta {
  background: var(--accent);
  padding: var(--space-3xl) 2rem;
  text-align: center;
}

.waitlist-cta__inner {
  max-width: 560px;
  margin: 0 auto;
}

.waitlist-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.waitlist-cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}

.waitlist-cta__form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist-cta__input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  background: rgba(255,255,255,0.92);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg);
  outline: none;
}

.waitlist-cta__input:focus {
  background: #fff;
}

.waitlist-cta__btn {
  padding: 0.75rem 1.5rem;
  background: var(--fg);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.waitlist-cta__btn:hover {
  opacity: 0.85;
}

.waitlist-cta__confirm {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-top: 1rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 80px 24px;
  background: #F5F0EB;
}

.testimonials__inner {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials .section-eyebrow {
  text-align: center;
}

.testimonials .section-heading {
  text-align: center;
  font-size: 28px;
  line-height: 1.3;
  color: #2A1F1A;
  font-weight: 600;
  margin: 0 auto 48px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(42, 31, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.6;
  color: #2A1F1A;
  font-style: italic;
  flex: 1;
}

.testimonial-card__attr {
  font-size: 12px;
  color: #8B7D74;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* responsive — social proof and who-its-for on mobile */
@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .who-its-for,
  .social-proof,
  .waitlist-cta {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .testimonials {
    padding: 60px 16px;
  }
  .testimonials .section-heading {
    font-size: 22px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card {
    padding: 20px;
  }
}