/* ==========================================================================
   we do your events - site styles
   Palette and type lifted from the Squarespace original:
   purple #6616D0, ink #1F1E1E, line #E6E6E6, lavender #E9E2F5,
   Manrope for everything, Poppins for the bracketed asides.
   ========================================================================== */

/* --------------------------------------------------------- fonts */
@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-var-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins-400-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------- tokens */
:root {
  --purple: #6616d0;
  --purple-deep: #4d0fa4;
  --purple-lt: #c9a8ff;
  --lavender: #e9e2f5;
  --lavender-deep: #ddd2f0;
  --ink: #1f1e1e;
  --ink-2: #5f5d5d;
  --ink-3: #8a8888;
  --line: #e6e6e6;
  --white: #fff;
  --paper: #faf9fb;

  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --alt: 'Poppins', var(--sans);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 44px;
  --r-pill: 999px;

  --gut: clamp(20px, 5vw, 64px);
  --band-y: clamp(64px, 9vw, 128px);
  --maxw: 1200px;

  --shadow: 0 1px 2px rgba(31, 30, 30, .04), 0 12px 32px -18px rgba(31, 30, 30, .28);
  --shadow-lift: 0 2px 4px rgba(31, 30, 30, .05), 0 24px 48px -20px rgba(31, 30, 30, .32);
}

/* --------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(16px, .55vw + 14.4px, 18px);
  line-height: 1.62;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
/* text-wrap: balance keeps headings off a one-word last line; pretty does the
   same job for body copy. both degrade to normal wrapping where unsupported. */
h1, h2, h3, h4 {
  margin: 0; font-weight: 800; letter-spacing: -.022em; line-height: 1.04;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
.lede, .aside-note, .quote, .small { text-wrap: pretty; }
.display, .h1, .h2, .h3, .h4 { text-wrap: balance; }
ul, ol { margin: 0; padding: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}
.band--purple :focus-visible, .band--ink :focus-visible { outline-color: var(--purple-lt); }

.skip {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--white);
  padding: 12px 18px; border-radius: var(--r-pill);
  font-weight: 700; text-decoration: none;
  transition: top .18s;
}
.skip:focus { top: 8px; }

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 780px; }
.wrap--wide { max-width: 1360px; }

.band { position: relative; padding-block: var(--band-y); }
.band--tight { padding-block: clamp(44px, 6vw, 84px); }
/* For a band that follows a .page-hero directly: the hero's bottom padding is
   already the separation, so a full band top padding doubles the gap. */
.band--flush-top { padding-top: clamp(4px, 1vw, 12px); }
.band--purple { background: var(--purple); color: var(--white); }
.band--lav { background: var(--lavender); }
.band--paper { background: var(--paper); }
.band--ink { background: var(--ink); color: var(--white); }
.band--purple .lede, .band--ink .lede { color: rgba(255, 255, 255, .82); }

/* the signature Squarespace arc, rebuilt as an inline svg */
.curve { display: block; width: 100%; height: clamp(38px, 6vw, 92px); margin-bottom: -1px; }
.curve + .band, .curve + section { margin-top: -1px; }
.curve--flip { transform: rotate(180deg); margin: -1px 0 0; }

/* --------------------------------------------------------- type */
.display {
  font-size: clamp(2.6rem, 8.2vw, 6rem);
  letter-spacing: -.03em;
  line-height: .98;
  font-weight: 800;
}
.h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); letter-spacing: -.028em; }
.h2 { font-size: clamp(1.75rem, 3.7vw, 2.85rem); letter-spacing: -.026em; }
.h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: -.018em; font-weight: 800; }
.h4 { font-size: 1.0625rem; letter-spacing: -.012em; font-weight: 800; }

.accent { color: var(--purple); }
.band--purple .accent, .band--ink .accent { color: var(--purple-lt); }

/* the bracketed aside voice: [actually, just the tech parts you hate] */
.aside-note {
  font-family: var(--alt);
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  color: var(--ink-2);
  line-height: 1.45;
}
.band--purple .aside-note, .band--ink .aside-note { color: var(--purple-lt); }

