:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #f9fbff;
  --text: #0b1220;
  --muted: #5f6b7a;
  --line: #e1e8f0;
  --blue: #1768e5;
  --blue-strong: #0f57c9;
  --blue-soft: #e9f2ff;
  --green: #17a66a;
  --green-soft: #eaf8f1;
  --siri-blue: #28a8ff;
  --siri-cyan: #34f5c5;
  --siri-pink: #ff4fd8;
  --siri-violet: #7c5cff;
  --black: #05070a;
  --danger: #c2412d;
  --warning: #b7791f;
  --shadow: 0 18px 45px rgba(18, 31, 54, 0.09);
  --radius: 8px;
  --radius-lg: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 52%, #ffffff 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

button {
  border: 0;
}

.app-shell {
  min-height: 100vh;
}

.loading-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--muted);
}

.loading-mark,
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.loading-mark img,
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-brand,
.footer-brand {
  color: var(--text);
  text-decoration: none;
}

.dashboard-brand {
  padding: 4px;
  margin: -4px;
  border-radius: var(--radius);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.dashboard-brand:hover {
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.brand-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.brand-subtitle {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: grid;
  gap: 6px;
}

.nav-button {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--muted);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.nav-button:hover,
.nav-button.active {
  color: var(--text);
  background: var(--blue-soft);
}

.nav-button.locked {
  opacity: 0.52;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  display: grid;
  place-items: center;
}

.nav-button.active .nav-dot {
  background: var(--blue);
}

.sidebar-footer {
  margin-top: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  display: grid;
  gap: 10px;
}

.customer-status {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  display: grid;
  gap: 6px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.status-pill {
  padding: 4px 8px;
  border-radius: 99px;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 700;
  font-size: 0.76rem;
}

.main {
  min-width: 0;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.mobile-menu {
  display: none;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.77rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: 2rem;
  line-height: 1.1;
}

h2 {
  margin: 0;
  font-size: 1.3rem;
}

h3 {
  margin: 0;
  font-size: 1rem;
}

p {
  line-height: 1.55;
  margin-top: 0;
  margin-bottom: 0;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  font-weight: 750;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.button:hover {
  background: #171b22;
}

.button.primary {
  background:
    linear-gradient(var(--blue), var(--blue)) padding-box,
    linear-gradient(135deg, var(--siri-blue), var(--siri-pink), var(--siri-cyan)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 14px 34px rgba(23, 104, 229, 0.24);
}

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

.button.soft {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
}

.button.soft:hover {
  background: var(--surface-soft);
}

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

.button.danger-button {
  color: var(--danger);
  background: #fff4f1;
  border: 1px solid rgba(194, 65, 45, 0.2);
}

.button.danger-button:hover {
  background: #ffe9e4;
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

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

.dashboard-hero {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.dashboard-hero h2 {
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.dashboard-hero p {
  max-width: 700px;
  margin-top: 12px;
}

.dashboard-checklist {
  display: grid;
  gap: 10px;
}

.dashboard-checklist span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.advanced-details {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.advanced-details summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 850;
}

.advanced-details > p {
  margin: 10px 0 14px;
}

.status-banner,
.billing-hero,
.billing-rule {
  padding: 22px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.status-banner h2,
.billing-hero h2,
.billing-rule h2 {
  margin-top: 6px;
}

.status-banner.paused,
.billing-hero.paused {
  border-color: rgba(183, 121, 31, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 246, 223, 0.82), rgba(255, 255, 255, 0.78)),
    white;
}

.billing-hero.active {
  border-color: rgba(23, 166, 106, 0.22);
  background:
    linear-gradient(135deg, rgba(234, 248, 241, 0.82), rgba(255, 255, 255, 0.78)),
    white;
}

.billing-rule {
  background:
    linear-gradient(120deg, rgba(233, 242, 255, 0.82), rgba(255, 255, 255, 0.76)),
    white;
}

.launch-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.insight-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.insight-row {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 6px 12px;
  align-items: start;
}

.insight-row span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.insight-row p {
  grid-column: 2;
  font-size: 0.86rem;
}

.readiness-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.readiness-item span {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 850;
}

.readiness-item.ready span {
  color: var(--green);
  background: var(--green-soft);
}

.readiness-item.pending span {
  color: var(--warning);
  background: #fff6df;
}

.setup-preview {
  min-height: 190px;
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  align-content: start;
  gap: 12px;
}

.setup-preview span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: white;
  font-weight: 850;
  display: grid;
  place-items: center;
}

.setup-wizard {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.setup-rail {
  position: sticky;
  top: 24px;
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
}

.setup-progress {
  height: 8px;
  border-radius: 99px;
  background: var(--line);
  overflow: hidden;
}

.setup-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--siri-blue), var(--siri-cyan), var(--siri-pink));
  transition: width 220ms ease;
}

.setup-steps {
  display: grid;
  gap: 8px;
}

.setup-step {
  min-height: 52px;
  padding: 9px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  border: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  text-align: left;
}

.setup-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-weight: 850;
}

.setup-step.active {
  color: var(--text);
  background: var(--blue-soft);
  border-color: rgba(23, 104, 229, 0.28);
}

.setup-step.active span,
.setup-step.done span {
  background: var(--blue);
  color: white;
}

.setup-step.locked {
  cursor: not-allowed;
  opacity: 0.5;
}

.setup-card {
  min-height: 620px;
}

.setup-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-row {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.review-row span {
  color: var(--muted);
}

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

.setup-plan-choice {
  position: relative;
  min-height: 250px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  display: grid;
  align-content: start;
  gap: 10px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.setup-plan-choice:hover,
.setup-plan-choice:has(input:checked) {
  transform: translateY(-2px);
  border-color: rgba(23, 104, 229, 0.38);
  background: var(--blue-soft);
  box-shadow: 0 18px 42px rgba(23, 104, 229, 0.12);
}

.setup-plan-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.setup-plan-choice strong {
  font-size: 1.2rem;
}

.setup-plan-choice em {
  color: var(--text);
  font-size: 1.55rem;
  font-style: normal;
  font-weight: 850;
}

.setup-plan-choice small {
  color: var(--blue);
  font-weight: 850;
}

.setup-plan-grid.invalid .setup-plan-choice {
  border-color: var(--danger);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.panel:hover,
.plan:hover,
.metric:hover,
.ai-card:hover,
.lead-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(18, 31, 54, 0.14);
}

.panel-pad {
  padding: 20px;
}

.panel-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.metric {
  padding: 18px;
  min-height: 132px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  align-content: space-between;
  gap: 14px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.metric-label {
  color: var(--muted);
  font-size: 0.84rem;
}

.metric-value {
  font-weight: 850;
  font-size: 1.8rem;
}

.metric-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.setup-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.setup-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.setup-intro {
  padding: 34px;
  min-height: 600px;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: white;
  display: grid;
  align-content: space-between;
}

.setup-intro .muted {
  color: #c6d0dc;
}

.setup-proof {
  display: grid;
  gap: 10px;
}

.proof-item {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 750;
  font-size: 0.86rem;
}

.field-help {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--text);
  padding: 10px 12px;
  outline: none;
}

.field textarea {
  min-height: 98px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 104, 229, 0.12);
}

.field.invalid input,
.field.invalid textarea,
.field.invalid select {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(194, 65, 45, 0.1);
}

.info-box {
  padding: 14px;
  border: 1px solid rgba(23, 104, 229, 0.18);
  border-radius: var(--radius);
  background: rgba(233, 242, 255, 0.62);
  display: grid;
  gap: 6px;
}

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

.radio-card {
  position: relative;
}

.radio-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.radio-card span {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  display: grid;
  align-content: center;
  gap: 5px;
  cursor: pointer;
}

.radio-card strong {
  color: var(--text);
}

.radio-card small {
  color: var(--muted);
}

.radio-card input:checked + span {
  border-color: var(--blue);
  background: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(23, 104, 229, 0.08);
}

.lead-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.lead-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.lead-item.active {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.badge {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--blue);
  background: var(--blue-soft);
}

.badge.green {
  color: var(--green);
  background: var(--green-soft);
}

.badge.warning {
  color: var(--warning);
  background: #fff6df;
}

.badge.black {
  color: white;
  background: var(--black);
}

.conversation {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.message {
  max-width: 78%;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.message.assistant {
  margin-left: auto;
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.message.owner {
  margin-left: auto;
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.message-meta {
  display: block;
  margin-bottom: 4px;
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 0.75;
}

.reply-bar {
  padding: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.reply-bar input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
}

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

.timeline-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.action-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.phone-number {
  font-size: 1.7rem;
  font-weight: 850;
  color: var(--black);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.steps li::before {
  content: counter(step);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 850;
  display: grid;
  place-items: center;
}

.plan {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  display: grid;
  gap: 14px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.plan.featured {
  border-color: var(--blue);
  box-shadow: 0 14px 32px rgba(23, 104, 229, 0.13);
}

.billing-plan.current {
  border-color: rgba(23, 166, 106, 0.4);
  box-shadow: 0 18px 40px rgba(23, 166, 106, 0.12);
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-limit {
  width: fit-content;
  padding: 9px 11px;
  border: 1px solid rgba(23, 104, 229, 0.16);
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.price {
  font-size: 2rem;
  font-weight: 850;
}

.price small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 8px;
  color: var(--muted);
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 99px;
  background: var(--green);
  display: inline-block;
  vertical-align: middle;
}

.prompt-box {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
  color: var(--text);
  white-space: pre-wrap;
  line-height: 1.55;
  overflow-x: auto;
}

.glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 45px rgba(18, 31, 54, 0.1);
  backdrop-filter: blur(22px);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
  pointer-events: none;
}

.glass:hover::before {
  animation: glassSweep 900ms ease;
}

.glass > * {
  position: relative;
  z-index: 1;
}

.glass-dark {
  background: rgba(5, 7, 10, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 55px rgba(5, 7, 10, 0.22);
  backdrop-filter: blur(22px);
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-nav {
  position: sticky;
  top: 14px;
  z-index: 25;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-brand {
  color: var(--text);
  text-decoration: none;
}

.site-brand span:last-child {
  display: grid;
  gap: 2px;
}

.site-brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.site-links a,
.footer-links a,
.muted a {
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
}

.site-links a:hover,
.footer-links a:hover,
.muted a:hover {
  color: var(--blue);
}

.hero-section {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 28px;
  padding: 64px 0 42px;
  text-align: center;
}

.hero-section.landing-simple {
  min-height: calc(100vh - 88px);
  padding: 54px 0 30px;
  gap: 24px;
}

.hero-copy {
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 920px;
  animation: riseIn 520ms ease both;
}

.hero-copy h1 {
  max-width: 920px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.siri-word {
  background: linear-gradient(90deg, var(--siri-blue), var(--siri-cyan), var(--siri-pink), var(--siri-violet), var(--siri-blue));
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 28px rgba(40, 168, 255, 0.18));
  animation: siriText 4s ease-in-out infinite;
}

.mini-note {
  font-size: 0.88rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.trust-pills span {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: white;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

.hero-console {
  width: min(860px, 100%);
  min-height: 360px;
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  align-content: space-between;
  gap: 18px;
  animation: floatIn 680ms ease both;
}

.live-console {
  width: min(760px, 100%);
  min-height: 500px;
  align-content: start;
  text-align: left;
  animation: floatIn 680ms ease both;
}

.siri-strip {
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--siri-blue), var(--siri-cyan), var(--siri-pink), var(--siri-violet), var(--siri-blue));
  background-size: 240% 100%;
  animation: siriShift 4s linear infinite;
}

.hero-console-top {
  display: flex;
  gap: 8px;
}

.hero-console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.call-status {
  padding: 16px;
  border: 1px solid rgba(23, 104, 229, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-status p {
  color: var(--muted);
  font-size: 0.92rem;
}

.live-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(23, 166, 106, 0.12);
  animation: livePulse 1.6s ease-in-out infinite;
}

.voice-wave {
  min-height: 86px;
  padding: 16px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 79, 216, 0.16), transparent 23%),
    radial-gradient(circle at 45% 45%, rgba(40, 168, 255, 0.2), transparent 28%),
    radial-gradient(circle at 58% 50%, rgba(52, 245, 197, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(233, 242, 255, 0.74), rgba(234, 248, 241, 0.66)),
    white;
  border: 1px solid rgba(23, 104, 229, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: relative;
  overflow: hidden;
}

.voice-wave::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--siri-blue), var(--siri-cyan), var(--siri-pink), var(--siri-violet), var(--siri-blue));
  filter: blur(26px);
  opacity: 0.16;
  animation: siriSpin 7s linear infinite;
}

.voice-wave::after {
  content: none;
}

.voice-wave span {
  width: 8px;
  height: 54px;
  border-radius: 99px;
  background:
    linear-gradient(180deg, #28a8ff 0%, #34f5c5 42%, #ff4fd8 78%, #7c5cff 100%);
  box-shadow:
    0 10px 18px rgba(40, 168, 255, 0.16),
    0 0 20px rgba(255, 79, 216, 0.16);
  transform-origin: center;
  position: relative;
  z-index: 1;
  opacity: var(--voice-opacity, 0.85);
  transform: scaleY(var(--voice-scale, 0.48));
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.voice-wave span:nth-child(2n) {
  background: linear-gradient(180deg, #34f5c5 0%, #28a8ff 38%, #7c5cff 74%, #ff4fd8 100%);
}

.voice-wave span:nth-child(3n) {
  background: linear-gradient(180deg, #7c5cff 0%, #28a8ff 35%, #34f5c5 68%, #ff4fd8 100%);
}

.conversation-preview {
  display: grid;
  gap: 9px;
}

.message-bubble {
  width: fit-content;
  max-width: 82%;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 12px 30px rgba(18, 31, 54, 0.08);
  animation: bubbleIn 520ms ease both;
  font-size: 0.94rem;
}

.message-bubble.assistant {
  margin-left: auto;
  color: white;
  background:
    linear-gradient(var(--blue), var(--blue)) padding-box,
    linear-gradient(135deg, var(--siri-blue), var(--siri-pink), var(--siri-cyan)) border-box;
  border: 1px solid transparent;
  animation-delay: 520ms;
}

.message-bubble.customer:nth-child(3) {
  animation-delay: 960ms;
}

.message-bubble.assistant:nth-child(4) {
  animation-delay: 1.32s;
}

.message-bubble.customer:nth-child(5) {
  animation-delay: 1.72s;
}

.summary-card {
  padding: 16px;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(135deg, rgba(40, 168, 255, 0.2), rgba(255, 79, 216, 0.14)),
    var(--black);
  display: grid;
  gap: 6px;
  animation:
    summaryIn 620ms ease 2.05s both,
    summaryGlow 3.2s ease-in-out 2.6s infinite;
}

.summary-card span {
  color: #bfe6ff;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.summary-card strong {
  font-size: 1rem;
}

.hero-call {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  display: grid;
  gap: 10px;
  text-align: left;
}

.hero-call strong {
  font-size: 1.4rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  text-align: left;
}

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

.ai-flow span {
  min-height: 42px;
  border: 1px solid rgba(23, 104, 229, 0.2);
  border-radius: var(--radius);
  background: rgba(233, 242, 255, 0.74);
  color: var(--blue);
  font-weight: 850;
  display: grid;
  place-items: center;
  animation: signalPulse 2.4s ease-in-out infinite;
}

.ai-flow span:nth-child(2) {
  animation-delay: 220ms;
}

.ai-flow span:nth-child(3) {
  animation-delay: 440ms;
}

.site-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.site-section.narrow {
  width: min(860px, calc(100% - 32px));
  flex: 1;
}

.demo-strip {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.demo-strip h2 {
  margin-bottom: 6px;
}

.demo-phone {
  min-width: 260px;
  padding: 18px;
  border-radius: var(--radius);
  background: #07111f;
  color: white;
  display: grid;
  gap: 5px;
}

.demo-phone span,
.demo-phone small {
  color: #c9d6e3;
  font-size: 0.82rem;
  font-weight: 750;
}

.demo-phone strong {
  font-size: 1.25rem;
}

.trust-band {
  padding: 32px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 104, 229, 0.2), transparent 38%),
    #07111f;
  color: white;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
  overflow: hidden;
}

.trust-band .eyebrow {
  color: #7ddfc4;
}

.trust-band-copy {
  max-width: 780px;
  display: grid;
  gap: 10px;
}

.trust-band-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
}

.trust-band-copy p {
  color: #d7e2ee;
}

.proof-marquee {
  margin-top: 26px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent);
}

.proof-track {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: proofSlide 42s linear infinite;
}

.proof-card {
  width: 282px;
  min-height: 154px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  align-content: start;
  gap: 10px;
}

.proof-logo {
  min-height: 36px;
  color: white;
  font-size: 1.08rem;
  font-weight: 900;
  display: flex;
  align-items: center;
}

.proof-card span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 99px;
  background: rgba(125, 223, 196, 0.14);
  color: #8df2d5;
  font-size: 0.75rem;
  font-weight: 850;
}

.proof-card p {
  color: #d7e2ee;
  font-size: 0.9rem;
}

.industry-preview {
  padding-top: 28px;
}

.industry-preview .actions {
  margin-top: 18px;
}

.industry-card,
.trust-item {
  min-height: 230px;
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  align-content: start;
  gap: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 6px 8px;
  border-radius: 99px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.trust-hero {
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: grid;
  gap: 12px;
}

.trust-hero h1 {
  max-width: 920px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.trust-item span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 8px solid white;
  box-shadow: 0 0 0 1px rgba(23, 166, 106, 0.2);
}

.industry-grid {
  margin-bottom: 22px;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 22px;
}

.glass-band {
  margin-bottom: 42px;
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
}

.outcome-strip {
  padding: 16px 0 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.outcome-item {
  min-height: 126px;
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  align-content: start;
  gap: 8px;
  text-align: left;
}

.outcome-item strong {
  font-size: 1.02rem;
}

.ai-showcase {
  padding-top: 18px;
}

.landing-flow {
  padding: 36px 0 26px;
}

.landing-flow .section-heading {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.flow-line::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--siri-blue), var(--siri-cyan), var(--siri-pink));
  background-size: 220% 100%;
  animation: siriShift 4s linear infinite;
}

.flow-step {
  min-height: 148px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 40px rgba(18, 31, 54, 0.08);
  display: grid;
  align-content: start;
  gap: 8px;
  position: relative;
  overflow: hidden;
  animation: riseIn 520ms ease both;
}

.flow-step:nth-child(2) {
  animation-delay: 100ms;
}

.flow-step:nth-child(3) {
  animation-delay: 200ms;
}

.flow-step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  background: var(--black);
  font-weight: 900;
  display: grid;
  place-items: center;
}

.flow-step p {
  color: var(--muted);
}

.compact-cta {
  margin-bottom: 42px;
  padding: 28px;
  border-radius: var(--radius);
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.compact-cta h2,
.compact-cta p {
  max-width: 680px;
}

.ai-card {
  min-height: 230px;
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  align-content: start;
  gap: 14px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.ai-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--siri-blue), var(--siri-cyan), var(--siri-pink), var(--siri-violet));
  box-shadow: 0 0 0 8px rgba(23, 104, 229, 0.08);
  position: relative;
}

.ai-card-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: white;
  animation: breathe 1.8s ease-in-out infinite;
}

.auth-page {
  width: min(560px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
  flex: 1;
  display: grid;
  align-items: center;
}

.auth-card {
  padding: 26px;
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
}

.pricing-hero {
  padding: 30px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: grid;
  gap: 12px;
}

.pricing-hero h1 {
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.pricing-grid {
  margin-bottom: 18px;
}

.comparison-table {
  display: grid;
  overflow-x: auto;
}

.comparison-row {
  min-width: 720px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.comparison-row:first-child {
  border-top: 1px solid var(--line);
}

.comparison-row span {
  color: var(--muted);
}

.contact-faq {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 14px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 850;
}

.faq-item p {
  margin-top: 10px;
}

.divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.legal-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 18px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--muted);
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: 22px;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 14px;
  max-width: 430px;
}

.footer-brand span:last-child {
  display: grid;
  gap: 2px;
}

.footer-brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pills span {
  padding: 6px 9px;
  border: 1px solid rgba(23, 104, 229, 0.14);
  border-radius: 99px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.76rem;
  font-weight: 850;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links strong,
.footer-contact strong {
  color: var(--text);
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--blue);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(225, 232, 240, 0.82);
}

.site-footer p {
  margin: 0;
}

.app-footer {
  padding: 28px 0 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.chatbot-shell {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 28;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.chatbot-shell > * {
  pointer-events: auto;
}

.chatbot-panel {
  width: min(430px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 110px));
  border: 1px solid rgba(188, 205, 226, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 255, 0.94)) padding-box,
    linear-gradient(135deg, rgba(40, 168, 255, 0.6), rgba(52, 245, 197, 0.42), rgba(255, 79, 216, 0.42)) border-box;
  box-shadow: 0 28px 70px rgba(11, 18, 32, 0.18);
  overflow: hidden;
  animation: riseIn 180ms ease both;
  backdrop-filter: blur(22px);
}

.chatbot-header {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background:
    radial-gradient(circle at 15% 0%, rgba(52, 245, 197, 0.13), transparent 38%),
    radial-gradient(circle at 95% 0%, rgba(255, 79, 216, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.76);
}

.chatbot-header > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
}

.chatbot-header small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.78rem;
}

.chatbot-orb {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.95), transparent 24%),
    conic-gradient(from 30deg, var(--siri-blue), var(--siri-cyan), var(--siri-pink), var(--siri-violet), var(--siri-blue));
  box-shadow: 0 10px 26px rgba(40, 168, 255, 0.26);
}

.chatbot-icon-button,
.chatbot-launcher {
  cursor: pointer;
}

.chatbot-icon-button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  border: 1px solid var(--line);
  font-weight: 900;
}

.chatbot-messages {
  max-height: 370px;
  padding: 16px;
  overflow-y: auto;
  display: grid;
  gap: 11px;
  background:
    radial-gradient(circle at 20% 8%, rgba(52, 245, 197, 0.12), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(255, 79, 216, 0.09), transparent 28%),
    rgba(249, 251, 255, 0.72);
}

.chatbot-message {
  max-width: 90%;
  padding: 11px 13px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  box-shadow: 0 10px 25px rgba(18, 31, 54, 0.06);
}

.chatbot-message p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.chatbot-message.user {
  justify-self: end;
  background:
    linear-gradient(var(--blue), var(--blue)) padding-box,
    linear-gradient(135deg, var(--siri-blue), var(--siri-pink)) border-box;
  color: white;
  border-color: transparent;
  border-bottom-right-radius: 8px;
}

.chatbot-message.assistant {
  justify-self: start;
  border-bottom-left-radius: 8px;
}

.chatbot-message .button {
  margin-top: 10px;
}

.chatbot-message.typing {
  min-width: 68px;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chatbot-message.typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
  animation: typingPulse 900ms ease-in-out infinite;
}

.chatbot-message.typing span:nth-child(2) {
  animation-delay: 120ms;
  background: var(--siri-cyan);
}

.chatbot-message.typing span:nth-child(3) {
  animation-delay: 240ms;
  background: var(--siri-pink);
}

.chatbot-starters {
  padding: 0 16px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(249, 251, 255, 0.72);
}

.chatbot-starters button {
  padding: 8px 11px;
  border-radius: 999px;
  background: white;
  color: var(--blue);
  border: 1px solid #cfe0f6;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(18, 31, 54, 0.05);
}

.chatbot-form,
.chatbot-escalation {
  padding: 16px;
  border-top: 1px solid var(--line);
  background: white;
}

.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.chatbot-form input,
.chatbot-escalation input,
.chatbot-escalation textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  background: white;
  color: var(--text);
}

.chatbot-escalation {
  display: grid;
  gap: 10px;
}

.chatbot-escalation textarea {
  min-height: 96px;
  padding-top: 10px;
  resize: vertical;
}

.chatbot-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.chatbot-mail-link {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.chatbot-mail-link:hover {
  text-decoration: underline;
}

.chatbot-launcher {
  min-height: 54px;
  padding: 8px 16px 8px 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(188, 205, 226, 0.86);
  box-shadow: 0 18px 44px rgba(11, 18, 32, 0.15);
  backdrop-filter: blur(18px);
}

.chatbot-launcher .chatbot-orb {
  width: 36px;
  height: 36px;
}

@keyframes typingPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  box-shadow: var(--shadow);
  z-index: 30;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes glassSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes proofSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 7px rgba(23, 166, 106, 0.12);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(23, 166, 106, 0.04);
  }
}

@keyframes siriSpin {
  from {
    transform: rotate(0deg) scale(0.94);
  }
  to {
    transform: rotate(360deg) scale(0.94);
  }
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes summaryIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes summaryGlow {
  0%,
  100% {
    box-shadow: 0 14px 36px rgba(23, 104, 229, 0.14);
  }
  50% {
    box-shadow: 0 20px 50px rgba(255, 79, 216, 0.18);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    border-color: rgba(23, 104, 229, 0.18);
    transform: translateY(0);
  }
  50% {
    border-color: rgba(23, 166, 106, 0.55);
    transform: translateY(-2px);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.78);
    opacity: 0.72;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes siriShift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 240% 50%;
  }
}

@keyframes siriText {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .sidebar.open {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 20;
    display: flex;
    width: min(320px, 88vw);
  }

  .mobile-menu {
    display: inline-flex;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .setup-hero,
  .hero-section,
  .outcome-strip,
  .setup-wizard,
  .dashboard-hero,
  .setup-plan-grid,
  .flow-line {
    grid-template-columns: 1fr;
  }

  .flow-line::before {
    display: none;
  }

  .status-banner,
  .billing-hero,
  .billing-rule,
  .demo-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .setup-rail {
    position: static;
  }

  .hero-section {
    min-height: auto;
    padding-top: 38px;
    text-align: center;
  }

  .hero-copy {
    justify-items: center;
    margin: 0 auto;
  }

  .trust-pills {
    justify-content: center;
  }

  .setup-intro {
    min-height: auto;
    gap: 24px;
  }

  .site-nav {
    position: relative;
    top: 0;
    flex-wrap: wrap;
  }

  .site-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 2px;
  }

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

@media (max-width: 640px) {
  .main {
    padding: 16px;
  }

  .topbar,
  .panel-header,
  .lead-item,
  .reply-bar,
  .review-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .actions,
  .topbar {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .chatbot-shell {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-items: stretch;
  }

  .chatbot-panel {
    width: 100%;
    max-height: calc(100vh - 96px);
  }

  .chatbot-launcher {
    justify-self: end;
    width: auto;
  }

  .chatbot-form,
  .chatbot-actions {
    grid-template-columns: 1fr;
  }

  .chatbot-message {
    max-width: 94%;
  }

  .dashboard-hero {
    min-height: auto;
    padding: 20px;
  }

  .dashboard-hero h2 {
    font-size: 2.35rem;
  }

  .setup-card {
    min-height: auto;
  }

  .setup-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.55rem;
  }

  .hero-copy h1 {
    font-size: 3.15rem;
    line-height: 0.92;
  }

  .hero-section {
    width: min(100% - 24px, 1180px);
    padding: 34px 0 28px;
    gap: 20px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-console {
    min-height: auto;
    padding: 12px;
  }

  .live-console {
    min-height: auto;
  }

  .call-status {
    align-items: flex-start;
  }

  .message-bubble {
    max-width: 100%;
  }

  .hero-metrics,
  .ai-flow {
    grid-template-columns: 1fr;
  }

  .site-links {
    display: none;
  }

  .site-nav {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
  }

  .site-nav .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-nav .actions,
  .site-nav .button {
    width: 100%;
  }

  .site-nav .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-section {
    width: min(100% - 24px, 1180px);
    padding: 36px 0;
  }

  .outcome-strip {
    padding: 8px 0 28px;
  }

  .glass-band {
    padding: 20px;
  }

  .demo-strip,
  .trust-hero {
    padding: 20px;
  }

  .demo-phone {
    min-width: 0;
  }

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

  .insight-row p {
    grid-column: auto;
  }

  .trust-band {
    padding: 22px 14px;
  }

  .proof-marquee {
    mask-image: none;
  }

  .proof-card {
    width: 238px;
  }

  .pricing-hero {
    padding: 20px;
  }

  .comparison-row {
    min-width: 620px;
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }

  .auth-page,
  .setup-page,
  .site-section.narrow {
    width: min(100% - 24px, 860px);
  }

  .message {
    max-width: 100%;
  }

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