/* Schedule Space — site styles
   Palette: the black void the hero particles live in, a blue-black page ground,
   the navy and blue sampled from the logo, and one green reserved for "done".
   Type: Archivo across three widths — wide for display, normal for text,
   condensed for small labels. */

:root {
  --void: #000000;
  --ink: #050a14;
  --ink-2: #0b1526;
  --ink-3: #12213a;
  --line: rgba(160, 190, 230, 0.14);
  --line-strong: rgba(160, 190, 230, 0.3);
  --navy: #003355;
  --blue: #1796f0;
  --blue-deep: #005395;
  --blue-hover: #2aa1f5;
  --sky: #5fb6f5;
  --mint: #2bc47c;
  --paper: #f2f6fc;
  --dim: #a9b8cc;
  --faint: #6e7f99;
  --danger: #ff8a8a;
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: clamp(20px, 5vw, 72px);
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --glow: 0 0 40px rgba(23, 150, 240, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--ink); }
html.is-locked { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; border-radius: 2px; }
::selection { background: rgba(95, 182, 245, 0.35); }

.skip {
  position: absolute; left: var(--gutter); top: -100px; z-index: 100;
  background: var(--sky); color: #03111f; padding: 10px 14px; font-weight: 600;
}
.skip:focus { top: 12px; }

.icon { width: 1.25em; height: 1.25em; flex: none; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- type ---------- */
.display {
  font-weight: 800;
  font-stretch: 118%;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-wrap: balance;
}
.lede {
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  line-height: 1.5;
  color: var(--dim);
  max-width: 52ch;
  text-wrap: pretty;
}
.small { font-stretch: 86%; font-weight: 600; letter-spacing: 0.01em; font-size: 0.9375rem; }
.section-title { font-size: clamp(2.4rem, 5.6vw, 5.2rem); }
.section-head { display: grid; gap: 22px; max-width: 900px; margin-bottom: clamp(48px, 7vh, 88px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  font-weight: 700; font-stretch: 104%; letter-spacing: -0.005em; white-space: nowrap;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.25s, transform 0.2s var(--ease-out);
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hover); box-shadow: var(--glow); }
.btn--primary:active { transform: scale(0.98); }
.btn--ghost { color: var(--paper); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--paper); }
.btn--lg { min-height: 60px; padding: 0 30px; font-size: 1.125rem; }
.btn[disabled] { opacity: 0.55; cursor: progress; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  display: flex; align-items: center; gap: 28px; padding: 0 var(--gutter);
  transition: background-color 0.3s, box-shadow 0.3s;
}
.nav.is-scrolled, .nav.is-open, .nav--solid {
  background: rgba(5, 10, 20, 0.78);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.95rem; line-height: 1;
  color: var(--paper);
}
.brand svg { width: 36px; height: 36px; flex: none; }
.nav__list { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px; color: var(--dim); font-weight: 500;
  transition: color 0.2s, background-color 0.2s;
}
.nav__link:hover, .nav__link[aria-expanded="true"], .nav__link[aria-current="page"] { color: var(--paper); background: rgba(255, 255, 255, 0.06); }
.nav__link .icon { width: 1em; height: 1em; transition: transform 0.2s; }
.nav__link[aria-expanded="true"] .icon { transform: rotate(180deg); }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__item--menu { position: relative; }
.menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 340px; display: none;
  padding: 8px; background: var(--ink-2); border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.menu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav__item--menu.is-open .menu, .nav__item--menu:focus-within .menu { display: block; }
@media (hover: hover) { .nav__item--menu:hover .menu { display: block; } }
.menu a { display: block; padding: 12px 14px; border-radius: 4px; transition: background-color 0.15s; }
.menu a:hover { background: rgba(255, 255, 255, 0.06); }
.menu strong { display: block; font-weight: 700; color: var(--paper); }
.menu span { display: block; color: var(--dim); font-size: 0.9rem; margin-top: 2px; }
.nav__toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 999px; margin-left: auto; }
.nav__toggle .icon { width: 24px; height: 24px; }
.nav__toggle .icon--close, .nav.is-open .nav__toggle .icon--menu { display: none; }
.nav.is-open .nav__toggle .icon--close { display: block; }

