/* InsightsOut.work — design tokens & site styles
   Light: ivory / indigo / coral (per Implementation Blueprint)
   Dark: matches insightsout.app (navy #0F141B, cobalt, pastel gems) */

:root {
  --ground: #F8F4EC;
  --surface: #FFFDF8;
  --ink: #1F2024;
  --muted: #5B5A55;
  --line: #E4DECF;
  --head: #2E266D;
  --teal: #256B75;
  --cobalt: #3F62C8;
  --coral: #F2644B;
  --coral-deep: #D9502F;
  --gold: #F6B53C;
  --magenta: #C7439A;
  --band: #2E266D;
  --band-ink: #F3EFE4;
  --band-muted: #B4AED6;
  --display: "Iowan Old Style", "Palatino Nova", Palatino, "Book Antiqua", Georgia, serif;
  --body: "Avenir Next", Avenir, Inter, Seravek, system-ui, -apple-system, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #0F141B; --surface: #151B23; --ink: #EEF2F8; --muted: #98A4B4;
    --line: #27303C; --head: #A9B4EE; --teal: #86CED6; --cobalt: #6B8FEA;
    --coral: #F47B62; --coral-deep: #F2644B; --gold: #F4D06A; --magenta: #D06BB0;
    --band: #1D2350; --band-ink: #EEF2F8; --band-muted: #8F98C8;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2 {
  font-family: var(--display); font-weight: 500; line-height: 1.14;
  letter-spacing: -0.005em; text-wrap: balance; margin: 0; color: var(--head);
}
h3 {
  font-family: var(--body); font-weight: 600; line-height: 1.25;
  letter-spacing: -0.01em; text-wrap: balance; margin: 0; color: var(--head);
}
::selection { background: color-mix(in srgb, var(--gold) 35%, transparent); }
p { margin: 0; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--cobalt); outline-offset: 3px;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ---------- nav ---------- */
nav.site {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; gap: 22px;
}
.wordmark {
  font-family: var(--display); font-size: 21px; font-weight: 500; color: var(--ink);
  display: flex; align-items: center; gap: 10px; margin-right: auto;
  letter-spacing: 0;
}
.wordmark:hover { text-decoration: none; }
.wordmark img { width: 24px; height: 24px; }
.wordmark em { font-style: normal; color: var(--teal); }
.nav-links { display: flex; gap: 2px; flex-wrap: wrap; }
.nav-links a {
  font-size: 14.5px; color: var(--muted);
  padding: 6px 10px; border-radius: 99px;
}
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a.active { color: var(--head); background: color-mix(in srgb, var(--head) 10%, transparent); }
@media (max-width: 860px) { .nav-links { display: none; } }

.btn {
  display: inline-block; font-family: var(--body); font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 99px; cursor: pointer; border: 1.5px solid transparent;
  text-align: center; transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--coral); color: #FFF8F2; border-color: var(--coral); }