.lede {
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
}
.small { font-size: .9375rem; line-height: 1.55; color: var(--ink-2); }
.band--purple .small, .band--ink .small { color: rgba(255, 255, 255, .74); }

.eyebrow {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.band--purple .eyebrow, .band--ink .eyebrow { color: var(--purple-lt); }

.stack > * + * { margin-top: 18px; }
.stack-sm > * + * { margin-top: 10px; }
.stack-lg > * + * { margin-top: 30px; }

.prose p + p { margin-top: 1.1em; }
.prose h3 { margin-top: 2.2em; margin-bottom: .55em; }
.prose h3:first-child { margin-top: 0; }
.prose ul { margin: 1.1em 0; }

/* --------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  background: var(--purple); color: var(--white);
  font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  text-decoration: none; border: 2px solid var(--purple); cursor: pointer;
  transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.btn:hover { background: var(--purple-deep); border-color: var(--purple-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--light { background: var(--white); color: var(--purple); border-color: var(--white); }
.btn--light:hover { background: var(--lavender); border-color: var(--lavender); color: var(--purple-deep); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .55); }
.btn--outline-light:hover { background: var(--white); color: var(--purple); border-color: var(--white); }
.btn--sm { padding: 11px 22px; font-size: .9375rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Default to plain inline so a link can sit mid-sentence and wrap normally.
   Only the standalone "call to action" form (the one carrying an arrow)
   becomes inline-flex, which must not wrap. */
.textlink {
  display: inline;
  font-weight: 700; text-decoration: none; color: var(--purple);
  border-bottom: 2px solid transparent; transition: border-color .18s, gap .18s;
}
.textlink:has(.arw) { display: inline-flex; align-items: center; gap: 7px; }
.textlink:hover { border-bottom-color: currentColor; gap: 11px; }
.band--purple .textlink, .band--ink .textlink { color: var(--purple-lt); }
.textlink .arw { transition: transform .18s; }
.textlink:hover .arw { transform: translateX(2px); }

/* --------------------------------------------------------- header */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-head[data-stuck='true'] { border-bottom-color: var(--line); box-shadow: 0 6px 24px -20px rgba(31, 30, 30, .5); }
.head-in {
  display: flex; align-items: center; gap: 20px;
  min-height: 76px;
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut);
}

.logo { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; flex: 0 0 auto; }
.logo-mark {
  font-size: 1.6rem; font-weight: 800; letter-spacing: .04em; color: var(--ink);
  display: inline-flex; align-items: baseline; gap: .06em;
}
.logo-mark .brk { color: var(--purple); font-weight: 700; }
.logo-sub {
  font-size: .58rem; letter-spacing: .045em; color: var(--ink-2);
  font-weight: 500; margin-top: 4px; padding-left: 2px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a, .nav .navbtn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: var(--r-pill);
  font-size: .95rem; font-weight: 600; color: var(--ink);
  text-decoration: none; background: transparent; border: 0; cursor: pointer;
  transition: background .16s, color .16s;
}
.nav a:hover, .nav .navbtn:hover, .nav a[aria-current='page'] { background: var(--lavender); color: var(--purple); }
.nav a[aria-current='page'] { font-weight: 800; }

.has-menu { position: relative; }
.has-menu .caret { transition: transform .18s; }
.has-menu[data-open='true'] .caret { transform: rotate(180deg); }
/* Bridges the visual gap between the button and the dropdown. Without it the
   pointer crosses dead space on the way down, mouseleave fires on .has-menu
   and the menu closes before you can reach an item. A pseudo-element counts
   as part of its owner for hit testing, so hovering here keeps it open. */
.has-menu[data-open='true']::after {
  content: ''; position: absolute; top: 100%; left: 0;
  width: 288px; height: 14px;
}
.submenu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 268px; padding: 10px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
  display: none; flex-direction: column; gap: 2px;
}
.has-menu[data-open='true'] .submenu { display: flex; }
.submenu a { padding: 10px 12px; border-radius: var(--r-sm); font-weight: 600; align-items: flex-start; flex-direction: column; gap: 2px; }
.submenu a span { font-size: .8rem; font-weight: 500; color: var(--ink-3); line-height: 1.35; }
.submenu a:hover span { color: var(--purple); }

