:root {
  --accent: #4FA8F0;
  --em-bg: linear-gradient(transparent 80%, rgba(79, 168, 240, 0.45) 80%);

  --bg: #F7F7F5;
  --ink: #131313;
  --ink-dark: #0C0C0C;
  --border: #ECECE8;
  --card: #FAFAF8;
  --white: #FFFFFF;

  --text-1: #3C3D40;
  --text-2: #55565A;
  --text-3: #77787C;
  --text-4: #A2A3A0;

  --footer-border: #2A2A2A;
  --footer-muted: #B9BAB6;

  --container: 1140px;
  --container-narrow: 820px;
  --container-copy: 760px;

  --section-pad-y: clamp(64px, 10vw, 130px);
  --section-pad-x: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); }
a:hover { color: var(--accent); }

img { max-width: 100%; }

em.highlight {
  font-style: italic;
  background: var(--em-bg);
  padding: 0 0.05em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--section-pad-x);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--section-pad-x);
}

.section-bordered {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Header */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.site-header .container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header .logo {
  height: 64px;
  width: auto;
  display: block;
  margin: -16px 0 -16px -18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.site-nav a:not(.btn) {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  padding: 11px 22px;
}
.btn-dark:hover { color: var(--white); background: var(--accent); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  font-size: 17px;
  padding: 18px 34px;
}
.btn-accent:hover { color: var(--white); filter: brightness(0.94); }

.link-underline {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.link-underline-light {
  font-size: 16px;
  font-weight: 500;
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.link-underline-light:hover { color: var(--accent); }

/* Hero */

.hero {
  position: relative;
  background:
    linear-gradient(rgba(247, 247, 245, 0.25), rgba(247, 247, 245, 0.95)),
    url('assets/hero-bg.jpg') center / cover no-repeat;
}

.hero .container {
  padding-top: clamp(110px, 15vw, 170px);
  padding-bottom: clamp(64px, 10vw, 130px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 clamp(20px, 3vw, 32px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}

.hero h1 {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(38px, 7.4vw, 82px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero .lede {
  margin: clamp(24px, 4vw, 40px) auto 0;
  max-width: 760px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text-1);
}

.cta-row {
  margin-top: clamp(32px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
  align-items: center;
}

.cta-micro {
  margin: 22px auto 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-3);
}

/* Problem section */

.problem-intro { max-width: var(--container-copy); }

.problem-intro h2 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.problem-intro p {
  margin: 22px 0 0;
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.6;
  color: var(--text-1);
}

.problem-grid {
  margin-top: clamp(32px, 5vw, 52px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-card .num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  display: grid;
  place-items: center;
}

.problem-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.problem-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
}

.problem-summary {
  margin: clamp(32px, 5vw, 52px) auto 0;
  max-width: 820px;
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: center;
  text-wrap: pretty;
}

/* Solution section */

.solution {
  background:
    linear-gradient(rgba(247, 247, 245, 0.55), rgba(247, 247, 245, 0.92)),
    url('assets/hero-bg.jpg') center / cover no-repeat;
}

.solution h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance;
}

.solution p {
  margin: clamp(24px, 4vw, 36px) 0 0;
  font-size: clamp(16px, 1.9vw, 18.5px);
  line-height: 1.7;
  color: var(--text-1);
}

.solution p + p { margin-top: 24px; }

.solution .lead-statement {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.solution-callout {
  margin-top: clamp(28px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px);
}

.eyebrow-small {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.solution-callout p {
  margin: 0;
  font-size: clamp(15.5px, 1.8vw, 17.5px);
  line-height: 1.7;
  color: var(--text-1);
}

/* Offer section */

.offer-table {
  margin-top: clamp(36px, 6vw, 56px);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.offer-table-head {
  display: grid;
  grid-template-columns: minmax(180px, 2fr) 3fr;
  background: var(--ink);
  color: var(--bg);
}

.offer-table-head p {
  margin: 0;
  padding: 18px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-table-head p:last-child { border-left: 1px solid var(--footer-border); }

.offer-row {
  display: grid;
  grid-template-columns: minmax(180px, 2fr) 3fr;
  border-top: 1px solid var(--border);
}

.offer-row.alt { background: var(--card); }

.offer-row .fear {
  margin: 0;
  padding: 24px 26px;
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.offer-row .answer {
  margin: 0;
  padding: 24px 26px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  border-left: 1px solid var(--border);
}

.offer-notes {
  margin-top: clamp(32px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.offer-note {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px;
}

.offer-note p:first-child {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

.offer-note p:last-child {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-1);
}

/* Book section */

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.founder-photo {
  display: block;
  width: min(190px, 44%);
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 999px 999px 22px 22px;
  margin-bottom: 28px;
}

.book-grid h2 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.book-grid > div:first-child p {
  margin: 24px 0 0;
  font-size: clamp(16px, 1.9vw, 18.5px);
  line-height: 1.7;
  color: var(--text-1);
}

.scheduler {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
}

.scheduler iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 600px;
}

/* Guide section */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.guide-photo {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 3 / 3.4;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 22px;
}

.guide-grid h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.guide-form {
  margin: 36px 0 0;
  max-width: 520px;
}

.guide-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.guide-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  border: 1px solid #DEDEDA;
  border-radius: 999px;
  background: var(--white);
  padding: 14px 20px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
}
.guide-form input[type="email"]:focus { border-color: var(--accent); }

.guide-form button {
  flex: none;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
.guide-form button:hover { background: var(--accent); }

.guide-success {
  display: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  padding: 24px 26px;
}

.guide-success.visible { display: block; }
.guide-form form.hidden { display: none; }

.guide-success p:first-child {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.guide-success p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
}

.guide-privacy {
  margin: 18px 0 0;
  max-width: 440px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-4);
}

/* FAQ */

.faq-section {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--section-pad-x);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 24px 26px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-question h3 {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 21px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.faq-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #C9CAC6;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
}

.faq-answer {
  display: none;
  padding: 0 26px 26px;
}

.faq-answer.open { display: block; }

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
}

/* Final CTA + footer */

.final-cta {
  background: var(--ink-dark);
  color: var(--bg);
}

.final-cta .container {
  padding-bottom: clamp(40px, 6vw, 64px);
  padding-top: clamp(72px, 11vw, 150px);
}

.final-cta h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(32px, 5.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

.final-cta h2 em {
  font-style: italic;
  background: linear-gradient(transparent 84%, color-mix(in srgb, var(--accent) 45%, transparent) 84%);
  padding: 0 0.05em;
}

.final-cta > .container > p {
  margin: clamp(24px, 4vw, 36px) 0 0;
  max-width: 720px;
  font-size: clamp(16px, 1.9vw, 18.5px);
  line-height: 1.7;
  color: var(--footer-muted);
}

.final-cta .cta-row {
  justify-content: flex-start;
  margin-top: clamp(32px, 5vw, 48px);
}

.final-cta .cta-micro {
  margin: 22px 0 0;
  max-width: none;
  color: var(--text-3);
}

.footer-bottom {
  margin-top: clamp(72px, 11vw, 140px);
  padding-top: 32px;
  border-top: 1px solid var(--footer-border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  height: 54px;
  width: auto;
  display: block;
  margin: -12px 0 -12px -14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-4);
  text-decoration: none;
}
.footer-links a:hover { color: var(--bg); }

.copyright {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--text-2);
}
