/* ============================================================
   Focusbox — marketing homepage
   "Stacked manifesto" bold editorial. The logo's three pill bars
   (timer / tasks / notes) are the page's structural device.
   Display: Syne (700–800) · Body: Hanken Grotesk · Data: system mono
   No build step, no dependencies. Subpages keep styles.css.
   ============================================================ */

/* ---------- Self-hosted fonts (latin subset, woff2) ---------- */
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("assets/fonts/syne-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/hanken-latin.woff2") format("woff2");
}

:root {
  --font-display: "Syne", "Avenir Next", Futura, sans-serif;
  --font-ui: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", "Menlo", monospace;

  /* Chalk / ink / amber — one committed look, no theme fork */
  --chalk: #fbfaf6;
  --paper: #fffefb;
  --putty: #f1eee4;
  --ink: #171410;
  --ink-soft: #5f594c;
  --ink-faint: #97907f;
  --line: #e2ded1;
  --amber: #e8920d;          /* brand bar — fills, buttons, big shapes */
  --amber-text: #a96900;     /* amber that passes as text on chalk */
  --amber-soft: rgba(232, 146, 13, 0.14);

  --rule: 3px;               /* the thick editorial rule */
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 64px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

a {
  color: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-text);
  margin: 0 0 1.2rem;
}
.eyebrow--onink {
  color: var(--amber);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 2.6rem;
  color: var(--ink);
}

.mono {
  font-family: var(--font-mono);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.78rem;
  --pad-x: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--solid {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}
.btn--solid:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--chalk);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--chalk);
}
.btn--ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--chalk);
}
.btn--ink:hover {
  background: var(--chalk);
  color: var(--ink);
}
.btn--inkghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--inkghost:hover {
  background: var(--ink);
  color: var(--amber);
}
.btn--sm {
  --pad-y: 0.52rem;
  --pad-x: 1.05rem;
  font-size: 0.86rem;
}
.btn--lg {
  --pad-y: 0.95rem;
  --pad-x: 1.9rem;
  font-size: 1.05rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--chalk) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: var(--rule) solid var(--ink);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.wordmark__mark {
  display: inline-flex;
  color: var(--ink);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-nav a:not(.btn) {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.site-nav a:not(.btn):hover {
  color: var(--ink);
}

/* ---------- Hero: the manifesto ---------- */
.hero {
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 7.1rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 2.2rem;
  color: var(--ink);
}
.hero__line {
  display: block;
}
.hero__line--amber {
  /* deeper than the brand bar so it holds contrast at display size on chalk */
  color: #c47201;
}
.hero__under {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-top: 1.8rem;
  border-top: var(--rule) solid var(--ink);
}
.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.hero__fineprint {
  font-size: 0.8rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  margin: 0;
}
.hero__fineprint a {
  color: var(--ink-soft);
}

/* ---------- The demo plate (fig. 1) ---------- */
.hero__figure {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}
.app-window {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 14px 14px 0 var(--amber);
  overflow: hidden;
}
.figcap {
  margin: 1.4rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
}
.app-window__bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  background: var(--putty);
  border-bottom: 2px solid var(--ink);
}
.app-window__bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
}
.app-window__bar .dot:first-child {
  background: var(--amber);
  border-color: var(--ink);
}
.app-window__title {
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-soft);
  transform: translateX(-18px);
}
.app-window__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.pane {
  padding: 1.6rem 1.5rem;
}
.pane--focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  border-right: 2px solid var(--ink);
}
.pane--notes {
  background: color-mix(in srgb, var(--paper) 60%, var(--putty));
}

/* the depleting ring */
.ring {
  position: relative;
  width: 156px;
  height: 156px;
  margin-top: 0.4rem;
}
.ring__svg {
  width: 100%;
  height: 100%;
}
.ring__track {
  fill: none;
  stroke: var(--line);
  stroke-width: 7;
}
.ring__progress {
  fill: none;
  stroke: var(--amber);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 0;
  animation: deplete 14s linear forwards;
}
@keyframes deplete {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 250; }
}
.ring__readout {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}
.ring__time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ring__caption {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-text);
}