.btn-primary:hover { background: var(--coral-deep); border-color: var(--coral-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: color-mix(in srgb, var(--ink) 35%, transparent); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { font-size: 13.5px; padding: 8px 16px; }
.band .btn-ghost { color: var(--band-ink); border-color: color-mix(in srgb, var(--band-ink) 40%, transparent); }

/* ---------- section grammar ---------- */
section { padding: 112px 0; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 22px;
}
.band .eyebrow { color: var(--gold); }
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.15rem; }
.lede { font-size: 19.5px; line-height: 1.72; color: var(--muted); max-width: 58ch; }
.band { background: var(--band); color: var(--band-ink); }
.band h1, .band h2, .band h3 { color: var(--band-ink); }
.band .lede, .band .b-muted { color: var(--band-muted); }
.band .b-muted { font-size: 15.5px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 84px 0; }
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero .wrap { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { max-width: 16ch; margin: 0 0 24px; }
.hero .lede { margin-bottom: 32px; }
.hero-note { margin-top: 26px; font-size: 13.5px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- grids & cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 34px 30px; display: flex; flex-direction: column; gap: 12px;
  color: inherit;
  box-shadow: 0 1px 2px rgba(31, 32, 36, 0.03), 0 10px 32px rgba(31, 32, 36, 0.04);
}
.card h3 { color: var(--head); }
.card p { color: var(--muted); font-size: 15px; }
.card .card-cta { margin-top: auto; font-weight: 600; font-size: 14.5px; color: var(--teal); }
a.card:hover { text-decoration: none; border-color: var(--coral); }

.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 56px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  box-shadow: 0 1px 2px rgba(31, 32, 36, 0.03), 0 14px 44px rgba(31, 32, 36, 0.05);
}
@media (max-width: 800px) { .panel { grid-template-columns: 1fr; padding: 32px 26px; } }
.outcomes { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.outcomes li { padding-left: 26px; position: relative; font-size: 16px; }
.outcomes li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 10px; height: 10px;
  border-radius: 2px; transform: rotate(45deg); background: var(--gold);
}
.outcomes.nots li { color: var(--muted); }
.outcomes.nots li::before { background: none; border: 1.5px solid var(--muted); opacity: 0.6; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 2px; counter-reset: step; }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--line); padding: 24px 20px; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--display); font-weight: 600; font-size: 13px;
  color: var(--coral); margin-bottom: 12px; letter-spacing: 0.08em;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- events ---------- */
.event-card { display: grid; grid-template-columns: 130px 1fr auto; gap: 26px; align-items: center; padding: 26px 0; border-top: 1px solid var(--line); }
.event-card:last-of-type { border-bottom: 1px solid var(--line); }
@media (max-width: 700px) { .event-card { grid-template-columns: 1fr; gap: 10px; } }
.event-date { font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--cobalt); }
.event-date span { font-weight: 400; font-size: 13px; color: var(--muted); display: block; }
.event-card h3 { margin-bottom: 4px; font-size: 1.15rem; }
.event-card p { color: var(--muted); font-size: 15px; }
.events-empty { padding: 40px 0; color: var(--muted); }

/* ---------- questions ---------- */
.questions { display: flex; flex-direction: column; max-width: 720px; }
.questions blockquote {
  margin: 0; padding: 20px 0; border-top: 1px solid var(--line);
  font-family: var(--display); font-weight: 600; letter-spacing: -0.01em;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem); line-height: 1.35; color: var(--head);
}
.questions blockquote:last-child { border-bottom: 1px solid var(--line); }

/* ---------- founder / story ---------- */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; }
@media (max-width: 800px) { .founder { grid-template-columns: 1fr; } }
.founder.about-grid { grid-template-columns: 1fr 320px; align-items: start; }
@media (max-width: 800px) { .founder.about-grid { grid-template-columns: 1fr; } }
.story { display: flex; flex-direction: column; max-width: 720px; }
.story-item { display: grid; grid-template-columns: 170px 1fr; gap: 30px; padding: 26px 0; border-top: 1px solid var(--line); }
@media (max-width: 700px) { .story-item { grid-template-columns: 1fr; gap: 6px; } }
.story-item .role { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--head); }
.story-item p { color: var(--muted); font-size: 15.5px; }

