/* ========================================
   HESED — Full-screen Hero Attempt
   Using the original colour palette
   ======================================== */

:root {
  --ink: #1c1917;
  --ink-soft: rgba(28, 25, 23, 0.70);
  --parchment: #faf6f1;
  --vellum: #f5efe6;
  --sand: #e0d5c4;
  --amber: #c47c2f;
  --amber-dark: #a86520;
  --cream: #f5efe6;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--ink);
  overflow-x: hidden;
}

/* --- Typography --- */
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-sm {
  font-size: 1.2rem;
  opacity: 0.4;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2.5rem;
  display: block;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(28, 25, 23, 0.8) 0%, transparent 100%);
  pointer-events: none;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  pointer-events: auto;
}

.header-cta {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(245, 239, 230, 0.2);
  border-radius: 100px;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.header-cta:hover {
  background: rgba(245, 239, 230, 0.08);
  border-color: rgba(245, 239, 230, 0.4);
}

/* ========================================
   PANELS — Full-screen sections
   ======================================== */
.panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  scroll-snap-align: start;
}

.panel-content {
  position: relative;
  z-index: 2;
  padding: 2rem 3rem;
  max-width: 1000px;
  width: 100%;
}

/* ========================================
   PANEL: The Question
   ======================================== */
.panel-question {
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(196, 124, 47, 0.06) 0%, transparent 70%),
    var(--ink);
}

.panel-question .panel-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.question-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.question-headline em {
  font-style: italic;
  color: var(--amber);
}

.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(196, 124, 47, 0.5);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float-down 2.5s ease-in-out infinite;
}

@keyframes float-down {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.75; transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   PANEL: Legend (Person)
   ======================================== */
.panel-legend {
  overflow: hidden;
  background-color: var(--ink);
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* --- Warren Buffett --- */
.panel-buffett {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/51/Warren_Buffett_KU_Visit.jpg/1200px-Warren_Buffett_KU_Visit.jpg');
  background-position: 40% 10%;
}

.panel-buffett .panel-overlay {
  background:
    linear-gradient(to bottom, rgba(28, 25, 23, 0.15) 0%, rgba(28, 25, 23, 0.1) 35%, rgba(28, 25, 23, 0.55) 65%, rgba(28, 25, 23, 0.92) 100%),
    linear-gradient(to right, rgba(28, 25, 23, 0.4) 0%, transparent 50%);
}

/* --- Bill Clinton --- */
.panel-clinton {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Bill_Clinton.jpg/1200px-Bill_Clinton.jpg');
  background-position: center 10%;
}

.panel-clinton .panel-overlay {
  background:
    linear-gradient(to bottom, rgba(28, 25, 23, 0.15) 0%, rgba(28, 25, 23, 0.1) 35%, rgba(28, 25, 23, 0.55) 65%, rgba(28, 25, 23, 0.92) 100%),
    linear-gradient(to right, rgba(28, 25, 23, 0.4) 0%, transparent 50%);
}

/* --- Oprah Winfrey --- */
.panel-oprah {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Oprah_in_2014.jpg/1200px-Oprah_in_2014.jpg');
  background-position: center 15%;
}

.panel-oprah .panel-overlay {
  background:
    linear-gradient(to bottom, rgba(28, 25, 23, 0.15) 0%, rgba(28, 25, 23, 0.1) 35%, rgba(28, 25, 23, 0.55) 65%, rgba(28, 25, 23, 0.92) 100%),
    linear-gradient(to right, rgba(28, 25, 23, 0.4) 0%, transparent 50%);
}

/* --- Nelson Mandela --- */
.panel-mandela {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Nelson_Mandela_1994.jpg/1200px-Nelson_Mandela_1994.jpg');
  background-position: center 20%;
}

.panel-mandela .panel-overlay {
  background:
    linear-gradient(to bottom, rgba(28, 25, 23, 0.15) 0%, rgba(28, 25, 23, 0.1) 35%, rgba(28, 25, 23, 0.55) 65%, rgba(28, 25, 23, 0.92) 100%),
    linear-gradient(to right, rgba(28, 25, 23, 0.4) 0%, transparent 50%);
}

/* --- Legend content layout --- */
.legend-content {
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding-bottom: 8vh;
}

.legend-text {
  max-width: 680px;
}

.legend-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 2rem;
}

.legend-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  color: rgba(245, 239, 230, 0.75);
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.legend-insight {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--amber);
  letter-spacing: 0.01em;
  opacity: 0.7;
}

/* ========================================
   PANEL: The Answer
   ======================================== */
.panel-answer {
  background: var(--ink);
}

.panel-answer .panel-content {
  text-align: center;
  max-width: 820px;
}

.answer-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 2.5rem;
}

.answer-headline em {
  color: var(--amber);
  font-style: italic;
}

