/* ============================================================
   PitchWise — Meta-inspired redesign
   Design tokens derived from the attached Meta design.md.
   Token names map 1:1 to the design system; values below are
   concrete realizations of the {token} placeholders.
   ============================================================ */

:root {
  /* ---- Brand & accent ---- */
  --primary: #0064E0;        /* Cobalt — buy-now / conversion accent only */
  --primary-deep: #0143B5;   /* Pressed cobalt / active link */
  --primary-soft: rgba(0, 100, 224, 0.10);
  --fb-blue: #1877F2;        /* Form-control activation */

  /* ---- Surface ---- */
  --canvas: #FFFFFF;
  --surface-soft: #F0F2F5;
  --surface-tint: #F6F8FA;
  --hairline: #DADDE1;
  --hairline-soft: #EBEDF0;

  /* ---- Text ---- */
  --ink-deep: #1C2B33;
  --ink: #2E3B43;
  --charcoal: #44545F;
  --slate: #5E7079;
  --steel: #8896A0;
  --stone: #AEB9C1;

  /* ---- Buttons ---- */
  --ink-button: #16181C;     /* Black marketing pill */
  --on-ink-button: #FFFFFF;

  /* ---- Semantic ---- */
  --success: #2E9E5B;
  --attention: #E8730C;
  --warning: #F7C948;
  --critical: #E02C2C;

  /* ---- Type ---- */
  --font: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* ---- Radius scale ---- */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 16px;
  --r-xxl: 24px;
  --r-xxxl: 32px;
  --r-feature: 40px;
  --r-full: 100px;

  /* ---- Spacing ---- */
  --s-xxs: 4px;
  --s-xs: 8px;
  --s-sm: 10px;
  --s-md: 12px;
  --s-base: 16px;
  --s-lg: 20px;
  --s-xl: 24px;
  --s-xxl: 32px;
  --s-xxxl: 40px;
  --s-section-sm: 48px;
  --s-section: 64px;
  --s-section-lg: 80px;
  --s-hero: 120px;

  --max-w: 1200px;
}

/* ============================================================
   Base
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--canvas);
  color: var(--ink-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
}

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

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

h1, h2, h3, h4, p { margin: 0; }

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   Type roles
   ============================================================ */
.t-hero {
  font-size: clamp(40px, 6.2vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1.8px;
}
.t-display {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -1.2px;
}
.t-heading-lg {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.8px;
}
.t-heading-md {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -0.4px;
}
.t-heading-sm {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.4px;
}
.t-subtitle {
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: var(--charcoal);
}
.t-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--primary);
}
.t-body { font-size: 16px; line-height: 1.55; color: var(--charcoal); }
.t-small { font-size: 14px; line-height: 1.45; letter-spacing: -0.14px; color: var(--slate); }

.muted { color: var(--slate); }

/* ============================================================
   Buttons (pill, always rounded-full)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.14px;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 14px 30px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--ink-button); color: var(--on-ink-button); }
.btn-primary:hover { background: #2b2f36; }

.btn-cta { background: var(--primary); color: #fff; }
.btn-cta:hover { background: var(--primary-deep); }

.btn-secondary {
  background: transparent;
  color: var(--ink-deep);
  border-color: var(--ink-deep);
}
.btn-secondary:hover { background: var(--ink-deep); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink-deep);
  border-color: rgba(10, 19, 23, 0.14);
  padding: 12px 26px;
}
.btn-ghost:hover { border-color: var(--ink-deep); }

.btn-lg { padding: 16px 34px; font-size: 16px; }

.btn-on-dark { background: #fff; color: var(--ink-deep); }
.btn-on-dark:hover { background: #e9ebee; }
.btn-secondary-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary-on-dark:hover { background: rgba(255,255,255,0.12); border-color:#fff; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.scrolled { border-bottom-color: var(--hairline-soft); }
.nav-inner {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.6px;
  color: var(--ink-deep);
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--ink-deep);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 16px;
  letter-spacing: -1px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ============================================================
   Sections
   ============================================================ */
