:root {
  --bg: #fbfbfa;
  --surface: #ffffff;
  --raised: #f5f5f4;
  --text: #1a1a1a;
  --secondary: #6b6b6b;
  --hairline: #e7e7e5;
  --accent: #2f6b4f;
  --accent-text: #ffffff;
  --accent-wash: color-mix(in srgb, var(--accent) 10%, transparent);
  --hover: color-mix(in srgb, var(--text) 6%, transparent);
  --shadow: 0 1px 2px rgb(0 0 0 / 4%), 0 12px 40px rgb(0 0 0 / 8%);
  --window-shadow: 0 0 0 1px rgb(0 0 0 / 6%), 0 30px 80px -20px rgb(0 0 0 / 22%);
  --popover-shadow: 0 10px 30px rgb(0 0 0 / 14%), 0 0 0 1px var(--hairline);
  --radius: 14px;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --bg: #161616;
  --surface: #1c1c1c;
  --raised: #252525;
  --text: #f2f2f2;
  --secondary: #a3a3a3;
  --hairline: #333333;
  --accent: #5fae88;
  --accent-text: #0f1f17;
  --shadow: 0 1px 2px rgb(0 0 0 / 30%), 0 12px 40px rgb(0 0 0 / 35%);
  --window-shadow: 0 0 0 1px rgb(255 255 255 / 8%), 0 30px 80px -20px rgb(0 0 0 / 70%);
  --popover-shadow: 0 10px 30px rgb(0 0 0 / 45%), 0 0 0 1px var(--hairline);
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #161616;
    --surface: #1c1c1c;
    --raised: #252525;
    --text: #f2f2f2;
    --secondary: #a3a3a3;
    --hairline: #333333;
    --accent: #5fae88;
    --accent-text: #0f1f17;
    --shadow: 0 1px 2px rgb(0 0 0 / 30%), 0 12px 40px rgb(0 0 0 / 35%);
    --window-shadow: 0 0 0 1px rgb(255 255 255 / 8%), 0 30px 80px -20px rgb(0 0 0 / 70%);
    --popover-shadow: 0 10px 30px rgb(0 0 0 / 45%), 0 0 0 1px var(--hairline);
    color-scheme: dark;
  }
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
}
a:hover {
  text-decoration-color: currentColor;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
kbd {
  display: inline-block;
  min-width: 22px;
  padding: 0 5px;
  margin: 0 1px;
  border: 1px solid var(--hairline);
  border-bottom-width: 2px;
  border-radius: 6px;
  background: var(--surface);
  font: 500 13px/20px var(--sans);
  text-align: center;
}

/* Header */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 60px;
  padding: 0 max(16px, calc((100vw - 1120px) / 2));
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav.scrolled {
  border-bottom-color: var(--hairline);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.nav nav {
  display: flex;
  gap: 4px;
  margin-right: auto;
}
.nav nav a {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--secondary);
  font-size: 14px;
  text-decoration: none;
}
.nav nav a:hover {
  color: var(--text);
  background: var(--hover);
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--secondary);
}
.icon-button:hover {
  color: var(--text);
  background: var(--hover);
}
.when-dark {
  display: none;
}
:root[data-theme="dark"] .when-dark {
  display: block;
}
:root[data-theme="dark"] .when-light {
  display: none;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .when-dark {
    display: block;
  }
  :root:not([data-theme="light"]) .when-light {
    display: none;
  }
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, opacity 0.15s;
}
.button:hover {
  opacity: 0.88;
}
.button:active {
  transform: scale(0.98);
}
.button.small {
  height: 34px;
  padding: 0 14px;
  font-size: 14px;
}
.button.large {
  height: 54px;
  padding: 0 28px;
  font-size: 17px;
}
.button.large svg {
  width: 20px;
  height: 20px;
}
.button.secondary {
  background: var(--raised);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--hairline);
}

/* Hero */

.hero {
  padding: 72px 16px 40px;
  text-align: center;
}
.pill {
  display: inline-block;
  margin: 0 0 24px;
  padding: 6px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  color: var(--secondary);
  font-size: 13px;
}
h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
  text-wrap: balance;
}
.lede {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--secondary);
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.5;
  text-wrap: pretty;
}
.cta {
  margin-top: 36px;
}
.cta-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin: 14px 0 0;
  color: var(--secondary);
  font-size: 14px;
}
.cta-note a {
  color: var(--text);
}
.cta-note span:empty {
  display: none;
}

/* Demo */

