:root {
  color-scheme: light;
  --bg: #f6f6f2;
  --paper: #fffefa;
  --paper-strong: #ffffff;
  --ink: #141516;
  --muted: #686c69;
  --soft: #ecece5;
  --line: #d8d8d0;
  --line-strong: #b7bab1;
  --teal: #006b68;
  --teal-soft: #dcebea;
  --coral: #d24d35;
  --coral-soft: #f3ddd7;
  --blue: #245f8e;
  --blue-soft: #dce7f1;
  --gold: #b88719;
  --gold-soft: #f2e6c7;
  --green: #637d57;
  --green-soft: #e3ebdd;
  --shadow: 0 20px 60px rgb(20 21 22 / 0.12);
  --shadow-tight: 0 12px 32px rgb(20 21 22 / 0.1);
  --radius: 8px;
  --radius-sm: 6px;
  --hud-height: 64px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(20 21 22 / 0.035) 1px, transparent 1px),
    linear-gradient(rgb(20 21 22 / 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 64px 64px;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.deck-hud {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: var(--hud-height);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(240px, 520px) minmax(120px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  color: rgb(20 21 22 / 0.78);
  pointer-events: none;
}

.brand-lockup,
.slide-counter,
.progress-wrap {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: -3px;
  bottom: 2px;
  border-radius: 50%;
  background: var(--coral);
}

.progress-wrap {
  gap: 12px;
  min-width: 0;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.progress-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgb(20 21 22 / 0.12);
}

.progress-track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--gold));
  transition: width 240ms ease;
}

.slide-counter {
  justify-content: flex-end;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.deck {
  position: relative;
  width: 100vw;
  height: 100svh;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 88px 72px 72px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.slide-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.slide-inner.wide {
  width: min(1320px, 100%);
}

.slide-inner.narrow {
  width: min(940px, 100%);
}

.hero-slide {
  color: #101112;
  background:
    linear-gradient(90deg, rgb(246 246 242 / 0.96) 0%, rgb(246 246 242 / 0.86) 42%, rgb(246 246 242 / 0.18) 72%),
    url("assets/wireframe-workshop-hero.png") right center / cover no-repeat;
}

.hero-content {
  width: min(740px, 58vw);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: 5rem;
  line-height: 0.96;
  font-weight: 880;
  letter-spacing: 0;
}

h2 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: 3.45rem;
  line-height: 1.02;
  font-weight: 870;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
  line-height: 1.1;
}

.lead {
  max-width: 840px;
  margin-bottom: 28px;
  color: rgb(20 21 22 / 0.78);
  font-size: 1.34rem;
  line-height: 1.42;
}

.lead strong,
.statement strong {
  color: var(--ink);
}

.statement {
  max-width: 970px;
  color: var(--ink);
  font-size: 2.15rem;
  line-height: 1.2;
  font-weight: 760;
}

.caption {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.42;
}

.micro {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 48px;
}

.split.even {
  grid-template-columns: 1fr 1fr;
}

.stack {
  display: grid;
  gap: 18px;
}

.stack.large {
  gap: 28px;
}

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

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards.one {
  grid-template-columns: 1fr;
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards.auto {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.card {
  min-height: 136px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 254 250 / 0.72);
  box-shadow: none;
}

.card.compact {
  min-height: 94px;
  padding: 16px;
}

.compact-list .card {
  min-height: 74px;
}

.card.strong {
  border-color: rgb(20 21 22 / 0.16);
  background: var(--paper-strong);
  box-shadow: var(--shadow-tight);
}

.card h3,
.card h4 {
  margin: 0 0 10px;
}

.card p,
.card ul {
  margin-bottom: 0;
}

.accent-card {
  position: relative;
  overflow: hidden;
}

.accent-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent, var(--teal));
}

.mini-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.big-number {
  display: block;
  color: var(--accent, var(--teal));
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 254 250 / 0.86);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 690;
}

.pill.teal {
  border-color: transparent;
  background: var(--teal-soft);
  color: #064744;
}

.pill.coral {
  border-color: transparent;
  background: var(--coral-soft);
  color: #8d2c1e;
}

.pill.blue {
  border-color: transparent;
  background: var(--blue-soft);
  color: #1c4566;
}

.pill.gold {
  border-color: transparent;
  background: var(--gold-soft);
  color: #6f5014;
}