section { position: relative; }
.section-pad { padding: 80px 0; }
.section-pad-lg { padding: 96px 0; }

.center { text-align: center; }
.section-head { max-width: 760px; margin: 0 auto; }
.section-head.left { margin: 0; }
.section-head .t-eyebrow { margin-bottom: 16px; display: block; }
.section-head .t-subtitle { margin-top: 20px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 64px 0 88px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
/* Soft premium depth glow — pale blue + faint indigo, fading to white */
.hero::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto 0;
  height: 130%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 50% 18%, rgba(0, 100, 224, 0.10) 0%, rgba(0, 100, 224, 0) 60%),
    radial-gradient(46% 42% at 24% 30%, rgba(99, 102, 241, 0.07) 0%, rgba(99, 102, 241, 0) 62%),
    radial-gradient(46% 44% at 78% 26%, rgba(56, 152, 236, 0.08) 0%, rgba(56, 152, 236, 0) 60%);
}
/* Smooth fade-out into the white page before the next section */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--canvas) 100%);
}
.hero-head { max-width: 880px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-soft);
  color: var(--charcoal);
  font-size: 13px; font-weight: 700; letter-spacing: -0.1px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.hero h1 { margin-bottom: 22px; }
.hero-sub { max-width: 620px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Hero carousel ---- */
/* ---- Funded deck patterns rail ---- */
.fp-rail {
  position: relative;
  margin-top: 52px;
}
.fp-scroller {
  display: flex;
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 8px 32px 28px;
  scroll-padding-left: 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fp-scroller::-webkit-scrollbar { display: none; }
.fp-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xxl);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.fp-card:hover {
  border-color: var(--hairline);
  box-shadow: 0 12px 32px -18px rgba(16, 24, 40, 0.22);
  transform: translateY(-2px);
}
.fp-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: var(--surface-soft);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 11px,
    rgba(28, 43, 51, 0.045) 11px,
    rgba(28, 43, 51, 0.045) 22px
  );
  border-bottom: 1px solid var(--hairline-soft);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.fp-thumb-tag {
  margin: 12px;
  font-family: var(--mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink-soft);
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  padding: 4px 9px;
  border-radius: var(--r-full);
}
.fp-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 24px;
  flex: 1;
}
.fp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.fp-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink-deep);
}
.fp-raise {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border: 1px solid var(--hairline-soft);
  padding: 4px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.fp-type {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  background: rgba(0, 100, 224, 0.07);
  padding: 5px 11px;
  border-radius: var(--r-full);
}
.fp-thumb--img {
  background: #f8f8f8;
  background-image: none;
}
.fp-thumb--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fp-caption {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid var(--hairline-soft);
  text-wrap: pretty;
}

.fp-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.fp-arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  border: 1px solid var(--hairline);
  background: var(--canvas);
  color: var(--ink-deep);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease, background 200ms ease, border-color 200ms ease, transform 150ms ease;
}
.fp-arrow:hover { background: var(--surface-soft); border-color: var(--stone); }
.fp-arrow:active { transform: scale(0.94); }
.fp-arrow[disabled] { opacity: 0.35; pointer-events: none; }
@media (max-width: 767px) {
  .fp-card { flex-basis: 80vw; max-width: 320px; }
  .fp-scroller { padding-left: 20px; padding-right: 20px; scroll-padding-left: 20px; }
}

/* ============================================================
   Signal chips (problem section)
   ============================================================ */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 48px; }
.chip {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 15px; font-weight: 600;
  padding: 11px 20px;
  border-radius: var(--r-full);
  display: inline-flex; align-items: center; gap: 9px;
}
.chip .tick { color: var(--primary); font-size: 13px; }

/* ============================================================
   Use-case pills
   ============================================================ */
.usecases { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 48px; }
.usecase {
  background: var(--ink-deep);
  color: #fff;
  font-size: 15px; font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--r-full);
}

/* ============================================================
   Deliverables (what you get)
   ============================================================ */