.tasklist {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.task {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.task .check {
  flex: none;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 2px solid var(--ink-faint);
}
.task--done {
  color: var(--ink-faint);
  text-decoration: line-through;
}
.task--done .check {
  background: var(--amber);
  border-color: var(--ink);
}

/* ---------- Interactive preview (progressive enhancement) ---------- */
.preview-controls {
  display: flex;
  gap: 0.5rem;
  margin: 0.7rem 0 0;
}
.preview-btn {
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.34rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  background: var(--amber);
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.preview-btn:hover {
  background: var(--ink);
  color: var(--chalk);
}
.preview-btn--ghost {
  background: transparent;
  color: var(--ink-soft);
}
.preview-btn--ghost:hover {
  background: var(--ink);
  color: var(--chalk);
}
.preview-btn:focus-visible,
.app-window--live .task:focus-visible {
  outline: 2px solid var(--amber-text);
  outline-offset: 2px;
  border-radius: 6px;
}
.app-window--live .task {
  cursor: pointer;
}
.app-window--live .task:hover .check {
  border-color: var(--ink);
}
.ring--finished .ring__time,
.ring--finished .ring__caption {
  animation: preview-pulse 1s ease-in-out infinite;
  color: var(--amber-text);
}
@keyframes preview-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* hero demo detail */
.presets { display: flex; gap: 0.4rem; margin: 0.6rem 0 0; flex-wrap: wrap; }
.chip {
  font-family: var(--font-mono); font-size: 0.72rem;
  padding: 0.2rem 0.6rem; border-radius: 999px;
  border: 1.5px solid var(--line); color: var(--ink-soft);
}
.chip--on { background: var(--ink); border-color: var(--ink); color: var(--chalk); }
.tasks-head {
  width: 100%;
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 0.8rem 0 0.2rem; font-size: 0.78rem; font-weight: 600; color: var(--ink-soft);
}
.tasks-left { font-family: var(--font-mono); font-weight: 400; color: var(--amber-text); }
.spotify { width: 100%; display: flex; align-items: center; gap: 0.5rem; margin: 0.7rem 0 0; font-size: 0.72rem; color: var(--ink-faint); }
.spotify__icon { width: 12px; height: 12px; border-radius: 50%; background: var(--amber); flex: none; }
.spotify__now { font-family: var(--font-mono); }
.notes-toolbar--real { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.notes-toolbar--real .tb {
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600;
  color: var(--ink-soft); padding: 0.1rem 0.35rem; border-radius: 5px;
}
.notes-toolbar--real .tb--b { font-weight: 800; }
.notes-toolbar--real .tb--i { font-style: italic; }
.notes-toolbar--real .tb--s { text-decoration: line-through; }
.notes-toolbar--real .tb-sep { width: 1.5px; height: 14px; background: var(--line); }
.notes-body--real .note-h1 { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; margin: 0 0 0.4rem; color: var(--ink); }
.notes-body--real .note-h2 { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; margin: 0.7rem 0 0.3rem; color: var(--ink); }
.notes-body--real .note-p { font-size: 0.8rem; line-height: 1.5; margin: 0 0 0.3rem; color: var(--ink-soft); }
.notes-body--real .note-li { font-size: 0.8rem; line-height: 1.6; margin: 0; color: var(--ink-soft); }
.notes-body--real .note-muted { color: var(--ink-faint); }

/* ---------- Sections ---------- */
.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.section--ink {
  background: var(--ink);
  color: var(--chalk);
}
.section--putty {
  background: var(--putty);
  border-block: var(--rule) solid var(--ink);
}
/* consecutive framed bands share one rule */
.section--putty + .section--putty,
.section--ink + .section--putty {
  border-top: 0;
}
.section--amber {
  background: var(--amber);
  color: var(--ink);
}

/* ---------- The stack (three bars, three features) ---------- */
.stack {
  display: flex;
  flex-direction: column;
}
.stack__row {
  padding-block: clamp(1.8rem, 4vw, 2.8rem);
}
.stack__row + .stack__row {
  border-top: 2px solid var(--line);
}
.stack__barwrap {
  margin-bottom: 1.5rem;
}
.stack__bar {
  display: block;
  width: var(--w, 100%);
  height: clamp(18px, 2.6vw, 28px);
  border-radius: 999px;
  background: var(--ink);
}
.stack__bar--amber {
  background: var(--amber);
}
.stack__text {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
}
.stack__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.stack__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 56ch;
}
.stack__body a {
  color: var(--ink);
}

/* ---------- Story (ink band) ---------- */
.story {
  max-width: 880px;
}
.story__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 2.2rem;
  color: var(--chalk);
}
.story__quote em {
  font-style: normal;
  color: var(--amber);
}
.story__body {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--chalk) 78%, var(--ink));
  max-width: 64ch;
}
.story__body p {
  margin: 0 0 1.3rem;
}
.story__body a {
  color: var(--chalk);
  text-decoration-color: var(--amber);
  text-underline-offset: 0.15em;
}
.story__sign {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber);
  margin-top: 1.8rem !important;
}

