/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #fafafa;
  --border: #e5e5e5;
  --gray: #6b6b6b;
  --radius: 14px;
  --max-width: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 760px; }

a { color: inherit; text-decoration: none; }

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: 0.85; }
.btn[hidden] { display: none; }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 10px 20px; font-size: 14px; }

.btn--invert { background: var(--white); color: var(--black); border-color: var(--white); }

.btn--outline { background: var(--white); color: var(--black); border: 1px solid var(--black); }
.btn--outline:hover { background: var(--off-white); opacity: 1; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav__logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--gray); }

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}

.nav__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--black); }
.nav__links a.nav__links--active { color: var(--black); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--black);
  display: block;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav__mobile .btn { width: 100%; }
.nav__mobile__ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.nav__mobile.open { display: flex; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 16px;
}
.eyebrow.center { text-align: center; }

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section__title.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.section { padding: 96px 0; }

/* ---------- Hero ---------- */
.hero {
  padding: 140px 0 100px;
  text-align: center;
}

.hero--compact {
  padding: 80px 0 40px;
}
.hero__headline {
  font-size: clamp(36px, 6vw, 66px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 920px;
  margin: 0 auto 24px;
}

/* Loose, hand-drawn underline under a word */
.hl-underline {
  position: relative;
  white-space: nowrap;
  font-weight: 700;
}
.hl-underline::after {
  content: '';
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -0.06em;
  height: 0.16em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M2 15 C 45 6, 85 19, 125 11 C 165 4, 205 17, 245 9 C 265 6, 280 12, 298 8' stroke='black' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Loose, hand-drawn circle around a phrase */
.hl-circle {
  position: relative;
  white-space: nowrap;
  padding: 0 0.2em;
}
.hl-circle::after {
  content: '';
  position: absolute;
  inset: -0.32em -0.4em -0.34em -0.4em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 120' preserveAspectRatio='none'%3E%3Cpath d='M152 7 C 95 2, 30 14, 14 42 C -2 70, 20 100, 90 112 C 160 124, 250 118, 280 92 C 305 70, 296 34, 240 15 C 200 2, 175 6, 158 10' stroke='black' stroke-width='3.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero__video {
  position: relative;
  max-width: 480px;
  margin: 0 auto 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--black);
}
.hero__video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.video-unmute {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(10,10,10,0.75);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.video-unmute:hover { background: rgba(10,10,10,0.9); }

.video-mute-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  background: rgba(10,10,10,0.6);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s ease;
}
.video-mute-toggle:hover { background: rgba(10,10,10,0.8); }

.video-watch-again {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
}
.video-watch-again:hover {
  transform: translate(-50%, -50%);
  opacity: 0.85;
}

.hero__video--clickable { cursor: pointer; }

.exclusions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  list-style: none;
  margin-bottom: 40px;
}
.exclusions li {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  color: var(--black);
}
.exclusions li::before {
  content: '✓';
  margin-right: 6px;
  color: var(--black);
  font-weight: 800;
}

/* ---------- Waitlist form ---------- */
.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  background: var(--off-white);
  color: var(--black);
}
.waitlist-form input:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
}
.waitlist-form input::placeholder { color: #9c9c9c; }

.form-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray);
}

.book-call-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 420px;
  padding: 6px 18px 6px 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--off-white);
  text-align: left;
}
.pill__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.pill span {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.35;
}

.hero__book-call {
  margin-top: 0;
}

@media (max-width: 520px) {
  .waitlist-form { flex-direction: column; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 860px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { color: var(--gray); font-size: 15px; }

/* ---------- How it works ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step__num {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  background: var(--black);
  width: 40px; height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__body h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.step__body p { color: var(--gray); font-size: 15px; }

/* ---------- Reels ---------- */
.reels__grid {
  display: flex;
  justify-content: center;
}
.reels__grid .instagram-media {
  max-width: 365px !important;
  min-width: 365px !important;
  width: 365px !important;
}
.reel-card {
  width: 365px;
  height: 525px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.reel-card iframe {
  width: 100% !important;
  border: none !important;
  border-radius: var(--radius) !important;
}

/* ---------- Offer cards ---------- */
.offer-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
  position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.offer-card:hover { border-color: var(--black); transform: translateY(-2px); }
.offer-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 14px;
}
.offer-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.offer-card p { color: var(--gray); font-size: 15px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--off-white); }
.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.quote-card p { font-size: 15px; margin-bottom: 16px; }
.quote-card footer { font-size: 13px; font-weight: 600; color: var(--gray); }
.testimonial-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

/* ---------- Promise ---------- */
.promise__inner { max-width: 700px; }
.promise p:not(.eyebrow) { color: var(--gray); font-size: 16px; }

/* ---------- Founder ---------- */
.founder { background: var(--black); color: var(--white); }
.founder__inner { max-width: 700px; }
.founder .eyebrow { color: #a3a3a3; }
.founder__avatar {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 24px;
}
.founder p:not(.eyebrow) { color: #d4d4d4; font-size: 16px; margin-bottom: 16px; }
.founder__sign { font-weight: 600; color: var(--white) !important; }

/* ---------- FAQ ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.accordion__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--off-white);
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: var(--black);
}
.accordion__icon {
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.accordion__item.open .accordion__icon { transform: rotate(45deg); }
.accordion__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 22px;
}
.accordion__a p { color: var(--gray); font-size: 15px; padding-bottom: 0; }
.accordion__item.open .accordion__a { max-height: 220px; padding: 0 22px 20px; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--black); color: var(--white); text-align: center; }
.final-cta__inner { max-width: 560px; }
.final-cta h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.final-cta p { color: #c9c9c9; margin-bottom: 32px; }

.waitlist-form--dark input {
  background: #1a1a1a;
  border-color: #333;
  color: var(--white);
}
.waitlist-form--dark input::placeholder { color: #777; }
.waitlist-form--dark input:focus { border-color: var(--white); background: #111; }

.final-cta__or {
  margin: 18px 0;
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Articles ---------- */
.articles-list { padding-top: 24px; }

.article-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
  background: var(--white);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.article-card:hover { border-color: var(--black); transform: translateY(-2px); }
.article-card__meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.article-card h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.article-card__excerpt {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 18px;
}
.article-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.roadmaps-grid { align-items: stretch; }

.resource-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
}
.resource-card h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.resource-card .article-card__excerpt {
  font-size: 12.5px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.resource-card .btn {
  padding: 10px 18px;
  font-size: 13px;
  margin-top: auto;
  align-self: flex-start;
}

.resource-card--soon {
  border: 1.5px dashed var(--border);
  background: var(--off-white);
}
.resource-card--soon__label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 12px;
}
.skeleton-shape {
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  background: transparent;
  flex-shrink: 0;
}
.skeleton-shape--preview {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 12px;
}
.skeleton-shape--title {
  width: 70%;
  height: 15px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.skeleton-shape--button {
  width: 118px;
  height: 37px;
  border-radius: 999px;
}
.resource-card__preview {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 14px;
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__inner p { color: var(--gray); font-size: 13px; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 13px; color: var(--gray); }
.footer__links a:hover { color: var(--black); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Download email-gate modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 300;
}
.modal-overlay[hidden] { display: none; }

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--gray);
  cursor: pointer;
  padding: 4px;
}
.modal__close:hover { color: var(--black); }
.modal h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  padding-right: 24px;
}
.modal p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 22px;
}
.modal .waitlist-form { max-width: none; margin: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive nav ---------- */
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__ctas { display: none; }
  .nav__burger { display: flex; }
}