@media (max-width: 960px) {
  .nav { gap: 12px; }
  .nav__toggle { display: inline-flex; }
  /* Anchored to the header rather than position: fixed — the header's backdrop-filter
     would otherwise become the containing block and clip the panel to the header's height. */
  .nav__list {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    height: calc(100vh - var(--nav-h)); height: calc(100dvh - var(--nav-h));
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 16px var(--gutter) 40px; background: var(--ink); overflow-y: auto;
  }
  .nav.is-open { background: var(--ink); }
  .nav.is-open .nav__list { display: flex; }
  .nav__link { padding: 16px 0; border-radius: 0; border-bottom: 1px solid var(--line); font-size: 1.25rem; color: var(--paper); }
  .nav__link:hover, .nav__link[aria-expanded="true"] { background: none; }
  .menu { position: static; display: block; min-width: 0; padding: 4px 0 8px 12px; border: 0; box-shadow: none; background: none; }
  .menu::before { display: none; }
  .nav__actions { flex-direction: column; align-items: stretch; margin-top: 24px; gap: 12px; }
  .nav__actions .btn { min-height: 56px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; height: 100vh; height: 100svh; min-height: 560px;
  background: var(--void); overflow: hidden; isolation: isolate;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; background: var(--void); }
.hero__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.hero.is-static .hero__poster { display: block; }
.hero.is-static .hero__canvas { display: none; }
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 38%, rgba(0, 0, 0, 0) 68%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 22%);
}
/* Title sequence: one massive line at a time in the lower third while the logo
   builds above it (scroll-driven), then the compact block with the CTA lands. */
.hero__acts { position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(36px, 8vh, 96px); height: 1em; pointer-events: none; }
.hero__act {
  position: absolute; left: 0; bottom: 0; white-space: nowrap; opacity: 0; visibility: hidden;
  font-size: clamp(2.7rem, 11vw, 11rem); color: var(--paper); text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}
.hero__act--paid, .hero__line--paid { color: var(--sky); }
.hero.is-static .hero__acts { display: none; }
.hero__copy {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(36px, 8vh, 96px);
  display: grid; gap: clamp(18px, 2.6vh, 28px); justify-items: start;
}
.js .hero__copy { opacity: 0; visibility: hidden; }
.js .hero.is-static .hero__copy { opacity: 1; visibility: visible; }
.hero__title { font-size: clamp(1.9rem, 3.8vw, 4rem); color: var(--paper); text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6); }
.hero__line { display: block; white-space: nowrap; }
.hero__lede { max-width: 44ch; }
.hero__loader {
  position: absolute; left: 0; top: 0; z-index: 3; height: 2px; width: 100%;
  background: var(--sky); transform-origin: left; transform: scaleX(0);
  transition: opacity 0.6s;
}
.hero__loader.is-done { opacity: 0; }
.hero__cue {
  position: absolute; right: var(--gutter); bottom: clamp(36px, 8vh, 96px);
  display: flex; align-items: center; gap: 14px; color: var(--dim);
}
.hero__cue-track { width: 1px; height: 64px; background: var(--line-strong); overflow: hidden; position: relative; }
.hero__cue-track::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 40%;
  background: var(--sky); animation: cue 1.8s var(--ease-out) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 100% { transform: translateY(260%); } }
@media (prefers-reduced-motion: reduce) { .hero__cue-track::after { animation: none; } .hero__cue { display: none; } }
@media (max-width: 720px) { .hero__cue { gap: 10px; font-size: 0.875rem; } .hero__cue-track { height: 48px; } }

/* ---------- acts (Get Set / Get Booked / Get Paid) ---------- */
.act {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; align-items: end; background: var(--void); overflow: hidden; isolation: isolate;
}
.act__video, .act__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.act__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.4) 38%, rgba(0, 0, 0, 0) 68%),
    linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 42%, rgba(0, 0, 0, 0) 74%);
}
.act__copy {
  position: relative; padding: clamp(96px, 20vh, 200px) var(--gutter) clamp(44px, 9vh, 110px);
  max-width: 820px; display: grid; gap: 22px;
}
.act__verb { font-size: clamp(2.6rem, 7.5vw, 7rem); color: var(--paper); }
.act__lede { font-size: clamp(1.1rem, 1.4vw, 1.35rem); line-height: 1.5; max-width: 54ch; color: var(--paper); text-wrap: pretty; }
.act__points { display: grid; margin-top: 8px; border-top: 1px solid var(--line-strong); }
.act__points li { display: flex; gap: 14px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--dim); }
.act__points .icon { width: 1.1em; height: 1.1em; color: var(--sky); transform: translateY(0.18em); }

