/* Reef landing — tokens from docs/architecture/DESIGN.md (Ink mode) */
:root {
  --void: #000000;
  --canvas: #0B0C0E;
  --surface-1: #131519;
  --surface-2: #1B1E23;
  --surface-3: #23272E;
  --hairline: #2B2F36;
  --hairline-soft: #1E2229;
  --coral: #D97857;
  --coral-bright: #F0906E;
  --coral-deep: #B45E42;
  --coral-wash: #22150F;
  --aqua: #4DD0E1;
  --text-primary: #F5F6F7;
  --text-secondary: #B4B9C0;
  --text-muted: #7C828B;
  --text-faint: #4A4F57;
  --on-coral: #FFFFFF;
  --success: #57C77F;
  --warning: #E5A34B;
  --serif: "New York", ui-serif, "Fraunces", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font: 400 15px/1.5 var(--sans);
  background: var(--canvas);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--coral-deep); color: var(--on-coral); }

a { color: var(--coral); text-decoration: none; }
a:hover { color: var(--coral-bright); }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: 1120px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 10;
  background: rgba(11, 12, 14, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-soft);
}
.site-head .wrap { display: flex; align-items: center; gap: 10px; height: 58px; }
.brand { display: flex; align-items: center; gap: 9px; color: var(--text-primary); }
.brand svg { display: block; }
.brand .word { font: 400 21px/1 var(--serif); letter-spacing: -0.2px; }
.site-head nav { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.site-head nav a { font: 400 13px/1 var(--sans); color: var(--text-muted); transition: color 150ms var(--ease); }
.site-head nav a:hover { color: var(--text-primary); }

/* ---------- Hero ---------- */
.hero { padding: 76px 24px 36px; text-align: center; }
.badge {
  display: inline-block;
  font: 600 11px/1.3 var(--sans);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--hairline);
  border-radius: 9999px;
  padding: 4px 13px;
  margin-bottom: 26px;
}
.hero h1 {
  font: 400 56px/1.05 var(--serif);
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.hero .sub {
  font: 400 17px/1.55 var(--sans);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 30px;
}
.cta-row { display: flex; justify-content: center; align-items: center; gap: 18px; }
.btn-primary {
  display: inline-flex; align-items: center;
  height: 38px; padding: 0 18px;
  background: var(--coral); color: var(--on-coral);
  font: 600 14px/1 var(--sans);
  border-radius: 8px; border: 0; cursor: pointer;
  transition: background 150ms var(--ease), transform 120ms var(--ease);
}
.btn-primary:hover { background: var(--coral-bright); color: var(--on-coral); }
.btn-primary:active { background: var(--coral-deep); transform: scale(0.98); }
.link-quiet { font: 400 14px/1 var(--sans); color: var(--text-muted); transition: color 150ms var(--ease); }
.link-quiet:hover { color: var(--text-secondary); }

/* Hero entrance — one calm pass */
.hero .badge, .hero h1, .hero .sub, .hero .cta-row {
  animation: rise 480ms var(--ease) both;
}
.hero h1 { animation-delay: 60ms; }
.hero .sub { animation-delay: 120ms; }
.hero .cta-row { animation-delay: 180ms; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } }

/* ---------- Notch demo ---------- */
.demo { padding: 44px 24px 0; }
.screen {
  position: relative;
  max-width: 940px; margin: 0 auto;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  min-height: 620px;
  overflow: hidden;
}
.menubar {
  display: flex; align-items: center;
  height: 32px; padding: 0 14px;
  font: 500 11px/1 var(--mono);
  color: var(--text-faint);
  border-bottom: 1px solid var(--hairline-soft);
}
.menubar .right { margin-left: auto; }

.island {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 210px;
  background: var(--void);
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  transition: width 480ms var(--ease), border-radius 480ms var(--ease), box-shadow 480ms var(--ease);
  cursor: pointer;
  z-index: 2;
}
.island:hover { box-shadow: 0 0 0 1px var(--hairline-soft), 0 6px 20px rgba(0, 0, 0, 0.55); }
.demo.open .island {
  width: 430px;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.7);
}

