/* AKKA — homepage styles
   Recreated from design handoff "Homepage v10" (high fidelity).
   Fully fluid: clamp() + auto-fit grids only — no media queries by design. */

/* ---------- Tokens ---------- */
:root {
  --canvas: #f7f4ed;
  --canvas-raised: #fbfaf8;
  --card: #fff;
  --card-next: #fdfcf8;
  --ink: #23211d;
  --ink-78: rgba(35, 33, 29, .78);
  --ink-75: rgba(35, 33, 29, .75);
  --ink-72: rgba(35, 33, 29, .72);
  --ink-66: rgba(35, 33, 29, .66);
  --ink-60: rgba(35, 33, 29, .6);
  --ink-55: rgba(35, 33, 29, .55);
  --ink-50: rgba(35, 33, 29, .5);
  --rule: rgba(35, 33, 29, .13);
  --rule-list: rgba(35, 33, 29, .16);
  --rule-card: rgba(35, 33, 29, .18);
  --accent: #c8801d;
  --accent-deep: #a3660f;
  --accent-light: #e0a34a;
  --error: #a13d2f;
  --photo-bg: #ded8ca;
  --on-dark: #f7f4ed;
  --on-dark-78: rgba(247, 244, 237, .78);
  --on-dark-72: rgba(247, 244, 237, .72);
  --on-dark-60: rgba(247, 244, 237, .6);
  --on-dark-30: rgba(247, 244, 237, .3);
  --on-dark-rule: rgba(247, 244, 237, .22);
  --on-dark-hairline: rgba(247, 244, 237, .16);
  --font-display: Archivo, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --pad-x: clamp(18px, 4vw, 52px);
  --pad-y-major: clamp(72px, 10vw, 132px);
  --pad-y-minor: clamp(56px, 7vw, 88px);
  --photo-filter: saturate(.5) sepia(.1) brightness(1.03);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  font-family: var(--font-display);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent-deep); }
img { max-width: 100%; }
h1, h2, h3, p { margin: 0; }
[hidden] { display: none !important; }

a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
}

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

section[id] { scroll-margin-top: 70px; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
}
a.btn:hover { color: #fff; }

/* ---------- Sticky nav ---------- */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  background: rgba(247, 244, 237, .95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 20;
}
.site-nav__brand { display: flex; align-items: center; }
.site-nav__logo { display: block; height: 18px; width: auto; }
.site-nav__cta { min-height: 44px; font-size: 14.5px; padding: 11px 24px; border-radius: 4px; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  align-items: stretch;
}
.hero__copy {
  padding: clamp(28px, 6vw, 64px) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__title { letter-spacing: -.03em; max-width: 640px; margin-top: 16px; }
.hero__payoff {
  display: block;
  font-size: clamp(34px, 5.6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--accent-deep);
  text-wrap: pretty;
}
.hero__audience {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--accent-deep);
  text-wrap: balance;
}
.hero__cta-block { margin-top: 26px; }
.hero__cta { width: fit-content; min-height: 52px; font-size: 16px; padding: 14px 30px; }
.hero__divider { border: none; border-top: 1px solid var(--rule); margin: 30px 0 0; }
.hero__chips { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.chip { display: flex; gap: 12px; align-items: center; }
.chip__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  background: var(--photo-bg);
}
.chip__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
}
.chip__avatar--steve img { object-position: 50% 24%; }
.chip__avatar--eric img { object-position: 50% 28%; }
.chip__name { font-weight: 700; font-size: 13.5px; }
.chip__role { font-size: 12px; color: var(--ink-72); }

@media (max-width: 640px) {
  .hero__payoff { font-size: clamp(28px, 8vw, 40px); }
  .hero__chips { flex-direction: column; gap: 20px; }
  .chip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .chip__avatar { width: 88px; height: 88px; }
}
.hero__photo {
  position: relative;
  min-height: clamp(200px, 32vh, 520px);
  background: var(--canvas);
  order: 1; /* stacks below the copy when the grid wraps */
}
.hero__photo img {
  position: absolute;
  top: clamp(20px, 4vw, 40px);
  left: clamp(20px, 4vw, 40px);
  width: calc(100% - clamp(40px, 8vw, 80px));
  height: calc(100% - clamp(40px, 8vw, 80px));
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(.55) contrast(1) sepia(.12) brightness(1.02);
  border-radius: 8px;
}
.hero__caption {
  position: absolute;
  left: calc(clamp(20px, 4vw, 40px) + 22px);
  bottom: calc(clamp(20px, 4vw, 40px) + 18px);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  color: var(--ink);
  background: rgba(247, 244, 237, .84);
  padding: 5px 9px;
}