.deliverables { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.deliv-card {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xxl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.deliv-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -40px rgba(20,30,40,0.4); }
.deliv-num {
  font-size: 14px; font-weight: 800; color: var(--steel);
  letter-spacing: 0.5px; margin-bottom: 22px;
}
.deliv-visual {
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--surface-tint), var(--surface-soft));
  border: 1px solid var(--hairline-soft);
  aspect-ratio: 16/10;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.deliv-visual.deliv-visual--img {
  background: var(--surface-soft);
  background-image: none;
  padding: 0;
}
.deliv-visual--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
}
.deliv-visual.deliv-visual--framed {
  background: #FEFDFD;
  background-image: none;
  padding: 22px;
}
.deliv-visual--framed img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--r-md, 12px);
  background: #fff;
  box-shadow: 0 10px 30px -12px rgba(16, 24, 40, 0.22), 0 2px 6px -2px rgba(16, 24, 40, 0.08);
}
.deliv-card h3 { margin-bottom: 12px; }
.deliv-card .t-body { flex: 1; }
.deliv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.deliv-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--surface-soft);
  padding: 6px 11px;
  border-radius: var(--r-full);
}

/* mini deck visual inside deliverable cards */
.mini-deck { display: flex; gap: 7px; align-items: flex-end; }
.mini-slide {
  width: 34px; height: 46px; border-radius: 5px;
  background: #fff; border: 1px solid var(--hairline);
  box-shadow: 0 6px 14px -8px rgba(20,30,40,0.4);
}
.mini-slide.tall { height: 60px; }
.mini-lines { display:flex; flex-direction:column; gap:7px; width: 130px; }
.mini-lines span { height: 9px; border-radius: 4px; background: var(--hairline); }
.mini-lines span:nth-child(1){ width:70%; background: var(--primary); opacity:.7;}
.mini-lines span:nth-child(2){ width:100%; }
.mini-lines span:nth-child(3){ width:88%; }
.mini-prompt {
  width: 78%; background:#fff; border:1px solid var(--hairline);
  border-radius: 12px; padding: 12px; display:flex; flex-direction:column; gap:7px;
}
.mini-prompt .mp-row { display:flex; gap:6px; align-items:center; }
.mini-prompt .mp-dot { width:8px;height:8px;border-radius:50%;background:var(--primary);}
.mini-prompt .mp-bar { height:7px;border-radius:4px;background:var(--hairline);flex:1;}

/* ============================================================
   Process / patterns
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 56px; align-items: stretch; }
.step {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  box-sizing: border-box;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink-deep);
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
  margin-bottom: 20px;
}
.step h4 { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; }
.step-desc { display: block; font-size: 13px; font-weight: 400; color: var(--ink-soft); letter-spacing: 0; margin-top: 6px; line-height: 1.5; }

/* ============================================================
   Free deck audit (split + mock)
   ============================================================ */
.audit {
  background: var(--surface-soft);
}
.audit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.audit-points { list-style: none; padding: 0; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 18px; }
.audit-points li { display: flex; gap: 14px; }
.audit-points .ic {
  flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
  margin-top: 2px;
}
.audit-points strong { display: block; color: var(--ink-deep); font-size: 16px; }
.audit-points span.txt { color: var(--slate); font-size: 15px; }