/* The cafe act is the one daylight moment on the page: a frosted lower-third instead of a dark scrim. */
.act--light .act__scrim { background: linear-gradient(to top, rgba(8, 20, 40, 0.35), rgba(8, 20, 40, 0) 50%); }
.act--light .act__copy {
  margin: 0 var(--gutter) clamp(44px, 9vh, 110px); padding: clamp(28px, 4vw, 44px);
  background: rgba(244, 248, 252, 0.66); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 51, 85, 0.12); color: var(--navy); max-width: 680px;
}
.act--light .act__verb, .act--light .act__lede { color: var(--navy); }
.act--light .act__points { border-top-color: rgba(0, 51, 85, 0.25); }
.act--light .act__points li { border-bottom-color: rgba(0, 51, 85, 0.12); color: #1f4a6e; }
.act--light .act__points .icon { color: var(--blue-deep); }
/* On phones the panel covers most of the frame, so it becomes clearer glass:
   a light tint keeps the scene visible, and a white halo keeps the navy copy readable over it. */
@media (max-width: 720px) {
  .act--light .act__copy {
    padding: 22px 20px;
    background: rgba(244, 248, 252, 0.3);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    border-color: rgba(255, 255, 255, 0.45);
  }
  .act--light .act__points li { color: var(--navy); }
  .act--light .act__verb, .act--light .act__lede, .act--light .act__points li {
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.95), 0 1px 2px rgba(255, 255, 255, 0.7);
  }
}

/* ---------- features ---------- */
.section { padding: clamp(96px, 14vh, 180px) var(--gutter); }
.features { background: var(--ink); }
.features__groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 64px); border-top: 1px solid var(--line-strong); }
.group { padding-top: 28px; }
.group__verb { font-size: clamp(1.7rem, 2.4vw, 2.3rem); color: var(--paper); margin-bottom: 10px; }
.group__list li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--paper); text-wrap: pretty; }
.group__list .icon { color: var(--sky); margin-top: 0.15em; }
@media (max-width: 860px) { .features__groups { grid-template-columns: 1fr; gap: 12px; } .group { padding-top: 20px; } }

/* ---------- pricing ---------- */
.pricing { position: relative; background: var(--void); text-align: center; overflow: hidden; }
.pricing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 55%, rgba(23, 150, 240, 0.28), rgba(23, 150, 240, 0) 70%);
}
.pricing__inner { position: relative; display: grid; justify-items: center; gap: 28px; max-width: 960px; margin: 0 auto; }
.pricing__inner .lede { text-align: center; }
.pricing__amount { display: flex; align-items: baseline; justify-content: center; gap: 0.15em; margin-top: 12px; }
.pricing__amount .display { font-size: clamp(5.5rem, 17vw, 15rem); color: var(--paper); text-shadow: 0 0 80px rgba(23, 150, 240, 0.4); }
.pricing__amount .per { font-size: clamp(1.25rem, 2.4vw, 2rem); color: var(--dim); font-weight: 500; }
.pricing__facts { display: grid; gap: 12px; justify-items: start; text-align: left; margin: 8px auto 12px; }
.pricing__facts li { display: flex; gap: 12px; align-items: baseline; font-size: clamp(1.05rem, 1.3vw, 1.25rem); }
.pricing__facts .icon { color: var(--mint); transform: translateY(0.2em); }
.pricing__note { color: var(--faint); font-size: 0.95rem; }

