:root {
  --cream: #fff3da;
  --cream-2: #ffe8b8;
  --paper: #fff9ed;
  --dark: #171716;
  --dark-2: #252420;
  --ink: #181816;
  --muted: #5e5b50;
  --orange: #ff6f2d;
  --orange-dark: #d84f18;
  --green: #2fb66d;
  --green-dark: #0c6c45;
  --yellow: #ffd75a;
  --line: #171716;
  --mono: "Space Mono", "IBM Plex Mono", "Courier Prime", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --body: "Space Grotesk", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --radius: 14px;
  --shadow: 8px 8px 0 var(--line);
  --shadow-small: 5px 5px 0 var(--line);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(23, 23, 22, 0.04) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(23, 23, 22, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

mark {
  display: inline;
  padding: 0 0.12em;
  background: var(--orange);
  color: var(--ink);
}

.snap-section {
  scroll-margin-top: 96px;
  scroll-snap-align: start;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(calc(100% - 28px), var(--max));
  margin: 14px auto 0;
  padding: 10px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 237, 0.92);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(14px);
}

.wordmark,
.console-logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wordmark {
  min-width: max-content;
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 700;
}

.logo-tile {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
}

.logo-tile img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.site-nav a,
.nav-login {
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 9px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active,
.nav-login:hover,
.nav-login:focus-visible {
  border-color: var(--line);
  background: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 3px solid var(--line);
  border-radius: 12px;
  background: var(--green);
  box-shadow: var(--shadow-small);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 4px auto;
  background: var(--line);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border: 3px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-weight: 700;
  line-height: 1;
  padding: 13px 18px;
  box-shadow: var(--shadow-small);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--line);
}

.button:active {
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 0 var(--line);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
  box-shadow: 3px 3px 0 var(--line);
}

.button:disabled:hover,
.button:disabled:focus-visible {
  transform: none;
  box-shadow: 3px 3px 0 var(--line);
}

.button-small {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.82rem;
}

.button-xl {
  min-height: 64px;
  padding: 18px 26px;
  font-size: 1.12rem;
}

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

.button-green {
  background: var(--green);
}

.hero {
  min-height: calc(100vh - 82px);
  padding: 72px 0 54px;
}

.hero-grid,
.two-column,
.demo-layout {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.hero-copy,
.hero-art,
.builder-controls,
.preview-panel,
.section-heading,
.big-copy {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--yellow);
}

h1,
h2,
h3 {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(4rem, 6.6vw, 6rem);
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 5.25rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--dark-2);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.try-link,
.text-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.try-link:hover,
.text-arrow:hover {
  color: var(--orange-dark);
}

.rush-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 620px;
  margin: 0;
  padding: 12px 14px;
  border: 3px solid var(--line);
  border-radius: 12px;
  background: var(--cream-2);
  box-shadow: var(--shadow-small);
  font-family: var(--mono);
  font-weight: 700;
}

.hero-art {
  position: relative;
  padding: clamp(16px, 3vw, 30px);
}

.hero-art-frame {
  position: relative;
  width: min(100%, 560px);
  margin: 0 auto clamp(30px, 4vw, 58px);
  padding: clamp(10px, 1.8vw, 18px);
}

.signal-burst {
  position: absolute;
  inset: 6% 4%;
  border: 3px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 215, 90, 0.9) 0 14%, transparent 15%),
    repeating-conic-gradient(from 0deg, var(--orange) 0deg 8deg, var(--cream) 8deg 18deg);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.host-sprite {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(8px 9px 0 var(--line));
}

.ray-lines path,
.headset-arc,
.mic,
.arm,
.smile {
  fill: none;
  stroke: var(--line);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ray-lines path {
  stroke-width: 18;
}

.headset-arc {
  stroke-width: 36;
}

.ear,
.face,
.book,
.stand {
  stroke: var(--line);
  stroke-width: 8;
}

.ear {
  fill: var(--green);
}

.face {
  fill: var(--cream);
}

.eye,
.mic-dot {
  fill: var(--line);
}

.smile,
.mic,
.arm {
  stroke-width: 12;
}

.book {
  fill: var(--orange);
}

.book-line {
  fill: none;
  stroke: var(--line);
  stroke-linecap: round;
  stroke-width: 8;
}

.stand {
  fill: var(--green);
}

.art-caption {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin: 0 auto;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-style: italic;
  font-weight: 700;
  text-align: center;
  transform: rotate(-2deg);
}

.demo-section {
  min-height: 100vh;
  padding: 82px 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 111, 45, 0.24), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(47, 182, 109, 0.18), transparent 27%),
    var(--dark);
  color: var(--paper);
}

.demo-heading,
.section-heading {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 34px;
}

.demo-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(280px, 0.6fr);
  gap: 24px;
  align-items: end;
}

.demo-heading h2,
.demo-heading p {
  margin-bottom: 0;
}

.demo-heading p:not(.eyebrow) {
  color: rgba(255, 249, 237, 0.78);
  font-size: 1.18rem;
  font-weight: 600;
}

.demo-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: 30px;
  align-items: start;
}

.demo-console {
  border: 4px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 12px 12px 0 #000;
  overflow: hidden;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 4px solid var(--line);
  background: var(--green-dark);
  color: var(--paper);
  font-family: var(--mono);
  font-weight: 700;
}