/* audit mock card */
.audit-mock {
  background: var(--canvas);
  border-radius: var(--r-xxl);
  border: 1px solid var(--hairline-soft);
  box-shadow: 0 40px 80px -50px rgba(20,30,40,0.5);
  padding: 28px;
}
.am-file {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border-radius: var(--r-lg);
  background: var(--surface-tint); border: 1px solid var(--hairline-soft);
}
.am-file .pdf {
  width: 44px; height: 44px; border-radius: 9px;
  background: var(--ink-deep); color: #fff;
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}
.am-file .meta b { font-size: 15px; color: var(--ink-deep); }
.am-file .meta span { font-size: 13px; color: var(--slate); }
.am-file .badge-ok {
  margin-left: auto;
  background: rgba(46,158,91,0.12); color: var(--success);
  font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: var(--r-full);
}
.am-rows { margin: 22px 0; display: flex; flex-direction: column; }
.am-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid var(--hairline-soft);
  font-size: 15px;
}
.am-row span:first-child { color: var(--ink); font-weight: 500; }
.am-tag { font-size: 13px; font-weight: 700; padding: 4px 11px; border-radius: var(--r-full); }
.am-tag.warn { background: rgba(232,115,12,0.12); color: var(--attention); }
.am-tag.ok { background: rgba(46,158,91,0.12); color: var(--success); }
.am-tag.soft { background: var(--surface-soft); color: var(--slate); }
.am-tag.rev { background: var(--primary-soft); color: var(--primary); }
.am-foot {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink-deep); color: #fff;
  border-radius: var(--r-xl); padding: 20px 24px;
}
.am-foot .lbl { font-size: 14px; color: rgba(255,255,255,0.7); }
.am-foot .big { font-size: 17px; font-weight: 700; }
.am-score { text-align: right; }
.am-score .n { font-size: 30px; font-weight: 800; letter-spacing: -1px; }
.am-score .n .d { color: rgba(255,255,255,0.45); font-size: 18px; }