.agenda-list,
.check-list,
.number-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agenda-list li,
.check-list li,
.number-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  min-height: 34px;
  color: rgb(20 21 22 / 0.86);
  font-size: 1.08rem;
  line-height: 1.35;
}

.agenda-list li::before,
.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent, var(--teal));
}

.number-list {
  counter-reset: steps;
}

.number-list li {
  counter-increment: steps;
}

.number-list li::before {
  content: counter(steps, decimal-leading-zero);
  width: 42px;
  color: var(--accent, var(--teal));
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.quote {
  margin: 0;
  padding-left: 24px;
  border-left: 5px solid var(--accent, var(--coral));
  font-size: 2rem;
  line-height: 1.24;
  font-weight: 800;
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 254 250 / 0.92);
  box-shadow: var(--shadow-tight);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

tr:last-child td {
  border-bottom: 0;
}

th {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

td:first-child {
  font-weight: 820;
}

.center-cell {
  text-align: center;
}

.yes {
  color: var(--teal);
  font-weight: 900;
}

.maybe {
  color: var(--gold);
  font-weight: 900;
}

.weak {
  color: var(--muted);
}

.poll {
  display: grid;
  gap: 12px;
}

.poll-option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 12px 14px 12px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 254 250 / 0.86);
  color: var(--ink);
  text-align: left;
}

.poll-option::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--bar, 0%);
  background: linear-gradient(90deg, var(--teal-soft), rgb(0 107 104 / 0.02));
  transition: width 260ms ease;
}

.poll-option > * {
  position: relative;
}

.poll-option strong {
  display: block;
  font-size: 1.02rem;
}

.poll-option small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.poll-count {
  min-width: 38px;
  color: var(--teal);
  font-size: 1.3rem;
  font-weight: 900;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.poll-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.text-button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-weight: 760;
}

.text-button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgb(20 21 22 / 0.16);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.browser-chrome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  background: #f2f2ed;
}

.browser-buttons,
.browser-shortcuts {
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-button {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.browser-button:hover,
.browser-button:focus-visible {
  border-color: var(--line);
  background: white;
}

.browser-address {
  width: 100%;
  min-width: 0;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 0.84rem;
  outline: none;
}

.browser-address:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgb(0 107 104 / 0.13);
}

.browser-shortcut {
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
}

.browser-page {
  display: block;
  width: 100%;
  height: min(58vh, 600px);
  border: 0;
  background: white;
}

.browser-frame.tall .browser-page {
  height: min(63vh, 680px);
}

.browser-frame.short .browser-page {
  height: 430px;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.method-step {
  position: relative;
  min-height: 128px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.method-step .step-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
}

.method-step.today {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.canvas-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.canvas-field {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 254 250 / 0.92);
}

.canvas-field label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.canvas-field textarea {
  width: 100%;
  min-height: 84px;
  resize: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.36;
  outline: none;
}

.canvas-field textarea::placeholder {
  color: rgb(104 108 105 / 0.72);
}

.timer-card {
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-tight);
}

.timer-face {
  color: var(--ink);
  font-size: 5.4rem;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.timer-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mistake-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mistake-pool,
.parking-lot {
  min-height: 420px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 254 250 / 0.82);
}

.mistake-chip {
  width: 100%;
  min-height: 48px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  text-align: left;
  font-weight: 720;
}

.parking-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.parking-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--coral-soft);
  color: #77291e;
}

.parking-item button {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: #77291e;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 10px;
}

.time-row {
  display: grid;
  grid-template-columns: 170px 1fr 72px;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgb(255 254 250 / 0.86);
}

