/* ============================================================
   PollenPal — shared stylesheet
   Tokens defined once here; reused across every page.
============================================================ */

:root {
  --gold: #E8A43A;
  --gold-dark: #C2851A;
  --cream: #FFECB7;
  --cream-soft: #FFF8E7;
  --ink: #0A0A0A;
  --ink-soft: #3A3A3A;
  --muted: #6B6B6B;
  --line: #EAEAEA;
  --bg: #FFFFFF;
  --success: #1F8A3B;
  --alert: #E04A3A;
  --radius: 8px;
  --radius-lg: 14px;
  --wrap: 1240px;
  --gutter: 32px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Custom bee cursor: stylized stripes + wings, brand palette */
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><ellipse cx='12.5' cy='10' rx='5.5' ry='3.5' fill='%23ffffff' fill-opacity='0.92' stroke='%230A0A0A' stroke-width='1.2'/><ellipse cx='19.5' cy='10' rx='5.5' ry='3.5' fill='%23ffffff' fill-opacity='0.92' stroke='%230A0A0A' stroke-width='1.2'/><ellipse cx='16' cy='19' rx='8.5' ry='6' fill='%23E8A43A' stroke='%230A0A0A' stroke-width='1.6'/><rect x='12.6' y='13.5' width='1.8' height='11' fill='%230A0A0A'/><rect x='16.1' y='13.5' width='1.8' height='11' fill='%230A0A0A'/><rect x='19.6' y='14.5' width='1.8' height='9' fill='%230A0A0A'/></svg>") 16 18, auto;
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: 120px 0; }
.section-tight { padding: 96px 0; }
/* When a .section directly follows the hero, collapse its top padding
   so the gap between hero and first content section reads as one rhythm
   not two stacked. */