.console-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.console-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  color: var(--cream-2);
  font-size: 0.82rem;
}

.console-light::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--orange);
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
}

.builder-controls {
  display: grid;
  gap: 14px;
  align-content: start;
}

.field {
  display: grid;
  gap: 7px;
  font-family: var(--mono);
  font-weight: 700;
}

.field span,
.pill-group legend {
  font-size: 0.86rem;
}

.field-note {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.field-note[data-state="ready"] {
  color: var(--green-dark);
}

.field-note[data-state="error"] {
  color: var(--orange-dark);
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 3px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  padding: 12px;
  box-shadow: 3px 3px 0 var(--line);
}

.native-voice-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.voice-field {
  position: relative;
  z-index: 8;
}

.voice-picker {
  position: relative;
  font-family: var(--mono);
}

.voice-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 3px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 11px 12px;
  text-align: left;
  box-shadow: 3px 3px 0 var(--line);
  cursor: pointer;
}

.voice-trigger:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--line);
}

.voice-trigger span:first-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.voice-trigger strong,
.voice-trigger small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.voice-trigger small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
}

.voice-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: min(100%, 440px);
  border: 3px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--line);
  padding: 8px;
}

.voice-menu[hidden] {
  display: none;
}

.voice-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 8px 10px;
}

.voice-search input {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  font-family: var(--mono);
  font-size: 0.9rem;
}

.voice-search input:focus {
  outline: 0;
}

.voice-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

.voice-filters button {
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 9px;
  cursor: pointer;
}

.voice-filters button.active {
  background: #cfe7ff;
  box-shadow: 2px 2px 0 var(--line);
}

.voice-list {
  display: grid;
  max-height: 268px;
  overflow: auto;
  padding-right: 2px;
}

.voice-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 34px 34px;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  padding: 8px 6px;
  text-align: left;
  cursor: pointer;
}

.voice-option:hover,
.voice-option[aria-selected="true"] {
  background: #fff0a4;
}

.voice-radio {
  width: 16px;
  height: 16px;
  border: 2px solid #d9d9d9;
  border-radius: 999px;
  background: #f5f5f5;
}

.voice-option[aria-selected="true"] .voice-radio {
  border-color: var(--line);
  background: var(--green);
  box-shadow: inset 0 0 0 3px var(--paper);
}

.voice-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.voice-copy strong,
.voice-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.voice-copy small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
}

.voice-gender,
.voice-preview-button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
}

.voice-preview-button {
  background: #d8eaff;
  cursor: pointer;
}

.voice-preview-button:hover,
.voice-preview-button.is-playing {
  background: var(--green);
}

.voice-preview-popover {
  position: absolute;
  right: -228px;
  top: 112px;
  z-index: 40;
  width: 250px;
  border: 3px solid var(--line);
  border-radius: 10px;
  background: #f7f7f7;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--line);
  padding: 12px;
}

.voice-preview-popover[hidden] {
  display: none;
}

.voice-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.voice-preview-heading span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.voice-preview-popover p {
  min-height: 72px;
  margin: 0 0 10px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
  padding: 9px;
}

.voice-preview-meter {
  height: 6px;
  overflow: hidden;
  border: 2px solid #9ccfff;
  border-radius: 999px;
  background: #d8eaff;
}

.voice-preview-meter span {
  display: block;
  width: 0%;
  height: 100%;
  background: #58a9ff;
}

.voice-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 14px 6px;
}

textarea {
  resize: vertical;
}

.greeting-editor {
  position: relative;
  display: grid;
}

.greeting-editor textarea,
.greeting-highlight {
  grid-area: 1 / 1;
  min-height: 120px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.greeting-editor textarea {
  position: relative;
  z-index: 2;
  background: transparent;
  color: transparent;
  caret-color: var(--ink);
}

.greeting-editor textarea::selection {
  background: rgba(255, 111, 45, 0.34);
  color: transparent;
}

.greeting-highlight {
  z-index: 1;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  padding: 12px;
  pointer-events: none;
}

.greeting-highlight mark {
  border-radius: 6px;
  background: var(--yellow);
  box-shadow: 0 0 0 2px var(--line);
  padding: 0 3px;
}

.field-hint {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.pill-group legend {
  flex-basis: 100%;
  margin-bottom: 1px;
  font-family: var(--mono);
  font-weight: 700;
}

.pill-group label,
.toggle-row label {
  cursor: pointer;
}

.pill-group input,
.toggle-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pill-group span,
.toggle-row span,
.quick-buttons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 12px;
  box-shadow: 3px 3px 0 var(--line);
}

.pill-group input:checked + span,
.toggle-row input:checked + span {
  background: var(--green);
}

.quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-buttons button {
  cursor: default;
}

.toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.config-modules {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.config-module {
  border: 3px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--line);
  overflow: hidden;
}

.config-module summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  padding: 10px 12px;
}

.config-module summary::-webkit-details-marker {
  display: none;
}

.config-module summary::after {
  content: "+";
  font-size: 1rem;
}

.config-module[open] summary::after {
  content: "-";
}

.config-module summary small {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.76rem;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}

