/* ==========================================================================
   Clean Studio — website
   Design tokens & shared styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter+Tight:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* -- tokens (matched to the running Clean Studio app) --------------------- */
:root {
  /* paper family — warm cream */
  --paper:       #F7F3EC;
  --paper-2:     #F1EBE0;
  --paper-3:     #EBE3D3;

  /* ink family — warm dark */
  --ink:         #1E1B16;
  --ink-2:       #3A342A;
  --ink-3:       #6B6355;
  --ink-4:       #A69C88;

  /* rules */
  --rule:        #DDD3BF;
  --rule-2:      #C9BDA3;

  /* accent — burnt sienna (the human-touch signal) */
  --accent:      #B8551E;
  --accent-soft: #EFDDC7;
  --accent-ink:  #7A3812;

  /* status palette (kept from the app for consistency) */
  --sage:        #6E7B58;
  --sage-soft:   #DDE2CE;
  --amber:       #C89A2A;
  --amber-soft:  #EEDFB0;

  /* brand identity only — used for the logo mark, never as interface accent */
  --brand-violet:      #6B5CFF;
  --brand-violet-deep: #4A3AE8;

  /* code panel — warm dark brown, not cool navy */
  --code-bg:    #201C16;
  --code-fg:    #E9E1CE;
  --code-mute:  #8A8172;
  --code-str:   #E6B888;
  --code-key:   #D89964;

  /* type */
  --f-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --f-body:    'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* rhythm */
  --gutter: clamp(20px, 4vw, 40px);
  --max:    1200px;
}

/* -- reset ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* -- layout ---------------------------------------------------------------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }

/* -- nav ------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo svg { height: 26px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 15px; font-weight: 500;
  color: var(--ink-2);
  transition: color .15s ease;
}
.nav__link:hover { color: var(--accent-ink); }
.nav__link.is-current { color: var(--accent-ink); }
.nav__toggle {
  display: none;
  width: 40px; height: 40px; border: 0; background: transparent;
  align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav__toggle:hover { background: var(--paper-2); }
.nav__toggle-bar { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav__toggle-bar + .nav__toggle-bar { margin-top: 5px; }

@media (max-width: 720px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    top: 68px; left: 12px; right: 12px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: 0 20px 40px -20px rgba(30, 27, 22, .12);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  .nav.is-open .nav__links {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links .nav__link:not(.btn) {
    padding: 10px 4px;
    font-size: 17px;
    border-bottom: 1px solid var(--rule);
  }
  .nav__links .nav__link.btn { margin-top: 6px; justify-content: center; }
}

/* -- buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px -4px rgba(184, 85, 30, .35);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px rgba(184, 85, 30, .45);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover { background: var(--paper-2); border-color: var(--paper-3); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn__arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* -- type ------------------------------------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body);
  font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 24px; height: 1px; background: currentColor;
}

.h-display {
  font-family: var(--f-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
}
.h-display--xl {
  font-size: clamp(48px, 7vw, 92px);
}
.h-display--l {
  font-size: clamp(36px, 5vw, 60px);
}
.h-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-ink);
}

.lede {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 58ch;
}

/* -- section rhythm -------------------------------------------------------- */
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 72px) 0; }
.section-title { margin: 0 0 clamp(32px, 5vw, 56px); }
.section-title .eyebrow { margin-bottom: 20px; }

/* -- hero ------------------------------------------------------------------ */
.hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero__trust {
  margin-top: 40px;
  font-size: 14px; color: var(--ink-3);
  display: flex; align-items: center; gap: 10px;
}
.hero__dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(184, 85, 30, .18); }
.hero__visual {
  position: relative;
}
.hero__visual .shot {
  transform: rotate(0.6deg);
  transition: transform .4s ease;
}
.hero__visual .shot:hover { transform: rotate(0deg); }
.hero__visual::before {
  content: "";
  position: absolute;
  top: 20px; left: -20px; right: 20px; bottom: -20px;
  background: var(--accent-soft);
  border-radius: 14px;
  z-index: -1;
  opacity: 0.5;
}