/* ---------- private coaching ---------- */
.coaching-hero {
  position: relative; overflow: hidden; padding: 96px 0 88px;
  background:
    radial-gradient(circle at 78% 28%, color-mix(in srgb, var(--gold) 13%, transparent), transparent 28%),
    radial-gradient(circle at 8% 85%, color-mix(in srgb, var(--cobalt) 8%, transparent), transparent 32%);
}
.coaching-hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 78px; align-items: center;
}
.coaching-hero h1 { max-width: 15ch; margin-bottom: 26px; }
.coach-credentials {
  display: flex; flex-wrap: wrap; gap: 9px 20px; margin-top: 24px;
  color: var(--muted); font-size: 13.5px; font-weight: 600;
}
.coach-credentials span { position: relative; }
.coach-credentials span:not(:last-child)::after {
  content: ""; position: absolute; right: -12px; top: 0.48em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.coach-availability {
  margin-top: 18px; color: var(--muted); font-size: 13.5px; letter-spacing: 0.04em;
}
.coaching-portrait { margin: 0; }
.coaching-portrait img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 34%;
  border-radius: 180px 180px 24px 24px; border: 1px solid var(--line);
  box-shadow: 0 2px 5px rgba(31, 32, 36, 0.05), 0 28px 70px rgba(31, 32, 36, 0.13);
}
.coaching-portrait figcaption {
  margin-top: 16px; color: var(--muted); font-family: var(--display);
  font-style: italic; font-size: 14px; text-align: center;
}
.coach-proof { padding: 0; }
.coach-proof .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding-top: 26px; padding-bottom: 26px;
}
.coach-proof .wrap > div { padding: 0 24px; border-right: 1px solid var(--line); }
.coach-proof .wrap > div:first-child { padding-left: 0; }
.coach-proof .wrap > div:last-child { padding-right: 0; border-right: 0; }
.coach-proof strong { display: block; color: var(--head); font-size: 15.5px; }
.coach-proof span { display: block; color: var(--muted); font-size: 13px; line-height: 1.45; margin-top: 3px; }
.coach-intro h2 { max-width: 22ch; margin-bottom: 22px; }
.coach-questions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.coach-questions blockquote {
  margin: 0; padding: 28px 26px; border-top: 2px solid var(--gold);
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  font-family: var(--display); font-size: 1.28rem; line-height: 1.42; color: var(--head);
}
.coach-outcome-card { min-height: 235px; }
.coach-card-number {
  color: var(--coral) !important; font-family: var(--display); font-weight: 600;
  font-size: 13px !important; letter-spacing: 0.1em;
}
.coach-story-band { padding: 96px 0; }
.coach-story-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: center; }
.coach-story-grid h2 { margin-bottom: 24px; max-width: 18ch; }
.coach-story-grid .lede + .lede { margin-top: 20px; }
.coach-story-image { margin: 0; }
.coach-story-image img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 51% center;
  border-radius: 18px; border: 1px solid color-mix(in srgb, var(--band-ink) 18%, transparent);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
.coach-process { padding-top: 24px; border-top: 1px solid var(--line); }
.coach-process > span {
  display: block; color: var(--coral); font-family: var(--display); font-weight: 600;
  font-size: 13px; letter-spacing: 0.1em; margin-bottom: 20px;
}
.coach-process h3 { margin-bottom: 10px; }
.coach-process p { color: var(--muted); font-size: 15px; }
.coach-format-panel { margin-top: 72px; }
.coach-featured-quote {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 54px; align-items: end;
  padding: 52px; margin-bottom: 22px; border: 1px solid var(--line); border-radius: 18px;
  background: var(--surface); box-shadow: 0 14px 44px rgba(31, 32, 36, 0.05);
}
.coach-featured-quote blockquote {
  margin: 0; font-family: var(--display); font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.35; color: var(--head);
}
.coach-featured-quote p { margin: 0; }
.coach-featured-quote p strong, .coach-featured-quote p span { display: block; }
.coach-featured-quote p span { margin-top: 4px; color: var(--muted); font-size: 14px; }
.coach-testimonials .card { min-height: 230px; }
.coach-testimonials .card > p:first-child { color: var(--ink); font-size: 16px; line-height: 1.65; }
.coach-quote-name { margin-top: auto; }
.coach-quote-name strong, .coach-quote-name span { display: block; }
.coach-quote-name span { margin-top: 3px; color: var(--muted); font-size: 13.5px; }
.coach-faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 70px; align-items: start; }
.coach-final { padding: 104px 0; }
.coach-final h2 { max-width: 22ch; margin-bottom: 18px; }
.coach-final .lede { margin-bottom: 32px; }