/* ---------- resources ---------- */
.resources { background: var(--ink); }
.resources__list { border-top: 1px solid var(--line-strong); }
.resources__list a {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr) auto; gap: 24px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line); transition: padding-left 0.3s var(--ease-out), color 0.2s;
}
.resources__list a:hover { padding-left: 12px; }
.resources__list h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 700; font-stretch: 110%; letter-spacing: -0.02em; }
.resources__list p { color: var(--dim); text-wrap: pretty; }
.resources__list .icon { color: var(--sky); width: 1.4em; height: 1.4em; }
@media (max-width: 760px) { .resources__list a { grid-template-columns: 1fr auto; } .resources__list p { grid-column: 1 / -1; } }

/* ---------- contact ---------- */
.contact { background: var(--void); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact__aside { display: grid; gap: 22px; position: sticky; top: calc(var(--nav-h) + 24px); }
.contact__email { font-size: clamp(1.1rem, 1.6vw, 1.4rem); font-weight: 600; color: var(--sky); word-break: break-all; }
.contact__email:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } .contact__aside { position: static; } }

.field { display: grid; gap: 8px; margin-bottom: 22px; }
.field label { font-weight: 600; }
.field .hint { color: var(--faint); font-size: 0.9rem; }
.input {
  width: 100%; min-height: 54px; padding: 13px 15px; border-radius: 6px;
  background: var(--ink-2); border: 1px solid var(--line-strong); color: var(--paper); font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input::placeholder { color: var(--faint); }
.input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(95, 182, 245, 0.25); }
textarea.input { min-height: 150px; resize: vertical; }
.field.is-invalid .input { border-color: var(--danger); }
.error { color: var(--danger); font-size: 0.925rem; min-height: 1.2em; }
.error:empty { display: none; }
.form__foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form__status { color: var(--dim); }
.form__status.is-ok { color: var(--mint); }
.form__status.is-err { color: var(--danger); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 48px var(--gutter) 40px; background: var(--ink); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; align-items: start; }
.footer__tag { color: var(--dim); margin-top: 14px; max-width: 32ch; }
.footer h4 { font-weight: 700; margin-bottom: 12px; }
.footer li { padding: 6px 0; color: var(--dim); }
.footer li a:hover { color: var(--paper); }
.footer__legal { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--faint); font-size: 0.9rem; display: flex; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- resource pages ---------- */
.page { padding: calc(var(--nav-h) + clamp(40px, 8vh, 96px)) var(--gutter) clamp(80px, 12vh, 160px); }
.page__head { display: grid; gap: 20px; max-width: 820px; margin-bottom: clamp(40px, 6vh, 72px); }
.page__title { font-size: clamp(2.4rem, 6vw, 5.4rem); }
.backlink { display: inline-flex; align-items: center; gap: 8px; color: var(--dim); font-weight: 500; }
.backlink:hover { color: var(--paper); }
.prose { max-width: 68ch; display: grid; gap: 18px; }
.prose p, .prose li { color: var(--dim); text-wrap: pretty; }
.prose strong { color: var(--paper); font-weight: 600; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; font-stretch: 112%; letter-spacing: -0.025em; line-height: 1.05; color: var(--paper); margin-top: 24px; }
.prose ul { display: grid; gap: 8px; padding-left: 1.2em; list-style: disc; }
.prose ul li::marker { color: var(--sky); }

.faq { border-top: 1px solid var(--line-strong); max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center;
  padding: 22px 0; font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--sky); transition: transform 0.25s var(--ease-out); }
.faq details[open] summary .icon { transform: rotate(45deg); }
.faq details > div { padding: 0 0 24px; color: var(--dim); max-width: 64ch; display: grid; gap: 12px; }

