:root {
  --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-card: 1.4rem;
  --radius-pill: 999px;
  --radius-inset: 0.75rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #eef2ea;
  color: #1d1c1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: #1d1c1a;
}

p, li { color: #474641; font-size: 16px; line-height: 1.65; }
strong { color: #1d1c1a; font-weight: 600; }

a { color: #4f06eb; text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }

.zone { width: 100%; padding: 96px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

.zone-sage { background: #eef2ea; color: #1d1c1a; }
.zone-cream { background: #f0eee6; color: #1d1c1a; }
.zone-dark {
  background: #1d1c1a;
  color: #eef2ea;
}
.zone-dark h1, .zone-dark h2, .zone-dark h3 { color: #ffffff; }
.zone-dark .accent { color: #cfff5e; }
.zone-dark .muted { color: #b3b3b3; }
.zone-dark p, .zone-dark li { color: #d8d6cf; }

/* ---- Site logo ---- */
.site-logo-wrap {
  position: fixed;
  top: 24px; left: 32px;
  z-index: 200;
}
.site-logo-wrap img { width: 108px; height: auto; display: block; }

/* ---- Hero ---- */
.hero {
  padding: 140px 24px 96px;
  text-align: center;
}
.hero .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 auto 24px;
  max-width: 820px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 40px;
}
.scroll-hint a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  transition: all .2s ease;
}
.scroll-hint a:hover { border-color: #cfff5e; color: #cfff5e; }
.scroll-hint .arrow { display: inline-block; transition: transform .25s ease; }
.scroll-hint a:hover .arrow { transform: translateY(3px); }

/* ---- Section headers ---- */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  max-width: 760px;
  margin: 0 auto;
}
.section-head p { max-width: 560px; margin: 16px auto 0; }

/* ---- Signature card ---- */
.alex-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  position: relative;
  box-shadow: 8px 10px 0 0 #4f06eb;
}
.alex-card h3 { font-size: 1.6rem; font-weight: 700; margin: 0 0 10px; }

/* ---- Play cards ---- */
.plays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.play-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: 8px 10px 0 0 #4f06eb;
}
.play-card h3 { font-size: 1.7rem; font-weight: 700; margin-bottom: 14px; }
.play-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
/* Chips are metadata labels, not controls: outlined and quiet so nothing
   on the card invites a click that goes nowhere. */
.chip {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: transparent;
  color: #474641;
  border: 1px solid #c9c7c0;
  cursor: default;
}
.chip-violet { background: transparent; color: #4f06eb; border-color: #4f06eb; }
.chip-draft { background: #f0eee6; color: #474641; border: 1px dashed #b3b3b3; }
.play-card .price-note {
  font-size: 12.5px;
  color: #b3833a;
  margin-top: -4px;
  margin-bottom: 16px;
}
.play-card p { margin-bottom: 14px; }
.play-card strong { color: #1d1c1a; }
.play-examples {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.play-examples span { color: #4f06eb; text-transform: none; letter-spacing: normal; font-weight: 600; }

/* ---- Erica pov note ---- */
.erica-note {
  margin-top: 20px;
  background: rgba(79, 6, 235, 0.07);
  border: 1px solid rgba(79, 6, 235, 0.16);
  border-radius: var(--radius-inset);
  padding: 18px 20px;
}
.erica-note .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #4f06eb;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.erica-note p { margin: 0; font-size: 14.5px; font-style: normal; }

/* ---- Proof gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.gallery-card {
  background: #ffffff;
  border-radius: var(--radius-inset);
  padding: 24px;
  border: 1px solid #e5e7eb;
}
.gallery-card .region-year {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b3b3b3;
  margin-bottom: 10px;
}
.gallery-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.gallery-card .outcome { font-size: 14px; color: #474641; margin-bottom: 12px; }
.report-chip {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: #4f06eb;
}

/* ---- Reporting section ---- */
.reporting-body p { max-width: 720px; margin: 0 auto 18px; }
.reporting-body { text-align: left; }

/* ---- Closing CTA ---- */
.cta-card {
  background: #cfff5e;
  border-radius: var(--radius-card);
  padding: 48px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-card blockquote {
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius-inset);
  padding: 20px 24px;
  font-size: 15px;
  color: #1d1c1a;
  text-align: left;
  margin: 20px 0;
  font-style: normal;
}
.cta-card p.sla { font-size: 14px; font-weight: 600; margin-top: 8px; }

/* ---- Footer ---- */
.alex-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 32px 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b3b3b3;
}
.alex-footer .footer-left { text-align: left; }
.alex-footer .footer-center { text-align: center; }
.alex-footer .footer-right { text-align: right; }
.alex-footer .footer-right img { width: 28px; height: auto; }

@media (max-width: 768px) {
  .zone { padding: 56px 16px; }
  .hero { padding: 120px 16px 64px; }
  .plays-grid { grid-template-columns: 1fr; }
  .alex-footer { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .alex-footer .footer-left, .alex-footer .footer-center, .alex-footer .footer-right { text-align: center; }
  .play-card, .alex-card { box-shadow: 4px 6px 0 0 #4f06eb; }
}