.config-grid label,
.config-switch,
.config-check {
  display: grid;
  gap: 5px;
  font-weight: 800;
}

.config-grid input,
.config-grid select,
.config-row select {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font: 700 0.82rem var(--mono);
  padding: 8px;
}

.config-switch {
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.config-list {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
  padding: 12px;
}

.config-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--cream-2);
  padding: 9px;
}

.config-row.compact {
  grid-template-columns: 1fr;
}

.config-check {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.config-check input,
.config-switch input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.config-check span {
  display: grid;
  gap: 2px;
}

.config-check strong {
  font-family: var(--mono);
  font-size: 0.82rem;
}

.config-check small,
.config-empty {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.config-empty {
  margin: 0;
}

.preview-panel {
  display: grid;
  gap: 14px;
  align-self: start;
  border: 4px solid var(--line);
  border-radius: 18px;
  background: var(--dark-2);
  color: var(--paper);
  padding: 16px;
  overflow-x: hidden;
  overflow-y: visible;
}

.preview-phone {
  border: 3px solid var(--line);
  border-radius: 22px;
  background: #050505;
  padding: 18px;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.phone-speaker {
  width: 72px;
  height: 8px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #30302b;
}

.phone-label {
  margin-bottom: 12px;
  color: var(--green);
  font-family: var(--mono);
  font-weight: 700;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 82px;
  margin-bottom: 14px;
}

.waveform span {
  width: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.waveform span:nth-child(1) { height: 26px; }
.waveform span:nth-child(2) { height: 56px; background: var(--green); }
.waveform span:nth-child(3) { height: 38px; }
.waveform span:nth-child(4) { height: 70px; background: var(--yellow); }
.waveform span:nth-child(5) { height: 46px; background: var(--green); }
.waveform span:nth-child(6) { height: 30px; }

.preview-phone ul,
.pricing-card ul,
.workflow-list {
  list-style: none;
  padding: 0;
}

.preview-phone ul {
  display: grid;
  gap: 8px;
  margin: 0;
}

.preview-phone li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 249, 237, 0.28);
  font-size: 0.9rem;
}

.preview-phone li:last-child {
  border-bottom: 0;
}

.preview-phone strong {
  color: var(--yellow);
}

.preview-notes {
  border: 3px solid var(--line);
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--ink);
  padding: 14px;
}

.note-title {
  margin-bottom: 6px;
  font-family: var(--mono);
  font-weight: 700;
}

.preview-notes p:last-child {
  margin-bottom: 0;
}

.preview-panel.is-active-call .preview-notes {
  display: none;
}

.demo-menu-card,
.call-progress-card,
.live-workflow-panel {
  border: 3px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px;
}

.demo-menu-card[hidden],
.live-workflow-panel[hidden] {
  display: none;
}

.demo-menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.demo-menu-card-top .note-title {
  margin-bottom: 0;
}

.demo-menu-card button,
.demo-menu-expand {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 9px;
  box-shadow: 2px 2px 0 var(--line);
  cursor: pointer;
}

.demo-menu-list {
  display: grid;
  max-height: 330px;
  overflow: auto;
  gap: 7px;
  padding-right: 2px;
}

.demo-menu-list article,
.demo-menu-helper {
  display: grid;
  gap: 2px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--cream-2);
  padding: 9px;
}

.demo-menu-list strong,
.demo-menu-helper strong {
  font-family: var(--mono);
  font-size: 0.88rem;
}

.demo-menu-list span,
.demo-menu-helper span,
.demo-menu-empty {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.demo-menu-empty {
  margin: 0;
}

.demo-menu-expand {
  width: 100%;
  margin-top: 10px;
}

@media (min-width: 901px) {
  .preview-panel {
    gap: 10px;
    padding: 12px;
  }

  .preview-phone {
    padding: 14px;
  }

  .phone-speaker {
    height: 6px;
    margin-bottom: 12px;
  }

  .phone-label {
    margin-bottom: 8px;
  }

  .waveform {
    height: 58px;
    margin-bottom: 10px;
  }

  .preview-phone ul {
    gap: 5px;
  }

  .preview-phone li {
    padding-bottom: 5px;
    font-size: 0.84rem;
  }

  .preview-notes,
  .demo-menu-card,
  .live-workflow-panel {
    padding: 10px;
  }

  .preview-notes p:not(.note-title) {
    font-size: 0.95rem;
    line-height: 1.28;
  }

  .demo-menu-card-top {
    margin-bottom: 7px;
  }

  .demo-menu-list {
    max-height: clamp(174px, 22vh, 230px);
    gap: 5px;
  }

  .demo-menu-list article,
  .demo-menu-helper {
    padding: 7px;
  }

  .demo-menu-expand {
    margin-top: 7px;
  }
}

.call-progress-card[hidden] {
  display: none;
}

.call-progress-card ol {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.call-progress-card li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.call-progress-card li span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--green);
  font-family: var(--mono);
  font-weight: 700;
}

.call-progress-card p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

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

.live-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.live-panel-top .note-title {
  margin-bottom: 0;
}

.live-panel-top span {
  max-width: 22ch;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
}

.live-order-grid {
  display: grid;
  gap: 12px;
}