.nav-cta { margin-left: 8px; }
.burger {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--white);
  align-items: center; justify-content: center; cursor: pointer;
}
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .2s, opacity .2s; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .2s;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded='true'] span { transform: rotate(45deg); }
.burger[aria-expanded='true'] span::before { transform: rotate(-90deg) translateX(6px); }
.burger[aria-expanded='true'] span::after { opacity: 0; }

@media (max-width: 940px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: 76px 0 auto; margin: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 14px var(--gut) 28px;
    max-height: calc(100dvh - 76px); overflow-y: auto;
    display: none;
  }
  .nav[data-open='true'] { display: flex; }
  .nav a, .nav .navbtn { padding: 13px 14px; font-size: 1.05rem; justify-content: space-between; }
  .has-menu[data-open='true']::after { display: none; }
  .submenu { position: static; display: flex; border: 0; box-shadow: none; padding: 0 0 6px 14px; min-width: 0; }
  .has-menu .submenu { display: none; }
  .has-menu[data-open='true'] .submenu { display: flex; }
  .nav-cta { margin: 10px 0 0; justify-content: center; }
}

/* --------------------------------------------------------- hero */
.hero { padding-block: clamp(56px, 9vw, 120px) clamp(40px, 6vw, 76px); text-align: center; }
.hero .display { margin-bottom: 22px; }
.hero .aside-note { max-width: 44ch; margin-inline: auto; }
.hero .btn-row { justify-content: center; margin-top: 34px; }

.page-hero { padding-block: clamp(48px, 7vw, 92px) clamp(34px, 5vw, 62px); }
.page-hero .h1 { margin-bottom: 18px; }

/* --------------------------------------------------------- breadcrumbs */
.crumbs { font-size: .84rem; color: var(--ink-3); margin-bottom: 20px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumbs a { color: var(--ink-2); text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--purple); text-decoration: underline; }
.crumbs li + li::before { content: '/'; margin-right: 8px; color: var(--line); }
.band--purple .crumbs, .band--ink .crumbs { color: rgba(255, 255, 255, .6); }
.band--purple .crumbs a, .band--ink .crumbs a { color: rgba(255, 255, 255, .85); }

/* --------------------------------------------------------- grids + cards */
.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); } }

.split { display: grid; gap: clamp(28px, 5vw, 72px); align-items: center; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split--lean { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
/* founder block: the copy column needs the width so the headline stays 2 lines */
.split--founder { grid-template-columns: minmax(0, 1.55fr) minmax(0, .75fr); }
/* Top-align the columns instead of centring them: used where one column is a
   tall form and the other is a short aside that should start level with it. */
.split--top { align-items: start; }
@media (max-width: 860px) { .split, .split--lean, .split--founder { grid-template-columns: minmax(0, 1fr); } }

/* light surfaces must re-declare colour: they can sit inside .band--purple,
   which sets colour on the section and would otherwise be inherited. */
.card {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 12px;
}
.card .small, .card p { color: var(--ink-2); }
.card .h3, .card h3 { color: var(--ink); }
.card--lav { background: var(--lavender); border-color: transparent; }
.card--ink { background: var(--ink); color: var(--white); border-color: transparent; }
.card--ink .small, .card--ink p { color: rgba(255, 255, 255, .78); }
.card--ink .h3, .card--ink h3 { color: var(--white); }
.card--flat { border: 0; padding: 0; background: transparent; }
a.card { text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--purple-lt); }
a.card .textlink { margin-top: auto; padding-top: 6px; }

.card-num {
  font-size: .8rem; font-weight: 800; letter-spacing: .1em;
  color: var(--purple); text-transform: uppercase;
}

.ic {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--lavender); color: var(--purple);
  display: grid; place-items: center; flex: 0 0 auto;
}
.card--lav .ic { background: var(--white); }
.band--purple .ic { background: rgba(255, 255, 255, .16); color: var(--white); }

