@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-bold.ttf") format("truetype");
  font-weight: 700 900;
  font-display: swap;
}
@font-face {
  font-family: Newsreader;
  src: url("/fonts/newsreader-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Newsreader;
  src: url("/fonts/newsreader-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  color-scheme: light;
  --canvas: #f7f6f2;
  --ink: #272a27;
  --muted: #72766e;
  --faint: #7c8077;
  --line: #e3e4dc;
  --accent: #bd5935;
  --mint: #47765d;
  --mint-strong: #3f6d55;
  --mint-dark: #e9eee7;
  --gold: #b66b3b;
  --danger: #c14e3e;
  --serif: Newsreader, Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
button:disabled {
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #be643e;
  outline-offset: 5px;
}
::selection {
  background: #e9c2a7;
  color: #292b27;
}
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.app-shell {
  width: min(1320px, calc(100% - 112px));
  margin: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 10;
  padding: 14px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  top: 10px;
}
.topbar {
  height: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -1.5px;
  font-size: 29px;
  font-weight: 700;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 34px;
}
.brand-mark svg {
  width: 29px;
  height: 29px;
  stroke-width: 2;
  stroke: var(--accent);
}
.brand-period {
  color: var(--accent);
}
.main-nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.main-nav a {
  padding: 12px 0;
  position: relative;
}
.main-nav a:hover,
.main-nav .nav-active {
  color: var(--ink);
}
.main-nav .nav-active:after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent);
  position: absolute;
  bottom: 0;
  left: 50%;
  border-radius: 50%;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #d3d5cb;
  border-radius: 6px;
  padding: 12px 17px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s;
}
.header-cta:hover {
  background: #edeee6;
}
.header-cta span {
  font-size: 18px;
}
.hero-copy {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
  gap: 50px;
  padding: 69px 0 59px;
}
.eyebrow,
.overline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  line-height: 1.6;
  text-transform: uppercase;
  margin: 0;
}
.eyebrow {
  color: #6e7569;
}
.accent-dot {
  display: inline-block;
  background: var(--accent);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 6.85vw, 100px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -4px;
  margin: 27px 0 0;
  position: relative;
}
h1 em {
  color: var(--accent);
  font-weight: 400;
}
.hero-star {
  display: inline-block;
  font-family: Georgia, serif;
  color: var(--accent);
  font-size: 60px;
  vertical-align: top;
  transform: rotate(-12deg);
  margin: 7px 0 0 35px;
}
.hero-aside {
  padding: 0 0 4px;
  max-width: 350px;
  justify-self: end;
}
.hero-description {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.hero-detail {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 25px;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 39px;
  font-size: 12px;
  font-weight: 700;
  padding: 0 0 9px;
  border-bottom: 1px solid #a8afa1;
}
.hero-link span {
  font-size: 20px;
  transition: transform 0.2s;
}
.hero-link:hover span {
  transform: translateY(3px);
}
.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  padding: 23px 0;
}
.capability-strip article {
  position: relative;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 5px 22px;
  border-left: 1px solid var(--line);
}
.capability-strip article:first-child {
  padding-left: 0;
  border-left: 0;
}
.capability-strip article:last-child {
  padding-right: 0;
}
.cap-icon {
  font-size: 26px;
  font-family: Arial, sans-serif;
  color: #6b7562;
}
.capability-strip strong,
.capability-strip small {
  display: block;
}
.capability-strip strong {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
.capability-strip small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 5px;
}
.cap-number {
  font-size: 9px;
  color: #919589;
  align-self: start;
  margin-left: auto;
}
.experience {
  padding-top: 47px;
}
.experience-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}
.label-line {
  display: inline-block;
  width: 19px;
  height: 1px;
  background: #aab1a2;
}
.experience-heading .eyebrow {
  font-size: 9px;
  letter-spacing: 1.5px;
}
.experience-heading h2 {
  font-size: 29px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.6px;
  margin: 11px 0 0;
}
.demo-disclosure {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--muted);
  padding-bottom: 5px;
}
.demo-disclosure > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #86947c;
}
.workspace-frame {
  border: 1px solid #dfe2d8;
  background: #fcfcf9;
  border-radius: 12px;
  box-shadow: 0 12px 35px -24px #555c4f26;
  overflow: hidden;
}
.workspace-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.business-identity {
  display: flex;
  align-items: center;
  gap: 11px;
}
.business-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #e9ebe0;
  border: 1px solid #dce0d1;
  font-family: var(--serif);
  font-size: 25px;
  border-radius: 7px;
  gap: 2px;
}
.business-avatar > span {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #777f67;
  margin-top: -8px;
}
.business-identity strong,
.business-identity small {
  display: block;
}
.business-identity strong {
  font-size: 12px;
  font-weight: 700;
}
.business-identity small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.workspace-meta {
  display: flex;
  align-items: center;
  gap: 26px;
}
.workspace-channel {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}
.workspace-channel .accent-dot {
  background: #809472;
  width: 5px;
  height: 5px;
}
.workspace-version {
  font-size: 9px;
  letter-spacing: 1.7px;
  color: #868d7e;
  border-left: 1px solid var(--line);
  padding-left: 25px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 0;
  padding: 10px;
}
.voice-panel,
.operations-panel {
  min-width: 0;
}
.voice-panel {
  --ink: #f3eee5;
  --muted: #9fa49b;
  --faint: #969e92;
  --line: #ffffff15;
  --mint: #edb887;
  --mint-strong: #f4ceb0;
  --danger: #ff9e8d;
  color: var(--ink);
  background: #202722;
  border-radius: 7px;
  padding: 28px 30px 22px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.voice-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 32%, #be865217, transparent 48%),
    linear-gradient(140deg, #ffffff02, transparent 65%);
}
.panel-heading,
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.voice-panel .overline {
  font-size: 9px;
  color: #a4ac9d;
  letter-spacing: 1.7px;
}
.panel-heading h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 31px;
  letter-spacing: -0.6px;
  margin: 8px 0 0;
}
.status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid #ffffff1c;
  border-radius: 5px;
  color: #b7bcaf;
  font-size: 9px;
  font-weight: 400;
  white-space: nowrap;
  background: #ffffff03;
}
.status-pill b {
  font-weight: 400;
}
.status-pill > span {
  width: 5px;
  height: 5px;
  background: #a4ae94;
  border-radius: 50%;
}
.status-pill.is-live {
  color: #c8e6b8;
  border-color: #7aa16066;
}
.status-pill.is-live > span {
  background: #accc94;
  box-shadow: 0 0 10px #aed491;
}
.status-pill.is-error {
  color: var(--danger);
}
.status-pill.is-error > span {
  background: var(--danger);
}
.voice-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 0 0;
}
.stage-coordinate {
  position: absolute;
  top: 51px;
  left: 0;
  text-align: left;
  font-size: 6px;
  line-height: 1.8;
  letter-spacing: 1.7px;
  color: #87927d;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.voice-orb {
  position: relative;
  width: 250px;
  height: 236px;
  display: grid;
  place-items: center;
  flex: none;
}
.orb-halo {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: #c48e5124;
  filter: blur(35px);
  animation: halo-breathe 7s ease-in-out infinite;
}
.orb-ring {
  position: absolute;
  border: 1px solid #e7c69c14;
  inset: 5px;
  border-radius: 50%;
  transform: rotate(-30deg) scaleY(0.77);
}
.ring-two {
  inset: 17px;
  transform: rotate(40deg) scaleY(0.9);
  border-color: #e7c69c0d;
}
.orb-core {
  width: 162px;
  height: 162px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(
    circle at 27% 25%,
    #f9e6c1 0%,
    #dec29a 12%,
    #bb8152 35%,
    #9a633d 51%,
    #443a2c 72%,
    #262e25 92%
  );
  box-shadow:
    inset 2px 2px 5px #fff0c782,
    inset -8px -12px 24px #192319cc,
    0 20px 35px #0004,
    0 0 34px #dbaa6920;
  animation: orb-float 8s ease-in-out infinite;
}
.orb-core:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(
    ellipse at 24% 28%,
    transparent 0 3px,
    #201e122c 4px,
    transparent 5px 7px
  );
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.orb-core:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #fff4cb48,
    transparent 43%,
    #1d2c2399 90%
  );
  box-shadow: inset 0 0 9px #f5d2a15c;
}
.orb-strands {
  position: absolute;
  inset: -8%;
  transform: rotate(-32deg);
  z-index: 1;
}
.orb-strands i {
  position: absolute;
  inset: 3%;
  border: 1px solid #ffe8b78c;
  border-radius: 50%;
  box-shadow: 1px 0 2px #b07f5c26;
}
.orb-strands i:nth-child(2) {
  inset: 3% 8%;
}
.orb-strands i:nth-child(3) {
  inset: 3% 14%;
}
.orb-strands i:nth-child(4) {
  inset: 3% 20%;
}
.orb-strands i:nth-child(5) {
  inset: 3% 26%;
}
.orb-strands i:nth-child(6) {
  inset: 3% 32%;
}
.orb-strands i:nth-child(7) {
  inset: 3% 38%;
}
.orb-strands i:nth-child(8) {
  inset: 3% 44%;
}
.orb-strands i:nth-child(9) {
  inset: 3% 48%;
}
.orb-satellite {
  position: absolute;
  right: 22px;
  top: 48px;
  width: 5px;
  height: 5px;
  background: #eed8aa;
  border-radius: 50%;
  box-shadow: 0 0 10px #ecca88;
}
.sound-bars {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 26px;
  opacity: 0;
  transition: opacity 0.3s;
}
.sound-bars i {
  display: block;
  width: 3px;
  height: 9px;
  background: #fff2d9;
  border-radius: 3px;
}
.voice-orb.is-active .sound-bars {
  opacity: 1;
}
.voice-orb.is-active .sound-bars i {
  animation: sound-wave 0.7s ease-in-out infinite alternate;
}
.sound-bars i:nth-child(2) {
  animation-delay: -0.3s !important;
}
.sound-bars i:nth-child(3) {
  animation-delay: -0.5s !important;
}
.sound-bars i:nth-child(4) {
  animation-delay: -0.2s !important;
}
.voice-orb.is-active .orb-halo,
.voice-orb.is-connecting .orb-halo {
  animation: halo-breathe 1.5s infinite;
}
.voice-orb.is-connecting .orb-ring {
  animation: rotate 4s linear infinite;
}
.assistant-name {
  font-size: 8px;
  letter-spacing: 2px;
  color: #b4bba9;
  margin: 0 0 7px;
}
.call-timer {
  font-size: 23px;
  letter-spacing: 2px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  margin: 0 0 12px;
  color: #e6e7de;
}
.stage-copy {
  font-size: 12px;
  line-height: 1.6;
  color: #aab1a2;
  min-height: 36px;
  max-width: 370px;
  margin: 0 auto 15px;
  text-wrap: pretty;
}
.call-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  border: 1px solid #eac49f;
  border-radius: 5px;
  background: #e8c49f;
  color: #282d24;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 700;
}
.primary-button:hover:not(:disabled) {
  background: #f3d8bd;
  transform: translateY(-2px);
}
.primary-button:disabled {
  background: #cfb392;
  border-color: #cfb392;
  color: #2b3027;
  opacity: 0.65;
}
.button-icon {
  display: grid;
  place-items: center;
}
.button-icon svg {
  width: 15px;
  height: 15px;
}
.icon-button,
.end-button {
  height: 44px;
  border: 1px solid #ffffff24;
  border-radius: 5px;
  background: transparent;
  color: #d5d7cb;
}
.icon-button {
  width: 44px;
  display: grid;
  place-items: center;
  flex: none;
}
.icon-button svg {
  width: 17px;
  height: 17px;
}
.end-button {
  padding: 0 13px;
  font-size: 11px;
  display: flex;
  gap: 17px;
  align-items: center;
}
.end-button span {
  font-size: 14px;
}
.icon-button:disabled,
.end-button:disabled {
  opacity: 0.32;
}
.icon-button:hover:not(:disabled),
.end-button:hover:not(:disabled) {
  background: #ffffff0a;
}
.mic-off {
  display: none;
}
.icon-button.is-muted .mic-on {
  display: none;
}
.icon-button.is-muted .mic-off {
  display: block;
  color: var(--danger);
}
.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 9px;
  line-height: 1.6;
  color: #a0a895;
  padding-top: 19px;
}
.privacy-note svg {
  width: 12px;
  height: 12px;
}
.operations-panel {
  padding: 28px 27px 0 33px;
}
.operations-panel .overline {
  font-size: 9px;
  letter-spacing: 1.7px;
  color: #7d8574;
}
.operations-panel h2 {
  font-size: 30px;
}
.refresh-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #dfe3d7;
  border-radius: 5px;
  background: transparent;
  color: #69745f;
}
.refresh-button:hover {
  background: #edf0e6;
}
.refresh-button svg {
  width: 15px;
  height: 15px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 27px 0 26px;
}
.metric-grid article {
  border-left: 1px solid #dde2d6;
  padding: 0 15px;
}
.metric-grid article:first-child {
  border: 0;
  padding-left: 0;
}
.metric-grid span,
.metric-grid strong,
.metric-grid small {
  display: block;
}
.metric-grid span {
  font-size: 11px;
  color: #757c6d;
}
.metric-grid strong {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -2px;
  margin: 7px 0 5px;
  line-height: 1.2;
}
.metric-grid small {
  font-size: 9px;
  color: #7b8372;
  white-space: nowrap;
}
.metric-grid i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b29162;
  vertical-align: middle;
  margin-right: 3px;
}
.metric-grid i.positive {
  background: #819675;
}
.section-title-row h3 {
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}
.live-label {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #6f815f;
}
.live-label i {
  width: 4px;
  height: 4px;
  background: #8a9d76;
  border-radius: 50%;
}
.activity-card {
  border-block: 1px solid var(--line);
  padding: 19px 0;
}
.activity-list {
  list-style: none;
  max-height: 138px;
  overflow: auto;
  margin: 18px 0 0;
  padding: 0;
}
.activity-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.activity-list li:first-child {
  padding-top: 0;
  border: 0;
}
.activity-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #edf0e7;
  color: #738467;
}
.activity-icon svg {
  width: 15px;
  height: 15px;
}
.activity-icon.is-loading svg {
  animation: rotate 1s linear infinite;
}
.activity-list strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin: 1px 0 4px;
}
.activity-list p {
  font-size: 10px;
  line-height: 1.8;
  color: #7d8376;
  margin: 0;
  max-width: 285px;
  overflow-wrap: anywhere;
}
.appointment-card {
  padding-top: 21px;
}
.count-badge {
  font-size: 9px;
  color: #7a8270;
  padding: 4px 7px;
  border: 1px solid #e1e6d7;
  border-radius: 4px;
}
.appointment-list {
  max-height: 165px;
  overflow: auto;
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 114px;
  text-align: center;
  color: #7c8572;
}
.empty-state > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe3d6;
  border-radius: 50%;
  color: #96a389;
  font-size: 14px;
  margin-top: 12px;
}
.empty-state p {
  font-size: 10px;
  margin: 9px 0 0;
  line-height: 1.6;
  max-width: 230px;
}
.appointment-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.appointment-avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: var(--mint-dark);
  color: var(--mint);
  font-size: 11px;
}
.appointment-details {
  min-width: 0;
}
.appointment-details strong,
.appointment-details span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.appointment-details strong {
  font-size: 11px;
  font-weight: 600;
}
.appointment-details span {
  font-size: 10px;
  margin-top: 3px;
  color: var(--muted);
}
.appointment-time {
  font-size: 10px;
  color: var(--mint);
}
.operations-footnote {
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: #87907e;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 8px 0 0;
  padding: 13px 0;
}
.operations-footnote > span {
  font-size: 13px;
}
.try-row {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 23px 25px;
  background: #f3f4ed;
}
.try-heading {
  flex: none;
}
.try-heading .overline {
  font-size: 8px;
  letter-spacing: 1.3px;
  color: #838b78;
}
.try-heading p {
  font-size: 11px;
  margin: 5px 0 0;
}
.prompt-chips {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.prompt-chips button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  font-size: 10px;
  white-space: nowrap;
  background: #fcfcf9;
  border: 1px solid #dfe3d5;
  border-radius: 5px;
  padding: 13px 10px;
  min-height: 44px;
}
.prompt-chips button > span:first-child {
  font-size: 8px;
  color: #98a088;
}
.prompt-chips button > span:last-child {
  color: #7f886f;
  font-size: 13px;
}
.prompt-chips button:hover,
.prompt-chips button.is-selected {
  border-color: #b19d81;
  background: #f5eddf;
  color: #8b5234;
  transform: translateY(-1px);
}
.transcript-panel {
  margin-top: 18px;
  padding: 25px 30px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fcfcf866;
}
.transcript-heading {
  display: flex;
  gap: 15px;
  align-items: center;
}
.transcript-symbol {
  font-family: var(--serif);
  font-size: 60px;
  height: 38px;
  color: #b4bea5;
  line-height: 1.2;
}
.transcript-heading .overline {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: #858d7a;
}
.transcript-heading h2 {
  font-size: 18px;
  font-family: var(--serif);
  font-weight: 400;
  margin: 5px 0 0;
}
.text-button {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 0;
  background: transparent;
  font-size: 11px;
  color: #738065;
  min-height: 44px;
}
.text-button:hover {
  color: var(--accent);
}
.transcript {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 72px;
  max-height: 300px;
  overflow: auto;
  margin: 18px 0 0;
  padding: 0 6px;
}
.transcript-empty {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #848b7a;
  font-size: 11px;
  text-align: center;
}
.transcript-empty svg {
  width: 17px;
  height: 17px;
}
.transcript-empty p {
  margin: 0;
}
.transcript-note {
  font-size: 9px;
  color: #828a78;
  text-align: center;
  margin: 12px 0 0;
}
.transcript-message {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.transcript-message strong {
  font-size: 10px;
  color: var(--mint);
  font-weight: 700;
}
.transcript-message.is-user strong {
  color: var(--accent);
}
.transcript-message p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.how-it-works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 77px 0 65px;
}
.how-it-works .eyebrow {
  font-size: 9px;
  letter-spacing: 1.3px;
}
.how-it-works h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -1.6px;
  line-height: 1.08;
  margin: 22px 0 0;
}
.how-it-works h2 em {
  color: #7d896e;
}
.how-it-works ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.how-it-works li {
  display: flex;
  gap: 22px;
}
.how-it-works li > span {
  font-size: 10px;
  color: var(--accent);
  padding-top: 4px;
}
.how-it-works h3 {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 6px;
}
.how-it-works p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.footer-brand {
  font-size: 23px;
  gap: 0;
}
footer p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}
footer > div {
  display: flex;
  gap: 24px;
  font-size: 11px;
  color: #697360;
}
footer a:hover {
  color: var(--accent);
}
.demo-footer {
  font-size: 9px;
  color: #808777;
  text-align: center;
  line-height: 1.8;
  margin: 0 0 27px;
}
@keyframes orb-float {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-7px) rotate(5deg);
  }
}
@keyframes halo-breathe {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
@keyframes sound-wave {
  from {
    height: 6px;
  }
  to {
    height: 26px;
  }
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-block: 84px 74px;
  }
  .hero-aside {
    margin-right: 35px;
  }
  .capability-strip article {
    padding-block: 10px;
  }
}
@media (max-width: 1200px) {
  .app-shell {
    width: calc(100% - 64px);
  }
  .hero-copy {
    gap: 25px;
  }
  h1 {
    font-size: 80px;
  }
  .hero-star {
    font-size: 48px;
    margin-left: 20px;
  }
  .capability-strip article {
    padding-inline: 14px;
    gap: 8px;
  }
  .capability-strip strong {
    font-size: 10px;
  }
  .cap-number {
    display: none;
  }
  .voice-panel {
    padding-inline: 24px;
  }
  .operations-panel {
    padding-inline: 23px;
  }
  .try-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .try-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .try-heading p {
    margin: 0;
  }
  .prompt-chips button {
    font-size: 11px;
    padding-inline: 14px;
  }
}
@media (max-width: 950px) {
  .hero-copy {
    grid-template-columns: 1.3fr 1fr;
  }
  .hero-aside {
    max-width: 285px;
  }
  h1 {
    font-size: 68px;
    letter-spacing: -3px;
  }
  .hero-star {
    font-size: 37px;
    margin-left: 15px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-detail {
    font-size: 11px;
  }
  .main-nav {
    gap: 18px;
    font-size: 11px;
  }
  .header-cta {
    font-size: 11px;
    gap: 12px;
  }
  .capability-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }
  .capability-strip article:nth-child(3) {
    border: 0;
    padding-left: 0;
  }
  .capability-strip strong {
    font-size: 12px;
  }
  .capability-strip small {
    font-size: 11px;
  }
  .cap-icon {
    width: 27px;
  }
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
  .voice-panel {
    padding: 24px 18px 19px;
  }
  .panel-heading {
    gap: 12px;
    flex-wrap: wrap;
  }
  .voice-panel .panel-heading h2 {
    font-size: 27px;
  }
  .operations-panel {
    padding: 24px 18px 0;
  }
  .status-pill {
    font-size: 8px;
  }
  .primary-button {
    font-size: 11px;
    padding-inline: 13px;
  }
  .end-button {
    gap: 8px;
    padding-inline: 10px;
  }
  .voice-orb {
    width: 230px;
  }
  .metric-grid article {
    padding-inline: 10px;
  }
  .operations-footnote {
    line-height: 1.7;
  }
  .stage-copy {
    min-height: 52px;
  }
  .how-it-works {
    gap: 35px;
  }
}
@media (max-width: 700px) {
  .app-shell {
    width: calc(100% - 36px);
  }
  .topbar {
    height: 77px;
    gap: 12px;
  }
  .brand {
    font-size: 25px;
    gap: 5px;
  }
  .brand-mark {
    width: 26px;
  }
  .brand-mark svg {
    width: 25px;
  }
  .main-nav {
    display: none;
  }
  .header-cta {
    font-size: 10px;
    padding: 10px 11px;
    gap: 12px;
  }
  .hero-copy {
    grid-template-columns: 1fr;
    padding: 43px 0 34px;
    gap: 27px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 1.3px;
  }
  h1 {
    font-size: clamp(42px, 11.6vw, 78px);
    letter-spacing: -2.6px;
    margin-top: 23px;
  }
  .hero-star {
    font-size: 40px;
    margin-left: 22px;
  }
  .hero-aside {
    justify-self: start;
    max-width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
  }
  .hero-description {
    font-size: 14px;
    margin: 0;
    line-height: 1.65;
  }
  .hero-detail {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 12px;
    margin: 0;
    line-height: 1.7;
  }
  .hero-link {
    font-size: 10px;
    gap: 12px;
    align-self: center;
    white-space: nowrap;
  }
  .capability-strip {
    padding: 19px 0;
    row-gap: 22px;
  }
  .capability-strip article {
    padding-inline: 11px;
    gap: 8px;
  }
  .capability-strip strong {
    font-size: 10px;
    white-space: normal;
  }
  .capability-strip small {
    font-size: 9px;
  }
  .cap-icon {
    font-size: 23px;
    width: 20px;
    flex: none;
  }
  .experience {
    padding-top: 35px;
  }
  .experience-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }
  .experience-heading h2 {
    font-size: 28px;
  }
  .demo-disclosure {
    font-size: 9px;
    padding: 0;
  }
  .workspace-bar {
    padding: 15px;
    gap: 10px;
  }
  .business-identity small {
    font-size: 9px;
  }
  .workspace-version {
    display: none;
  }
  .workspace-channel {
    font-size: 9px;
    gap: 5px;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
    padding: 7px;
  }
  .voice-panel {
    padding: 23px 21px;
  }
  .panel-heading {
    flex-wrap: nowrap;
  }
  .voice-panel .panel-heading h2 {
    font-size: 29px;
  }
  .status-pill {
    font-size: 9px;
  }
  .voice-stage {
    padding-top: 10px;
  }
  .voice-orb {
    width: 252px;
    height: 236px;
  }
  .orb-core {
    width: 167px;
    height: 167px;
  }
  .stage-copy {
    min-height: 37px;
    font-size: 12px;
    margin-bottom: 15px;
  }
  .primary-button {
    font-size: 12px;
    flex: 1;
  }
  .call-controls {
    gap: 7px;
  }
  .end-button {
    gap: 10px;
  }
  .privacy-note {
    font-size: 9px;
  }
  .operations-panel {
    padding: 28px 17px 0;
  }
  .metric-grid {
    margin-block: 24px;
  }
  .metric-grid span {
    font-size: 12px;
  }
  .metric-grid small {
    font-size: 10px;
  }
  .metric-grid strong {
    font-size: 35px;
  }
  .activity-list strong {
    font-size: 12px;
  }
  .activity-list p {
    font-size: 11px;
  }
  .section-title-row h3 {
    font-size: 12px;
  }
  .empty-state {
    min-height: 120px;
  }
  .empty-state p {
    font-size: 11px;
  }
  .operations-footnote {
    font-size: 10px;
    padding: 15px 0;
  }
  .try-row {
    padding: 20px 17px;
    gap: 14px;
  }
  .try-heading {
    display: block;
  }
  .try-heading p {
    margin-top: 6px;
    font-size: 12px;
  }
  .prompt-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .prompt-chips button {
    font-size: 11px;
    padding: 13px 10px;
    white-space: normal;
  }
  .transcript-panel {
    padding: 22px 18px 15px;
  }
  .transcript-empty {
    font-size: 11px;
    align-items: start;
    line-height: 1.8;
    text-align: left;
    padding-block: 12px;
  }
  .transcript-empty svg {
    margin-top: 4px;
  }
  .transcript-note {
    font-size: 9px;
    line-height: 1.7;
  }
  .how-it-works {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 0;
  }
  .how-it-works h2 {
    font-size: 43px;
    margin-top: 17px;
  }
  .how-it-works ol {
    gap: 23px;
  }
  .how-it-works h3 {
    font-size: 13px;
  }
  .how-it-works p {
    font-size: 12px;
  }
  footer {
    flex-wrap: wrap;
    padding: 23px 0;
    gap: 17px;
  }
  footer p {
    font-size: 10px;
  }
  footer > div {
    width: 100%;
    gap: 24px;
    font-size: 11px;
  }
  .demo-footer {
    text-align: left;
    font-size: 9px;
  }
}
@media (max-width: 370px) {
  .app-shell {
    width: calc(100% - 28px);
  }
  .hero-star {
    font-size: 30px;
    margin-left: 12px;
  }
  .hero-aside {
    display: block;
  }
  .hero-detail {
    margin-top: 10px;
  }
  .hero-link {
    margin-top: 18px;
  }
  .voice-panel {
    padding-inline: 14px;
  }
  .status-pill {
    font-size: 8px;
  }
  .primary-button {
    padding-inline: 9px;
    font-size: 11px;
  }
  .metric-grid small {
    font-size: 9px;
  }
  .header-cta {
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
