/*
 * The home page's own layer, loaded after `style.css` and `illustrations.css`.
 *
 * Those two still draw the product illustrations; this file sets everything around them:
 * the type scale, the page grid, the hero and the section rhythm.
 *
 * **The colour comes from the mark.** Its four families — lime, cyan, magenta, orange —
 * are the only accents, and each means something: lime marks the moment a note came from,
 * and the other three name the three ways to record. Everything else is ink on white.
 */
.home {
  --ink: #1c1c1e;
  --muted: #5b5f6b;
  --line: #e6e7eb;
  --wash: #f5f6f8;
  --lime: #d4ff26;
  --lime-soft: #f3ffc4;
  --cyan: #24d5dc;
  --cyan-soft: #e3f9fa;
  --magenta: #ec69dd;
  --magenta-soft: #fcebf9;
  --orange: #ff732c;
  --orange-soft: #fff0e7;
  --accent: var(--ink);
  --page: min(1200px, 100% - 2 * clamp(20px, 5vw, 56px));
  --section-gap: clamp(96px, 12vw, 168px);
}

/* The dot field stays, quieter: it is Clario's ground, not the subject. */
.home::before,
.home::after {
  opacity: 0.55;
}

/* Hero ------------------------------------------------------------------ */

/*
 * Centred and compact, the shape Cap, Attio and Raycast use for a product film: a two-line
 * headline, one line of lede, the buttons, and the film entering the first screen. A sans
 * headline on those pages sits near 64px at 500–600; the 88px this had is a display serif's
 * size, and at Jakarta's weight it read as shouting (measured 2026-09-23).
 */
.home .hero {
  width: var(--page);
  max-width: none;
  padding: clamp(32px, 5vw, 72px) 0 0;
  text-align: center;
}

.home .headline-line {
  margin-inline: auto;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.08;
  text-wrap: balance;
}

.home .hero h1 {
  max-width: none;
  margin: 0;
  font-family: Jakarta, ui-sans-serif, system-ui, sans-serif;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.home .lede {
  max-width: 30em;
  margin: 22px auto 0;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--muted);
}

.home .hero .cta {
  justify-content: center;
  margin-top: 30px;
}

.home .hero .fine {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.home .hero .hero-film {
  margin: clamp(40px, 5vw, 64px) 0 0;
  text-align: left;
}

/* Films ------------------------------------------------------------------ */

/*
 * The product films sit in a plain window: the app is the picture, so the frame stays quiet.
 * They are the real application filmed with sample data (`DESIGN.md`, Product films).
 */
.home .film {
  margin: 0;
}

/*
 * A sky for the film to sit in. Each film carries its own grey mat around the app window, and
 * the window sits at the same centred 1689×1056 of 1920×1200 in all three — the frame's own
 * shape — so a uniform 1.16× zoom crops the mat and its corners away and leaves the app as the
 * window on the sky. Measured from the films' first frames; re-measure if a film is re-cut.
 */
.home .film-stage {
  padding: clamp(18px, 4.5vw, 56px);
  background:
    radial-gradient(110% 90% at 88% 0%, rgb(36 213 220 / 18%), transparent 60%),
    radial-gradient(80% 70% at 0% 100%, rgb(236 105 221 / 8%), transparent 60%),
    linear-gradient(180deg, #dfe9ff 0%, #edf0ff 55%, #f6f4ff 100%);
  border-radius: 28px;
}

.home .film-window {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(28 28 30 / 8%);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgb(28 28 30 / 6%),
    0 32px 80px -40px rgb(28 28 30 / 34%);
}

.home .film-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 1200;
  background: #fff;
  transform: scale(1.16);
}

.home .film-chapters {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  gap: 16px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--muted);
}