/* ============================================================
   Who this is for
   ============================================================ */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.aud-card {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl);
  padding: 30px 28px;
}
.aud-card .n { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.aud-card p { font-size: 17px; font-weight: 500; color: var(--ink-deep); line-height: 1.4; letter-spacing: -0.3px; }

/* ============================================================
   Transformation strip (dark promo)
   ============================================================ */
.promo-strip {
  background: var(--ink-deep);
  color: #fff;
  border-radius: var(--r-xxxl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-strip h2 { color: #fff; max-width: 880px; margin: 0 auto; }
.promo-strip .t-subtitle { color: rgba(255,255,255,0.74); max-width: 620px; margin: 22px auto 34px; }
.promo-glow {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,100,224,0.45), transparent 68%);
  filter: blur(20px);
  top: -200px; right: -120px; pointer-events: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl);
  background: var(--canvas);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 28px;
  font-size: 18px; font-weight: 700; color: var(--ink-deep); letter-spacing: -0.3px;
}
.faq-q .chev { color: var(--steel); transition: transform 250ms ease; flex: none; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-a-inner { padding: 0 28px 26px; color: var(--charcoal); font-size: 16px; line-height: 1.6; }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta { text-align: center; }
.final-cta .t-subtitle { max-width: 600px; margin: 22px auto 34px; }
.final-cta .hero-ctas { justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--hairline-soft);
  padding: 56px 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer .copy { font-size: 13px; color: var(--stone); }
.footer-center { flex: 1; text-align: center; }
.footer-right { text-align: right; white-space: nowrap; }
.footer-email { color: var(--stone); text-decoration: underline; text-decoration-color: var(--hairline); text-underline-offset: 3px; }
.footer-email:hover { color: var(--ink); }
.footer-links { display: flex; align-items: center; gap: 26px; flex: 1; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--slate); text-decoration: none; transition: color 160ms ease; }
.footer-links a:hover { color: var(--ink); }

/* ============================================================
   Hero single CTA + microcopy
   ============================================================ */
.hero-cta-single { display: flex; flex-direction: column; align-items: center; gap: 0; margin-top: 12px; }
.hero-cta-micro { font-size: 13.5px; color: var(--slate); margin: 16px 0 0; }
@media (max-width: 767px) { .hero-cta-micro { margin-top: 12px; } }

/* ============================================================
   Pitch OS email-capture modal
   ============================================================ */
.po-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: flex-start; justify-content: center; padding: 24px; overflow-y: auto; }
.po-modal.open { display: flex; }
.po-modal__overlay { position: fixed; inset: 0; background: rgba(16, 24, 40, 0.5); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.po-modal__dialog {
  position: relative; z-index: 1; margin: auto; width: 100%; max-width: 480px;
  background: #fff; border: 1px solid var(--hairline-soft); border-radius: 24px;
  padding: 40px; box-shadow: 0 44px 100px -46px rgba(16, 24, 40, 0.55);
  animation: poModalIn 240ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes poModalIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .po-modal__dialog { animation: none; } }
.po-modal__close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border: none; background: var(--surface-soft); color: var(--charcoal);
  border-radius: 10px; font-size: 22px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background 160ms ease, color 160ms ease;
}
.po-modal__close:hover { background: #E6E9ED; color: var(--ink-deep); }
.po-modal__eyebrow { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.po-modal__title { font-size: 25px; font-weight: 700; letter-spacing: -0.6px; line-height: 1.15; color: var(--ink-deep); margin: 0 0 10px; }
.po-modal__desc { font-size: 14.5px; line-height: 1.55; color: var(--charcoal); margin: 0 0 20px; }
.po-modal__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 9px; }
.po-modal__list li { position: relative; padding-left: 26px; font-size: 14px; color: var(--ink-deep); font-weight: 500; }
.po-modal__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 800; font-size: 13px; }
.po-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.po-field label { font-size: 13px; font-weight: 600; color: var(--ink-deep); }
.po-field input {
  width: 100%; box-sizing: border-box; padding: 12px 14px; font: inherit; font-size: 15px;
  color: var(--ink-deep); background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 12px; transition: border-color 160ms ease, box-shadow 160ms ease;
}
.po-field input::placeholder { color: #9AA7B0; }
.po-field input:focus-visible { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 100, 224, 0.16); }
.po-field input.po-invalid { border-color: #DC2626; }
.po-field input.po-invalid:focus-visible { box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.16); }
.po-error { font-size: 12.5px; color: #B91C1C; }
.po-consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 22px; font-size: 12.5px; line-height: 1.5; color: var(--charcoal); cursor: pointer; }
.po-consent input { flex: none; width: 17px; height: 17px; margin-top: 1px; accent-color: var(--primary); cursor: pointer; }
.po-consent input:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.po-submit { width: 100%; }
.po-submit:disabled { opacity: 0.65; cursor: default; }
.po-microcopy { text-align: center; font-size: 12.5px; color: var(--slate); margin: 12px 0 0; }
.po-privacy { font-size: 11.5px; line-height: 1.5; color: var(--slate); margin: 16px 0 0; }
.po-privacy a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 2px; }
.po-privacy a:hover { color: var(--ink); }
.po-form-error { margin: 14px 0 0; padding: 11px 14px; border-radius: 10px; background: rgba(220, 38, 38, 0.08); color: #B91C1C; font-size: 13px; font-weight: 500; }
#poSuccessView { text-align: center; padding: 8px 0; }
.po-success-icon { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%; background: rgba(22, 163, 74, 0.1); color: #15803D; display: grid; place-items: center; font-size: 26px; font-weight: 800; }
#poSuccessView .po-modal__eyebrow { color: #15803D; }
#poSuccessView .btn { width: 100%; margin-top: 8px; }
.po-download { display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.po-dl-icon { flex: none; }
.po-download-meta { font-size: 13px; font-weight: 600; color: var(--ink-deep); margin: 14px 0 2px; }
.po-download-hint { font-size: 12.5px; color: var(--slate); margin: 0 0 4px; }
.po-success-close { display: inline-block; margin-top: 18px; padding: 6px 10px; background: none; border: none; font: inherit; font-size: 13px; color: var(--slate); cursor: pointer; border-radius: 8px; }
.po-success-close:hover { color: var(--ink-deep); }
.po-success-close:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
#poDownloadError { text-align: left; }
@media (max-width: 520px) {
  .po-modal { padding: 0; align-items: stretch; }
  .po-modal__dialog { border-radius: 0; min-height: 100%; padding: 56px 22px 32px; max-width: none; }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
/* Only hide-before-reveal when JS is present; no-JS falls back to fully visible */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Pitch OS update — new components (existing tokens only)
   ============================================================ */
/* Hero supporting bullets */
.hero-bullets {
  list-style: none; padding: 0;
  margin: 0 auto 30px;
  max-width: 680px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 28px; text-align: left;
}
.hero-bullets li { display: flex; gap: 12px; align-items: flex-start; }
.hero-bullets .ic {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary-soft, rgba(0,100,224,0.1)); color: var(--primary);
  display: grid; place-items: center; font-size: 13px; font-weight: 700; margin-top: 1px;
}
.hero-bullets span:last-child { font-size: 15.5px; color: var(--charcoal); line-height: 1.4; font-weight: 500; }

/* Hero price line */
.hero-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-top: 4px; font-size: 15px; color: var(--slate); font-weight: 500;
}
.hero-price strong { color: var(--ink-deep); font-weight: 700; }
.hero-price .was { text-decoration: line-through; color: var(--steel); }

/* Problem chips — warn variant */
.chip--warn .tick { color: var(--attention); }

/* Four-up deliverables */
.deliverables--4 { grid-template-columns: 1fr 1fr; max-width: 980px; margin-left: auto; margin-right: auto; }

/* Skill-file list inside a deliverable card */
.skill-list { list-style: none; padding: 0; margin: 4px 0 0; display: grid; gap: 8px; }
.skill-list li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--ink-deep); font-weight: 500; }
.skill-list .sf-num {
  flex: none; width: 24px; height: 24px; border-radius: 6px;
  background: var(--surface-soft); color: var(--ink-soft);
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}