.pill {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 30px;
  font: 500 11px/1 var(--mono);
  color: var(--text-secondary);
  white-space: nowrap;
  transition: opacity 200ms var(--ease);
}
.demo.open .pill { opacity: 0; height: 0; }

.panel {
  max-height: 0; opacity: 0;
  transition: max-height 480ms var(--ease), opacity 320ms var(--ease);
  padding: 0 12px;
}
.demo.open .panel { max-height: 420px; opacity: 1; padding: 12px; }

.panel-head { display: flex; align-items: baseline; padding: 2px 2px 10px; }
.panel-head .eyebrow {
  font: 600 11px/1.3 var(--sans);
  letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--text-muted);
}
.panel-head .totals { margin-left: auto; font: 500 11px/1 var(--mono); color: var(--text-muted); }

.row {
  display: flex; align-items: center; gap: 9px;
  background: var(--surface-1);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 9px 11px;
  margin-bottom: 6px;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.row.active { background: var(--surface-2); border-color: var(--coral); }
.row .name { font: 400 13px/1 var(--sans); color: var(--text-primary); }
.row .provider {
  font: 600 9px/1.3 var(--sans); letter-spacing: 0.6px;
  color: var(--text-secondary);
  background: var(--surface-2);
  border-radius: 9999px;
  padding: 2px 7px;
}
.row.active .provider { background: var(--surface-3); }
.row .metric { margin-left: auto; font: 500 11px/1 var(--mono); color: var(--text-muted); }

/* third session comes alive after Allow */
.row-gemini .dot { background: var(--warning); animation: breathe 1.6s ease-in-out infinite; }
.demo.approved .row-gemini .dot { background: var(--aqua); animation: breathe 2.4s ease-in-out infinite; }
.row-gemini .metric-wait { display: inline; }
.row-gemini .metric-run { display: none; }
.demo.approved .row-gemini .metric-wait { display: none; }
.demo.approved .row-gemini .metric-run { display: inline; }

.dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot.run { background: var(--aqua); animation: breathe 2.4s ease-in-out infinite; }
.dot.ok { background: var(--success); }
@keyframes breathe { 50% { opacity: 0.35; } }

.approval {
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 11px 12px;
  margin-top: 10px;
  transition: opacity 320ms var(--ease), max-height 320ms var(--ease), margin 320ms var(--ease), padding 320ms var(--ease);
  max-height: 130px;
  overflow: hidden;
}
.demo.approved .approval { opacity: 0; max-height: 0; margin-top: 0; padding-top: 0; padding-bottom: 0; border-width: 0; }
.approval .eyebrow {
  font: 600 10px/1.3 var(--sans); letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--warning);
  margin-bottom: 6px;
}
.approval code {
  display: block;
  font: 400 12px/1.5 var(--mono);
  color: var(--text-secondary);
  margin-bottom: 10px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.approval .actions { display: flex; gap: 8px; align-items: center; }
.approval .allow {
  height: 28px; padding: 0 14px;
  background: var(--coral); color: var(--on-coral);
  font: 600 12px/1 var(--sans);
  border: 0; border-radius: 6px; cursor: pointer;
  transition: background 150ms var(--ease), transform 120ms var(--ease);
}
.approval .allow:hover { background: var(--coral-bright); }
.approval .allow:active { background: var(--coral-deep); transform: scale(0.97); }
.approval .deny {
  height: 28px; padding: 0 14px;
  background: var(--surface-3); color: var(--text-secondary);
  font: 600 12px/1 var(--sans);
  border: 1px solid var(--hairline); border-radius: 6px; cursor: pointer;
  transition: background 150ms var(--ease);
}
.approval .deny:hover { background: var(--hairline); }
.approval .hint { margin-left: auto; font: 500 10px/1 var(--mono); color: var(--text-faint); }

.statusline {
  max-width: 940px; margin: 0 auto;
  border: 1px solid var(--hairline); border-top: 1px solid var(--hairline-soft);
  border-radius: 0 0 18px 18px;
  padding: 9px 16px;
  font: 500 11px/1 var(--mono);
  color: var(--text-muted);
  display: flex; gap: 18px;
  overflow-x: auto;
  white-space: nowrap;
}
.statusline .sep { color: var(--text-faint); }
.demo-caption {
  text-align: center;
  font: 400 13px/1.45 var(--sans);
  color: var(--text-muted);
  margin-top: 14px;
}
.demo-caption kbd {
  font: 500 11px/1 var(--mono);
  color: var(--text-secondary);
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 2px 5px;
}

/* ---------- Mini-computer: Deep window inside the screen ---------- */
.deepwin {
  position: absolute; left: 16px; right: 16px; top: 52px; bottom: 52px;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: 16px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.deepwin .deep-tabs { flex: none; }
.deepwin .pane { display: none; flex: 1; overflow: auto; }
.deepwin .pane.on { display: block; }
.deep-tabs .t { background: none; border: 0; cursor: pointer; font: 600 12px/1 var(--sans); color: var(--text-muted); padding: 6px 12px; border-radius: 6px; transition: color 150ms var(--ease), background 150ms var(--ease); }
.deep-tabs .t:hover { color: var(--text-secondary); }
.deep-tabs .t.on { background: var(--surface-2); color: var(--text-primary); }

/* kanban interactivity */
.kanban { padding: 14px; }
.kcard { cursor: grab; transition: border-color 150ms var(--ease), transform 150ms var(--ease), opacity 150ms var(--ease); }
.kcard:hover { border-color: var(--surface-3); }
.kcard.dragging { opacity: 0.45; cursor: grabbing; }
.col.dragover .colbody { outline: 1px dashed var(--coral); outline-offset: 4px; border-radius: 8px; }
.col .colbody { min-height: 60px; }
.addcard {
  width: 100%;
  background: none; cursor: pointer;
  border: 1px dashed var(--hairline);
  border-radius: 12px;
  padding: 8px;
  font: 500 11px/1 var(--mono);
  color: var(--text-faint);
  transition: color 150ms var(--ease), border-color 150ms var(--ease);
}
.addcard:hover { color: var(--text-muted); border-color: var(--surface-3); }

/* sessions pane */
.pane-sessions .row { margin: 0 14px 6px; }
.pane-sessions .row:first-child { margin-top: 14px; }
.pane-sessions .grouph {
  font: 600 10px/1.3 var(--sans); letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 16px 8px;
}

/* dashboard pane */
.pane-dash .tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 14px; }
.tile {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 14px;
}
.tile .n { font: 400 22px/1.15 var(--serif); letter-spacing: -0.2px; }
.tile .l { font: 600 9px/1.3 var(--sans); letter-spacing: 0.6px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 74px; padding: 0 14px 14px; }
.bars .b { flex: 1; background: var(--surface-3); border-radius: 3px 3px 0 0; }
.bars .b.hot { background: var(--coral); }
.bars-cap { font: 500 10px/1 var(--mono); color: var(--text-faint); padding: 0 14px 14px; }

/* floating pills: Sonar + Pilot */
.fpill {
  position: absolute; bottom: 12px;
  display: flex; align-items: center; gap: 7px;
  background: var(--void);
  border: 1px solid var(--hairline-soft);
  border-radius: 9999px;
  padding: 6px 12px;
  font: 500 11px/1 var(--mono);
  color: var(--text-secondary);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  z-index: 3;
  max-width: 46%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fpill .dot { width: 7px; height: 7px; }
.sonar-pill { left: 14px; }
.sonar-pill .dot { background: var(--aqua); animation: breathe 2s ease-in-out infinite; }
.pilot-pill { right: 14px; cursor: pointer; border: 1px solid var(--hairline-soft); background: var(--void); }
.pilot-pill .dot { background: var(--coral); }
.pilot-pill:hover { color: var(--text-primary); }
.pilot-bubble {
  position: absolute; right: 14px; bottom: 46px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 8px 11px;
  font: 400 12px/1.4 var(--sans);
  color: var(--text-secondary);
  opacity: 0; transform: translateY(4px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  pointer-events: none;
  z-index: 3;
}
.pilot-bubble.show { opacity: 1; transform: none; }

/* ---------- Sections ---------- */
section.band { padding-top: 96px; scroll-margin-top: 58px; }
section.band .head { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section.band h2 {
  font: 400 40px/1.1 var(--serif);
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
section.band .lede {
  font: 400 17px/1.55 var(--sans);
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 44px;
}

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 480ms var(--ease), transform 480ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 26px 24px;
  display: flex; flex-direction: column;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.card:hover { border-color: var(--surface-3); transform: translateY(-2px); }
.card svg { display: block; color: var(--text-secondary); margin-bottom: 16px; }
.card h3 { font: 600 17px/1.35 var(--sans); margin-bottom: 8px; }
.card p { font: 400 14px/1.5 var(--sans); color: var(--text-secondary); }
.card p code, .card p kbd {
  font: 500 12px/1 var(--mono);
  color: var(--text-secondary);
  background: var(--surface-2);
  border-radius: 4px;
  padding: 1px 5px;
}
.card .tag {
  margin-top: auto; padding-top: 14px;
  font: 500 11px/1 var(--mono);
  color: var(--text-faint);
}

/* providers strip */
.providers { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.providers .p {
  font: 600 10px/1.3 var(--sans); letter-spacing: 0.6px;
  color: var(--text-muted);
  background: var(--surface-1);
  border: 1px solid var(--hairline-soft);
  border-radius: 9999px;
  padding: 4px 11px;
}
.providers .more { font: 500 11px/1 var(--mono); color: var(--text-faint); padding-left: 4px; }

/* ---------- The loop ---------- */
.loop { display: flex; gap: 8px; align-items: stretch; }
.step {
  flex: 1;
  display: flex; flex-direction: column;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 18px 16px;
}
.step .sn { font: 500 11px/1 var(--mono); color: var(--coral); margin-bottom: 10px; }
.step h3 { font: 600 15px/1.4 var(--sans); margin-bottom: 6px; }
.step p { font: 400 13px/1.45 var(--sans); color: var(--text-secondary); }
.step .sm { margin-top: auto; padding-top: 12px; font: 500 10px/1.4 var(--mono); color: var(--text-muted); }
.loop .arrow { align-self: center; font: 500 13px/1 var(--mono); color: var(--text-faint); flex: none; }
.loop-note { margin-top: 18px; font: 500 11px/1.4 var(--mono); color: var(--text-muted); }
.loop-note .c { color: var(--coral); }

/* keys inline under notch demo */
.keys-inline { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; margin-top: 22px; }
.keys-inline .key-item span { font-size: 12px; }

/* ---------- Personas ---------- */
.seats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.seat {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 22px 20px;
}
.seat .role {
  font: 600 11px/1.3 var(--sans); letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.seat p { font: 400 14px/1.5 var(--sans); color: var(--text-secondary); }

/* ---------- Keyboard ---------- */
.keys { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.key-item { display: flex; align-items: center; gap: 10px; }
kbd.cap {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 30px; height: 30px; padding: 0 9px;
  font: 500 12px/1 var(--mono);
  color: var(--text-primary);
  background: var(--surface-3);
  border: 1px solid var(--hairline);
  border-bottom-width: 2px;
  border-radius: 6px;
}
.key-item span { font: 400 13px/1.4 var(--sans); color: var(--text-secondary); }

/* ---------- Deep Mode mock ---------- */
.deep {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
}
.deep-shell {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
}
.deep-tabs {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--hairline-soft);
}
.deep-tabs .t {
  font: 600 12px/1 var(--sans);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
}
.deep-tabs .t.on { background: var(--surface-2); color: var(--text-primary); }
.deep-tabs .space { margin-left: auto; font: 500 11px/1 var(--mono); color: var(--text-faint); }
.kanban {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding: 16px;
  background: var(--canvas);
}
.col .col-h {
  font: 600 10px/1.3 var(--sans); letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--text-muted);
  padding: 2px 2px 8px;
  display: flex; gap: 6px; align-items: baseline;
}
.col .col-h .c { font: 500 10px/1 var(--mono); color: var(--text-faint); }
.kcard {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 11px 12px;
  margin-bottom: 10px;
}
.kcard .kt { font: 400 13px/1.35 var(--sans); color: var(--text-primary); margin-bottom: 7px; }
.kcard .km { display: flex; align-items: center; gap: 8px; font: 500 10px/1 var(--mono); color: var(--text-muted); }
.kcard .kpill {
  font: 600 9px/1.3 var(--sans); letter-spacing: 0.4px;
  border-radius: 9999px; padding: 2px 7px;
}
.kpill.run { color: var(--aqua); background: rgba(77, 208, 225, 0.12); }
.kpill.done { color: var(--success); background: rgba(87, 199, 127, 0.12); }
.kpill.wait { color: var(--warning); background: rgba(229, 163, 75, 0.12); }
.kcard .wf {
  display: inline-flex; gap: 6px; align-items: center;
  font: 500 10px/1 var(--mono); color: var(--aqua);
}

/* ---------- Coral CTA band ---------- */
.cta-band { margin-top: 96px; }
.cta-band .inner {
  background: var(--coral);
  border-radius: 12px;
  padding: 56px 48px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 {
  font: 400 24px/1.2 var(--serif);
  letter-spacing: -0.2px;
  color: var(--on-coral);
  margin-bottom: 6px;
}
.cta-band p { font: 400 15px/1.5 var(--sans); color: rgba(255, 255, 255, 0.85); max-width: 480px; }
.cta-band .btn-ink {
  margin-left: auto;
  display: inline-flex; align-items: center;
  height: 40px; padding: 0 20px;
  background: var(--canvas); color: var(--text-primary);
  font: 600 14px/1 var(--sans);
  border-radius: 8px;
  transition: background 150ms var(--ease);
}
.cta-band .btn-ink:hover { background: #16181d; color: var(--text-primary); }

/* ---------- Footer ---------- */
footer.site {
  margin-top: 96px;
  border-top: 1px solid var(--hairline-soft);
  padding: 40px 0 56px;
  color: var(--text-muted);
  font: 400 13px/1.45 var(--sans);
}
footer.site .wrap { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
footer.site .brand .word { font-size: 17px; }
footer.site .req { font: 500 11px/1 var(--mono); color: var(--text-faint); }
footer.site .links { margin-left: auto; display: flex; gap: 18px; }
footer.site a { color: var(--text-muted); transition: color 150ms var(--ease); }
footer.site a:hover { color: var(--text-secondary); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .seats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .loop { flex-direction: column; }
  .loop .arrow { display: none; }
}
@media (max-width: 768px) {
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 32px; letter-spacing: -0.6px; }
  .hero h1 br { display: none; }
  .hero .sub { font-size: 15px; }
  section.band { padding-top: 64px; }
  section.band h2 { font-size: 30px; letter-spacing: -0.4px; }
  .grid, .seats { grid-template-columns: 1fr; }
  .screen { min-height: 560px; }
  .demo.open .island { width: min(430px, calc(100% - 12px)); }
  .site-head nav a:nth-child(2), .site-head nav a:nth-child(3) { display: none; }
  .deepwin { left: 8px; right: 8px; top: 46px; bottom: 46px; }
  .deepwin .kanban { grid-template-columns: repeat(3, minmax(150px, 1fr)); overflow-x: auto; }
  .pane-dash .tiles { grid-template-columns: 1fr; }
  .fpill { max-width: 44%; }
  .kanban { grid-template-columns: 1fr; }
  .cta-band .inner { padding: 36px 28px; }
  .cta-band .btn-ink { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .island, .pill, .panel, .approval, .card, .reveal { transition: none; }
  .hero .badge, .hero h1, .hero .sub, .hero .cta-row { animation: none; }
  .dot.run, .row-gemini .dot { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