/* --------------------------------------------------------- lists */
/* The marker is absolutely positioned rather than a grid column. A grid li
   turns every child into a grid item, so "<a>link</a>, then more text" would
   be laid out as two separate items. Absolute keeps the content one flow. */
.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 34px; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .18em;
  width: 22px; height: 22px; border-radius: var(--r-pill);
  background: var(--lavender) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236616d0' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 10.5l3.6 3.6L15.5 6.7'/%3E%3C/svg%3E") center/13px no-repeat;
}
.band--purple .ticks li::before, .band--ink .ticks li::before {
  background-color: rgba(255, 255, 255, .18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 10.5l3.6 3.6L15.5 6.7'/%3E%3C/svg%3E");
}
.ticks--tight li { padding-left: 32px; }

.bullets { list-style: none; display: grid; gap: 10px; }
.bullets li { position: relative; padding-left: 22px; }
.bullets li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--purple);
}
.band--purple .bullets li::before { background: var(--purple-lt); }

/* problem / solution pairs */
.pairs { display: grid; gap: 14px; }
.pair {
  display: grid; grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 0; align-items: stretch;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); color: var(--ink);
}
.pair > div { padding: clamp(20px, 2.2vw, 28px); }
.pair .p-prob { background: var(--paper); color: var(--ink-2); }
.pair .p-sol { background: var(--white); }
.pair .p-arrow { display: grid; place-items: center; background: var(--lavender); color: var(--purple); padding: 0; }
@media (max-width: 760px) {
  .pair { grid-template-columns: minmax(0, 1fr); }
  /* Rotate the icon, never the cell. Rotating .p-arrow itself turns its
     lavender background into a tall vertical stripe, and because transforms
     do not affect layout it gets painted straight over the copy either side. */
  .pair .p-arrow { padding: 6px; }
  .pair .p-arrow svg { transform: rotate(90deg); }
}
.pairs-head { display: grid; grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr); margin-bottom: 6px; }
.pairs-head span { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); padding-inline: clamp(20px, 2.2vw, 28px); }
.pairs-head span:last-child { color: var(--purple); grid-column: 3; }
@media (max-width: 760px) { .pairs-head { display: none; } }

/* --------------------------------------------------------- platform strip */
.plat-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.plat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  font-weight: 700; font-size: .95rem; text-decoration: none;
  transition: border-color .18s, background .18s, transform .18s;
}
.plat-chip:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.band--purple .plat-chip { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .28); color: var(--white); }
.band--purple .plat-chip:hover { background: var(--white); color: var(--purple); }

/* --------------------------------------------------------- steps */
.steps { counter-reset: step; display: grid; gap: clamp(18px, 2.4vw, 28px); }
/* Top-aligned by default: these steps carry a heading plus a paragraph, so a
   vertically centred marker would float away from the line it labels. */
.step { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 20px; align-items: start; }
.step::before {
  counter-increment: step; content: counter(step);
  width: 54px; height: 54px; border-radius: var(--r-pill);
  background: var(--purple); color: var(--white);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.2rem;
}
.band--purple .step::before { background: var(--white); color: var(--purple); }

/* Compact variant for one-or-two-line steps, where centring reads correctly. */
.steps--compact { gap: 14px; }
.steps--compact .step { grid-template-columns: 40px minmax(0, 1fr); gap: 16px; align-items: center; }
.steps--compact .step::before { width: 40px; height: 40px; font-size: 1rem; }