.demo {
  max-width: 1120px;
  margin: 64px auto 0;
}
.demo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 960 / 600;
  border-radius: 16px;
  box-shadow: var(--window-shadow);
  background: var(--surface);
  overflow: hidden;
}
.try {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.try > span {
  color: var(--secondary);
  font-size: 14px;
  margin-right: 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
}
.chip:hover {
  background: var(--raised);
}
.chip svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}
.chip.accent svg {
  color: var(--accent);
}
.demo-caption {
  min-height: 24px;
  margin: 14px auto 0;
  max-width: 560px;
  color: var(--secondary);
  font-size: 14px;
}

/* The mock window is laid out at 960 by 600 and scaled to fit. */

.mock {
  --m-surface: var(--surface);
  position: absolute;
  top: 0;
  left: 0;
  width: 960px;
  height: 600px;
  transform-origin: 0 0;
  transform: scale(var(--scale, 1));
  display: flex;
  flex-direction: column;
  background: var(--m-surface);
  font: 13px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  text-align: left;
  user-select: none;
  overflow: hidden;
}
.mock svg {
  width: 15px;
  height: 15px;
}
.mock button {
  border: 0;
  background: none;
  padding: 0;
}
.mock-strip {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 42px;
  padding: 0 10px 0 16px;
}
.lights {
  display: inline-flex;
  gap: 8px;
  margin-right: 18px;
}
.lights i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.lights i:nth-child(2) {
  background: #febc2e;
}
.lights i:nth-child(3) {
  background: #28c840;
}
.mock-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: var(--secondary);
}
.mock-icon:not(:disabled):hover {
  background: var(--hover);
  color: var(--text);
}
.mock-icon:disabled {
  opacity: 0.4;
  cursor: default;
}
.mock-tabs {
  display: flex;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
}
.mock-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 170px;
  min-width: 90px;
  height: 32px;
  padding: 0 8px 0 12px;
  border-radius: 999px;
  color: var(--secondary);
}
.mock-tab:hover {
  background: var(--hover);
}
.mock-tab.active {
  background: var(--raised);
  color: var(--text);
}
.mock-tab .title {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mock-tab .close {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0;
}
.mock-tab.active .close,
.mock-tab:hover .close {
  opacity: 1;
}
.mock-tab .close:hover {
  background: var(--hover);
}
.mock-tab .close svg {
  width: 11px;
  height: 11px;
}
.favicon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}
.space-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: auto;
  border-radius: 50%;
}
.space-button:hover {
  background: var(--hover);
}
.space-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--space-color, #6f8f5f);
}
.space-count {
  display: none;
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-top-color: var(--accent);
  animation: spin 1.1s linear infinite;
}
.mock.working .space-count {
  display: block;
}
.mock.working .space-dot {
  width: 8px;
  height: 8px;
}
.space-needs {
  display: none;
  position: absolute;
  top: 3px;
  right: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9822b;
  box-shadow: 0 0 0 2px var(--m-surface);
}
.mock.needs-you .space-needs {
  display: block;
}
.mock-toolbar {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 44px;
  padding: 0 10px;
}
.address {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  height: 32px;
  margin: 0 6px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--raised);
  color: var(--secondary);
  white-space: nowrap;
  overflow: hidden;
}
.address b {
  font-weight: 400;
  color: var(--text);
}
.address > span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.address-star {
  opacity: 0.7;
}
.mock-body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 8px 8px;
  min-height: 0;
}
.page {
  position: relative;
  flex: 1;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: var(--m-surface);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.mock.agent-view .page {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 24px color-mix(in srgb, var(--accent) 22%, transparent);
}
.mock.agent-view.paused .page {
  border-color: var(--hairline);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
}
.agent-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: center;
  margin-top: 8px;
  height: 36px;
  padding: 0 4px 0 14px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: var(--m-surface);
  box-shadow: 0 2px 10px rgb(0 0 0 / 6%);
  white-space: nowrap;
}
.agent-bar[hidden] {
  display: none;
}
.agent-status b {
  font-weight: 500;
}
.agent-spinner {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
}
.mock.paused .agent-spinner,
.mock.idle .agent-spinner {
  animation: none;
  border-color: var(--secondary);
}
.agent-bar button {
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--raised);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.agent-bar button:hover {
  background: var(--hover);
}
.agent-bar button[hidden] {
  display: none;
}
.agent-bar .confirm {
  color: #b3261e;
}
:root[data-theme="dark"] .agent-bar .confirm {
  color: #f2998f;
}
.cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 22px !important;
  height: 22px !important;
  fill: #111;
  stroke: #fff;
  stroke-width: 1.4;
  stroke-linejoin: round;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 2px 3px rgb(0 0 0 / 25%));
  transition: transform 0.7s cubic-bezier(0.3, 0.8, 0.3, 1), opacity 0.3s;
}
.cursor.on {
  opacity: 1;
}
.cursor.press {
  transition: transform 0.12s;
}
.mock-layer:empty {
  display: none;
}
.mock-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.scrim {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 18%);
}
.popover {
  position: absolute;
  min-width: 250px;
  padding: 6px;
  border-radius: 12px;
  background: var(--m-surface);
  box-shadow: var(--popover-shadow);
  animation: pop 0.14s ease-out;
}
.popover h4 {
  margin: 8px 10px 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--secondary);
}
.popover hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 6px 4px;
}
.row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  text-align: left;
}
.row:hover,
.row.selected {
  background: var(--hover);
}
.row .meta {
  margin-left: auto;
  color: var(--secondary);
  font-size: 12px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--dot);
}
.dot.ring {
  background: none;
  border: 1.5px solid var(--dot);
}
.row svg {
  color: var(--secondary);
}
.palette {
  left: 50%;
  top: 110px;
  width: 520px;
  padding: 0;
  transform: translateX(-50%);
  overflow: hidden;
}
.palette-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--hairline);
  color: var(--secondary);
}
.palette-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: none;
  font: 15px -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
}
.palette-results {
  padding: 6px;
  max-height: 300px;
  overflow: auto;
}
.palette-results .row {
  height: 36px;
}
.palette-empty {
  padding: 14px;
  color: var(--secondary);
}
.overview {
  position: absolute;
  inset: 0;
  padding: 36px 40px;
  background: var(--m-surface);
  animation: fade 0.18s ease-out;
}
.overview-close {
  position: absolute;
  top: 28px;
  right: 32px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--secondary);
}
.overview-close:hover {
  background: var(--hover);
  color: var(--text);
}
.overview h3 {
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 600;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.overview-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.overview-card .thumb {
  position: relative;
  height: 150px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: var(--raised);
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.overview-card:hover .thumb,
.overview-card.current .thumb {
  box-shadow: 0 0 0 2px var(--accent);
}
.overview-card .thumb .page-content {
  transform: scale(0.3);
  transform-origin: 0 0;
  width: 333%;
  height: 333%;
  pointer-events: none;
}
.overview-card .label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.overview-card .label .meta {
  margin-left: auto;
  color: var(--secondary);
  font-weight: 400;
  font-size: 12px;
}

/* Pages inside the mock */

.page-content {
  height: 100%;
  padding: 44px 64px;
  overflow: hidden;
  color: #1f2328;
  background: #fff;
}
.page-content h2 {
  margin: 0 0 10px;
  font: 700 30px/1.15 Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
}
.page-content p {
  margin: 0 0 12px;
  color: #57606a;
  max-width: 520px;
}
.page-content .kicker {
  font: 600 11px/1 -apple-system, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a6b2f;
  margin-bottom: 14px;
}
.skeleton {
  height: 9px;
  border-radius: 5px;
  background: #eceae6;
  margin: 10px 0;
}
.hero-art {
  height: 170px;
  margin: 22px 0;
  border-radius: 12px;
  background:
    radial-gradient(120px 60px at 25% 110%, #6f8f5f 60%, transparent 61%),
    radial-gradient(160px 80px at 70% 115%, #4f6f45 60%, transparent 61%),
    radial-gradient(30px 30px at 78% 32%, #f4c56b 70%, transparent 72%),
    linear-gradient(#f3ddc0, #e9c9a8);
}
.map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, #d8e6cf 0 90px, transparent 91px),
    radial-gradient(circle at 72% 64%, #d8e6cf 0 120px, transparent 121px),
    #eef1ea;
}
.map svg {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  fill: none;
}
.map-card {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 250px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
}
.map-card h2 {
  font: 600 17px/1.3 -apple-system, system-ui, sans-serif;
  margin: 0 0 4px;
}
.map-card p {
  font-size: 12px;
  margin: 0;
}
.doc-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.doc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #eee;
  color: #1f2328;
}
.doc-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1.5px solid #c8c8c8;
}
.doc-list li.done {
  color: #8c959f;
  text-decoration: line-through;
}
.doc-list li.done::before {
  background: #2f6b4f;
  border-color: #2f6b4f;
}
.inbox-row {
  display: grid;
  grid-template-columns: 140px 1fr 60px;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}
.inbox-row b {
  font-weight: 600;
}
.inbox-row span {
  color: #57606a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inbox-row i {
  color: #8c959f;
  font-style: normal;
  text-align: right;
}
.newtab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 100%;
  background: var(--m-surface);
}
.newtab .search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 460px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--raised);
  color: var(--secondary);
}
.newtab .tiles {
  display: flex;
  gap: 18px;
}
.newtab .tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 70px;
  color: var(--secondary);
  font-size: 12px;
}
.newtab .tile i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--raised);
  color: var(--text);
  font: 600 15px/1 -apple-system, system-ui, sans-serif;
  font-style: normal;
}
.booking {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}
.booking form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #1f2328;
}
.booking input,
.booking select {
  height: 36px;
  padding: 0 10px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  background: #fff;
  color: #1f2328;
  font: 14px -apple-system, system-ui, sans-serif;
  pointer-events: none;
}
.booking .field-focus {
  border-color: #9a6b2f;
  box-shadow: 0 0 0 3px rgb(154 107 47 / 18%);
}
.booking .submit {
  height: 38px;
  margin-top: 6px;
  border-radius: 8px !important;
  background: #9a6b2f !important;
  color: #fff;
  font-weight: 600;
}
.booking .aside {
  border-radius: 12px;
  overflow: hidden;
  background: #faf6f0;
  border: 1px solid #efe6d8;
}
.booking .aside .food {
  height: 130px;
  background:
    radial-gradient(circle at 45% 50%, #c0462b 0 13px, transparent 14px),
    radial-gradient(circle at 57% 60%, #6f8f5f 0 10px, transparent 11px),
    radial-gradient(circle at 55% 43%, #f0b54a 0 8px, transparent 9px),
    radial-gradient(circle at 50% 53%, #e8c9a0 0 34px, transparent 35px),
    radial-gradient(circle at 50% 53%, #fff 0 50px, transparent 51px),
    radial-gradient(circle at 50% 53%, #e9dccb 0 60px, transparent 61px),
    #d9c4a6;
}
.booking .aside div {
  padding: 14px 16px;
  font-size: 12px;
  color: #57606a;
}
.booking .aside b {
  display: block;
  color: #1f2328;
  font-size: 14px;
  margin-bottom: 4px;
}
.signin {
  width: 340px;
  margin: 10px auto 0;
  padding: 28px;
  border: 1px solid #d0d7de;
  border-radius: 14px;
  text-align: center;
}
.signin h2 {
  font-size: 22px;
}
.signin .fake-field {
  height: 36px;
  margin: 10px 0;
  padding: 0 10px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  text-align: left;
  line-height: 34px;
  color: #8c959f;
}
.signin button {
  width: 100%;
  height: 38px;
  margin-top: 8px;
  border-radius: 8px !important;
  background: #1f2328 !important;
  color: #fff;
  font-weight: 600;
}
.signin.done .fake-field {
  color: #1f2328;
}
.confirmed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  text-align: center;
}
.confirmed .badge {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e5f0e9;
  color: #2f6b4f;
  margin-bottom: 6px;
  animation: pop 0.3s ease-out;
}
.confirmed .badge svg {
  width: 26px;
  height: 26px;
}
.reload-flash {
  animation: fade 0.35s ease-out;
}

/* Sections */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 104px 16px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
  text-wrap: balance;
}
.section-head > p:last-child,
.agents-copy > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--secondary);
  font-size: 18px;
  text-wrap: pretty;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.feature {
  padding: 28px;
  background: var(--surface);
}
.feature > svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.feature h3 {
  margin: 16px 0 6px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature p {
  margin: 0;
  color: var(--secondary);
  font-size: 15px;
}

.agents {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.points {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.points li {
  display: flex;
  gap: 14px;
  color: var(--secondary);
  font-size: 15px;
}
.points li b {
  color: var(--text);
  font-weight: 600;
}
.points svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--accent);
}
.terminal {
  border-radius: var(--radius);
  background: #111312;
  color: #d8dcd9;
  box-shadow: var(--window-shadow);
  overflow: hidden;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 8px 0 16px;
  border-bottom: 1px solid #242826;
  color: #7c847f;
  font: 13px var(--mono);
}
.terminal-bar .lights {
  margin-right: 8px;
}
.terminal-replay {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: none;
  color: #7c847f;
}
.terminal-replay:hover {
  background: #1d201e;
  color: #d8dcd9;
}
.terminal-replay svg {
  width: 15px;
  height: 15px;
}
.terminal-body {
  height: 440px;
  margin: 0;
  padding: 18px 20px;
  overflow: hidden;
  font: 13px/1.65 var(--mono);
  white-space: pre-wrap;
  word-break: break-word;
}
.terminal-body .prompt {
  color: #5fae88;
}
.terminal-body .cmd {
  color: #f2f4f3;
}
.terminal-body .out {
  color: #9aa39e;
}
.terminal-body .ok {
  color: #7fd1a6;
}
.terminal-body .note {
  color: #d9a55b;
}
.terminal-body .caret {
  display: inline-block;
  width: 8px;
  height: 15px;
  vertical-align: -2px;
  background: #d8dcd9;
  animation: blink 1s steps(1) infinite;
}

.tour {
  display: grid;
  gap: 20px;
}
.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.tour-tabs button {
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  color: var(--secondary);
  font-size: 14px;
}
.tour-tabs button[aria-selected="true"] {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}
.tour-figure {
  margin: 0;
}
.tour-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--window-shadow);
  background: var(--surface);
}
.tour-figure figcaption {
  margin-top: 16px;
  text-align: center;
  color: var(--secondary);
  font-size: 15px;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 24px 28px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}
.platform.detected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.platform-logo {
  width: 34px;
  height: 34px;
}
.platform h3 {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 600;
}
.platform p {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: 14px;
}
.platform .button {
  width: 100%;
  max-width: 240px;
}
.small-print {
  margin: 24px 0 0;
  text-align: center;
  color: var(--secondary);
  font-size: 14px;
}
.small-print a {
  color: var(--text);
}
.install {
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--raised);
}
.install-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.install-head p {
  margin: 6px 0 0;
  color: var(--secondary);
}
.install-tabs {
  display: inline-flex;
  gap: 2px;
  margin: 20px 0 8px;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.install-tabs button {
  height: 32px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--secondary);
  font-size: 14px;
}
.install-tabs button[aria-selected="true"] {
  background: var(--text);
  color: var(--bg);
}
.install-panel ol {
  margin: 12px 0;
  padding-left: 22px;
}
.install-panel li {
  margin: 8px 0;
  padding-left: 4px;
}
.hint {
  color: var(--secondary);
  font-size: 14px;
}
.code-line {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 640px;
  padding: 4px 4px 4px 14px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--hairline);
}
.code-line code {
  flex: 1;
  overflow-x: auto;
  white-space: nowrap;
  font: 13px/32px var(--mono);
}
.copy {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: none;
  color: var(--secondary);
}
.copy:hover {
  background: var(--hover);
  color: var(--text);
}
.copy svg {
  width: 16px;
  height: 16px;
}