.answer-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(245, 239, 230, 0.55);
  margin-bottom: 1.25rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.answer-hook {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(245, 239, 230, 0.8);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   PANEL: CTA / Sign Up
   ======================================== */
.panel-cta {
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(196, 124, 47, 0.06) 0%, transparent 70%),
    linear-gradient(170deg, #241c15 0%, var(--ink) 100%);
}

.panel-cta .panel-content {
  text-align: center;
  max-width: 480px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.cta-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 239, 230, 0.45);
  margin-bottom: 2.5rem;
}

/* --- Waitlist Form --- */
.waitlist-box {
  margin-bottom: 2.5rem;
}

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

.input-field {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(245, 239, 230, 0.06);
  border: 1px solid rgba(245, 239, 230, 0.12);
  border-radius: 8px;
  color: var(--cream);
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
}

.input-field::placeholder {
  color: rgba(245, 239, 230, 0.3);
}

.input-field:focus {
  border-color: var(--amber);
  background: rgba(245, 239, 230, 0.08);
  box-shadow: 0 0 0 3px rgba(196, 124, 47, 0.08);
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  width: 100%;
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(196, 124, 47, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.waitlist-note {
  font-size: 0.78rem;
  color: rgba(245, 239, 230, 0.3);
  margin-top: 1rem;
  line-height: 1.5;
}

/* --- Form feedback --- */
.success-msg {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--amber);
  text-align: center;
  padding: 1.5rem 0;
  line-height: 1.5;
}

.error-msg {
  font-size: 0.78rem;
  color: rgba(220, 100, 80, 0.8);
  margin-top: 0.5rem;
  text-align: center;
}

/* --- Social Proof --- */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.proof-dots {
  display: flex;
}

.dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-right: -8px;
}

.dot:nth-child(1) { background: var(--sand); }
.dot:nth-child(2) { background: #b8a48a; }
.dot:nth-child(3) { background: #c49a6c; }
.dot:nth-child(4) { background: var(--amber); }

.proof-text {
  font-size: 0.82rem;
  color: rgba(245, 239, 230, 0.4);
}

.proof-text strong {
  color: rgba(245, 239, 230, 0.65);
}

/* --- Footer --- */
.footer {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(245, 239, 230, 0.06);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245, 239, 230, 0.2);
}

/* ========================================
   Scroll-triggered Fade-In
   ======================================== */
.panel-legend .legend-name,
.panel-legend .legend-quote,
.panel-legend .legend-insight,
.panel-answer .answer-headline,
.panel-answer .answer-sub,
.panel-answer .answer-hook,
.panel-cta .cta-headline,
.panel-cta .cta-sub,
.panel-cta .waitlist-box,
.panel-cta .social-proof {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.panel-legend .legend-quote { transition-delay: 0.12s; }
.panel-legend .legend-insight { transition-delay: 0.24s; }
.panel-answer .answer-sub { transition-delay: 0.12s; }
.panel-answer .answer-hook { transition-delay: 0.25s; }
.panel-cta .cta-sub { transition-delay: 0.08s; }
.panel-cta .waitlist-box { transition-delay: 0.16s; }
.panel-cta .social-proof { transition-delay: 0.3s; }

.is-visible .legend-name,
.is-visible .legend-quote,
.is-visible .legend-insight,
.is-visible .answer-headline,
.is-visible .answer-sub,
.is-visible .answer-hook,
.is-visible .cta-headline,
.is-visible .cta-sub,
.is-visible .waitlist-box,
.is-visible .social-proof {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  html { scroll-snap-type: y proximity; }
  .header { padding: 1rem 1.5rem; }
  .panel-content { padding: 2rem 1.5rem; }
  .legend-content { padding-bottom: 6vh; }
  .legend-name { font-size: clamp(3rem, 14vw, 5rem); }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .legend-content {
    padding-left: 6vw;
  }
}

/* ========================================
   SHARED NAV LINKS
   ======================================== */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245, 239, 230, 0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.header-nav-link:hover {
  color: var(--cream);
}

/* ========================================
   LIGHT PAGE (About)
   ======================================== */
body.page-light {
  background: var(--parchment);
  color: var(--ink);
}

body.page-light .header {
  background: rgba(250, 246, 241, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}

body.page-light .logo {
  color: var(--ink);
}

body.page-light .logo:hover {
  color: var(--amber);
  transition: color 0.25s ease;
}

body.page-light .header-nav-link {
  color: rgba(28, 25, 23, 0.5);
}

body.page-light .header-nav-link:hover {
  color: var(--ink);
}

body.page-light .header-cta {
  color: var(--ink);
  border-color: rgba(28, 25, 23, 0.18);
}

body.page-light .header-cta:hover {
  background: rgba(28, 25, 23, 0.05);
  border-color: rgba(28, 25, 23, 0.35);
}

body.page-light .footer {
  border-top-color: rgba(28, 25, 23, 0.08);
}

body.page-light .logo-sm {
  color: var(--ink);
  opacity: 0.35;
}

body.page-light .footer-copy {
  color: rgba(28, 25, 23, 0.3);
}

/* ========================================
   ABOUT PAGE — Shared helpers
   ======================================== */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  display: block;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(28, 25, 23, 0.5);
  max-width: 580px;
  margin-bottom: 3.5rem;
}

.about-content {
  max-width: 1120px;
  margin: 0 auto;
}

.about-content-narrow {
  max-width: 640px;
  margin: 0 auto;
}

/* Fade-up for about page */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* ========================================
   ABOUT — Intro / Hero
   ======================================== */
.about-intro {
  padding: 11rem 3rem 7rem;
  background: var(--parchment);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-intro-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.about-intro-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(28, 25, 23, 0.68);
  margin-bottom: 1.25rem;
}

.about-intro-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--amber);
  margin-top: 2rem;
  line-height: 1.4;
}

