:root {
  --plum: #2c001f;
  --purple: #51147a;
  --purple-deep: #3b0b5c;
  --gold: #f4a51c;
  --cream: #f6f0e8;
  --ink: #171217;
  --muted: #665f66;
  --white: #ffffff;
  --line: rgba(44,0,31,.14);
  --shadow: 0 24px 70px rgba(44, 0, 31, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--gold); padding: 10px 14px; z-index: 999; }
.skip-link:focus { left: 10px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; display: grid; line-height: 1.05; }
.brand-name { color: var(--plum); font-family: Georgia, serif; font-size: 18px; font-weight: 700; }
.brand-tag { margin-top: 5px; color: var(--purple); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: 0 24px; border: 0; border-radius: 4px; background: var(--gold); color: var(--plum); font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; box-shadow: 0 12px 25px rgba(244,165,28,.24); }
.button:hover { transform: translateY(-2px); background: #ffb631; }
.button-small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.button-full { width: 100%; }
.text-link { font-weight: 800; text-decoration: none; color: var(--white); }
.text-link span { color: var(--gold); }

.hero { overflow: hidden; position: relative; background: linear-gradient(135deg, var(--plum) 0%, var(--purple-deep) 45%, var(--purple) 100%); color: var(--white); }
.hero::before, .hero::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.08); transform: rotate(45deg); }
.hero::before { width: 520px; height: 520px; right: -250px; top: -220px; }
.hero::after { width: 340px; height: 340px; left: 42%; bottom: -260px; }
.hero-grid { min-height: 720px; padding-block: 78px; display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 74px; position: relative; z-index: 1; }
.eyebrow, .section-kicker { margin: 0 0 18px; font-size: 12px; letter-spacing: .18em; font-weight: 900; text-transform: uppercase; }
.eyebrow { color: var(--gold); }
h1, h2, h3 { margin-top: 0; line-height: 1.05; }
h1 { margin-bottom: 26px; font-family: "Archivo Black", Impact, sans-serif; font-size: clamp(52px, 6.5vw, 92px); letter-spacing: -.045em; text-transform: uppercase; }
h1 span { color: var(--gold); }
.hero-lead { max-width: 760px; margin: 0; font-size: 19px; color: rgba(255,255,255,.87); }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.proof-strip { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.proof-strip div { padding: 18px 18px 18px 0; display: grid; gap: 2px; }
.proof-strip strong { color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.proof-strip span { font-size: 13px; color: rgba(255,255,255,.68); }
.hero-visual { position: relative; align-self: end; }
.hero-visual img { width: 100%; max-height: 610px; object-fit: cover; object-position: center top; border-radius: 210px 210px 16px 16px; box-shadow: var(--shadow); position: relative; z-index: 2; }
.gold-block { position: absolute; width: 68%; height: 74%; right: -22px; bottom: 30px; background: var(--gold); border-radius: 210px 210px 12px 12px; z-index: 1; }
.host-card { position: absolute; z-index: 3; left: -42px; bottom: 34px; background: var(--white); color: var(--plum); padding: 18px 22px; min-width: 250px; box-shadow: var(--shadow); border-left: 6px solid var(--gold); }
.host-card span, .host-card small { display: block; }
.host-card span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 900; color: var(--purple); }
.host-card strong { display: block; margin: 2px 0; font-size: 20px; }
.host-card small { color: var(--muted); }

.marquee { overflow: hidden; background: var(--gold); color: var(--plum); padding: 13px 20px; font-size: 12px; letter-spacing: .14em; font-weight: 900; text-align: center; white-space: nowrap; }
.marquee span { margin-inline: 18px; }
.section { padding-block: 100px; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-purple { position: relative; overflow: hidden; background: var(--purple); color: var(--white); }
.section-purple::after { content: ""; position: absolute; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.08); right: -250px; bottom: -220px; transform: rotate(45deg); }
.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; }
.section-kicker { color: var(--purple); }
.section-kicker.gold { color: var(--gold); }
h2 { font-family: "Archivo Black", Impact, sans-serif; font-size: clamp(36px, 4.6vw, 64px); letter-spacing: -.035em; text-transform: uppercase; }
.body-copy { font-size: 18px; color: var(--muted); }
.body-copy p:first-child { margin-top: 0; }
.callout { margin-top: 28px; padding: 22px; border-left: 5px solid var(--gold); background: var(--cream); color: var(--plum); font-weight: 800; }
.centered { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.centered p:last-child { color: rgba(255,255,255,.7); }
.steps-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step-card { min-height: 265px; padding: 28px 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.step-card span { color: var(--gold); font-family: "Archivo Black", Impact, sans-serif; font-size: 32px; }
.step-card h3 { margin: 42px 0 12px; font-size: 22px; }
.step-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: center; }
.preview-card { background: var(--plum); padding: 14px; box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.preview-card img { width: 100%; min-height: 260px; object-fit: cover; }
.preview-caption { padding: 20px 12px 10px; color: var(--white); }
.preview-caption span { color: var(--gold); font-size: 10px; letter-spacing: .18em; font-weight: 900; }
.preview-caption strong { display: block; margin-top: 6px; font-size: 19px; line-height: 1.25; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.check-list li { position: relative; padding-left: 38px; font-size: 17px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 25px; height: 25px; display: grid; place-items: center; background: var(--gold); color: var(--plum); font-weight: 900; }
.audience-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-cards div { padding: 28px; border: 1px solid var(--line); border-top: 5px solid var(--gold); }
.audience-cards strong, .audience-cards span { display: block; }
.audience-cards strong { color: var(--plum); font-size: 20px; }
.audience-cards span { margin-top: 8px; color: var(--muted); }
.host-section { background: var(--plum); color: var(--white); }
.host-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: center; }
.host-photo-frame { border: 12px solid var(--white); box-shadow: 20px 20px 0 var(--gold); }
.host-photo-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.host-title { color: var(--gold); font-weight: 800; font-size: 18px; }
.host-grid p:not(.section-kicker):not(.host-title) { color: rgba(255,255,255,.76); font-size: 17px; }
.registration { padding-block: 110px; background: linear-gradient(135deg, var(--purple-deep), var(--purple)); color: var(--white); }
.registration-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 74px; align-items: center; }
.registration-grid > div > p:not(.section-kicker) { font-size: 20px; color: rgba(255,255,255,.78); }
.event-details { margin-top: 40px; display: grid; gap: 14px; }
.event-details div { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.16); display: flex; justify-content: space-between; gap: 20px; }
.event-details span { color: var(--gold); font-size: 11px; letter-spacing: .16em; font-weight: 900; }
.registration-form { background: var(--white); color: var(--ink); padding: 34px; box-shadow: var(--shadow); }
.registration-form h3 { color: var(--plum); font-size: 28px; }
.registration-form label { display: block; margin: 14px 0 6px; font-size: 13px; font-weight: 800; }
.registration-form input, .registration-form textarea { width: 100%; padding: 13px 14px; border: 1px solid #d8cfd6; border-radius: 3px; background: #fff; font: inherit; }
.registration-form input:focus, .registration-form textarea:focus { outline: 3px solid rgba(244,165,28,.32); border-color: var(--gold); }
.registration-form .button { margin-top: 20px; }
.form-note { margin-bottom: 0; font-size: 11px; color: var(--muted); }
.hidden { position: absolute; left: -9999px; }
.site-footer { background: #15000f; color: rgba(255,255,255,.72); padding-block: 34px; }
.footer-wrap { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-wrap div { display: grid; }
.footer-wrap strong { color: var(--white); }
.footer-wrap span { font-size: 13px; }
.footer-wrap p { font-size: 12px; }

@media (max-width: 980px) {
  .hero-grid, .two-col, .feature-grid, .audience-grid, .host-grid, .registration-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 60px; gap: 50px; }
  .hero-visual { max-width: 560px; margin-inline: auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .host-photo-frame { max-width: 420px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header .button-small { display: none; }
  .hero-grid { min-height: auto; padding-block: 52px 64px; }
  h1 { font-size: 46px; }
  h2 { font-size: 38px; }
  .hero-lead { font-size: 17px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { border-bottom: 1px solid rgba(255,255,255,.12); }
  .host-card { left: 12px; right: 12px; min-width: 0; }
  .gold-block { right: -8px; }
  .section { padding-block: 72px; }
  .steps-grid, .audience-cards { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .step-card h3 { margin-top: 24px; }
  .registration-form { padding: 24px 20px; }
  .event-details div, .footer-wrap { align-items: flex-start; flex-direction: column; }
  .marquee { text-align: left; }
}

/* Conversion-copy and bio-section revisions */
.hero-support { max-width: 760px; margin: 18px 0 0; color: rgba(255,255,255,.72); font-size: 16px; }
.problem-section strong { color: var(--plum); }
.dark-copy p:last-child { color: var(--muted); }
.outcomes-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.outcomes-grid article { padding: 28px 22px; background: var(--white); border-top: 5px solid var(--gold); box-shadow: 0 12px 30px rgba(44,0,31,.08); }
.outcomes-grid span { color: var(--purple); font-family: "Archivo Black", Impact, sans-serif; font-size: 28px; }
.outcomes-grid h3 { margin: 28px 0 12px; color: var(--plum); font-size: 20px; }
.outcomes-grid p { margin: 0; color: var(--muted); font-size: 14px; }

/* Bio now follows the light editorial branding rather than a dark-purple block. */
.host-section-light { background: var(--cream); color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.host-section-light .host-photo-frame { border-color: var(--white); box-shadow: 20px 20px 0 var(--gold); background: var(--white); }
.host-section-light .section-kicker { color: var(--purple); }
.host-section-light h2 { color: var(--plum); }
.host-section-light .host-title { color: var(--purple); }
.host-section-light .host-grid p:not(.section-kicker):not(.host-title) { color: var(--muted); }
.credibility-intro { margin-bottom: 12px; font-weight: 800; color: var(--plum) !important; }
.client-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.client-list span { padding: 9px 13px; border: 1px solid rgba(44,0,31,.16); background: var(--white); color: var(--plum); font-size: 12px; font-weight: 900; letter-spacing: .04em; }

.continuation-section { background: var(--plum); color: var(--white); }
.continuation-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.continuation-grid p { margin-top: 0; color: rgba(255,255,255,.78); font-size: 17px; }
.continuation-note { padding: 20px; border-left: 5px solid var(--gold); background: rgba(255,255,255,.08); color: var(--white) !important; font-weight: 700; }

@media (max-width: 1100px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .continuation-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; text-align: center; }
  .client-list span { flex: 1 1 44%; text-align: center; }
}

/* v8 editorial refresh */
html, body, button, input, textarea, select { font-family: Arial, Helvetica, sans-serif !important; }
body { font-size: 18px; }
p, li, label, input, textarea, .form-note, .hero-support, .hero-lead { font-size: 1.05rem; line-height: 1.65; }
.site-header, .button, .eyebrow, .section-kicker, .brand-name, h1, h2, h3 { font-family: Arial, Helvetica, sans-serif !important; }
h1 { font-weight: 900; letter-spacing: -0.045em; }
h2 { font-weight: 800; }
.hero-visual { overflow: hidden; }
.hero-visual img { object-position: center top; }
.host-card { display: none !important; }
.proof-strip div strong { font-size: 1rem; line-height: 1.25; }
.proof-strip div span { font-size: .95rem; line-height: 1.35; }
.pathway-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:2.5rem; }
.pathway-grid article { border:1px solid rgba(44,0,31,.18); background:#fff; padding:2rem; box-shadow:0 12px 28px rgba(44,0,31,.07); }
.pathway-grid article > span { color:#f28c28; font-weight:800; letter-spacing:.12em; }
.pathway-grid h3 { color:#2c001f; font-size:1.45rem; margin:.8rem 0; }
.pathway-grid p { color:#4d3a47; }
.pathway-grid strong { display:block; color:#5a197c; margin-top:1.25rem; font-size:1rem; text-transform:uppercase; letter-spacing:.05em; }
@media (max-width: 900px) { .pathway-grid { grid-template-columns:1fr; } body { font-size:17px; } }


/* v9 Stripe checkout integration */
.stripe-payment-card { border-radius: 18px; border-top: 7px solid var(--gold); }
.payment-kicker { margin: 0 0 8px; color: var(--purple); font-size: .82rem !important; font-weight: 900; letter-spacing: .14em; }
.stripe-payment-card h3 { margin: 0 0 12px; font-size: 2rem; }
.payment-message { margin: 0 0 22px; color: var(--plum); font-weight: 800; font-size: 1.15rem !important; line-height: 1.45; }
.payment-price { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin: 22px 0; padding: 18px 0; border-top: 1px solid #e5dce3; border-bottom: 1px solid #e5dce3; }
.payment-price span { color: var(--muted); font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.payment-price strong { color: var(--purple); font-size: 3.25rem; line-height: .9; }
.payment-benefits { margin: 0 0 25px; padding: 0; list-style: none; display: grid; gap: 11px; }
.payment-benefits li { position: relative; padding-left: 29px; color: var(--muted); font-size: 1rem; line-height: 1.45; }
.payment-benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--purple); font-weight: 900; }
.stripe-button-shell { width: 100%; min-height: 54px; display: flex; justify-content: center; margin: 8px 0 16px; }
.stripe-button-shell stripe-buy-button { width: 100%; max-width: 420px; }
.stripe-fallback { margin: 10px 0 12px; color: var(--muted); font-size: .84rem !important; line-height: 1.45; text-align: center; }
.stripe-fallback a { color: var(--purple); font-weight: 800; text-decoration: underline; }
.stripe-payment-card .form-note { font-size: .78rem !important; line-height: 1.45; text-align: center; }
@media (max-width: 640px) {
  .payment-price strong { font-size: 2.7rem; }
  .stripe-payment-card { padding: 26px 20px; }
}

/* v11 live intelligence workshop example + hero credibility logos */
.hero { overflow: visible; }
.hero-grid { align-items: center; }
.hero-visual { overflow: visible; align-self: center; padding-bottom: 0; }
.hero-visual .hero-photo { border-radius: 210px 210px 16px 16px; }
.hero-trust-card {
  position: relative;
  z-index: 4;
  width: calc(100% + 54px);
  margin: -10px 0 0 -27px;
  padding: 20px 18px 18px;
  background: #fff;
  color: var(--plum);
  border-top: 5px solid var(--gold);
  box-shadow: 0 20px 50px rgba(20,0,24,.28);
}
.hero-trust-card p {
  margin: 0 0 16px;
  text-align: center;
  color: var(--plum);
  font-size: .98rem;
  line-height: 1.45;
}
.hero-trust-card p strong { color: var(--purple); }
.hero-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
  align-items: center;
}
.hero-logo-grid img {
  width: 100%;
  height: 38px;
  max-height: 38px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}
.hero-logo-grid img[alt="Ocean Spray"],
.hero-logo-grid img[alt="United Way"] { height: 48px; max-height: 48px; }

.live-example-section {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}
.live-example-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.live-example-flow article {
  position: relative;
  min-height: 245px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 6px solid var(--gold);
  box-shadow: 0 12px 28px rgba(44,0,31,.07);
}
.live-example-flow article::after {
  content: "→";
  position: absolute;
  right: -17px;
  top: 48%;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-weight: 900;
}
.live-example-flow article:nth-child(3)::after,
.live-example-flow article:nth-child(6)::after { display: none; }
.live-example-flow span {
  color: var(--purple);
  font-weight: 900;
  letter-spacing: .12em;
}
.live-example-flow h3 {
  margin: 18px 0 12px;
  color: var(--plum);
  font-size: 1.3rem;
  line-height: 1.15;
}
.live-example-flow p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
}
.live-example-outcome {
  margin-top: 28px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  background: var(--plum);
  color: #fff;
  border-left: 7px solid var(--gold);
}
.live-example-outcome strong { color: var(--gold); }
.live-example-outcome span { color: rgba(255,255,255,.85); }

@media (max-width: 980px) {
  .hero-trust-card { width: 100%; margin: -10px 0 0; }
  .live-example-flow { grid-template-columns: repeat(2, 1fr); }
  .live-example-flow article:nth-child(3)::after { display: grid; }
  .live-example-flow article:nth-child(2n)::after { display: none; }
}
@media (max-width: 640px) {
  .hero-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo-grid img:last-child { grid-column: 1 / -1; justify-self: center; max-width: 130px; }
  .live-example-flow { grid-template-columns: 1fr; }
  .live-example-flow article { min-height: auto; }
  .live-example-flow article::after { display: none !important; }
  .live-example-outcome { grid-template-columns: 1fr; }
}