.live-order-grid > div,
.live-waiting,
.live-transcript {
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--cream-2);
  padding: 10px;
}

.live-order-grid strong,
.live-state-list strong,
.live-menu-suggestions span {
  font-family: var(--mono);
}

.live-menu-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.live-menu-suggestions span {
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 8px;
}

.live-menu-suggestions small {
  color: var(--muted);
  font-family: var(--body);
}

.live-state-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.live-state-list li {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  gap: 10px;
  border-bottom: 1px dashed rgba(25, 25, 22, 0.35);
  padding-bottom: 7px;
}

.live-state-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.live-state-list span {
  font-weight: 800;
}

.reservation-card {
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--cream-2);
  padding: 10px;
}

.reservation-card li[data-field-state="waiting"] strong,
.reservation-card li[data-field-state="waiting"] span {
  color: #a8a29a;
}

.reservation-card li[data-field-state="filled"] strong,
.reservation-card li[data-field-state="filled"] span {
  color: var(--ink);
}

.reservation-card li[data-field-state="success"] strong,
.reservation-card li[data-field-state="success"] span {
  color: #16834a;
}

.reservation-card li[data-recent="true"] {
  border-radius: 6px;
  margin: -2px -4px 0;
  padding: 2px 4px 8px;
  background: rgba(52, 184, 114, 0.14);
}

.reservation-card li[data-recent="true"]:last-child {
  padding-bottom: 2px;
}

.live-waiting {
  display: grid;
  min-height: 172px;
  place-items: center;
  text-align: center;
}

.live-waiting p {
  margin: 0;
  max-width: 24ch;
  font-weight: 800;
}

.live-pulse {
  width: 44px;
  height: 44px;
  border: 4px solid var(--line);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 184, 114, 0.55);
  animation: pulse-ring 1.3s ease-out infinite;
}

.live-transcript {
  display: grid;
  gap: 8px;
  max-height: clamp(260px, 42vh, 520px);
  overflow: auto;
}

.live-transcript p {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.live-transcript span {
  color: var(--ink);
  font-family: var(--mono);
}

.preview-panel.is-post-call .preview-phone,
.preview-panel.is-post-call .preview-notes,
.preview-panel.is-post-call .demo-menu-card {
  display: none;
}

.preview-panel.is-post-call {
  background: #030303;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.preview-panel.is-post-call .button-call {
  display: none;
}

.live-workflow-panel[data-workflow="operations"] {
  border: 0;
  border-radius: 0;
  background: #000;
  color: #fff;
  padding: 0;
  min-width: 0;
  overflow: visible;
}

.operations-shell {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 720px;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
  gap: clamp(12px, 2.4vw, 18px);
  border-radius: 14px;
  background: #000;
  color: #fff;
  padding: clamp(16px, 2.8vw, 22px) clamp(12px, 2.4vw, 18px) 14px;
  overflow-x: hidden;
  overflow-y: auto;
}

.operations-statusbar,
.operations-header-row,
.operations-tabbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.operations-statusbar {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.operations-header-row {
  gap: 16px;
  min-width: 0;
}

.operations-kicker {
  margin: 0 0 2px;
  color: #2ca8ff;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operations-header-row h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.72rem, 3.2vw, 2.28rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

.operations-logout {
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #1b1b1d;
  color: #fff;
  font-family: var(--mono);
  font-weight: 900;
  font-size: 0.76rem;
  padding: 9px 11px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.operations-copy {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.76rem, 1.2vw, 0.86rem);
  font-weight: 750;
  line-height: 1.35;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1.8vw, 12px);
  min-width: 0;
}

.operation-tile {
  position: relative;
  display: grid;
  min-height: 116px;
  align-content: end;
  gap: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: #fff;
  font: 900 clamp(0.88rem, 1.45vw, 1.1rem)/1 var(--body);
  letter-spacing: 0;
  padding: clamp(11px, 1.8vw, 16px);
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 10px 22px rgba(0, 0, 0, 0.28);
}

.operation-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 54%);
  pointer-events: none;
}

.operation-tile.active {
  outline: 3px solid #fff;
  outline-offset: -5px;
}