.time-bar {
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.time-bar span {
  display: block;
  height: 100%;
  width: var(--w);
  background: var(--accent, var(--teal));
}

.time-min {
  color: var(--muted);
  font-weight: 860;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.wireframe-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.phone-wire {
  width: min(320px, 100%);
  min-height: 580px;
  margin: 0 auto;
  padding: 20px;
  border: 10px solid #1f2222;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.phone-wire.small-wire {
  width: min(300px, 100%);
  min-height: 500px;
  padding: 18px;
  border-width: 8px;
}

.phone-wire.small-wire .wire-block.image {
  height: 112px;
}

.wire-block {
  border: 1px solid #bfc2bd;
  background: #f4f4f0;
}

.wire-block.image {
  height: 130px;
  margin-bottom: 14px;
  background:
    linear-gradient(135deg, transparent 49%, #bfc2bd 50%, transparent 51%),
    linear-gradient(45deg, transparent 49%, #bfc2bd 50%, transparent 51%),
    #f4f4f0;
}

.wire-line {
  height: 10px;
  margin-bottom: 9px;
  border-radius: 999px;
  background: #c9ccc6;
}

.wire-line.short {
  width: 58%;
}

.wire-line.mid {
  width: 76%;
}

.wire-cta {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 16px;
  border: 2px dashed var(--coral);
  border-radius: var(--radius);
  background: var(--coral-soft);
}

.toggle-panel {
  display: grid;
  gap: 12px;
}

.toggle-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.toggle-card input {
  width: 22px;
  height: 22px;
  accent-color: var(--teal);
}

.toggle-card strong {
  display: block;
  margin-bottom: 5px;
}

.toggle-card small {
  color: var(--muted);
  line-height: 1.35;
}

.reveal-note {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-left: 4px solid var(--teal);
  background: var(--teal-soft);
  font-weight: 740;
}

.toggle-panel:has(input:checked) + .reveal-note {
  display: block;
}

.deck-controls {
  position: fixed;
  z-index: 25;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(20 21 22 / 0.16);
  border-radius: 999px;
  background: rgb(255 254 250 / 0.9);
  color: var(--ink);
  box-shadow: 0 8px 22px rgb(20 21 22 / 0.08);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.icon-button.small {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  box-shadow: none;
}

.visually-hidden {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.toolkit-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 34px;
}

.toolkit-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-tight);
}

.toolkit-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.compact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.canvas-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
}

.canvas-toolbar .text-button[aria-current="true"] {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: #064744;
}

.icon-button:hover,
.icon-button:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  border-color: var(--ink);
  outline: none;
}

.overview-dialog {
  width: min(920px, calc(100vw - 40px));
  max-height: min(760px, calc(100svh - 80px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.overview-dialog::backdrop {
  background: rgb(20 21 22 / 0.35);
}

.overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  max-height: calc(100svh - 170px);
  overflow: auto;
  padding: 18px;
}

.overview-tile {
  min-height: 96px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  text-align: left;
}

.overview-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.overview-tile small {
  color: var(--muted);
}

.overview-tile.is-current {
  border-color: var(--teal);
  background: var(--teal-soft);
}

@media (max-width: 1020px) {
  .deck-hud {
    grid-template-columns: 1fr auto;
  }

  .progress-wrap {
    display: none;
  }

  .slide {
    padding: 82px 32px 72px;
    overflow-y: auto;
  }

  .hero-content {
    width: min(680px, 100%);
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .statement {
    font-size: 1.65rem;
  }

  .split,
  .split.even,
  .wireframe-demo,
  .mistake-board,
  .toolkit-layout {
    grid-template-columns: 1fr;
  }

  .cards,
  .cards.two,
  .cards.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards.one {
    grid-template-columns: 1fr;
  }

  .method-flow,
  .canvas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .browser-shortcuts {
    display: none;
  }

  .toolkit-visual img {
    max-height: 430px;
  }
}

@media (max-width: 680px) {
  body {
    overflow: auto;
  }

  .deck {
    height: auto;
    min-height: 100svh;
  }

  .deck-hud {
    height: 56px;
    padding: 0 16px;
  }

  .brand-lockup span:last-child {
    display: none;
  }

  .slide {
    position: relative;
    min-height: 100svh;
    padding: 72px 18px 78px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .statement,
  .quote {
    font-size: 1.38rem;
  }

  .cards,
  .cards.two,
  .cards.four,
  .cards.one,
  .method-flow,
  .canvas-grid,
  .toolkit-layout {
    grid-template-columns: 1fr;
  }

  .deck-controls {
    gap: 6px;
  }

  .deck-controls .icon-button {
    width: 40px;
    height: 40px;
  }

  .browser-chrome {
    grid-template-columns: auto 1fr;
  }

  .browser-shortcuts {
    display: none;
  }

  .browser-page,
  .browser-frame.tall .browser-page,
  .browser-frame.short .browser-page {
    height: 420px;
  }

  .time-row {
    grid-template-columns: 1fr 58px;
  }

  .time-bar {
    grid-column: 1 / -1;
    order: 3;
  }

  .deck-controls {
    right: 12px;
    bottom: 12px;
  }
}