@media (max-width: 900px) {
  .coaching-hero-grid { grid-template-columns: 1fr 0.72fr; gap: 42px; }
  .coach-story-grid { gap: 44px; }
  .coach-proof .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .coach-proof .wrap > div:nth-child(2) { border-right: 0; }
}
@media (max-width: 760px) {
  .coaching-hero { padding: 68px 0 76px; }
  .coaching-hero-grid, .coach-story-grid, .coach-faq-grid { grid-template-columns: 1fr; }
  .coaching-portrait { max-width: 520px; }
  .coach-proof .wrap { padding-top: 22px; padding-bottom: 22px; }
  .coach-proof .wrap > div { padding: 0 16px; }
  .coach-proof .wrap > div:nth-child(odd) { padding-left: 0; }
  .coach-proof .wrap > div:nth-child(even) { padding-right: 0; }
  .coach-questions { grid-template-columns: 1fr; }
  .coach-story-image { max-width: 520px; }
  .coach-featured-quote { grid-template-columns: 1fr; gap: 28px; padding: 34px 28px; }
}
@media (max-width: 430px) {
  .coach-proof .wrap { grid-template-columns: 1fr; }
  .coach-proof .wrap > div { border-right: 0; padding: 0; }
  .coach-proof .wrap > div + div { border-top: 1px solid var(--line); padding-top: 18px; }
  .coaching-portrait img { border-radius: 120px 120px 20px 20px; }
}

/* ---------- checklist ---------- */
.maybe { display: flex; flex-direction: column; gap: 14px; max-width: 620px; padding: 0; margin: 0; }
.maybe li { list-style: none; padding-left: 30px; position: relative; font-size: 17px; }
.maybe li::before {
  content: ""; position: absolute; left: 0; top: 0.42em; width: 12px; height: 12px;
  border-radius: 50%; border: 2px solid var(--gold);
}

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line); border-radius: 99px; padding: 9px 18px;
  font-size: 14px; color: var(--ink); background: var(--surface);
}

/* ---------- FAQ ---------- */
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16.5px; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--coral); font-size: 20px; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "×"; }
.faq details p { margin-top: 10px; color: var(--muted); font-size: 15.5px; max-width: 65ch; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 15px; color: var(--ink);
  padding: 11px 14px; border-radius: 8px; border: 1.5px solid var(--line);
  background: var(--surface);
}
.field textarea { min-height: 96px; resize: vertical; }
.form-note { font-size: 13.5px; color: var(--muted); }
.form-status { font-size: 15px; font-weight: 600; }
.form-status.ok { color: var(--teal); }
.form-status.err { color: var(--coral-deep); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.consent input { margin-top: 4px; }

.newsletter { display: flex; gap: 10px; max-width: 480px; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 220px; font-family: var(--body); font-size: 15px;
  padding: 11px 18px; border-radius: 99px; border: 1.5px solid var(--line);
  background: var(--surface); color: var(--ink);
}

/* ---------- photography ---------- */
img, video { max-width: 100%; display: block; }
figure.shot { margin: 0; }
figure.shot img, figure.shot video {
  width: 100%; border-radius: 14px; border: 1px solid var(--line);
  box-shadow: 0 2px 4px rgba(31, 32, 36, 0.04), 0 18px 48px rgba(31, 32, 36, 0.08);
}
figure.shot figcaption {
  font-family: var(--display); font-style: italic;
  font-size: 14px; color: var(--muted); margin-top: 14px; letter-spacing: 0.01em;
}
.portrait-img {
  width: 100%; max-width: 300px; aspect-ratio: 1; border-radius: 50%;
  object-fit: cover; border: 1px solid var(--line);
}
.portrait-tall { width: 100%; border-radius: 8px; border: 1px solid var(--line); }
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .mosaic { grid-template-columns: 1fr; } }
.mosaic img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }

/* ---------- Luma embed ---------- */
.luma-embed { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.luma-embed iframe { width: 100%; height: 620px; border: 0; display: block; }
.luma-embed-compact iframe { height: 450px; }

/* ---------- simplified conversion pages ---------- */
.simple-hero { padding: 96px 0 88px; }
.simple-hero h1 { max-width: 16ch; margin-bottom: 26px; }
.section-tight { padding-top: 88px; padding-bottom: 88px; }
.home-hero { padding-top: 96px; padding-bottom: 96px; }
.home-hero h1 { max-width: 18ch; }
.text-link { font-size: 15px; font-weight: 600; }

.signal-list { border-top: 1px solid var(--line); }
.signal-row {
  display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 28px;
  align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); color: inherit;
}
.signal-row:hover { text-decoration: none; }
.signal-row h2 { font-size: clamp(1.35rem, 2.8vw, 2rem); margin-bottom: 8px; }
.signal-row p { color: var(--muted); font-size: 15px; }
.signal-number { color: var(--coral); font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; }
.signal-action { color: var(--teal); font-size: 14px; font-weight: 600; white-space: nowrap; }
.signal-row:hover .signal-action { text-decoration: underline; }

.offer-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.offer-split h2 { margin-bottom: 18px; }
.offer-split .lede { margin-bottom: 26px; }
.offer-split .outcomes { margin-bottom: 30px; }
.offer-side { border-left: 1px solid color-mix(in srgb, var(--band-ink) 22%, transparent); padding-left: 72px; }
.home-proof { display: grid; grid-template-columns: 1fr 220px; gap: 64px; align-items: center; }
.home-proof h2 { max-width: 25ch; margin-bottom: 18px; }
.home-proof .lede { margin-bottom: 28px; }
.home-proof .portrait-img { max-width: 220px; }

.event-concepts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.event-concept {
  padding: 34px 32px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface); box-shadow: 0 10px 32px rgba(31, 32, 36, 0.04);
}
.event-concept.event-featured { border-top: 3px solid var(--coral); }
.event-concept h3 { font-family: var(--display); font-weight: 500; font-size: clamp(1.45rem, 2.6vw, 2rem); margin: 22px 0 14px; }
.event-concept p { color: var(--muted); font-size: 15.5px; margin-bottom: 24px; }
.event-concept strong { color: var(--head); font-size: 14.5px; }
.event-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.event-meta span { border: 1px solid var(--line); border-radius: 99px; padding: 5px 11px; color: var(--muted); font-size: 12px; font-weight: 600; }
.band .steps .step { background: var(--surface); }
.band .steps .step h3 { color: var(--head); }
.band .steps .step p { color: var(--muted); }