.steps { display: grid; border-top: 1px solid var(--line-strong); max-width: 980px; }
.step { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.step__num { font-stretch: 86%; font-weight: 700; color: var(--sky); font-size: 1rem; padding-top: 6px; }
.step h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 800; font-stretch: 112%; letter-spacing: -0.02em; line-height: 1.05; }
.step p { color: var(--dim); max-width: 64ch; margin-top: 10px; text-wrap: pretty; }
.step ul { margin-top: 12px; display: grid; gap: 6px; padding-left: 1.1em; list-style: disc; color: var(--dim); }
.step ul li::marker { color: var(--sky); }
.step figure { margin-top: 20px; max-width: 760px; }
.step figure img, .figure img { border: 1px solid var(--line-strong); border-radius: 6px; background: #fff; }
.step figcaption, .figure figcaption { color: var(--faint); font-size: 0.9rem; margin-top: 10px; }
@media (max-width: 640px) { .step { grid-template-columns: 1fr; gap: 8px; } }

/* Walkthrough: one section per screen, field notes, and phone-width captures. */
.toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(40px, 6vh, 72px); }
.toc a { padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--dim); font-size: 0.925rem; transition: color 0.2s, border-color 0.2s; }
.toc a:hover { color: var(--paper); border-color: var(--paper); }
.walk__section { padding: clamp(36px, 5vh, 56px) 0; border-top: 1px solid var(--line-strong); scroll-margin-top: calc(var(--nav-h) + 16px); }
.walk__section h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; font-stretch: 112%; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 14px; }
.walk__section h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); font-weight: 700; margin: 28px 0 10px; }
.walk__section > p { color: var(--dim); max-width: 68ch; text-wrap: pretty; }
.walk__section p strong, .fields strong { color: var(--paper); font-weight: 600; }
.fields { display: grid; gap: 10px; max-width: 76ch; margin-top: 14px; padding-left: 1.1em; list-style: disc; color: var(--dim); }
.fields li::marker { color: var(--sky); }
.shots { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 300px)); gap: 20px; margin-top: 28px; }
.shots figure { display: grid; gap: 8px; }
.shots img { width: 100%; height: auto; border: 1px solid var(--line-strong); border-radius: 12px; background: #fff; }
.shots figcaption { color: var(--faint); font-size: 0.9rem; }
@media (max-width: 480px) { .shots { grid-template-columns: 1fr; } }

.videos { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.video-card { display: grid; gap: 12px; }
.video-card__frame {
  position: relative; aspect-ratio: 16 / 9; border: 1px solid var(--line-strong); border-radius: 6px; overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, var(--ink-3), var(--ink-2)); display: grid; place-items: center; color: var(--paper);
}
.video-card__frame .play { width: 56px; height: 56px; border-radius: 999px; background: rgba(23, 150, 240, 0.9); display: grid; place-items: center; }
.video-card__frame .play .icon { width: 24px; height: 24px; fill: #fff; stroke: none; margin-left: 3px; }
.video-card__frame .duration { position: absolute; right: 10px; bottom: 10px; font-size: 0.85rem; color: var(--dim); background: rgba(0, 0, 0, 0.5); padding: 2px 8px; border-radius: 4px; }
.video-card h2 { font-size: 1.15rem; font-weight: 700; }
.video-card p { color: var(--dim); font-size: 0.975rem; }
.notice { border: 1px solid var(--line-strong); border-left: 3px solid var(--sky); padding: 16px 20px; color: var(--dim); max-width: 68ch; margin-bottom: 40px; }
.notice strong { color: var(--paper); }

.examples { display: grid; border-top: 1px solid var(--line-strong); }
.example { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: clamp(24px, 4vw, 64px); padding: 40px 0; border-bottom: 1px solid var(--line); }
.example h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 800; font-stretch: 112%; letter-spacing: -0.025em; line-height: 1.05; }
.example > div:first-child p { color: var(--dim); margin-top: 12px; text-wrap: pretty; }
.spec { display: grid; }
.spec div { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec dt { font-stretch: 86%; font-weight: 700; color: var(--sky); }
.spec dd { margin: 0; color: var(--dim); }
@media (max-width: 760px) { .example { grid-template-columns: 1fr; } .spec div { grid-template-columns: 1fr; gap: 4px; } }

.quotes { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.quote { padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: 18px; align-content: start; }
.quote p { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.45; text-wrap: pretty; }
.quote footer { color: var(--dim); font-size: 0.95rem; }
.quote footer strong { display: block; color: var(--paper); font-weight: 600; }
.quote footer a { color: var(--sky); }
.quote footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
/* A single featured testimonial reads as one wide column rather than a grid cell. */
.quotes--single { display: block; max-width: 820px; border-right: 1px solid var(--line-strong); }
.quote--featured { padding: clamp(28px, 4vw, 48px); gap: 22px; }
.quote--featured p { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