/* --------------------------------------------------------- comparison table */
.cmp { width: 100%; border-collapse: separate; border-spacing: 0; font-size: .97rem; }
.cmp th, .cmp td { padding: 16px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.cmp thead th { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 800; }
.cmp tbody th { font-weight: 700; width: 30%; }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp .col-hi { background: var(--lavender); }
.cmp thead .col-hi { border-radius: var(--r-md) var(--r-md) 0 0; color: var(--purple); }
.cmp tbody tr:last-child .col-hi { border-radius: 0 0 var(--r-md) var(--r-md); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll table { min-width: 620px; }

/* --------------------------------------------------------- faq */
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--white); color: var(--ink); overflow: hidden;
  transition: border-color .18s;
}
.faq details[open] { border-color: var(--purple-lt); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 20px 56px 20px 24px; position: relative;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -.012em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 22px; top: 50%;
  width: 13px; height: 13px; margin-top: -7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236616d0' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M3 6l5 5 5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .faq-body { padding: 0 24px 22px; color: var(--ink-2); }
.faq .faq-body > * + * { margin-top: 10px; }

/* --------------------------------------------------------- media */
.shot {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--lavender);
  box-shadow: var(--shadow);
}
.shot img { width: 100%; }
.portrait { border-radius: var(--r-xl); overflow: hidden; background: var(--lavender); }
.portrait--sm { max-width: 320px; margin-left: auto; }
@media (max-width: 860px) { .portrait--sm { margin-inline: 0; } }

/* the company name set the way the logo sets it */
.brand-inline { font-weight: 800; white-space: nowrap; }
.brand-inline .brk { color: var(--purple); }
.band--purple .brand-inline .brk, .band--ink .brand-inline .brk,
.card--ink .brand-inline .brk, .door--alt .brand-inline .brk { color: var(--purple-lt); }

/* --------------------------------------------------------- callout */
.callout {
  border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 56px);
  background: var(--lavender);
  color: var(--ink);
}
.callout--purple { background: var(--purple); color: var(--white); }
.callout--ink { background: var(--ink); color: var(--white); }

.quote {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.35; font-weight: 800; letter-spacing: -.02em;
}

/* --------------------------------------------------------- two doors */
.doors { display: grid; gap: clamp(16px, 2vw, 24px); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 800px) { .doors { grid-template-columns: minmax(0, 1fr); } }
.door {
  display: flex; flex-direction: column; gap: 16px;
  padding: clamp(28px, 3.2vw, 44px);
  border-radius: var(--r-xl);
  text-decoration: none;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.door .small { color: var(--ink-2); }
.door:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--purple); }
.door--alt { background: var(--ink); color: var(--white); border-color: var(--ink); }
.door--alt:hover { border-color: var(--purple-lt); }
.door--alt .small { color: rgba(255, 255, 255, .76); }
.door .door-tag {
  font-family: var(--alt); font-size: .95rem; color: var(--purple);
}
.door--alt .door-tag { color: var(--purple-lt); }
.door .ticks { margin-top: 4px; }
.door .textlink { margin-top: auto; padding-top: 12px; }
.door--alt .ticks li::before {
  background-color: rgba(255, 255, 255, .18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 10.5l3.6 3.6L15.5 6.7'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------- contact form */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .95rem; }
.field .hint { font-size: .84rem; color: var(--ink-3); font-weight: 500; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); width: 100%;
  transition: border-color .16s, box-shadow .16s;
}
.field textarea { min-height: 132px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235f5d5d' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 14px;
  padding-right: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(102, 22, 208, .14);
}
.form-note { font-size: .86rem; color: var(--ink-3); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------- footer */
.site-foot { background: var(--ink); color: var(--white); padding-block: clamp(48px, 6vw, 78px) 34px; }
.foot-grid {
  display: grid; gap: clamp(28px, 4vw, 52px);
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: minmax(0, 1fr); } }
.site-foot .logo-mark { color: var(--white); }
.site-foot .logo-sub { color: rgba(255, 255, 255, .6); }
.foot-col h2 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--purple-lt); margin-bottom: 16px; font-weight: 800; }
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a { color: rgba(255, 255, 255, .8); text-decoration: none; font-size: .95rem; }
.foot-col a:hover { color: var(--white); text-decoration: underline; }
.foot-nap { font-style: normal; color: rgba(255, 255, 255, .8); font-size: .95rem; display: grid; gap: 8px; }
.foot-nap a { color: inherit; text-decoration: none; }
.foot-nap a:hover { color: var(--white); text-decoration: underline; }
.foot-base {
  margin-top: clamp(36px, 5vw, 58px); padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: .86rem; color: rgba(255, 255, 255, .58);
}
.foot-base a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.foot-base a:hover { color: var(--white); text-decoration: underline; }