.operation-tile-foodOrders {
  background: linear-gradient(135deg, #62c9ff, #2578e4);
}

.operation-tile-callLogs {
  background: linear-gradient(135deg, #ffb65f, #ff5f33);
}

.operation-tile-menu86 {
  background: linear-gradient(135deg, #ff5f33, #e0b829);
}

.operation-tile-voicemail {
  background: linear-gradient(135deg, #8ad978, #3da960);
}

.operation-tile-reservations {
  background: linear-gradient(135deg, #a982ff, #5a4ef0);
}

.operation-tile-waitList {
  grid-column: span 1;
  background: linear-gradient(135deg, #38d2bc, #0f7c8c);
}

.operation-status,
.operation-badge,
.operation-icon {
  position: absolute;
  z-index: 1;
}

.operation-status {
  top: 13px;
  left: 13px;
  max-width: calc(100% - 52px);
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.operation-badge {
  top: 12px;
  right: 12px;
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.operation-icon {
  top: 31px;
  right: 13px;
  color: rgba(255, 244, 148, 0.9);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.operation-tile span:last-child {
  position: relative;
  z-index: 1;
}

.operations-detail {
  display: grid;
  min-height: 210px;
  min-width: 0;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #101010;
  padding: 14px;
}

.operation-detail-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.operation-detail-heading .note-title {
  margin: 0;
  color: #fff;
}

.operation-detail-heading span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: right;
}

.operation-detail-card {
  display: grid;
  gap: 10px;
}

.operation-detail-card-transcript {
  min-height: 100%;
  grid-template-rows: auto auto minmax(360px, 1fr);
}

.operation-detail-card .live-state-list,
.operation-detail-card .reservation-card,
.operation-detail-card .live-transcript {
  background: #181818;
  color: #fff;
}

.operation-detail-card .live-state-list li {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.operation-detail-card .live-state-list strong,
.operation-detail-card .live-transcript span {
  color: #ffe86b;
}

.operation-detail-card .live-state-list span,
.operation-detail-card .live-transcript p,
.operation-empty,
.operation-summary {
  color: rgba(255, 255, 255, 0.78);
}

.operation-detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.operation-detail-list li {
  display: grid;
  gap: 3px;
  border-radius: 12px;
  background: #181818;
  padding: 10px;
}

.operation-detail-list strong {
  color: #fff;
}

.operation-detail-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.operation-empty,
.operation-summary {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
}

.operation-transcript {
  min-height: clamp(360px, 52vh, 620px);
  max-height: none;
}

.operation-transcript p {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.32;
}

.operation-transcript p:last-child {
  border-bottom: 0;
}

.operation-transcript span {
  line-height: 1.15;
}

.operation-detail-link {
  justify-self: start;
  border: 2px solid rgba(44, 168, 255, 0.45);
  border-radius: 999px;
  background: rgba(44, 168, 255, 0.12);
  color: #9ed7ff;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 9px 12px;
  text-decoration: none;
}

.operations-tabbar {
  justify-self: center;
  width: min(100%, 300px);
  margin-top: 2px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #171717;
  padding: 6px;
}

.operations-tabbar span {
  display: grid;
  min-width: 0;
  flex: 1 1 0;
  place-items: center;
  gap: 2px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.3rem;
  padding: 8px 10px;
}

.operations-tabbar span.active {
  background: #3b3b3d;
  color: #2ca8ff;
}

.operations-tabbar small {
  font-size: 0.68rem;
  font-weight: 800;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 184, 114, 0.55);
  }
  100% {
    box-shadow: 0 0 0 18px rgba(52, 184, 114, 0);
  }
}

.preview-panel[data-active-workflow="addedInfo"] .phone-label {
  color: var(--yellow);
}

.preview-panel[data-active-workflow="reservations"] .phone-label {
  color: #9ccfff;
}

.button-call {
  width: 100%;
  min-height: 66px;
  background: var(--orange);
  font-size: 1.25rem;
}

.demo-aside {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.starburst {
  position: relative;
  display: grid;
  width: min(100%, 390px);
  min-height: 390px;
  place-items: center;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.starburst::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--orange);
  clip-path: polygon(50% 0%, 58% 16%, 75% 8%, 78% 26%, 97% 25%, 87% 43%, 100% 56%, 80% 62%, 85% 82%, 64% 78%, 50% 100%, 37% 78%, 15% 82%, 21% 62%, 0% 56%, 14% 43%, 4% 25%, 22% 26%, 25% 8%, 42% 16%);
  content: "";
}

.starburst-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: 50%;
  max-width: 205px;
  place-items: center;
  transform: translateY(-2px);
}

.starburst span {
  display: block;
  width: 100%;
  color: var(--paper);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.starburst p {
  margin: 0;
  font-size: clamp(0.82rem, 0.95vw, 0.94rem);
}

.integration-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: min(calc(100% - 32px), var(--max));
  margin: 32px auto 0;
}

.integration-bubbles span {
  border: 3px solid #000;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  padding: 12px 16px;
  box-shadow: var(--shadow-small);
}

.text-section,
.proof-band,
.feature-section,
.workflow-section,
.agents-section,
.pricing-section,
.onboarding-section,
.contact-section {
  padding: 84px 0;
}

.two-column {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.85fr);
  gap: 48px;
  align-items: start;
}

.big-copy {
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 600;
}

.big-copy p {
  margin-bottom: 22px;
}

.message-stack {
  display: grid;
  gap: 14px;
  width: min(calc(100% - 32px), 880px);
  margin: 42px auto 0;
}

.message-stack article {
  border: 3px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: var(--shadow-small);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px;
}

.message-stack article:nth-child(2) {
  margin-left: 42px;
  background: var(--green);
}

.message-stack article:nth-child(3) {
  margin-left: 84px;
  background: var(--orange);
}

.message-stack span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--mono);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.proof-band {
  background: var(--cream-2);
  border-block: 4px solid var(--line);
}

.section-heading.wide {
  max-width: var(--max);
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 600;
}

.metric-grid,
.feature-grid,
.agent-grid,
.step-grid {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  gap: 18px;
}

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

.metric-grid article,
.feature-grid article,
.agent-card,
.pricing-card,
.step-grid article,
.contact-card {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.metric-grid article {
  min-height: 160px;
  padding: 22px;
}

.metric-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.metric-grid strong.metric-word-tight {
  font-size: clamp(1.85rem, 2.65vw, 2.55rem);
  overflow-wrap: normal;
  white-space: nowrap;
}

.metric-grid span {
  color: var(--muted);
  font-family: var(--mono);
  font-weight: 700;
}

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

.feature-grid article {
  min-height: 280px;
  padding: 24px;
}

.feature-grid article:nth-child(2n) {
  background: var(--cream);
}

.feature-grid article:nth-child(3n) {
  background: var(--cream-2);
}

.icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 26px;
  border: 3px solid var(--line);
  border-radius: 14px;
  background: var(--green);
  box-shadow: var(--shadow-small);
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-grid p,
.agent-card p,
.pricing-card p,
.step-grid p,
.workflow-list li {
  color: var(--muted);
  font-weight: 600;
}

.workflow-section {
  background: var(--dark);
  color: var(--paper);
}

.workflow-section .eyebrow {
  color: var(--yellow);
}

.workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 3px solid #000;
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  padding: 14px;
  box-shadow: var(--shadow-small);
}

.workflow-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 10px;
  background: var(--orange);
  font-family: var(--mono);
  font-weight: 700;
}

.workflow-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.22;
}

.workflow-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.agents-section {
  background: var(--cream);
}

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

.agent-card {
  min-height: 260px;
  padding: 22px;
}

.mini-mascot {
  position: relative;
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  border: 3px solid var(--line);
  border-radius: 26px;
  background: var(--yellow);
  box-shadow: var(--shadow-small);
}

.mini-mascot::before,
.mini-mascot::after {
  content: "";
  position: absolute;
  border: 3px solid var(--line);
}

.mini-mascot::before {
  inset: 25px 19px 27px;
  border-radius: 999px;
  background: var(--cream);
}

.mini-mascot::after {
  width: 36px;
  height: 10px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  left: 31px;
  bottom: 35px;
  border-radius: 999px;
}

.mini-mascot.ticket {
  background: var(--orange);
}

.mini-mascot.signal {
  background:
    radial-gradient(circle, var(--cream) 0 32%, transparent 33%),
    repeating-conic-gradient(var(--green) 0 18deg, var(--yellow) 18deg 36deg);
}

.mini-mascot.note {
  background: var(--green);
}

.pricing-section {
  background: var(--paper);
}

.pricing-card {
  width: min(calc(100% - 32px), 780px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
  background: var(--cream-2);
}

.pricing-card p {
  font-size: 1.18rem;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.pricing-card li {
  border: 3px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-family: var(--mono);
  font-weight: 700;
  padding: 12px;
}

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

.step-grid article {
  min-height: 220px;
  padding: 22px;
}

.step-grid span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 28px;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: var(--orange);
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 700;
}

.step-grid p {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-section {
  background: var(--dark);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  align-items: start;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--green-dark);
  color: var(--paper);
}

.contact-card p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 249, 237, 0.78);
  font-size: 1.18rem;
  font-weight: 600;
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.pilot-benefits {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 16px;
  border: 3px solid rgba(255, 249, 237, 0.18);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}

.pilot-benefits span {
  color: rgba(255, 249, 237, 0.88);
  font-family: var(--mono);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 4px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-small);
}

.contact-form .form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-family: var(--mono);
  font-weight: 700;
}