/* ---------- Trust ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
.trust__item {
  border-top: var(--rule) solid var(--ink);
  padding-top: 1.1rem;
}
.trust__tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-text);
  margin: 0 0 0.7rem;
}
.trust__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.trust__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.trust__body a {
  color: var(--ink);
}

/* ---------- Spec sheet ---------- */
.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.6rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.features li {
  position: relative;
  padding-left: 1.9rem;
  padding-block: 0.75rem;
  border-bottom: 2px solid var(--line);
}
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 999px;
  background: var(--amber);
}

/* ---------- Sync ---------- */
.sync {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.sync__lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}
.sync__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0 0 1.2rem;
}
.sync__terms {
  font-size: 0.85rem;
  color: var(--ink-faint);
  max-width: 46ch;
  margin: 0;
}
.sync__how {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.sync__how .mono {
  font-size: 0.82em;
  color: var(--ink);
}
.sync__pricebox {
  border: 2.5px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--putty);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.sync__price {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1;
}
.sync__amount {
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.sync__per {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.sync__alt {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.syncbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--amber-soft);
  color: var(--amber-text);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 860px;
}
.faq__list {
  margin: 0;
}
.faq__item {
  padding-block: 1.5rem;
  border-top: 2px solid var(--ink);
}
.faq__q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.faq__a {
  margin: 0;
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 1rem;
}
.faq__a a {
  color: var(--ink);
}

/* ---------- Download (amber band) ---------- */
.section--amber .download {
  /* full wrap width so the display title centers true; inner blocks narrow themselves */
  text-align: center;
}
.download__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 2.2rem;
  color: var(--ink);
}
.download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.download__note {
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--ink) 72%, var(--amber));
  margin: 0 auto 0.3rem;
  max-width: 62ch;
}
.download__note a {
  color: var(--ink);
}
.support {
  max-width: 640px;
  margin-inline: auto;
  margin-top: 2.6rem;
  padding-top: 2.2rem;
  border-top: 2px solid color-mix(in srgb, var(--ink) 35%, var(--amber));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.support__btn {
  gap: 0.5rem;
}
.support__heart {
  font-size: 0.95em;
  line-height: 1;
}
.support__note {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--ink) 72%, var(--amber));
}

/* ---------- Footer (ink) ---------- */
.site-footer {
  background: var(--ink);
  color: var(--chalk);
  padding-block: 2.6rem;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-footer .wordmark {
  color: var(--chalk);
}
.site-footer .wordmark__mark {
  color: var(--chalk);
}
.wordmark--sm {
  font-size: 1.05rem;
}
.site-footer__tag {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--chalk) 60%, var(--ink));
}
.site-footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-footer__links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--chalk) 78%, var(--ink));
  transition: color 0.2s ease;
}
.site-footer__links a:hover {
  color: var(--amber);
}

/* ---------- Accessibility ---------- */
:where(a, .btn):focus-visible {
  outline: 2px solid var(--amber-text);
  outline-offset: 3px;
  border-radius: 6px;
}
.section--ink :where(a):focus-visible,
.site-footer :where(a):focus-visible {
  outline-color: var(--amber);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .ring__progress {
    stroke-dashoffset: 90; /* show it partway depleted, statically */
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__under {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .stack__text {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .trust {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .sync {
    grid-template-columns: 1fr;
  }
  .app-window {
    box-shadow: 10px 10px 0 var(--amber);
  }
}

@media (max-width: 680px) {
  .site-nav a:not(.btn) {
    display: none;
  }
  .app-window__body {
    grid-template-columns: 1fr;
  }
  .pane--focus {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }
  .hero__lede {
    max-width: none;
  }
}