/* ---------- Proof (optional, off by default) ---------- */
.proof {
  background: var(--canvas-raised);
  border-top: 1px solid var(--rule);
  padding: clamp(84px, 11vw, 140px) var(--pad-x);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(36px, 4.5vw, 64px);
}
.proof__item { display: flex; flex-direction: column; gap: 16px; }
.proof__quote {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
  color: var(--ink);
}
.proof__attr {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  color: rgba(35, 33, 29, .8);
}

/* ---------- "We're both." ---------- */
.both { background: var(--ink); color: var(--on-dark); padding: var(--pad-y-major) var(--pad-x); }
.both__setup {
  margin-bottom: 30px;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
  color: var(--on-dark-60);
  max-width: 700px;
}
.both__payoff {
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--accent-light);
  max-width: 1000px;
}

/* ---------- Split sections (heading | body) ---------- */
.split { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 72px); align-items: flex-start; }
.split__head { flex: 1 1 260px; max-width: 400px; }
.split__body { flex: 2 1 420px; }

.section-h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.offer-h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.04em;
  max-width: 16ch;
  text-wrap: balance;
}
.offer-subline {
  margin-top: 18px;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.card-h3 { font-size: clamp(19px, 1.9vw, 22px); font-weight: 700; letter-spacing: -.02em; }

/* ---------- Gap section ---------- */
.gap {
  background: var(--canvas-raised);
  border-top: 1px solid var(--rule);
  padding: var(--pad-y-major) var(--pad-x);
}
.gap__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.62;
  color: var(--ink-72);
  max-width: 620px;
}
.gap__lead {
  font-size: clamp(19px, 1.9vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--ink);
}
.gap__strong { color: var(--ink); font-weight: 600; }

/* ---------- Offer cards ---------- */
.offerings { border-top: 1px solid var(--rule); padding: clamp(64px, 8vw, 104px) var(--pad-x); }
.offerings__h2 { max-width: 620px; }
.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  grid-template-rows: auto auto auto 1fr auto auto;
  column-gap: clamp(20px, 2.5vw, 28px);
  row-gap: 12px;
  margin-top: clamp(32px, 4vw, 44px);
  align-items: stretch;
}
.offer-card {
  display: grid;
  grid-row: span 6;
  grid-template-rows: subgrid;
  background: var(--card);
  border: 1px solid var(--rule-card);
  border-top: 3px solid var(--accent);
  border-radius: 6px;
  padding: clamp(26px, 3vw, 38px);
}
.offer-card:hover { border-color: rgba(35, 33, 29, .4); border-top-color: var(--accent); color: var(--ink); }
.offer-card__hook {
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.35;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 22px;
}
.offer-card__kicker { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .13em; }
.offer-card__kicker--accent { color: var(--accent-deep); }
.offer-card__kicker--muted { color: var(--ink-55); }
.offer-card__title {
  font-weight: 800;
  font-size: clamp(23px, 2.4vw, 28px);
  letter-spacing: -.025em;
  line-height: 1.15;
}
.offer-card__desc { font-size: clamp(16px, 1.6vw, 17.5px); line-height: 1.6; color: var(--ink-72); }
.offer-card__price {
  align-self: start;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid rgba(35, 33, 29, .14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 18px);
  letter-spacing: -.015em;
  line-height: 1.3;
  color: var(--accent-deep);
}
.offer-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  flex: none;
}
.offer-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--ink-72);
}
.offer-card__foot strong { font-weight: 700; color: var(--ink); }