.hero + .section { padding-top: 64px; }
.bg-cream { background: var(--cream-soft); }
.bg-ink { background: var(--ink); color: #fff; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }

h1 { font-size: clamp(46px, 6.2vw, 88px); line-height: 0.98; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
/* .eyebrow is inline-flex so it sits inline next to text by default.
   .eyebrow.center promotes it to a block-level flex container so it
   self-centers regardless of whether the parent has text-align center. */
.eyebrow.center { display: flex; justify-content: center; }
.eyebrow.center::before { display: none; }

.serif-italic {
  font-style: italic;
  font-weight: inherit;
  color: var(--gold-dark);
}

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
}
.lede.center { margin-left: auto; margin-right: auto; text-align: center; }

.muted { color: var(--muted); }
.label-sm {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-gold { background: var(--gold-dark); color: #fff; border-color: var(--gold-dark); }
.btn-gold:hover { background: var(--ink); border-color: var(--ink); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-logo img { height: 32px; }
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.current { color: var(--ink); font-weight: 600; }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 32px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.site-footer .footer-brand .footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.site-footer .footer-brand .footer-wordmark img {
  height: 28px;
  width: auto;
}
.site-footer .footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 280px; }
.site-footer h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.site-footer ul a:hover { color: var(--gold); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ===== STAT/METRIC PRIMITIVES ===== */
.proof-row {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.proof-item { display: flex; flex-direction: column; }
.proof-num { font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.proof-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.stat-strip .stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.stat-strip .stat-num { font-size: 28px; font-weight: 700; color: var(--gold-dark); letter-spacing: -0.02em; }
.stat-strip .stat-label { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.4; }

/* ===== SKIP LINK + A11Y ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE BASE ===== */
@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .section-tight { padding: 56px 0; }
  .nav-links { display: none; }
  /* Push the hamburger to the right edge of the header so it sits
     next to the CTA button instead of floating in the middle. */
  .nav-toggle { display: block; margin-left: auto; margin-right: 12px; }
  .nav-toggle.open + .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter);
    gap: 16px;
  }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .stat-strip { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  /* Force 3 equal columns so the proof items don't wrap to a 2 + 1
     awkward grid. The numbers and labels are short enough to fit. */
  .proof-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .proof-num { font-size: 22px; }
  .proof-label { font-size: 11px; line-height: 1.35; }
}

/* ===== BACKED BY STRIP ===== */
.backed-strip {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.backed-strip .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.backed-strip .label-sm { color: var(--ink-soft); font-weight: 700; }
.backed-strip .brands {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
  flex-wrap: wrap;
}
.backed-strip .brands span.dot { color: var(--gold); }

/* ===== PROBLEM SECTION ===== */
.problem h2 { max-width: 900px; margin: 0 auto 28px; text-align: center; }
.problem .lede { margin: 0 auto 64px; text-align: center; }
.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--cream-soft);
  border-left: 3px solid var(--gold-dark);
  padding: 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.problem-card h3 { margin-bottom: 12px; }
.problem-card p { color: var(--ink-soft); font-size: 16px; }
.stat-bar {
  background: var(--ink);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 19px;
  font-weight: 500;
}
.stat-bar .num { color: var(--gold); font-size: 28px; font-weight: 700; }
@media (max-width: 720px) {
  .problem-cards { grid-template-columns: 1fr; }
}

/* ===== HOW IT WORKS ===== */
.how h2 { text-align: center; max-width: 800px; margin: 0 auto 24px; }
.how .lede { margin: 0 auto 64px; text-align: center; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.step-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--cream-soft);
}
.step-body { padding: 28px; }
.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 12px; font-size: 22px; }
.step p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .step-img { height: 200px; }
}

/* ===== WHY POLLENPAL ===== */
.advantage h2 { text-align: center; max-width: 900px; margin: 0 auto 28px; }
.advantage .lede { margin: 0 auto 72px; text-align: center; }
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.adv-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.adv-num {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.adv-card h3 { font-size: 22px; margin-bottom: 14px; line-height: 1.2; }
.adv-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.adv-card p .data-quote {
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-dark);
  line-height: 1.45;
}
@media (max-width: 960px) {
  .advantage-grid { grid-template-columns: 1fr; }
}

/* ===== TRACTION ===== */
.traction h2 { text-align: center; margin-bottom: 24px; }
.traction .lede { margin: 0 auto 56px; text-align: center; }

/* ===== ROADMAP ===== */
.roadmap h2 { text-align: center; margin: 0 auto 24px; max-width: 900px; }
.roadmap .lede { margin: 0 auto 64px; text-align: center; }
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.timeline::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  width: calc(66% - 8%);
  height: 2px;
  background: var(--gold);
  z-index: 1;
}
.tl-stage { position: relative; z-index: 2; text-align: center; padding-top: 0; }
.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--cream-soft);
  margin: 16px auto 24px;
  box-shadow: 0 0 0 2px var(--gold-dark);
}
.tl-stage:nth-child(3) .tl-dot { background: #fff; box-shadow: 0 0 0 2px var(--line); }
.tl-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.tl-stage:nth-child(1) .tl-pill { background: var(--gold); color: var(--ink); }
.tl-stage:nth-child(2) .tl-pill { background: var(--gold); color: var(--ink); }
.tl-stage:nth-child(3) .tl-pill { background: #f2f2f2; color: var(--muted); }
.tl-year { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 6px; letter-spacing: 0.5px; }
.tl-stage h3 { font-size: 20px; margin-bottom: 10px; }
.tl-stage p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; max-width: 280px; margin: 0 auto; }
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before, .timeline::after { display: none; }
}