.faq {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.faq details {
  border-bottom: 1px solid var(--hairline);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--secondary);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  margin: 0 4px 22px;
  color: var(--secondary);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  max-width: 1120px;
  margin: 120px auto 0;
  padding: 32px 16px 48px;
  border-top: 1px solid var(--hairline);
  color: var(--secondary);
  font-size: 14px;
}
.footer .brand {
  font-size: 15px;
  color: var(--text);
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer nav a {
  text-decoration: none;
}
.footer nav a:hover {
  color: var(--text);
}
.footer p {
  margin: 0 0 0 auto;
}

.thanks {
  width: min(480px, calc(100vw - 32px));
  padding: 36px 32px 28px;
  border: 0;
  border-radius: 18px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--popover-shadow);
  text-align: center;
}
.thanks::backdrop {
  background: rgb(0 0 0 / 35%);
  backdrop-filter: blur(3px);
}
.thanks .close {
  position: absolute;
  top: 12px;
  right: 12px;
}
.thanks h2 {
  margin: 14px 0 6px;
  font-size: 24px;
}
.thanks p {
  margin: 0;
  color: var(--secondary);
}
.thanks ol {
  margin: 20px 0 8px;
  padding: 16px 16px 16px 36px;
  border-radius: 12px;
  background: var(--raised);
  text-align: left;
  font-size: 15px;
}
.thanks li {
  margin: 6px 0;
}
.thanks .hint {
  margin-top: 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
}
.palette {
  animation-name: pop-centered;
}
@keyframes pop-centered {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.97);
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .features,
  .platforms {
    grid-template-columns: 1fr 1fr;
  }
  .agents {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .nav nav {
    display: none;
  }
  .nav-end {
    margin-left: auto;
  }
  .hero {
    padding-top: 48px;
  }
  .demo {
    margin-top: 44px;
  }
  .demo-frame {
    border-radius: 10px;
  }
  .features,
  .platforms {
    grid-template-columns: 1fr;
  }
  .section {
    padding-top: 80px;
  }
  .install {
    padding: 22px 18px;
  }
  .terminal-body {
    height: 400px;
    font-size: 12px;
  }
  .footer p {
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