/* ---------- Workshop (#session, dark) ---------- */
.session { background: var(--ink); color: var(--on-dark); padding: var(--pad-y-major) var(--pad-x); }
.session .wrap { min-width: 0; }
.session__h2 { overflow-wrap: break-word; }
.session__subline { color: var(--accent-light); }
.session__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: clamp(24px, 3vw, 32px);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.62;
  color: var(--on-dark-72);
  max-width: 720px;
}
.session__intro-strong { color: var(--on-dark); font-weight: 600; }
.session__narrative {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 56px);
  max-width: 720px;
}
.session__narrative .card-h3 { margin-bottom: 4px; }
.session__narrative .card-h3--accent { color: var(--accent-light); }
.session__narrative p { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.62; color: var(--on-dark-72); }
.session__quote {
  margin: 4px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(224, 163, 74, .08);
  font-style: italic;
  font-size: clamp(15.5px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--on-dark);
}
.session__quote p { margin: 0 0 10px; }
.session__quote-list { display: flex; flex-direction: column; gap: 8px; margin: 0; padding-left: 20px; }
.session__list-intro { margin-bottom: 18px; font-size: clamp(16px, 1.5vw, 17.5px); line-height: 1.6; color: var(--on-dark-72); }
.session__capability { margin-top: clamp(32px, 4vw, 44px); padding-top: 22px; border-top: 1px solid var(--on-dark-rule); }
.session__capability .card-h3 { margin-bottom: 12px; }
.session__capability p { font-size: 16px; line-height: 1.62; color: var(--on-dark-72); }
.session__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(32px, 4.5vw, 56px);
  margin-top: clamp(40px, 5vw, 64px);
  align-items: start;
}
.session__list-col { min-width: 0; }
.session__list-col .card-h3 { margin-bottom: 18px; }
.session__list { display: flex; flex-direction: column; }
.session__item {
  padding: 16px 0;
  border-top: 1px solid var(--on-dark-hairline);
  font-size: clamp(16px, 1.5vw, 17.5px);
  line-height: 1.58;
  color: var(--on-dark-72);
}
.session__item:last-child { border-bottom: 1px solid var(--on-dark-hairline); }
.session__item strong { font-weight: 700; color: var(--on-dark); }
.session__panel { min-width: 0; border: 1px solid var(--on-dark-rule); border-radius: 6px; overflow: hidden; }
.session__datebar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: baseline;
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.6vw, 30px);
  background: rgba(224, 163, 74, .1);
  border-bottom: 1px solid var(--on-dark-rule);
  font-family: var(--font-mono);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--accent-light);
}
.session__datebar-sep { color: var(--on-dark-30); }
.session__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--on-dark-rule);
}
.session__price-cell { min-width: 0; background: var(--ink); padding: clamp(22px, 2.6vw, 30px) clamp(18px, 2.4vw, 28px); }
.session__price {
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .95;
}
.session__price--team { color: var(--accent-light); }
.session__price-label { margin-top: 10px; font-size: clamp(15px, 1.4vw, 17px); font-weight: 600; color: var(--on-dark-78); }
.session__cta-block {
  padding: clamp(20px, 2.5vw, 28px) clamp(20px, 2.6vw, 30px);
  border-top: 1px solid var(--on-dark-rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.session__cta { width: 100%; min-height: 56px; font-weight: 800; font-size: 16px; padding: 16px 30px; }
.session__note { font-size: 15.5px; line-height: 1.6; color: var(--on-dark-72); }
.session__closer { padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.6vw, 30px); border-top: 1px solid var(--on-dark-rule); }

/* ---------- Weekly coaching group (#group) ---------- */
.group {
  background: var(--canvas-raised);
  border-top: 1px solid var(--rule);
  padding: var(--pad-y-major) var(--pad-x);
}
.group__subline { color: var(--accent-deep); max-width: 760px; }
.group__intro { margin-top: 14px; font-size: 16px; line-height: 1.62; color: var(--ink-72); max-width: 700px; }
.group__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px);
  margin-top: clamp(40px, 5vw, 56px);
}
.group__how-h3 { margin-bottom: 24px; }
.group__steps { display: flex; flex-direction: column; gap: 30px; }
.group__step { display: flex; gap: 16px; }
.group__step-num {
  font-family: var(--font-mono);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-deep);
  flex: none;
  width: 46px;
}
.group__step-title { font-weight: 700; font-size: clamp(16px, 1.5vw, 18px); margin-bottom: 5px; }
.group__step-desc { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.62; color: var(--ink-72); }
.group__recorded { margin-top: 26px; font-size: 15.5px; line-height: 1.6; color: var(--ink-72); max-width: 460px; }
.group__skip { margin-top: 36px; padding-top: 22px; border-top: 2px solid var(--ink); }
.group__skip .card-h3 { margin-bottom: 12px; }
.group__skip-body { font-size: 16px; line-height: 1.62; color: var(--ink-72); max-width: 480px; }
.example-q {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-72);
  padding-left: 14px;
  border-left: 2px solid rgba(200, 128, 29, .5);
}
.group__examples { display: flex; flex-direction: column; gap: 15px; margin-top: 36px; }
.cohort-card {
  border: 1px solid var(--rule-card);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 36px);
  align-self: start;
  background: var(--card);
}
.cohort-card__head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cohort-card__badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .13em;
  color: var(--accent-deep);
  border: 1.5px solid rgba(163, 102, 15, .55);
  border-radius: 3px;
  padding: 6px 10px;
  transform: rotate(-3deg);
}
.cohort-card__price-row { display: flex; align-items: baseline; gap: 8px; }
.cohort-card__price {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--accent-deep);
}
.cohort-card__per { font-size: 16px; color: rgba(35, 33, 29, .7); }
.cohort-card__cancel { margin-top: 6px; font-size: 14.5px; color: rgba(35, 33, 29, .7); }
.cohort-card__why { margin-top: 14px; font-size: 15px; line-height: 1.6; color: var(--ink-72); }
.cohort-card__specs {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 22px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-72);
}
.cohort-card__spec {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(35, 33, 29, .14);
}
.cohort-card__spec:last-child { padding-bottom: 0; border-bottom: 0; }
.cohort-card__spec strong { font-weight: 700; color: var(--ink); text-align: right; }
.cohort-card__cta { min-height: 56px; text-align: center; font-weight: 800; font-size: 16px; padding: 18px 38px; margin-top: 24px; }