.contact-form label span {
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 3px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font: 700 1rem var(--body);
  padding: 12px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-status {
  display: block;
  min-height: 1.4em;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-status:empty {
  display: none;
}

.contact-status[data-state="loading"] {
  color: var(--ink);
}

.contact-status[data-state="success"] {
  display: grid;
  gap: 6px;
  margin: 4px 0 0;
  border: 3px solid var(--line);
  border-radius: 12px;
  background: #dff6b8;
  color: var(--ink);
  box-shadow: 4px 4px 0 #000;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.35;
  padding: 14px 16px;
}

.contact-status[data-state="success"] strong,
.contact-status[data-state="success"] span {
  display: block;
}

.contact-status[data-state="success"] strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 1.05rem;
  line-height: 1.1;
}

.contact-status[data-state="success"] span {
  color: #2f3a25;
  font-weight: 800;
}

.contact-status[data-state="error"] {
  color: #b93216;
}

.signup-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 208, 94, 0.24), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(107, 229, 146, 0.2), transparent 24rem),
    var(--cream);
}

.signup-main {
  padding: 142px var(--gutter) 88px;
}

.signup-section {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.signup-copy {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 18px;
}

.signup-copy h1 {
  max-width: 8ch;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.9;
}

.signup-copy p:not(.eyebrow) {
  max-width: 31rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 700;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 4px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-small);
}

.signup-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-family: var(--mono);
  font-weight: 700;
}

.signup-form label > span,
.signup-segmented legend {
  font-size: 0.9rem;
}

.signup-form input {
  background: var(--cream);
}

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

.signup-toggle,
.signup-flow-note {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 3px solid var(--line);
  border-radius: 14px;
  background: var(--green-soft);
  box-shadow: 3px 3px 0 var(--line);
}

.signup-flow-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: var(--green-soft);
  font-family: var(--mono);
  font-weight: 700;
}