/* Before/After scorecard visual */
.deliv-visual--score {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  background: #FEFDFD; background-image: none;
}
.score-col { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.score-cap { font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--slate); }
.score-num { font-size: 44px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.score-before { color: #FFB76C; }
.score-after { color: #26CCC2; }
.score-of { font-size: 12px; color: var(--steel); font-weight: 600; }
.score-arrow { font-size: 24px; color: var(--stone); }

/* Workflow steps — 8 across 4 columns */
.steps--flow { grid-template-columns: repeat(4, 1fr); }

/* FOMO body */
.fomo-body { max-width: 680px; margin: 30px auto 0; text-align: center; }
.fomo-body p { font-size: 18px; line-height: 1.6; color: var(--charcoal); margin: 0 0 18px; }
.fomo-body p:last-child { margin-bottom: 0; color: var(--ink-deep); font-weight: 600; }
.fomo-body .silence { color: var(--ink-deep); font-weight: 600; }

/* Pricing card */
.price-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xxl);
  box-shadow: 0 50px 90px -60px rgba(20, 30, 40, 0.45);
  padding: 38px 34px 32px;
}
.price-label { font-size: 13px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--slate); }
.price-amounts { display: flex; align-items: baseline; gap: 14px; margin: 14px 0 6px; }
.price-old { font-size: 28px; font-weight: 600; color: var(--steel); text-decoration: line-through; letter-spacing: -1px; }
.price-now { font-size: 60px; font-weight: 800; color: var(--ink-deep); letter-spacing: -2.5px; line-height: 1; }
.price-now .per { font-size: 18px; font-weight: 600; color: var(--slate); letter-spacing: 0; }
.price-save {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--success); background: rgba(46,158,91,0.1);
  padding: 6px 12px; border-radius: var(--r-full);
}
.price-list { list-style: none; padding: 0; margin: 26px 0 28px; display: grid; gap: 14px; }
.price-list li { display: flex; gap: 12px; align-items: flex-start; }
.price-list .ic {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(46,158,91,0.12); color: var(--success);
  display: grid; place-items: center; font-size: 13px; font-weight: 700; margin-top: 1px;
}
.price-list span:last-child { font-size: 15px; color: var(--ink-deep); line-height: 1.45; font-weight: 500; }
.price-card .btn { width: 100%; justify-content: center; }
.price-note { font-size: 13px; color: var(--slate); text-align: center; margin: 14px 0 0; line-height: 1.5; }

@media (max-width: 767px) {
  .hero-bullets { grid-template-columns: 1fr; max-width: 360px; }
  .steps--flow { grid-template-columns: repeat(2, 1fr); }
  .deliverables--4 { grid-template-columns: 1fr; max-width: 560px; }
  .price-now { font-size: 52px; }
}

/* ============================================================
   Product blocks — "What you get" (large alternating)
   ============================================================ */