/* ---------- Where this goes next ---------- */
.next { border-top: 1px solid var(--rule); padding: var(--pad-y-minor) var(--pad-x); }
.next__kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .13em;
  color: var(--ink-55);
  margin-bottom: 12px;
}
.next__intro { font-size: clamp(17px, 1.7vw, 20px); line-height: 1.5; color: var(--ink-72); max-width: 640px; }
.next-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  grid-template-rows: auto auto 1fr auto;
  column-gap: clamp(20px, 2.5vw, 28px);
  row-gap: 12px;
  margin-top: clamp(28px, 3.5vw, 40px);
}
.next-card {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  background: var(--card-next);
  border: 1px solid var(--rule-card);
  border-radius: 6px;
  padding: clamp(24px, 2.8vw, 32px);
}
.next-card__kicker { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .13em; color: var(--ink-55); }
.next-card__title { font-size: clamp(21px, 2.1vw, 25px); font-weight: 700; letter-spacing: -.025em; line-height: 1.15; }
.next-card__body { font-size: 16px; line-height: 1.62; color: var(--ink-72); }
.next-card__examples { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.next-card__examples .example-q { font-size: 15px; color: var(--ink-66); }
.next-card__strong { margin-top: 14px; color: var(--ink); font-weight: 600; }
.text-link {
  align-self: start;
  justify-self: start;
  margin-top: 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-deep);
  border-bottom: 1px solid rgba(163, 102, 15, .4);
}

/* ---------- Bios (#who) ---------- */
.who { border-top: 1px solid var(--rule); padding: var(--pad-y-major) var(--pad-x); }
.who__h2 { margin-bottom: clamp(36px, 5vw, 56px); max-width: 620px; }
.who__photo {
  width: 100%;
  height: clamp(220px, 32vw, 460px);
  overflow: hidden;
  border-radius: 5px;
  background: var(--photo-bg);
  margin-bottom: clamp(32px, 5vw, 56px);
}
.who__photo img { width: 100%; height: 100%; object-fit: cover; filter: var(--photo-filter); }
.who__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 60px);
}
.bio__name { margin-bottom: 6px; font-size: clamp(21px, 2.1vw, 26px); font-weight: 700; letter-spacing: -.02em; }
.bio__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--accent-deep);
  margin-bottom: 18px;
}
.bio__p { font-size: 16px; line-height: 1.62; color: var(--ink-72); }
.bio__p + .bio__p { margin-top: 14px; }