.signup-toggle input {
  width: 24px;
  height: 24px;
  min-width: 24px;
  box-shadow: none;
  accent-color: var(--green);
}

.signup-toggle span {
  display: grid;
  gap: 4px;
}

.signup-toggle small,
.signup-flow-note small,
.signup-login-link {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.signup-business-fields {
  display: grid;
  gap: 14px;
}

.signup-business-fields[hidden] {
  display: none;
}

.signup-segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.signup-segmented legend {
  grid-column: 1 / -1;
  margin-bottom: 1px;
  font-family: var(--mono);
  font-weight: 700;
}

.signup-segmented label {
  display: block;
  cursor: pointer;
}

.signup-segmented input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.signup-segmented span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 3px 3px 0 var(--line);
}

.signup-segmented input:checked + span {
  background: var(--green);
}

.signup-status {
  min-height: 1.4em;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
}

.signup-status[data-state="loading"] {
  color: var(--blue);
}

.signup-status[data-state="success"] {
  color: var(--green-dark);
}

.signup-status[data-state="error"] {
  color: #b93216;
}

.signup-app-download {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 3px solid var(--line);
  border-radius: 16px;
  background: var(--green-soft);
  box-shadow: 3px 3px 0 var(--line);
}

.signup-app-download[hidden] {
  display: none;
}

.signup-app-download strong,
.signup-app-download small,
.signup-secondary-link {
  font-family: var(--mono);
  font-weight: 700;
}

.signup-app-download strong {
  font-size: 1.05rem;
}

.signup-app-download small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.app-store-badge {
  width: fit-content;
  max-width: 100%;
  line-height: 0;
}

.app-store-badge img {
  display: block;
  width: min(190px, 100%);
  height: auto;
}

.signup-secondary-link {
  width: fit-content;
  color: var(--blue);
  font-size: 0.82rem;
}

.signup-login-link a {
  color: var(--blue);
}

.site-footer {
  padding: 38px max(16px, calc((100vw - var(--max)) / 2));
  display: grid;
  background: var(--dark);
  color: var(--paper);
  border-top: 3px solid #000;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.65fr);
  gap: 34px 48px;
  align-items: start;
  width: 100%;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: var(--mono);
  font-size: 1.15rem;
}

.footer-brand p,
.site-footer p {
  margin: 0;
  color: rgba(255, 249, 237, 0.72);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 26px;
}

.footer-links nav {
  display: grid;
  gap: 9px;
  align-content: start;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-links span {
  color: rgba(255, 249, 237, 0.48);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 249, 237, 0.14);
  font-size: 0.88rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.modal-backdrop[hidden] {
  display: none;
}

.call-modal {
  position: relative;
  width: min(100%, 560px);
  border: 4px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 12px 12px 0 #000;
  padding: clamp(24px, 4vw, 38px);
}

.call-modal h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 10px;
  background: var(--orange);
  box-shadow: var(--shadow-small);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
}

.call-form {
  display: grid;
  gap: 18px;
  margin: 22px 0 14px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.modal-call-button {
  width: fit-content;
}

.modal-status {
  min-height: 1.4em;
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
}

.modal-status[data-state="error"] {
  color: #9f2a12;
}

.modal-status[data-state="success"] {
  color: #205d35;
}

.modal-fineprint {
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
}

.seo-page {
  background:
    linear-gradient(90deg, rgba(23, 23, 22, 0.04) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(23, 23, 22, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--paper);
}

.seo-main {
  padding: 64px 0 0;
}

.seo-hero,
.seo-section,
.seo-card-grid,
.seo-links,
.seo-breadcrumbs {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.seo-breadcrumbs {
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.seo-breadcrumbs a {
  text-decoration: underline;
}

.seo-hero {
  display: grid;
  gap: 22px;
  padding: clamp(36px, 6vw, 76px) 0;
}

.seo-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: clamp(2.55rem, 7vw, 5.75rem);
  line-height: 0.98;
}

.seo-hero p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 700;
}

.seo-section {
  padding: 42px 0;
}

.seo-section h2 {
  max-width: 780px;
  font-family: var(--mono);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.seo-section p,
.seo-section li,
.seo-section dd {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.seo-section ul {
  display: grid;
  gap: 10px;
  padding-left: 1.2rem;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 0 44px;
}

.seo-card-grid article,
.seo-callout,
.seo-faq dt,
.seo-faq dd,
.seo-links {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow-small);
}

.seo-card-grid article,
.seo-callout,
.seo-links {
  padding: 20px;
}

.seo-card-grid h3 {
  font-family: var(--mono);
  font-size: 1.15rem;
}

.seo-callout {
  width: min(calc(100% - 32px), 900px);
  margin: 12px auto 44px;
  background: var(--yellow);
}

.seo-callout strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 1.1rem;
}

.seo-faq {
  display: grid;
  gap: 12px;
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto 56px;
}

.seo-faq dt {
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 700;
}

.seo-faq dd {
  margin: -10px 0 8px;
  padding: 16px;
  background: var(--paper);
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 64px;
}

.seo-links a {
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--mono);
  font-weight: 700;
  padding: 10px 12px;
}

.legal-document .seo-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-document .seo-section {
  width: min(calc(100% - 32px), 980px);
}

.legal-section {
  border-top: 3px solid var(--line);
}

.legal-section h3 {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 1.18rem;
}

.legal-section address {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow-small);
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  line-height: 1.65;
  padding: 18px;
}