.about-diff-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.about-diff-heading em {
  font-style: italic;
  font-weight: 300;
}

/* ========================================
   ABOUT — Problem
   ======================================== */
.about-problem {
  padding: 6rem 3rem;
  background: #E8D5B0;
}

.about-problem .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-problem-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink);
  border: none;
  padding: 0;
  margin: 0;
}

.about-problem-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(28, 25, 23, 0.68);
  margin-bottom: 1.25rem;
}

/* ========================================
   ABOUT — Philosophy
   ======================================== */
.about-philosophy {
  padding: 6rem 3rem;
  background: var(--vellum);
}

.principles-list {
  border-top: 1px solid var(--sand);
  margin-top: 3.5rem;
}

.principle-item {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--sand);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.principle-number {
  font-family: var(--font-body);
  font-size: 2.75rem;
  font-weight: 700;
  color: rgba(196, 124, 47, 0.3);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.principle-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}

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

.principle-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(28, 25, 23, 0.68);
}

.principle-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  margin-top: 0.75rem;
}

/* ========================================
   ABOUT — How It Works
   ======================================== */
.about-how {
  padding: 6rem 3rem;
  background: var(--parchment);
}

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

.step-card {
  padding: 2rem;
  background: var(--vellum);
  border: 1px solid var(--sand);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease;
}

.step-card:hover {
  border-color: rgba(196, 124, 47, 0.45);
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196, 124, 47, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 25, 23, 0.28);
}

.step-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 400;
}

.step-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(28, 25, 23, 0.62);
}

/* ========================================
   ABOUT — Testimonials
   ======================================== */
.about-testimonials {
  padding: 6rem 3rem;
  background: var(--vellum);
}

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

.testimonial-card {
  padding: 2rem;
  background: var(--parchment);
  border: 1px solid var(--sand);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 400;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(28, 25, 23, 0.45);
  flex-shrink: 0;
  font-family: var(--font-body);
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-body);
}

.testimonial-role {
  font-size: 0.72rem;
  color: rgba(28, 25, 23, 0.42);
  margin-top: 0.15rem;
  font-family: var(--font-body);
}

/* ========================================
   ABOUT — Who It's For
   ======================================== */
.about-who {
  padding: 6rem 3rem;
  background: var(--parchment);
}

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

.persona-item {
  padding: 1.1rem 1.5rem;
  border-left: 2px solid rgba(196, 124, 47, 0.3);
  transition: border-color 0.25s ease;
}

.persona-item:hover {
  border-color: var(--amber);
}

.persona-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  font-family: var(--font-body);
}

.persona-item strong {
  font-weight: 700;
}

/* ========================================
   ABOUT — FAQ
   ======================================== */
.about-faq {
  padding: 6rem 3rem;
  background: var(--vellum);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.faq-sticky-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  position: sticky;
  top: 5.5rem;
}

.faq-list {
  border-top: 1px solid var(--sand);
}

.faq-item {
  border-bottom: 1px solid var(--sand);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--amber);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-icon.is-open {
  transform: rotate(45deg);
}

.faq-answer {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(28, 25, 23, 0.62);
  padding-bottom: 1.25rem;
  padding-right: 2.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-answer.is-open {
  max-height: 400px;
  opacity: 1;
}

/* ========================================
   ABOUT — Final CTA (dark)
   ======================================== */
.about-final {
  padding: 8rem 3rem;
  background: var(--ink);
  text-align: center;
}

.about-final-inner {
  max-width: 500px;
  margin: 0 auto;
}

.about-final-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 2rem;
}

.about-final-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 239, 230, 0.58);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.about-final-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--amber);
  margin: 2rem 0;
}

.about-final .waitlist-form {
  margin-top: 2.5rem;
}

.about-final .waitlist-note {
  color: rgba(245, 239, 230, 0.25);
}

/* ========================================
   ABOUT — Responsive
   ======================================== */
@media (max-width: 900px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-problem .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .principle-item {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .personas-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-sticky-heading {
    position: static;
  }

  .about-intro,
  .about-problem,
  .about-philosophy,
  .about-how,
  .about-testimonials,
  .about-who,
  .about-faq,
  .about-final {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .about-intro { padding-top: 8rem; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