/* --------------------------------------------------------- islands
   A light card can sit inside .band--purple and a dark card can sit inside a
   light band. The .band--* descendant rules above would repaint their contents
   the wrong way round, so every self-contained surface restates its own
   colours here. This block must stay LAST: it wins the specificity ties.
   ------------------------------------------------------------------ */
.card:not(.card--ink), .door:not(.door--alt), .pair, .faq details,
.plat-chip, .callout:not(.callout--purple):not(.callout--ink) {
  color: var(--ink);
}
.card:not(.card--ink) .lede, .door:not(.door--alt) .lede,
.pair .lede, .callout:not(.callout--purple):not(.callout--ink) .lede,
.card:not(.card--ink) .small, .door:not(.door--alt) .small,
.pair .small, .callout:not(.callout--purple):not(.callout--ink) .small,
.card:not(.card--ink) .aside-note, .door:not(.door--alt) .aside-note,
.callout:not(.callout--purple):not(.callout--ink) .aside-note,
.faq .faq-body {
  color: var(--ink-2);
}
.card:not(.card--ink) .accent, .door:not(.door--alt) .accent,
.pair .accent, .callout:not(.callout--purple):not(.callout--ink) .accent,
.card:not(.card--ink) .eyebrow, .door:not(.door--alt) .eyebrow,
.callout:not(.callout--purple):not(.callout--ink) .eyebrow,
.card:not(.card--ink) .textlink, .door:not(.door--alt) .textlink,
.pair .textlink, .faq .textlink,
.callout:not(.callout--purple):not(.callout--ink) .textlink {
  color: var(--purple);
}
.card:not(.card--ink) .ticks li::before, .door:not(.door--alt) .ticks li::before,
.callout:not(.callout--purple):not(.callout--ink) .ticks li::before,
.faq .ticks li::before {
  background-color: var(--lavender);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236616d0' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 10.5l3.6 3.6L15.5 6.7'/%3E%3C/svg%3E");
}
.card:not(.card--ink) .bullets li::before, .door:not(.door--alt) .bullets li::before,
.callout:not(.callout--purple):not(.callout--ink) .bullets li::before {
  background: var(--purple);
}
.card--lav .ic, .card:not(.card--ink) .ic, .door:not(.door--alt) .ic {
  background: var(--lavender); color: var(--purple);
}
.card--lav .ic { background: var(--white); }

/* dark islands sitting inside light bands */
.card--ink .textlink, .door--alt .textlink,
.callout--purple .textlink, .callout--ink .textlink,
.card--ink .accent, .door--alt .accent,
.callout--purple .accent, .callout--ink .accent,
.card--ink .eyebrow, .door--alt .eyebrow,
.callout--purple .eyebrow, .callout--ink .eyebrow {
  color: var(--purple-lt);
}
.card--ink .ticks li::before, .door--alt .ticks li::before,
.callout--purple .ticks li::before, .callout--ink .ticks li::before {
  background-color: rgba(255, 255, 255, .18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 10.5l3.6 3.6L15.5 6.7'/%3E%3C/svg%3E");
}
.card--ink .bullets li::before, .door--alt .bullets li::before,
.callout--purple .bullets li::before, .callout--ink .bullets li::before {
  background: var(--purple-lt);
}
.callout--purple .lede, .callout--ink .lede,
.callout--purple .small, .callout--ink .small { color: rgba(255, 255, 255, .8); }

/* --------------------------------------------------------- utility */
.center { text-align: center; }
.center .lede, .center .aside-note { margin-inline: auto; }
.center .btn-row { justify-content: center; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 14px; }
.mt-md { margin-top: 26px; }
.mt-lg { margin-top: 42px; }
.maxw-60 { max-width: 60ch; }
.sec-head { max-width: 68ch; margin-bottom: clamp(30px, 4vw, 52px); }
.sec-head.center { margin-inline: auto; }
