/* ============================================================
   She Leads AI — Homepage
   Builds on components.css. Adds the hero (north-star dusty-haze
   ink treatment), Find Your Place, the ink stat band, the quote
   ticker, the SLAI Effect newsletter, and the closing CTA.
   Sections rotate ink / cream / coral per the color→meaning rule.
   ============================================================ */

/* ---------- top nav (over the hero) ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(28px, 5vw, 80px);
}
.nav .logo { width: 132px; --fg: var(--cream); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  white-space: nowrap;
  padding: 10px 15px;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
body:not(.no-hover-tint) .nav__links a:hover { background: rgba(247,247,244,0.10); }
.nav__cta {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  white-space: nowrap;
  border: 1.5px solid rgba(247,247,244,0.32);
  padding: 11px 20px;
  border-radius: var(--radius);
  transition: border-color .15s;
}
.nav__cta:hover { border-color: var(--cream); }
@media (max-width: 900px) { .nav__links { display: none; } }

/* ============================================================
   HERO — north-star dusty-haze ink treatment
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero__stage {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 120px clamp(28px, 5vw, 80px) 56px;
}
.hero__art { position: absolute; top: 0; right: 0; bottom: 0; width: 62%; z-index: 1; pointer-events: none; }
.hero__glow {
  position: absolute; inset: -8% -12% -6% -18%; z-index: 1;
  opacity: var(--hero-haze, 0.72);
  background:
    radial-gradient(58% 56% at 60% 42%, rgba(239,91,84,0.55), rgba(239,91,84,0.14) 52%, transparent 76%),
    radial-gradient(40% 38% at 40% 78%, rgba(242,193,78,0.16), transparent 70%);
}
.hero__grain {
  position: absolute; top: -10%; right: -10%; width: 122%; height: auto; z-index: 2;
  mix-blend-mode: screen; opacity: calc(var(--hero-haze, 0.72) * 0.7); pointer-events: none;
}
.hero__lady {
  position: absolute; bottom: -3%; right: -8%; height: 116%; width: auto; z-index: 1;
  -webkit-mask-image: radial-gradient(122% 120% at 72% 32%, #000 64%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(122% 120% at 72% 32%, #000 64%, rgba(0,0,0,0) 100%);
}
.hero__scrim {
  position: absolute; top: 0; bottom: 0; left: 0; width: 66%; z-index: 3; pointer-events: none;
  opacity: var(--hero-haze, 0.72);
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(26,26,46,0.96) 30%, rgba(26,26,46,0.45) 56%, transparent 80%),
    radial-gradient(72% 82% at 6% 78%, rgba(26,26,46,0.85), transparent 70%);
}
.hero__copy {
  position: relative; z-index: 4;
  max-width: 600px;
  --fg: var(--cream);
  --line: rgba(247,247,244,0.32);
  display: flex; flex-direction: column; align-items: flex-start; gap: 26px;
}
.hero__copy .gold-rule { width: 56px; height: 3px; background: var(--gold); border: 0; }
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 5.6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--cream);
  max-width: 15ch;
  text-wrap: balance;
}
.hero h1 em { font-family: var(--accent-font); font-style: italic; font-weight: 400; color: var(--coral); }
.hero__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--cream);
  max-width: 38ch;
  margin: 0;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   SECTION SCAFFOLD (shared)
   ============================================================ */
.section { padding: clamp(64px, 8vw, 120px) clamp(28px, 5vw, 80px); }
.section__inner { max-width: 1280px; margin: 0 auto; }
.section__head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head .eyebrow { display: block; margin-bottom: 16px; }
.section__head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}
.section__head h2 em { font-family: var(--accent-font); font-style: italic; font-weight: 400; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--cream .eyebrow { color: var(--deep-coral); }

/* ============================================================
   FIND YOUR PLACE — 2 feature cards + 4 compact
   ============================================================ */
.fyp-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.fyp-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 940px) { .fyp-feature, .fyp-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fyp-feature, .fyp-row { grid-template-columns: 1fr; } }

.place {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(26,26,46,0.12);
  border-top: 3px solid var(--place-accent, var(--deep-coral));
  border-radius: calc(var(--radius) + 6px);
  padding: 30px 28px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 100%;
}
.place:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(26,26,46,0.13); }
.place__tag {
  font-family: var(--display); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.place__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--place-accent, var(--deep-coral)); }