.applied-grid, .artifact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }
.applied-item, .artifact { border-top: 1px solid var(--line); padding-top: 22px; }
.applied-item h3, .artifact h3 { margin-bottom: 9px; }
.applied-item p, .artifact p { color: var(--muted); font-size: 15px; }
.artifact > span { display: block; color: var(--coral); font-family: var(--display); font-size: 13px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.08em; }
.about-copy { max-width: 760px; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy .lede + .lede { margin-top: 20px; }

/* ---------- event research and articles ---------- */
.research-hero { background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 8%, var(--ground)), var(--ground) 62%); }
.research-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.research-stat { padding: 30px 28px; border-right: 1px solid var(--line); }
.research-stat:last-child { border-right: 0; }
.research-stat strong { display: block; color: var(--head); font-family: var(--display); font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; }
.research-stat span { display: block; margin-top: 10px; color: var(--muted); font-size: 14px; }
.method-note { margin-top: 14px; color: var(--muted); font-size: 13px; }
.research-questions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }
.research-questions article { border-top: 1px solid color-mix(in srgb, var(--band-ink) 22%, transparent); padding-top: 24px; }
.research-questions article > span { display: block; color: var(--gold); font-family: var(--display); font-size: 13px; margin-bottom: 18px; }
.research-questions h2 { font-size: 1.7rem; margin-bottom: 12px; }
.research-questions p { color: var(--band-muted); font-size: 15px; }
.article-list { border-top: 1px solid var(--line); }
.article-card {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 34px; align-items: end;
  padding: 32px 0; border-bottom: 1px solid var(--line); color: inherit;
}
a.article-card:hover { text-decoration: none; }
.article-card h3 { font-family: var(--display); font-size: clamp(1.35rem, 2.7vw, 1.9rem); font-weight: 500; margin: 8px 0; }
.article-card p { color: var(--muted); font-size: 15px; max-width: 68ch; }
.article-type { color: var(--teal); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.article-link { color: var(--teal); font-size: 14px; font-weight: 600; white-space: nowrap; }
.article-live:hover h3 { color: var(--coral-deep); }

.article-wrap { max-width: 780px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.article-hero { padding: 100px 0 70px; border-bottom: 1px solid var(--line); }
.article-hero h1 { max-width: 16ch; margin-bottom: 26px; }
.article-byline { margin-top: 28px; color: var(--muted); font-size: 13.5px; }
.article-body { padding-top: 72px; padding-bottom: 104px; }
.article-body > h2 { margin-top: 58px; margin-bottom: 18px; }
.article-body > p, .article-body > ol { font-size: 18px; line-height: 1.78; }
.article-body > p + p { margin-top: 20px; }
.article-body > ol { padding-left: 26px; }
.article-body > ol li + li { margin-top: 8px; }
.article-intro { color: var(--head); font-family: var(--display); font-size: 1.45rem !important; line-height: 1.55 !important; }
.article-stats { margin-top: 36px; }
.theme-counts { display: grid; grid-template-columns: 1fr 1fr; margin: 30px 0; border-top: 1px solid var(--line); }
.theme-counts > div { padding: 22px 18px 22px 0; border-bottom: 1px solid var(--line); }
.theme-counts strong { display: block; color: var(--coral); font-family: var(--display); font-size: 2rem; }
.theme-counts span { color: var(--muted); font-size: 14px; }
.article-callout { margin-top: 62px; padding: 36px; border-left: 4px solid var(--gold); background: var(--surface); }
.article-callout h2 { margin-bottom: 12px; }
.article-callout p { color: var(--muted); }
.article-footer-cta { margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--line); }
.article-footer-cta h2 { margin-bottom: 12px; }
.article-footer-cta p { color: var(--muted); margin-bottom: 26px; }

@media (max-width: 800px) {
  .signal-row { grid-template-columns: 38px 1fr; gap: 18px; }
  .signal-action { grid-column: 2; }
  .offer-split, .home-proof, .event-concepts, .research-questions { grid-template-columns: 1fr; }
  .offer-side { border-left: 0; border-top: 1px solid color-mix(in srgb, var(--band-ink) 22%, transparent); padding: 52px 0 0; }
  .home-proof .portrait-img { grid-row: 1; }
  .applied-grid, .artifact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .simple-hero { padding: 70px 0; }
  .section-tight { padding-top: 70px; padding-bottom: 70px; }
  .applied-grid, .artifact-grid, .research-stats, .theme-counts { grid-template-columns: 1fr; }
  .research-stat { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .research-stat:last-child { border-bottom: 0; }
  .article-card { grid-template-columns: 1fr; gap: 16px; }
  .article-callout { padding: 28px 24px; }
}

/* ---------- booking embed ---------- */
.booking-embed { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-top: 40px; }
.booking-embed iframe { width: 100%; height: 720px; border: 0; display: block; background: #fff; }
.booking-fallback { margin-top: 24px; color: var(--muted); font-size: 15px; }

/* ---------- sticky mobile CTA ---------- */
.msticky { display: none; }
@media (max-width: 700px) {
  body { padding-bottom: 74px; }
  .msticky {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: color-mix(in srgb, var(--ground) 92%, transparent);
    backdrop-filter: blur(10px); border-top: 1px solid var(--line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
  }
  .msticky .btn { flex: 1; }
}

footer.site {
  border-top: 1px solid var(--line); padding: 52px 0 64px;
  color: var(--muted); font-size: 14px;
}
footer.site .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