/* -- split (the signature device) ----------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 24px 60px -32px rgba(30, 27, 22, .12);
}
.split__pane {
  padding: 28px 30px;
  min-height: 340px;
}
.split__pane--doc { background: var(--paper); }
.split__pane--doc + .split__pane { border-left: 1px solid var(--rule); }
.split__pane--code { background: var(--code-bg); color: var(--code-fg); }
.split__label {
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.split__pane--doc .split__label { color: var(--ink-3); }
.split__pane--code .split__label { color: var(--code-mute); }
.split__label .approved {
  color: var(--accent-ink);
  font-size: 11px;
}
.split__label .filename { color: var(--code-mute); }

.doc-title {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.doc-body { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.doc-body p { margin: 0 0 12px; }
.doc-body .accent {
  background: linear-gradient(180deg, transparent 62%, rgba(184,85,30,.22) 62%);
  padding: 0 2px;
}

.code {
  font-family: var(--f-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--code-fg);
  white-space: pre;
  overflow: hidden;
}
.code .k { color: var(--code-key); }
.code .s { color: var(--code-str); }
.code .m { color: var(--code-mute); }
.code .c { color: var(--code-mute); font-style: italic; }

.cursor {
  display: inline-block; width: 8px; height: 1em; margin-left: 2px;
  background: var(--accent);
  vertical-align: text-bottom;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; }
  .split__pane + .split__pane { border-left: 0; border-top: 1px solid var(--rule); }
}

/* -- three-column value strip --------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillar__num {
  font-family: var(--f-mono);
  font-size: 12px; color: var(--accent-ink);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.pillar__title {
  font-family: var(--f-display);
  font-size: 24px; font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.pillar__body { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 780px) { .pillars { grid-template-columns: 1fr; gap: 32px; } }

/* -- comparison ------------------------------------------------------------ */
.compare {
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  vertical-align: middle;
}
.compare thead th {
  font-family: var(--f-body); font-weight: 500;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
  background: var(--paper-2);
}
.compare thead th.us {
  color: var(--accent-ink);
  background: var(--accent-soft);
}
.compare tbody th {
  font-weight: 500;
  color: var(--ink);
  width: 32%;
}
.compare tbody td { color: var(--ink-2); }
.compare tbody td.us {
  color: var(--ink);
  font-weight: 500;
  background: rgba(239, 235, 255, .5);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }
.compare .no { color: var(--ink-3); }
@media (max-width: 780px) {
  .compare { font-size: 13px; }
  .compare th, .compare td { padding: 14px 12px; }
}

/* -- loop steps ------------------------------------------------------------ */
.loop { display: grid; gap: 0; }
.loop__step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.loop__step:last-child { border-bottom: 1px solid var(--rule); }
.loop__num {
  font-family: var(--f-display);
  font-size: 54px;
  font-weight: 300;
  color: var(--accent-ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.loop__title {
  font-family: var(--f-display);
  font-size: 28px; font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.loop__body { color: var(--ink-2); font-size: 16px; max-width: 62ch; }
@media (max-width: 720px) {
  .loop__step { grid-template-columns: 1fr; gap: 8px; padding: 32px 0; }
  .loop__num { font-size: 40px; }
}

/* -- pull quote / manifesto strip ----------------------------------------- */
.pull {
  padding: clamp(64px, 8vw, 96px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.pull__text {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 auto;
  text-align: center;
  color: var(--ink);
}
.pull__text em {
  font-style: italic;
  color: var(--accent-ink);
}

/* -- audience list --------------------------------------------------------- */
.audience { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--rule); }
.audience__item {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
}
.audience__item:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--rule); }
.audience__item:nth-child(even) { padding-left: 32px; }
.audience__role {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--accent-ink); letter-spacing: .04em;
  padding-top: 4px;
}
.audience__body { font-size: 15.5px; color: var(--ink-2); }
.audience__body strong { color: var(--ink); font-weight: 500; }
@media (max-width: 720px) {
  .audience { grid-template-columns: 1fr; }
  .audience__item, .audience__item:nth-child(odd) {
    grid-template-columns: 1fr; gap: 6px;
    padding: 24px 0; border-right: 0;
  }
  .audience__item:nth-child(even) { padding-left: 0; }
}

/* -- waitlist -------------------------------------------------------------- */
.waitlist {
  background: var(--ink);
  color: white;
  border-radius: 20px;
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: "";
  position: absolute; inset: auto -20% -60% auto;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,85,30,.35) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.waitlist__lede h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px); line-height: 1.1;
  margin: 0 0 16px; letter-spacing: -0.02em;
}
.waitlist__lede h2 em { color: var(--accent-soft); font-style: italic; }
.waitlist__lede p { color: rgba(247, 243, 236, .7); margin: 0; font-size: 16px; }
.waitlist__form { display: grid; gap: 12px; position: relative; z-index: 1; }
.waitlist__field {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 14px 16px;
  color: white;
  font: 500 15px var(--f-body);
  transition: border-color .15s ease, background .15s ease;
}
.waitlist__field:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.09);
}
.waitlist__field::placeholder { color: rgba(255,255,255,.4); }
.waitlist__submit {
  padding: 15px 22px;
  border-radius: 10px;
  background: var(--accent);
  color: white; font-weight: 500; font-size: 15px;
  border: 0; margin-top: 4px;
}
.waitlist__fine { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 8px; }
@media (max-width: 780px) { .waitlist { grid-template-columns: 1fr; padding: 36px 28px; } }