.place h3 {
  font-family: var(--display); font-weight: 500; line-height: 1.04;
  letter-spacing: -0.012em; margin: 0 0 12px; color: var(--ink);
}
.place--lg h3 { font-size: clamp(24px, 2.4vw, 32px); }
.place--sm h3 { font-size: 20px; }
.place p { margin: 0 0 22px; font-size: 14.5px; line-height: 1.58; color: var(--ink); }
.place--sm p { font-size: 13.5px; }
.place__link {
  margin-top: auto;
  font-family: var(--display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 9px;
}
.place__link svg { width: 15px; height: 15px; transition: transform .18s ease; }
.place:hover .place__link svg { transform: translateX(4px); }
.place__link::after { content: ""; }

/* ============================================================
   BY THE NUMBERS — ink band
   ============================================================ */
.stats { background: var(--ink); color: var(--cream); padding: clamp(56px, 7vw, 92px) clamp(28px, 5vw, 80px); }
.stats__inner { max-width: 1280px; margin: 0 auto; }
.stats__eyebrow { color: var(--gold); margin-bottom: 40px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 720px) { .stats__grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; } }
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat__num {
  font-family: var(--display); font-weight: 500; font-size: clamp(48px, 6vw, 84px);
  line-height: 0.9; letter-spacing: -0.02em; color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.stat__num em { font-family: var(--accent-font); font-style: italic; font-weight: 400; color: var(--coral); }
.stat__label {
  font-family: var(--body); font-weight: 500; font-size: 14px;
  letter-spacing: 0.02em; color: var(--cream);
}
.stat + .stat { border: 0; }
.stats__grid .stat { position: relative; padding-left: 24px; }
.stats__grid .stat::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px;
  background: rgba(247,247,244,0.16);
}

/* ============================================================
   IN THEIR WORDS — quote ticker
   ============================================================ */
.words { background: var(--cream); padding: clamp(56px, 7vw, 96px) 0; overflow: hidden; }
.words__head { max-width: 1280px; margin: 0 auto clamp(36px, 4vw, 52px); padding: 0 clamp(28px, 5vw, 80px); }
.ticker { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ticker__track { display: flex; gap: 22px; width: max-content; animation: ticker 60s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.qcard {
  width: 380px; flex: 0 0 auto;
  background: var(--white);
  border: 1px solid rgba(26,26,46,0.12);
  border-radius: calc(var(--radius) + 6px);
  padding: 30px 30px 26px;
  display: flex; flex-direction: column; gap: 20px;
}
.qcard__mark { width: 34px; height: 3px; background: var(--gold); border-radius: 2px; }
.qcard blockquote {
  margin: 0;
  font-family: var(--accent-font); font-style: italic; font-weight: 400;
  font-size: 19px; line-height: 1.42; color: var(--ink);
}
.qcard__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.qcard__pic { width: 40px; height: 40px; border-radius: 50%; background: var(--coral); flex: 0 0 auto; }
.qcard__who b { font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--ink); display: block; }
.qcard__who span { font-size: 12px; color: var(--ink); }
.words__note { max-width: 1280px; margin: 28px auto 0; padding: 0 clamp(28px, 5vw, 80px); font-size: 12.5px; color: var(--ink); font-style: italic; }

/* ============================================================
   THE SLAI EFFECT — newsletter on coral
   ============================================================ */
.slai { background: var(--coral); color: var(--ink); position: relative; overflow: hidden; }
.slai__inner {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(28px, 5vw, 80px);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
@media (max-width: 820px) { .slai__inner { grid-template-columns: 1fr; gap: 32px; } }
.slai__eyebrow { color: var(--ink); opacity: 0.7; margin-bottom: 18px; }
.slai h2 {
  font-family: var(--display); font-weight: 500; font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.98; letter-spacing: -0.018em; margin: 0 0 18px; color: var(--ink);
  text-wrap: balance;
}
.slai h2 em { font-family: var(--accent-font); font-style: italic; font-weight: 400; }
.slai p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--ink); max-width: 34ch; }
.slai__form { display: flex; gap: 12px; flex-wrap: wrap; }
.slai__form input {
  flex: 1; min-width: 220px;
  font-family: var(--body); font-size: 16px; color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(26,26,46,0.2); border-radius: var(--radius);
  padding: 16px 18px; outline: none;
}
.slai__form input::placeholder { color: rgba(26,26,46,0.45); }
.slai__form input:focus { border-color: var(--ink); }
.slai__form button {
  font-family: var(--display); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream);
  background: var(--ink); border: 0; border-radius: var(--radius);
  padding: 16px 28px; cursor: pointer; white-space: nowrap; transition: transform .15s;
}
.slai__form button:hover { transform: translateY(-1px); }

/* ============================================================
   CLOSING CTA — ink dusty-haze echo of the hero
   ============================================================ */
.closing { position: relative; background: var(--ink); overflow: hidden; }
.closing__glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(46% 70% at 78% 60%, rgba(239,91,84,0.40), transparent 68%),
    radial-gradient(40% 60% at 18% 30%, rgba(242,193,78,0.12), transparent 70%);
  opacity: var(--hero-haze, 0.72);
}
.closing__inner {
  position: relative; z-index: 2;
  max-width: 1000px; margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) clamp(28px, 5vw, 80px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 30px;
}
.closing .gold-rule { width: 56px; height: 3px; background: var(--gold); border: 0; }
.closing h2 {
  font-family: var(--display); font-weight: 500; font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98; letter-spacing: -0.02em; margin: 0; color: var(--cream);
  max-width: 16ch; text-wrap: balance;
}
.closing h2 em { font-family: var(--accent-font); font-style: italic; font-weight: 400; color: var(--coral); }
.closing__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; --fg: var(--cream); --line: rgba(247,247,244,0.32); }

/* ---------- footer contact line ---------- */
.foot { margin-top: 0; }   /* closing is already ink — no cream seam */
.foot__bar a { color: var(--cream); text-decoration: none; }
.foot__bar a:hover { color: var(--cream); }