.legal-toc {
  align-items: flex-start;
}

.legal-table-wrap {
  max-width: 100%;
  margin: 18px 0;
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  border: 3px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow-small);
}

.legal-table th,
.legal-table td {
  border: 2px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  font-family: var(--mono);
}

@media (max-width: 860px) {
  .seo-card-grid {
    grid-template-columns: 1fr;
  }

  .seo-main {
    padding-top: 24px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .hero-grid,
  .demo-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .demo-heading {
    grid-template-columns: 1fr;
  }

  .demo-aside {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: start;
  }

  .starburst {
    width: min(100%, 320px);
    min-height: 235px;
  }

  .starburst-copy {
    width: 60%;
  }

  .starburst span {
    font-size: 1.55rem;
  }

  .starburst p {
    font-size: 0.9rem;
  }

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

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

  .site-footer {
    padding: 30px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }
}

@media (orientation: landscape) and (pointer: coarse) and (max-height: 620px) {
  .site-header {
    top: 8px;
    grid-template-columns: auto auto;
    width: calc(100% - 16px);
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
  }

  .site-nav.open,
  .header-actions.open {
    display: flex;
  }

  .site-nav.open {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions.open {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.open,
  .header-actions.open {
    display: flex;
  }

  .site-nav.open {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions.open {
    flex-wrap: wrap;
  }

  .hero,
  .demo-section,
  .text-section,
  .proof-band,
  .feature-section,
  .workflow-section,
  .agents-section,
  .pricing-section,
  .onboarding-section,
  .contact-section {
    padding: 58px 0;
  }

  .hero-grid,
  .two-column,
  .demo-layout,
  .demo-heading,
  .section-heading,
  .metric-grid,
  .feature-grid,
  .agent-grid,
  .step-grid,
  .integration-bubbles {
    width: calc(100% - 24px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 10.5vw, 3.75rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 8.6vw, 3.15rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero-lede {
    max-width: 31ch;
    font-size: 1.12rem;
    overflow-wrap: anywhere;
  }

  .rush-line {
    max-width: 33ch;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .button-xl {
    min-height: 58px;
    padding: 16px 20px;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-art {
    padding: 18px 0 8px;
  }

  .hero-art-frame {
    margin-bottom: 18px;
    padding: 8px;
  }

  .signal-burst {
    inset: 9% 0;
  }

  .builder-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .signup-main {
    padding: 118px var(--gutter) 58px;
  }

  .signup-section {
    grid-template-columns: 1fr;
  }

  .signup-copy {
    position: static;
  }

  .signup-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.75rem, 12vw, 4.6rem);
  }

  .signup-grid,
  .signup-segmented {
    grid-template-columns: 1fr;
  }

  .preview-panel.is-post-call {
    border-radius: 16px;
  }

  .operations-shell {
    max-height: none;
    min-height: min(780px, calc(100vh - 96px));
    padding: 18px 14px 14px;
  }

  .operations-header-row h3 {
    font-size: clamp(2.15rem, 8.8vw, 2.72rem);
  }

  .operations-copy {
    font-size: 0.86rem;
  }

  .operation-tile {
    min-height: 118px;
    font-size: clamp(1.02rem, 5vw, 1.34rem);
  }

  .operation-icon {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
  }

  .voice-menu {
    width: 100%;
  }

  .voice-preview-popover {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  .demo-menu-list {
    max-height: 245px;
  }

  .console-top,
  .preview-phone li,
  .config-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .config-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .config-grid {
    grid-template-columns: 1fr;
  }

  .demo-aside,
  .metric-grid,
  .feature-grid,
  .agent-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .message-stack article:nth-child(2),
  .message-stack article:nth-child(3) {
    margin-left: 0;
  }

  .workflow-list li {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .wordmark {
    font-size: 1rem;
  }

  .logo-tile {
    width: 42px;
    height: 42px;
  }

  .operations-shell {
    gap: 12px;
    padding: 16px 11px 12px;
  }

  .operations-header-row {
    gap: 10px;
  }

  .operations-header-row h3 {
    font-size: clamp(1.9rem, 8.5vw, 2.28rem);
  }

  .operations-logout {
    font-size: 0.68rem;
    padding: 8px 9px;
  }

  .operations-grid {
    gap: 8px;
  }

  .operation-tile {
    min-height: 104px;
    border-radius: 18px;
    font-size: clamp(0.9rem, 4.5vw, 1.08rem);
    padding: 11px;
  }

  .operation-status {
    top: 11px;
    left: 11px;
    font-size: 0.55rem;
  }

  .operation-icon {
    top: 30px;
    right: 10px;
    font-size: 2rem;
  }

  .operations-tabbar {
    width: 100%;
  }

  .operations-tabbar span {
    padding-inline: 6px;
  }

  .site-header {
    gap: 10px;
  }

  .rush-line {
    display: flex;
  }

  .pill-group span,
  .toggle-row span,
  .quick-buttons button {
    width: 100%;
  }

  .pill-group label,
  .toggle-row label,
  .quick-buttons button {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
