:root {
  --bg: #ffffff;
  --surface: #f6f8fb;
  --surface-2: #edf2f7;
  --text: #0d1b2a;
  --muted: #4f6476;
  --line: #cdd7e1;
  --blue: #0a66c2;
  --blue-strong: #0857a4;
  --orange: #ff7a00;
  --orange-strong: #e66e00;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(13, 27, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(10, 102, 194, 0.14);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  transform: translateY(-180%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.topbar,
.section-wrap,
.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 0;
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-badge {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.brand-wordmark {
  font-size: 15px;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.topnav a,
.topbar-mail,
.waitlist-link,
.site-footer a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.site-footer a:hover,
.waitlist-link:hover {
  color: var(--blue);
}

.topbar-mail {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.launch-banner,
.hero,
.operations,
.interface,
.venues,
.waitlist {
  padding: 72px 0;
}

.launch-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-top: 28px;
  padding-bottom: 22px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.launch-banner p {
  margin: 0;
}

.launch-kicker {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  column-gap: 48px;
  row-gap: 22px;
  align-items: end;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-notes {
  grid-column: 1 / -1;
}

.eyebrow,
.card-label,
.step-index {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

h1 {
  max-width: 15ch;
  margin-bottom: 20px;
  font-size: clamp(46px, 6.2vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-text,
.section-copy,
.waitlist-copy p,
.lane-panel p,
.venue-list p,
.receipt-lines span {
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  font-size: 18px;
}

.hero-actions,
.waitlist-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  justify-self: end;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: var(--orange);
  color: var(--text);
  box-shadow: var(--shadow);
}

.button-primary:hover {
  background: var(--orange-strong);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
}

.hero-notes {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-notes li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.hero-board {
  position: relative;
}

.board-frame,
.interface-board,
.operations-panel,
.venue-list,
.waitlist {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.board-frame {
  overflow: hidden;
}

.board-topline,
.interface-topbar {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.board-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  min-height: 440px;
}

.board-card {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.board-card-wide {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.board-card-tall {
  grid-column: 2;
  grid-row: 1;
  background: var(--surface);
}

.board-card-footer {
  grid-column: 2;
  grid-row: 2;
}

.table-map,
.kitchen-lane {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.table-map > div,
.kitchen-lane > div {
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.table-map strong,
.kitchen-lane strong,
.receipt-total strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.table-map span,
.kitchen-lane span {
  font-size: 14px;
  color: var(--muted);
}

.board-card-footer p {
  margin-bottom: 0;
  max-width: 32ch;
}

.operations,
.venues,
.waitlist {
  border-top: 1px solid var(--line);
}

.operations {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
}

.section-aside,
.section-heading,
.waitlist-copy {
  max-width: 38rem;
}

.section-copy {
  margin-bottom: 0;
  font-size: 18px;
}

.operations-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.operations-panel article {
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.operations-panel article:last-child {
  border-right: 0;
}

.operations-panel p,
.waitlist-copy p,
.venue-list p,
.receipt-panel p,
.lane-panel p {
  margin-bottom: 0;
}

.step-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
}

.interface-board {
  overflow: hidden;
}

.interface-content {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 0;
}

.receipt-panel,
.lane-panel article {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.receipt-panel {
  border-right: 1px solid var(--line);
}

.receipt-lines {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.receipt-lines li,
.receipt-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.receipt-lines li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.receipt-total {
  padding-top: 14px;
  font-size: 18px;
  font-weight: 800;
}

.lane-panel {
  display: grid;
  background: var(--surface);
}

.lane-panel article:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.venues .section-heading {
  margin-bottom: 28px;
}

.venue-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.venue-list li {
  padding: 22px 24px;
}

.venue-list li + li {
  border-top: 1px solid var(--line);
}

.venue-list h3 {
  margin-bottom: 6px;
}

.waitlist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 24px;
}

.waitlist-copy p {
  font-size: 18px;
}

.waitlist-link {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1080px) {
  .topnav {
    gap: 18px;
  }

  .operations,
  .interface-content {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-notes {
    grid-column: auto;
  }

  .hero-actions {
    justify-self: start;
  }

  .operations-panel {
    grid-template-columns: 1fr;
  }

  .operations-panel article {
    min-height: auto;
    border-right: 0;
  }

  .interface-content {
    gap: 0;
  }
}

@media (max-width: 768px) {
  .topbar,
  .section-wrap,
  .site-footer {
    width: min(1200px, calc(100% - 24px));
  }

  .topbar-inner {
    gap: 12px;
  }

  .topnav {
    display: none;
  }

  .brand-wordmark {
    display: none;
  }

  .launch-banner {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }

  h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  .hero-text,
  .section-copy,
  .waitlist-copy p {
    font-size: 16px;
  }

  .board-grid,
  .interface-content {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .board-card,
  .receipt-panel {
    border-right: 0;
  }

  .board-card-wide,
  .board-card-tall,
  .board-card-footer {
    grid-column: auto;
    grid-row: auto;
  }

  .waitlist {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding: 20px 0 28px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .launch-banner,
  .hero,
  .operations,
  .interface,
  .venues,
  .waitlist {
    padding: 56px 0;
  }

  .topbar-mail {
    padding: 9px 11px;
    font-size: 13px;
  }

  .hero-actions,
  .waitlist-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-notes li,
  .venue-list li,
  .receipt-panel,
  .lane-panel article,
  .operations-panel article,
  .board-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .venue-list li {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .board-topline,
  .interface-topbar {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 13px;
  }

  .receipt-lines li,
  .receipt-total,
  .table-map > div,
  .kitchen-lane > div {
    gap: 12px;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
  }

  body {
    padding-bottom: 92px;
  }

  .mobile-bar-primary,
  .mobile-bar-secondary {
    min-height: 48px;
  }
}

@media (max-width: 420px) {
  .topbar,
  .section-wrap,
  .site-footer {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .launch-banner p,
  .waitlist-link {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