.po-blocks { display: flex; flex-direction: column; gap: 28px; margin-top: 64px; }
.po-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xxxl);
  padding: 56px 60px;
  transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.po-block:hover {
  border-color: var(--hairline);
  box-shadow: 0 44px 84px -58px rgba(20, 30, 40, 0.46);
  transform: translateY(-2px);
}
.po-block--flip .po-figure { order: -1; }

.po-num {
  font-size: 13px; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 20px;
}
.po-block h3 {
  font-size: clamp(27px, 2.6vw, 34px);
  font-weight: 600; line-height: 1.12; letter-spacing: -1px;
  color: var(--ink-deep); margin-bottom: 22px;
  text-wrap: balance;
}
.po-copy { display: flex; flex-direction: column; gap: 15px; }
.po-copy p { font-size: 15.5px; line-height: 1.62; color: var(--charcoal); margin: 0; text-wrap: pretty; }
.po-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

/* Six-step skill list inside block 02 */
.po-steps {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.po-steps li { display: flex; gap: 10px; align-items: center; font-size: 14.5px; color: var(--ink-deep); font-weight: 500; }
.po-steps .sf-num {
  flex: none; width: 26px; height: 26px; border-radius: 7px;
  background: var(--surface-soft); color: var(--ink);
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}

/* Block figure */
.po-figure {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  position: relative;
}
.po-figure--img { background: var(--surface-soft); }
.po-figure--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.po-figure--framed { background: #FEFDFD; padding: 34px; }
.po-figure--framed img {
  width: 100%; height: auto; max-height: 100%; object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 14px 38px -14px rgba(16, 24, 40, 0.26), 0 2px 6px -2px rgba(16, 24, 40, 0.08);
}
.po-figure--score {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  background: #FEFDFD;
}
.po-figure--score .score-num { font-size: clamp(48px, 6vw, 64px); }

/* Section CTA after the four blocks */
.po-cta { text-align: center; margin-top: 56px; }
.po-cta-headline {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700; letter-spacing: -0.8px; line-height: 1.1;
  color: var(--ink-deep); margin: 0 auto 20px; max-width: 640px;
  text-wrap: balance;
}
.po-cta-sub {
  font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6;
  color: var(--charcoal); max-width: 520px; margin: 0 auto 28px;
  font-weight: 400; text-wrap: pretty;
}
.po-cta > p:first-child {
  font-size: clamp(38px, 4vw, 46px); font-weight: 600; color: var(--ink-deep);
  letter-spacing: -0.5px; max-width: 640px; margin: 0 auto 26px; line-height: 1.0;
  text-wrap: balance;
}
.po-cta .price-note { font-size: 13px; font-weight: 400; color: var(--slate); margin: 16px 0 0; }

@media (max-width: 1023px) {
  .po-block { grid-template-columns: 1fr; gap: 40px; padding: 48px 44px; }
  .po-block--flip .po-figure { order: 0; }
}
@media (max-width: 767px) {
  .po-block { padding: 32px 24px; border-radius: var(--r-xxl); }
  .po-steps { grid-template-columns: 1fr; }
  .po-figure--framed { padding: 22px; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1023px) {
  .deliverables { grid-template-columns: 1fr; max-width: 560px; margin-left:auto; margin-right:auto; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .audience { grid-template-columns: 1fr 1fr; }
  .audit-split { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Hero title entrance animation — page load, once, no loop
   ============================================================ */
@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-title-anim {
    animation: heroTitleIn 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 80ms;
  }
}

@media (max-width: 767px) {
  .wrap { padding: 0 20px; }
  .section-pad { padding: 56px 0; }
  .section-pad-lg { padding: 64px 0; }
  .hero { padding: 36px 0 64px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .audience { grid-template-columns: 1fr; }
  .promo-strip { padding: 56px 28px; border-radius: var(--r-xxl); }
  .audit-mock { padding: 20px; }
  .footer-inner { flex-direction: column; align-items: center; gap: 16px; }
  .footer-center { text-align: center; }
  .footer-right { text-align: center; white-space: normal; }
}

@media (max-width: 479px) {
  .steps { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
}