/* -- pricing --------------------------------------------------------------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
}
.tier {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column;
  min-height: 520px;
}
.tier:last-child { border-right: 0; }
.tier--pop { background: var(--paper-2); position: relative; }
.tier__badge {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 4px 8px; border-radius: 999px;
}
.tier__name {
  font-family: var(--f-display); font-size: 22px; font-weight: 500;
  margin: 0 0 6px; letter-spacing: -0.01em;
}
.tier__blurb { font-size: 13.5px; color: var(--ink-3); margin: 0 0 20px; line-height: 1.4; }
.tier__price {
  font-family: var(--f-display); font-size: 40px; font-weight: 400;
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 4px;
}
.tier__price small { font-size: 14px; color: var(--ink-3); font-family: var(--f-body); }
.tier__interval { font-size: 12.5px; color: var(--ink-3); margin-bottom: 24px; }
.tier__feats {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; color: var(--ink-2);
  flex-grow: 1;
}
.tier__feats li {
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.4;
}
.tier__feats li::before {
  content: ""; display: block;
  width: 12px; height: 12px; margin-top: 4px; flex-shrink: 0;
  border-radius: 3px;
  background: var(--accent);
  opacity: .18;
}
.tier--pop .tier__feats li::before { opacity: .3; }
.tier__cta {
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14.5px; font-weight: 500;
  border: 1px solid var(--rule);
  background: transparent; color: var(--ink);
  transition: background .15s ease, border-color .15s ease;
}
.tier__cta:hover { background: var(--paper-2); }
.tier--pop .tier__cta {
  background: var(--accent);
  color: white; border: 0;
}
@media (max-width: 900px) { .tiers { grid-template-columns: repeat(2, 1fr); } .tier:nth-child(2) { border-right: 0; } .tier:nth-child(1), .tier:nth-child(2) { border-bottom: 1px solid var(--rule); } }
@media (max-width: 560px) { .tiers { grid-template-columns: 1fr; } .tier { border-right: 0; border-bottom: 1px solid var(--rule); } .tier:last-child { border-bottom: 0; } }

.tier--enterprise {
  margin-top: 24px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 32px;
  align-items: center;
}
.tier--enterprise .tier__name { margin-bottom: 4px; }
.tier--enterprise .tier__blurb { margin-bottom: 0; }
.tier--enterprise ul { list-style: none; padding: 0; margin: 0; font-size: 14px; color: var(--ink-2); display: grid; gap: 6px; }
@media (max-width: 720px) { .tier--enterprise { grid-template-columns: 1fr; } }

/* -- faq ------------------------------------------------------------------- */
.faq { display: grid; gap: 0; }
.faq__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: 40px;
  align-items: baseline;
}
.faq__item:first-child { border-top: 1px solid var(--rule); }
.faq__q {
  font-family: var(--f-display); font-size: 20px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em; line-height: 1.3;
  margin: 0;
}
.faq__a { font-size: 15.5px; color: var(--ink-2); margin: 0; line-height: 1.55; }
@media (max-width: 720px) { .faq__item { grid-template-columns: 1fr; gap: 10px; } }

/* -- footer ---------------------------------------------------------------- */
.footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--rule);
  margin-top: 80px;
}
.footer__inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand svg { height: 22px; width: auto; }
.footer__tag { font-family: var(--f-display); font-style: italic; font-weight: 400; color: var(--ink-2); font-size: 15px; max-width: 42ch; }
.footer__meta { font-size: 13px; color: var(--ink-3); }

/* -- hero code content (specific to home) -------------------------------- */
.hero-underline {
  position: relative;
}
.hero-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 8px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,85,30,.28) 15%, rgba(184,85,30,.28) 85%, transparent 100%);
  z-index: -1;
}

/* -- product screenshots -------------------------------------------------- */
.shot {
  margin: 0;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 24px 60px -32px rgba(30, 27, 22, .18);
}
.shot__chrome {
  height: 34px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center;
  padding: 0 14px;
  gap: 6px;
}
.shot__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--rule-2);
}
.shot__addr {
  margin-left: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.shot__img {
  display: block;
  width: 100%;
  height: auto;
}
.shot--tall .shot__img { max-height: 560px; object-fit: cover; object-position: top center; }
.shot__caption {
  margin-top: 14px;
  font-family: var(--f-body);
  font-size: 13.5px;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 10px;
}
.shot__caption::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.shot-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .shot-split { grid-template-columns: 1fr; }
}

/* -- reduced motion -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* -- focus visible --------------------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
