/* Sonya LeadPars article — light pitch */

  :root {
    --bg: #f5f5f7;
    --white: #ffffff;
    --ink: #1d1d1f;
    --muted: #6e6e73;
    --blue: #0071e3;
    --red: #e11d2e;
    --red-soft: rgba(225, 29, 46, .12);
    --line: rgba(0,0,0,.08);
    --shadow: 0 20px 60px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: var(--blue); }
  .mark {
    color: var(--red);
    font-weight: 650;
    background: linear-gradient(180deg, transparent 62%, var(--red-soft) 62%);
  }
  .sky { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
  .sky .blob {
    position: absolute; border-radius: 50%; filter: blur(70px);
    animation: blob 18s ease-in-out infinite;
  }
  .blob-a { width: 420px; height: 420px; left: -80px; top: 12%; background: rgba(225,29,46,.10); }
  .blob-b { width: 380px; height: 380px; right: -60px; top: 42%; background: rgba(0,113,227,.10); animation-delay: -6s; }
  .blob-c { width: 300px; height: 300px; left: 38%; bottom: -80px; background: rgba(225,29,46,.07); animation-delay: -11s; }
  .sky svg {
    position: absolute;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    will-change: transform;
  }
  .sky .c-red { color: #e11d2e; opacity: .16; }
  .sky .c-blue { color: #0071e3; opacity: .14; }
  .sky .c-ink { color: #1d1d1f; opacity: .09; }
  .f1 { width: 460px; left: -6%; top: 4%; animation: driftA 24s ease-in-out infinite; }
  .f2 { width: 380px; right: -4%; top: 14%; animation: driftB 28s ease-in-out infinite; }
  .f3 { width: 300px; left: 6%; top: 46%; animation: driftC 21s ease-in-out infinite; }
  .f4 { width: 420px; right: 4%; top: 56%; animation: driftA 30s ease-in-out infinite reverse; }
  .f5 { width: 240px; left: 40%; top: 70%; animation: driftB 23s ease-in-out infinite; }
  .f6 { width: 340px; left: 68%; top: 2%; animation: driftC 26s ease-in-out infinite; }
  .f7 { width: 280px; left: 16%; top: 86%; animation: driftA 22s ease-in-out infinite reverse; }
  .f8 { width: 220px; right: 22%; top: 34%; animation: driftC 19s ease-in-out infinite reverse; }
  @keyframes driftA {
    0%, 100% { transform: translate(0, 0) rotate(-6deg); }
    50% { transform: translate(36px, -48px) rotate(8deg); }
  }
  @keyframes driftB {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    50% { transform: translate(-42px, 28px) rotate(-10deg); }
  }
  @keyframes driftC {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    50% { transform: translate(22px, 40px) rotate(12deg); }
  }
  @keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -24px) scale(1.12); }
  }

  .page { position: relative; z-index: 1; padding-top: 68px; }

  .hero {
    text-align: center;
    padding: 88px 24px 56px;
  }
  .hero .eyebrow {
    color: var(--red); font-size: 17px; font-weight: 600;
    margin: 0 0 12px; letter-spacing: -.01em;
    animation: rise .9s cubic-bezier(.16,1,.3,1) both;
  }
  .hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.05; letter-spacing: -.045em; font-weight: 700;
    margin: 0 auto 20px; max-width: 920px;
    animation: rise .95s .08s cubic-bezier(.16,1,.3,1) both;
  }
  .hero .sub {
    font-size: clamp(19px, 2.4vw, 24px); line-height: 1.45;
    color: var(--muted); max-width: 680px; margin: 0 auto; font-weight: 400;
    animation: rise 1s .16s cubic-bezier(.16,1,.3,1) both;
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
  }
  @keyframes bob {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -11px; }
  }
  .reveal {
    opacity: 0; transform: translateY(36px);
    transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  }
  .reveal.on { opacity: 1; transform: none; }
  .reveal.delay { transition-delay: .12s; }
  .reveal.delay2 { transition-delay: .22s; }
  .reveal.on.bob { animation: bob 5.6s ease-in-out .85s infinite; }
  .reveal.on.bob2 { animation: bob 6.5s ease-in-out 1.1s infinite; }
  .reveal.on.bob3 { animation: bob 7.2s ease-in-out 1.35s infinite; }

  .band { padding: 72px 24px; position: relative; }
  .band.white { background: rgba(255,255,255,.72); }
  .inner { max-width: 980px; margin: 0 auto; }
  .inner.wide { max-width: 1080px; }

  h2 {
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -.04em; line-height: 1.1; font-weight: 700;
    margin: 0 0 14px; text-align: center;
  }
  .lede {
    font-size: 21px; line-height: 1.5; color: var(--muted);
    max-width: 740px; margin: 0 auto 36px; text-align: center; font-weight: 400;
  }
  .why {
    font-size: 19px; line-height: 1.55; color: var(--ink);
    max-width: 740px; margin: 0 auto 8px;
  }
  .why.muted { color: var(--muted); margin-bottom: 28px; }

  .pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 8px 0 8px; }
  .pill {
    background: var(--white); border-radius: 980px; padding: 10px 18px;
    font-size: 15px; font-weight: 500; box-shadow: var(--shadow);
    transition: transform .35s cubic-bezier(.16,1,.3,1);
  }
  .pill:nth-child(3n) { color: var(--red); }
  .pill:hover { translate: 0 -6px; }

  .cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  @media (max-width: 760px) { .cards { grid-template-columns: 1fr; } .nav-links { display: none; } }
  .tile {
    background: rgba(255,255,255,.86); border-radius: 28px; padding: 28px 26px;
    box-shadow: var(--shadow);
    transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
  }
  .band.white .tile { background: rgba(245,245,247,.9); }
  .tile:hover { animation-play-state: paused; translate: 0 -12px; box-shadow: 0 24px 50px rgba(225,29,46,.12); }
  .tile h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.03em; }
  .tile p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }

  .nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  @media (max-width: 700px) { .nums { grid-template-columns: 1fr 1fr; } }
  .num {
    background: rgba(255,255,255,.92); border-radius: 24px; padding: 28px 18px; text-align: center;
    box-shadow: var(--shadow);
    transition: box-shadow .4s ease;
  }
  .num:hover { animation-play-state: paused; translate: 0 -10px; box-shadow: 0 24px 50px rgba(225,29,46,.10); }
  .num b {
    display: block; font-size: clamp(36px, 5vw, 52px); letter-spacing: -.04em; color: var(--ink);
  }
  .num.hot b { color: var(--red); }
  .num span { color: var(--muted); font-size: 14px; }

  .steps { display: grid; gap: 10px; }
  .step {
    display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start;
    background: rgba(255,255,255,.92); border-radius: 22px; padding: 18px 20px;
    box-shadow: var(--shadow);
    transition: transform .4s ease;
  }
  .step:hover { animation-play-state: paused; translate: 0 -10px; }
  .n {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--blue); color: #fff; display: grid; place-items: center;
    font-weight: 700; font-size: 20px;
  }
  .step:nth-child(3n) .n { background: var(--red); }
  .step h3 { margin: 4px 0 4px; font-size: 18px; letter-spacing: -.02em; }
  .step p { margin: 0; color: var(--muted); font-size: 15px; }

  .chapter { padding: 80px 24px; position: relative; }
  .chapter:nth-child(odd) { background: rgba(255,255,255,.55); }
  .ch-kicker {
    display: block; text-align: center; color: var(--red);
    font-weight: 600; font-size: 13px; margin-bottom: 8px; letter-spacing: .08em;
    text-transform: uppercase;
  }
  .shot-wrap {
    margin: 36px auto 28px; max-width: 1080px;
    border-radius: 28px; overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .6s ease;
  }
  .shot-wrap:hover { animation-play-state: paused; translate: 0 -14px; box-shadow: 0 30px 70px rgba(0,0,0,.12); }
  .shot-wrap img { width: 100%; display: block; }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 980px; margin: 0 auto; }
  @media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
  .blurb {
    background: rgba(255,255,255,.88); border-radius: 22px; padding: 22px;
    box-shadow: var(--shadow);
    transition: transform .4s ease;
  }
  .blurb:hover { animation-play-state: paused; translate: 0 -10px; }
  .blurb h3 { margin: 0 0 8px; font-size: 18px; }
  .blurb p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.5; }

  .cta { text-align: center; padding: 100px 24px 80px; position: relative; }
  .cta h2 { margin-bottom: 16px; }
  .pitch-note { text-align: center; color: var(--muted); font-size: 12px; padding: 0 24px 48px; position: relative; z-index: 1; }
  .toc {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 14px;
    max-width: 720px; margin: 0 auto; padding: 18px 24px 0; position: relative; z-index: 1;
  }
  .toc a { color: var(--muted); text-decoration: none; font-size: 12px; }
  .toc a:hover { color: var(--red); }
  @media (prefers-reduced-motion: reduce) {
    .sky svg, .sky .blob, .reveal, .hero .eyebrow, .hero h1, .hero .sub,
    .reveal.on.bob, .reveal.on.bob2, .reveal.on.bob3 {
      animation: none !important; transition: none !important;
      opacity: 1 !important; transform: none !important; translate: none !important;
    }
  }