/* ---------- Video (optional, off by default) ---------- */
.demo { border-top: 1px solid var(--rule); padding: var(--pad-y-major) var(--pad-x); }
.demo__h2 { margin-bottom: 12px; }
.demo__intro { margin-bottom: 32px; font-size: clamp(16px, 1.5vw, 18px); line-height: 1.62; color: var(--ink-72); max-width: 600px; }
.demo__placeholder {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px dashed rgba(35, 33, 29, .3);
  border-radius: 6px;
  background: #f2efe8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.demo__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(35, 33, 29, .35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo__play-tri {
  width: 0;
  height: 0;
  border-left: 15px solid var(--ink-50);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.demo__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--ink-55); }
.demo__sub { font-size: 13.5px; color: var(--ink-50); }

/* ---------- Who this is for ---------- */
.for { background: var(--canvas-raised); border-top: 1px solid var(--rule); padding: var(--pad-y-major) var(--pad-x); }
.for__audience {
  margin-top: 20px;
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
}
.for__trades { margin-top: 10px; font-size: 16px; line-height: 1.6; color: var(--ink-66); }
.for__list { display: flex; flex-direction: column; max-width: 620px; }
.for__item {
  padding: 16px 0;
  border-top: 1px solid var(--rule-list);
  font-size: clamp(16px, 1.5vw, 17.5px);
  line-height: 1.55;
}
.for__item:last-child { border-bottom: 1px solid var(--rule-list); }

/* ---------- FAQ ---------- */
.questions { border-top: 1px solid var(--rule); padding: var(--pad-y-major) var(--pad-x); }
.questions__col { max-width: 660px; }
.faq-group { display: flex; flex-direction: column; margin-bottom: clamp(40px, 5vw, 60px); }
.faq-group__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding-bottom: 14px;
}
.faq-group details { border-top: 1px solid var(--rule-card); }
.faq-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(17px, 1.7vw, 19px);
  letter-spacing: -.015em;
  color: var(--ink);
  list-style: none;
}
.faq-group summary::-webkit-details-marker { display: none; }
.faq-mark {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(35, 33, 29, .32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  transition: transform .18s;
}
details[open] .faq-mark { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 22px;
  font-size: clamp(16px, 1.5vw, 17.5px);
  line-height: 1.62;
  color: var(--ink-78);
  max-width: 620px;
}

/* ---------- Talk to us (#contact) ---------- */
.contact { background: var(--canvas-raised); border-top: 1px solid var(--rule); padding: var(--pad-y-major) var(--pad-x); }
.contact__h2 { margin-bottom: 14px; }
.contact__lede { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.62; color: var(--ink-72); max-width: 440px; }
.contact__col { max-width: 480px; }

/* Contact form */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.fld { margin-bottom: 18px; }
.fldlabel { display: block; font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.inp {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--rule-card);
  border-radius: 5px;
  padding: 0 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--card);
}
.inp.area { min-height: 100px; padding: 12px 14px; resize: vertical; line-height: 1.5; }
.inp:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200, 128, 29, .18); }
.inp.errb { border-color: var(--error); }
.err { color: var(--error); font-size: 13px; margin-top: 6px; font-weight: 600; }
.intent { display: flex; flex-wrap: wrap; gap: 10px; }
.intent-opt {
  border: 1px solid var(--rule-card);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink-72);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  cursor: pointer;
}
.intent-opt[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.contact__submit { width: 100%; min-height: 50px; font-size: 15px; margin-top: 4px; }
.success h3 { font-weight: 700; font-size: 20px; color: var(--ink); }

/* ---------- Closing block ---------- */
.closer { background: var(--canvas-raised); border-top: 1px solid var(--rule); padding: clamp(64px, 9vw, 120px) var(--pad-x); }
.closer__h2 {
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.02em;
  max-width: 660px;
  color: var(--ink-72);
}
.closer__audience {
  margin-top: 18px;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -.02em;
  color: var(--ink);
}
.closer__cta-wrap { margin-top: clamp(32px, 4vw, 44px); }
.closer__cta { display: inline-flex; font-weight: 800; font-size: 17px; padding: 22px 46px; }
.closer__reassure { margin-top: 16px; font-size: 15px; color: var(--ink-66); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--rule);
  color: var(--ink-72);
  padding: 28px var(--pad-x);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.site-footer__links { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer__links a { color: var(--ink-72); }
.site-footer__links a:hover { color: var(--accent-deep); }