/* ===== FOUNDERS NARRATIVE ===== */
.founders { padding: 140px 0; }
.founders .wrap-narrow { text-align: center; }
.founders h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  max-width: 760px;
  margin: 0 auto 56px;
}
.founders-photos {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
}
.founders-photos figure { text-align: center; }
.founders-photos img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.founders-photos figcaption {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.founders-photos figcaption .role {
  display: block;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
  font-size: 12px;
}
.founder-story {
  text-align: left;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}
.founder-story p { margin-bottom: 24px; }
.founder-story p:first-child::first-letter {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 76px;
  line-height: 1;
  float: left;
  padding: 8px 12px 0 0;
  color: var(--gold-dark);
}
.founder-story strong { color: var(--ink); font-weight: 600; }
.founder-story em {
  font-style: italic;
  color: var(--gold-dark);
}
.founder-footnote {
  margin-top: 56px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .founders { padding: 80px 0; }
  .founders-photos { gap: 18px; }
  .founders-photos img { width: 140px; height: 170px; }
  .founder-story { font-size: 17px; }
}

/* ===== TESTIMONIAL BAND ===== */
.testimonial {
  position: relative;
  padding: 140px 0;
  background: var(--ink) url('/images/wendy-ventura.jpg') center/cover no-repeat;
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 100%);
}
.testimonial .wrap { position: relative; text-align: center; }
.testimonial blockquote {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-size: clamp(28px, 4.2vw, 52px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  max-width: 920px;
  margin: 0 auto 32px;
  letter-spacing: -0.01em;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 720px) {
  .testimonial { padding: 96px 0; }
}

/* ===== PILOT CTA ===== */
.pilot { background: var(--ink); padding: 120px 0; }
.pilot .wrap { text-align: center; max-width: 720px; }
.pilot .eyebrow { color: var(--gold); }
.pilot .eyebrow::before { background: var(--gold); }
.pilot h2 { color: #fff; margin-bottom: 20px; }
.pilot .lede { color: rgba(255,255,255,0.78); margin: 0 auto 48px; }
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-card button {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: var(--gold-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.form-card button:hover { background: var(--ink); }
.form-success {
  text-align: center;
  padding: 32px 16px;
  color: var(--ink);
}
.form-success h3 { color: var(--gold-dark); margin-bottom: 12px; }
@media (max-width: 600px) {
  .form-row.two { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
}

/* ===== INVESTOR-PAGE ONLY ===== */

/* Financial impact table */
.impact-table {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.impact-table table { width: 100%; border-collapse: collapse; }
.impact-table th, .impact-table td { padding: 16px 22px; text-align: left; font-size: 15px; }
.impact-table thead th { background: var(--ink); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
.impact-table tbody td { border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.impact-table tbody tr:last-child td { border-bottom: none; }
.impact-table tbody tr.highlight td {
  background: var(--cream);
  font-weight: 700;
  color: var(--ink);
  font-size: 17px;
}
.impact-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}
.data-callout {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 24px 28px;
  background: var(--cream-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--gold-dark);
}

/* Competitive quadrant */
.quadrant {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1 / 1;
}
.quadrant svg { width: 100%; height: 100%; }
.quadrant .axis-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  fill: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.quadrant .competitor {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  fill: var(--ink);
}
.quadrant .pollenpal-marker { fill: var(--gold); stroke: var(--ink); stroke-width: 2; }
.quadrant .competitor-marker { fill: #fff; stroke: var(--muted); stroke-width: 1.5; }

/* TAM / SAM / SOM */
.market {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.market-ring { text-align: center; max-width: 220px; }
.market-circle {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.market-circle.tam { width: 220px; height: 220px; background: var(--cream); }
.market-circle.sam { width: 180px; height: 180px; background: var(--gold); }
.market-circle.som { width: 140px; height: 140px; background: var(--gold-dark); color: #fff; }
.market-circle .mc-num { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.market-circle .mc-label { font-size: 12px; letter-spacing: 1.4px; font-weight: 600; }
.market-ring h4 { font-size: 16px; margin-bottom: 6px; }
.market-ring p { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 720px) {
  .market { gap: 32px; }
}

/* Partnerships */
.partnerships-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.partnership-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: #fff;
}
.partnership-card h3 { font-size: 20px; margin-bottom: 12px; }
.partnership-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
@media (max-width: 720px) { .partnerships-grid { grid-template-columns: 1fr; } }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto 32px;
}
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
}
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card .role { font-size: 12px; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }

/* ===== INLINE QUOTE (problem section evidence) ===== */
.inline-quote {
  max-width: 720px;
  margin: 36px auto 36px;
  text-align: center;
  padding: 0 24px;
}
.inline-quote p {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
}
.inline-quote cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