.home .film-chapters button {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 0 0 4px;
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

.home .film-chapters button > i {
  order: -1;
  height: 3px;
  overflow: hidden;
  background: var(--line);
  border-radius: 999px;
}

.home .film-chapters button > i::before {
  display: block;
  height: 100%;
  content: '';
  background: var(--ink);
  border-radius: inherit;
  transform: scaleX(var(--played, 0));
  transform-origin: left;
}

.home .film-chapters button[data-current] {
  color: var(--ink);
}

.home .film-chapters button[data-current] > i::before {
  background: var(--lime);
  box-shadow: inset 0 0 0 1px rgb(28 28 30 / 10%);
}

.home .film-chapters button:hover {
  color: var(--ink);
}

.home .bot-film .film-chapters {
  font-size: 13px;
  gap: 12px;
}

/* Section rhythm -------------------------------------------------------- */

.home .band {
  width: var(--page);
  max-width: none;
  padding: var(--section-gap) 0 0;
}

.home .section-heading {
  margin-bottom: clamp(36px, 4.5vw, 56px);
}

.home .band h2 {
  font-weight: 500;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.home .section-heading > p:last-child {
  max-width: 34em;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

/* Heading on the left, the reason to care on the right, sharing a baseline. */
.home .split-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 24px clamp(32px, 6vw, 96px);
  align-items: end;
}

.home .split-heading h2 {
  max-width: 13em;
}

.home .split-heading > p:last-child {
  margin: 0;
}

/* The source demo: lime is the moment a line came from. */
/* After the call ------------------------------------------------------ */

.home .follow-band .section-heading {
  text-align: left;
}

.home .follow-band .follow-grid {
  align-items: start;
}

.home .follow-band .task-card {
  background: var(--lime-soft);
}

.home .follow-band .link-card {
  background: var(--wash);
}

/* Recording paths ------------------------------------------------------- */

.home .capture-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.home .capture-tabs[hidden] {
  display: none;
}

.home .capture-tabs button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 20px 12px 16px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.home .capture-tabs button:hover {
  border-color: #c9cbd2;
}

.home .capture-tabs button[aria-selected='true'] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.home .capture-tabs i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.home [data-path='room'] > i,
.home .capture-path[data-path='room'] .path-fact::before {
  background: var(--cyan);
}

.home [data-path='bot'] > i,
.home .capture-path[data-path='bot'] .path-fact::before {
  background: var(--magenta);
}

.home [data-path='video'] > i,
.home .capture-path[data-path='video'] .path-fact::before {
  background: var(--orange);
}

.home .capture-path {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 28px;
}

.home .capture-path + .capture-path {
  margin-top: 20px;
}

.home .capture-path[hidden] {
  display: none;
}

.home .capture-path[data-path='room'] {
  background: var(--cyan-soft);
}

.home .capture-path[data-path='bot'] {
  background: var(--magenta-soft);
}

.home .capture-path[data-path='video'] {
  background: var(--orange-soft);
}

.home .path-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.home .path-copy p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: #474b55;
}

.home .path-copy .path-fact {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.home .path-copy .path-fact::before {
  flex: none;
  width: 8px;
  height: 8px;
  content: '';
  border-radius: 50%;
  transform: translateY(-1px);
}

.home .capture-band .story-visual {
  width: 100%;
  margin: 0;
}

/* Ask ------------------------------------------------------------------- */

.home .band.ask-band {
  display: block;
}

.home .ask-band > .section-heading {
  margin: 0 0 clamp(36px, 4.5vw, 56px);
}

.home .ask-band > .section-heading > p:last-child {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

/*
 * Complete on arrival: every answer is written into the page, so nothing waits on a
 * script to be worth looking at. Picking a question or a source is the only motion.
 */
.home .qa {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 60px -32px rgb(28 28 30 / 18%);
}

.home .qa.is-interactive {
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
}

.home .qa-questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(20px, 2.6vw, 32px);
  background: var(--wash);
  border-right: 1px solid var(--line);
}

.home .qa-questions[hidden] {
  display: none;
}

.home .qa-questions button {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  font: inherit;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.home .qa-questions button {
  position: relative;
  overflow: hidden;
}

/* How long until the example turns to the next question on its own. */
.home .qa.is-cycling .qa-questions button[aria-selected='true']::after {
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  content: '';
  background: var(--lime);
  border-radius: 999px;
  transform-origin: left;
  animation: qa-cycle 7s linear forwards;
}

@keyframes qa-cycle {
  from {
    transform: scaleX(0);
  }
}

.home .qa-questions button:hover {
  background: rgb(255 255 255 / 60%);
}

.home .qa-questions button[aria-selected='true'] {
  background: #fff;
  border-color: var(--line);
  box-shadow:
    inset 3px 0 0 var(--lime),
    0 1px 2px rgb(28 28 30 / 6%);
}

.home .qa-questions span {
  font-size: 16px;
  line-height: 1.4;
}

.home .qa-questions small {
  font-size: 13px;
  color: var(--muted);
}

.home .qa-answer {
  padding: clamp(24px, 3.6vw, 48px);
}

.home .qa-answer + .qa-answer:not([hidden]) {
  border-top: 1px solid var(--line);
}

.home .qa.is-interactive .qa-answer + .qa-answer {
  border-top: 0;
}

.home .qa-asked {
  width: fit-content;
  max-width: 80%;
  margin: 0 0 0 auto;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--ink);
  background: var(--wash);
  border-radius: 16px 16px 4px;
}

.home .qa-lead {
  margin: 28px 0 0;
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.home .qa-lead strong {
  font-weight: 600;
  color: var(--ink);
}

.home .qa-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.home .qa-points li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.home .qa-points li:last-child {
  padding-bottom: 0;
}

.home .qa-points p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.home .qa-points p strong {
  font-weight: 600;
  color: var(--ink);
}

.home .qa-cite {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  padding: 5px 12px 5px 5px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.home .qa-cite:disabled {
  cursor: default;
}

.home .qa-cite > span:first-child {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 9px;
  color: var(--lime);
  background: var(--ink);
  border-radius: 50%;
}

.home .qa-cite:not(:disabled):hover {
  border-color: #c9cbd2;
}

.home .qa-cite[aria-expanded='true'] {
  background: var(--lime-soft);
  border-color: #d9ef7a;
}

.home .qa-time {
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.home .qa-clip {
  margin-top: 12px;
  padding: 18px 20px;
  color: #fff;
  background: var(--ink);
  border-radius: 16px;
  animation: qa-open 220ms ease-out;
}

.home .qa-clip[hidden] {
  display: none;
}

.home .qa-clip-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.home .qa-clip-top span + span {
  font-weight: 500;
  color: #a9abb4;
}

.home .qa-clip blockquote {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.5;
}

.home .qa-clip cite {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-style: normal;
  color: #a9abb4;
}

.home .qa-clip-track {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}

.home .qa-clip-track i {
  position: relative;
  height: 4px;
  background: rgb(255 255 255 / 16%);
  border-radius: 999px;
}

.home .qa-clip-track i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--at, 40%);
  content: '';
  background: var(--lime);
  border-radius: inherit;
}

.home .qa-clip-track i::after {
  position: absolute;
  top: 50%;
  left: var(--at, 40%);
  width: 12px;
  height: 12px;
  content: '';
  background: var(--lime);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.home .qa-clip-track span {
  font-size: 12px;
  color: #a9abb4;
  font-variant-numeric: tabular-nums;
}

.home .qa.is-interactive .qa-answer:not([hidden]) {
  animation: qa-open 200ms ease-out;
}

@keyframes qa-open {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
}

.home .qa-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/*
 * How we build it: the company's rules, each with what it costs. The one dark block on the
 * page, so the belief reads as the thing the product above was proving.
 */

.home .band.principles-band {
  display: block;
  width: 100%;
  margin-top: var(--section-gap);
  padding: clamp(72px, 9vw, 128px) 0;
  color: #d7d8dd;
  background: var(--ink);
}

.home .principles-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
  width: var(--page);
  margin: 0 auto;
}

.home .principles-band h2 {
  color: #fff;
}

.home .principles-intro {
  position: sticky;
  top: 96px;
}

.home .principles-intro > p {
  max-width: 30em;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: #a9abb4;
}

.home .principles details {
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.home .principles details:first-child {
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.home .principles summary {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.home .principles summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.home .principles summary::-webkit-details-marker {
  display: none;
}

.home .principles summary::after {
  margin-left: auto;
  font-size: 22px;
  font-weight: 400;
  color: #a9abb4;
  content: '+';
}

.home .principles details[open] summary::after {
  content: '−';
}

.home .principle-n {
  display: grid;
  flex: none;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 50%;
}

.home .principles details[open] .principle-n {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.home .principle-body {
  padding: 0 0 26px 48px;
}

.home .principle-body p {
  max-width: 34em;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #a9abb4;
}

.home .principle-body .principle-cost {
  margin-top: 16px;
  padding: 14px 16px;
  font-size: 15px;
  color: #e4e5e9;
  background: rgb(255 255 255 / 7%);
  border-radius: 12px;
}

.home .principle-cost strong {
  font-weight: 600;
  color: #fff;
}

/* Built to be relied on: four product facts, all open, on the dark band. */
.home .facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 4vw, 56px);
}

.home .facts > div {
  padding: 26px 0 30px;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.home .facts h3 {
  margin: 0;
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}

.home .facts p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #a9abb4;
}

/* About: the company's page, in its own voice (`about.html`). */
.home.about .about-hero {
  padding-bottom: 0;
}

.home .about-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 12 / 5;
  margin-top: clamp(40px, 5vw, 64px);
  object-fit: cover;
  border-radius: 24px;
}

.home .band.figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px clamp(24px, 4vw, 56px);
  padding-top: clamp(56px, 7vw, 96px);
}

.home .figures > div {
  display: grid;
  gap: 10px;
  align-content: start;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.home .figures strong {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.home .figures span {
  max-width: 18em;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.home .band.process {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.home .process-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.home .steps {
  display: grid;
  gap: 28px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.home .steps li {
  position: relative;
  padding-left: 52px;
  counter-increment: step;
}

.home .steps li::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  content: counter(step);
  background: var(--lime);
  border-radius: 50%;
}

.home .steps h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.home .steps p {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.home .use-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home .use-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 32px;
  border-radius: 24px;
}

.home .use-card h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.home .use-card p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.home .use-card--lime {
  background: var(--lime-soft);
}

.home .use-card--cyan {
  background: var(--cyan-soft);
}

.home .use-card--ink {
  color: #fff;
  background: var(--ink);
}

.home .use-card--ink h3 {
  color: #fff;
}

.home .use-card--ink p {
  color: #c9cbd2;
}

.home .use-card--lime p,
.home .use-card--cyan p {
  color: #474b55;
}

.home .stock-note {
  margin: 40px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.home .about-end {
  padding-bottom: var(--section-gap);
  text-align: center;
}

.home .about-end .cta {
  justify-content: center;
  margin-top: 28px;
}

/* What you need: the one closing download, beside what it takes. -------- */

.home .start-panel {
  padding: clamp(32px, 5vw, 72px);
  background: var(--wash);
  border-radius: 28px;
}

/* The heading and the buttons share a row; what it takes sits in a row beneath them. */
.home .start-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  align-items: end;
  justify-content: space-between;
}

.home .start-copy h2 {
  max-width: 12em;
}

.home .start-band .cta {
  justify-content: flex-start;
  margin: 0;
}

.home .needs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 clamp(24px, 3vw, 40px);
  margin: clamp(40px, 5vw, 64px) 0 0;
}

.home .needs > div {
  padding: 22px 0;
  border-top: 1px solid #dcdee4;
}

.home .needs dt {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.home .needs dd {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.home .needs .connection-chip {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 5px 16px 5px 5px;
  font-weight: 600;
}

.home .needs .connection-logo {
  width: 32px;
  height: 32px;
}

.home .needs .connection-logo img {
  width: 20px;
  height: 20px;
}

/* FAQ ------------------------------------------------------------------- */

.home .band.faq-band {
  padding-bottom: var(--section-gap);
}

.home .faq-band .section-heading > p:last-child {
  font-size: 16px;
}

.home .faq-list summary {
  font-size: 17px;
}

/* Narrow screens -------------------------------------------------------- */

@media (width <= 900px) {
  .home .split-heading,
  .home .qa.is-interactive,
  .home .capture-path,
  .home .principles-inner,
  .home .band.faq-band {
    grid-template-columns: 1fr;
  }

  .home .principles-intro {
    position: static;
  }

  .home .principle-body {
    padding-left: 0;
  }

  .home .needs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .home .band.process,
  .home .use-cards,
  .home .band.figures {
    grid-template-columns: 1fr;
  }

  .home .use-card {
    min-height: 0;
  }

  .home .facts {
    grid-template-columns: 1fr;
  }


  .home .capture-tabs {
    flex-wrap: nowrap;
    margin-inline: calc(-1 * clamp(20px, 5vw, 56px));
    padding-inline: clamp(20px, 5vw, 56px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home .capture-tabs button {
    flex: none;
  }

  .home .qa-questions {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }

  .home .qa-questions button {
    flex: none;
    width: min(260px, 75vw);
  }

  .home .film-chapters {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
  }

  .home .capture-path {
    padding: 22px;
    border-radius: 20px;
  }
}

@media (width <= 560px) {
  /* The break that makes two lines on a wide screen strands "and" on a narrow one. */
  .home .hero h1 br {
    display: none;
  }

  .home .needs {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home .capture-tabs button,
  .home .qa-questions button,
  .home .qa-cite {
    transition: none;
  }

  .home .qa-clip,
  .home .qa.is-interactive .qa-answer:not([hidden]) {
    animation: none;
  }
}
