@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #050a12;
  --bg-2: #0b0f14;
  --surface: #0f172a;
  --surface-2: #111827;
  --surface-3: #172033;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.32);
  --blue: #2563eb;
  --blue-2: #38bdf8;
  --green: #16a34a;
  --orange: #f59e0b;
  --red: #ef4444;
  --text: #ffffff;
  --ink: #0b0f14;
  --muted: #9ca3af;
  --soft: #f8fafc;
  --soft-2: #eef4ff;
  --card-radius: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  font-family: Inter, "Segoe UI Variable Text", "Segoe UI", Roboto, Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body:has(.topbar),
body:has(.app-header),
body.has-fixed-header {
  padding-top: var(--topbar-offset, 76px);
}

:target {
  scroll-margin-top: calc(var(--topbar-offset, 76px) + 18px);
}

main,
section,
.wrap,
.hero-grid,
.config-layout,
.app-shell,
.app-main {
  max-width: 100%;
}

body.light-page {
  background: #f8fafc;
  color: var(--ink);
}

a {
  color: inherit;
}

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

.wrap {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar,
.app-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 18, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.brand-text {
  font-size: 22px;
  line-height: 1;
}

.brand-text span {
  color: var(--blue-2);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.brand-mark::before {
  content: "W";
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.is-active {
  position: relative;
  color: #fff;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.5);
}

.nav-links .button.is-active::after {
  display: none;
}

.view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(96, 165, 250, 0.34);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #dbeafe;
  cursor: pointer;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.view-toggle span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.3);
  color: #fff;
  line-height: 1;
}

.view-toggle:hover,
.view-toggle:focus-visible {
  border-color: rgba(56, 189, 248, 0.72);
  color: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 10px;
  background: linear-gradient(135deg, #0b7cff, var(--blue));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
  cursor: pointer;
  text-align: center;
}

.button.secondary,
.btn.secondary {
  background: rgba(15, 23, 42, 0.72);
  border-color: var(--line-strong);
  color: #fff;
  box-shadow: none;
}

.button.light,
.btn.light {
  background: #fff;
  color: var(--blue);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: none;
}

.hero-dark {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
  background:
    radial-gradient(circle at 72% 18%, rgba(37, 99, 235, 0.32), transparent 34%),
    linear-gradient(135deg, #030712 0%, #07111f 54%, #020617 100%);
}

.hero-product::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(520px, 1fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #bae6fd;
  font-size: 13px;
  font-weight: 700;
}

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

h1 {
  margin: 18px 0 20px;
  max-width: 760px;
  font-size: clamp(54px, 5.1vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #60a5fa;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 700;
}

.lead {
  max-width: 680px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.6;
}

.product-frame {
  position: relative;
  z-index: 1;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.92)),
    rgba(2, 6, 23, 0.9);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(37, 99, 235, 0.12);
  min-width: 0;
}

.product-frame-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.product-frame-top strong {
  margin-left: auto;
  color: #bfdbfe;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.ops-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 12px;
}

.console-main,
.console-side {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.68);
  min-width: 0;
}

.console-main {
  padding: 16px;
}

.console-side {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.console-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.72));
}

.console-row p,
.conversation-line p,
.handoff-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.45;
}

.signal {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue-2);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.1);
}

.conversation-line {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.18);
}

.conversation-line.customer {
  margin-left: 42px;
  background: rgba(51, 65, 85, 0.66);
}

.conversation-line span {
  color: #93c5fd;
  font-weight: 800;
  font-size: 12px;
}

.summary-panel {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.14), rgba(15, 23, 42, 0.62));
}

.summary-panel h3 {
  margin: 0 0 14px;
}

.summary-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.summary-panel dl div,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.partner-policy-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.partner-tool {
  display: grid;
  gap: 18px;
}

.partner-tool-head {
  display: grid;
  gap: 14px;
}

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

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

.partner-tool-grid-wide {
  grid-template-columns: 1.15fr 0.85fr;
}

.partner-editor-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.34);
}

.partner-editor-card h3 {
  margin-bottom: 12px;
}

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

.partner-fields label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.partner-textarea {
  min-height: 110px;
  resize: vertical;
}

.partner-preview-card {
  min-height: 100%;
}

.partner-preview-card .summary-row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.partner-preview-card .summary-row:last-child {
  border-bottom: 0;
}

.summary-panel dt {
  color: rgba(255, 255, 255, 0.54);
}

.summary-panel dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.mini-metric,
.handoff-card {
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
}

.mini-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.mini-metric strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.flow-visual {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.flow-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
  text-align: center;
}

.flow-card.featured {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.92), rgba(30, 64, 175, 0.82));
  border-color: rgba(56, 189, 248, 0.6);
}

.flow-icon,
.icon-bubble {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  color: #fff;
  font-size: 27px;
}

.ui-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
}

.icon-phone::before,
.icon-phone-off::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 5px;
  top: 5px;
  border: 4px solid currentColor;
  border-right-color: transparent;
  border-top-color: transparent;
  border-radius: 5px 0 5px 8px;
  transform: rotate(-42deg);
}

.icon-phone-off::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 13px;
  width: 23px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(38deg);
}

.icon-spark::before,
.icon-spark::after {
  content: "";
  position: absolute;
  inset: 3px 12px;
  border-radius: 99px;
  background: currentColor;
}

.icon-spark::after {
  transform: rotate(90deg);
}

.icon-summary::before {
  content: "";
  position: absolute;
  inset: 4px 5px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.icon-summary::after,
.icon-bars::before,
.icon-bars::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 8px;
  top: 10px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.icon-team::before,
.icon-users::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -9px 8px 0 -2px currentColor, 9px 8px 0 -2px currentColor;
}

.icon-team::after,
.icon-users::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 18px;
  width: 18px;
  height: 7px;
  border-radius: 12px 12px 4px 4px;
  background: currentColor;
}

.icon-trend::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 6px;
  width: 19px;
  height: 13px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: skew(-16deg);
}

.icon-trend::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(5deg);
}

.icon-bars::before {
  left: 5px;
  right: auto;
  top: 16px;
  width: 5px;
  height: 9px;
  box-shadow: 8px -8px 0 currentColor, 16px -14px 0 currentColor;
}

.icon-bars::after {
  display: none;
}

.icon-bolt::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 2px;
  width: 13px;
  height: 24px;
  background: currentColor;
  clip-path: polygon(48% 0, 100% 0, 64% 42%, 100% 42%, 34% 100%, 50% 54%, 12% 54%);
}

.icon-moon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: currentColor;
}

.icon-moon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 2px;
  width: 16px;
  height: 22px;
  border-radius: 50%;
  background: #1f1a3d;
}

.icon-bubble.risk {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.16);
}

.icon-bubble.night {
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.18);
}

.icon-bubble.busy {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.16);
}

.flow-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.flow-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
}

.section-light {
  padding: 66px 0;
  background: #f8fafc;
  color: var(--ink);
}

.section-dark {
  padding: 66px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.12), transparent 30%),
    var(--bg);
  color: #fff;
}

.section-title {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
  min-width: 0;
}

.section-title.align-left {
  margin-left: 0;
  text-align: left;
}

.section-title h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title p {
  color: #475569;
  font-size: 18px;
  line-height: 1.55;
}

.section-dark .section-title p {
  color: rgba(255, 255, 255, 0.68);
}

.stats-strip,
.trust-cards,
.cards-3,
.pricing-grid,
.demo-grid,
.dashboard-metrics,
.admin-stats {
  display: grid;
  gap: 18px;
}

.stats-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 10px;
  border: 1px solid #dbe3ef;
  border-radius: var(--card-radius);
  background: #fff;
}

.stat-card,
.problem-card,
.math-card,
.testimonial-card,
.pricing-card,
.demo-card,
.panel,
.mini-card,
.dashboard-card,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: rgba(15, 23, 42, 0.82);
}

.demo-card,
.pricing-card,
.panel,
.metric-card,
.math-card,
.config-panel,
.sim-card,
.checkout-panel,
.dashboard-card,
.admin-card {
  min-width: 0;
}

.stat-card.light,
.problem-card.light,
.math-card,
.testimonial-card.light,
.pricing-card.light,
.demo-card.light,
.panel.light {
  border-color: #dbe3ef;
  background: #fff;
  color: var(--ink);
}

.stat-card {
  display: block;
  align-items: center;
  padding: 24px 28px;
}

.stats-strip .icon-bubble {
  display: none;
}

.stat-number {
  color: var(--blue);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.stat-card p {
  margin: 6px 0 0;
  color: #334155;
  line-height: 1.45;
}

.source-line {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 13px;
  text-align: right;
}

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

.problem-card,
.math-card,
.testimonial-card,
.pricing-card,
.demo-card,
.panel {
  padding: 24px;
}

.testimonial-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.testimonial-card p {
  margin: 0;
  color: #475569;
  line-height: 1.55;
}

.problem-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.problem-card h3,
.pricing-card h3,
.demo-card h3 {
  margin-bottom: 10px;
}

.demo-card h3 {
  display: grid;
  gap: 8px;
  align-items: start;
  color: var(--ink);
  line-height: 1.25;
}

.demo-card {
  text-decoration: none;
}

.problem-card p,
.pricing-card p,
.demo-card p,
.math-card p {
  color: #475569;
  line-height: 1.55;
}

.problem-card p {
  margin-bottom: 0;
}

.problem-card .badge {
  align-self: end;
  width: fit-content;
  margin-top: 8px;
}

.problem-card.dark p,
.section-dark .panel p,
.section-dark .demo-card p {
  color: rgba(255, 255, 255, 0.66);
}

.problem-card.dark {
  min-height: 260px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.95));
}

.problem-card.dark h3 {
  color: #fff;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #dbe3ef;
  border-bottom: 1px solid #dbe3ef;
}

.step-card {
  position: relative;
  padding: 24px 22px;
  border-right: 1px solid #dbe3ef;
  background: transparent;
}

.step-card:last-child {
  border-right: 0;
}

.step-num {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
}

.example-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.example-grid .panel.light {
  padding: 28px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.16), 0 24px 60px rgba(37, 99, 235, 0.13);
}

.pricing-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
}

.pricing-grid > .pricing-card.featured {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.pricing-grid > .pricing-card:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.pricing-grid > .pricing-card:nth-of-type(3) {
  grid-column: 2;
  grid-row: 2;
}

.pricing-grid > .pricing-callout {
  grid-column: 1 / -1;
  grid-row: 3;
}

.pricing-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: center;
  margin-top: 0;
  padding: 26px 28px;
  border: 1px solid #bfd1ea;
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, #ffffff, #eef5ff);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.pricing-callout h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.1;
}

.pricing-callout p {
  color: #475569;
  line-height: 1.55;
}

.pricing-callout-side {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.check-list.compact {
  margin: 16px 0 0;
  gap: 8px;
}

.pricing-card .button + .table-action {
  margin-top: 10px;
}

.label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}

.price-value {
  margin: 10px 0;
  color: var(--blue);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: 0;
}

.price-value span {
  color: #475569;
  font-size: 18px;
  font-weight: 600;
}

.standard-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 0 6px;
  padding: 12px 14px;
  border: 1px solid #bfd1ea;
  border-radius: 8px;
  background: #f8fbff;
  color: #334155;
}

.standard-price > span {
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

.standard-price strong {
  color: #0f172a;
  font-size: 28px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.standard-price strong span {
  color: #475569;
  font-size: 14px;
  font-weight: 650;
}

.price-note {
  margin-top: -2px;
  color: #334155;
  font-weight: 650;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  color: #334155;
  line-height: 1.42;
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--blue);
}

.checkout-form {
  margin: 18px 0 0;
}

.checkout-form .button,
.checkout-form .btn {
  width: 100%;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #030712;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-cta {
  padding: 18px 22px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
}

.has-wo-widget .footer {
  padding-bottom: 112px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
  font-size: 13px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.78);
}

.legal-links a:hover {
  color: #fff;
}

.legal-footer-grid {
  align-items: start;
}

.legal-main {
  padding: 76px 0 90px;
}

.legal-main h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 68px);
}

.legal-main .lead {
  max-width: 900px;
  color: var(--muted);
}

.legal-section {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.legal-section h2 {
  color: var(--ink);
}

.legal-section p,
.legal-section li {
  color: #475569;
  line-height: 1.65;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-section a,
.legal-main a {
  color: var(--blue);
  font-weight: 700;
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.legal-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.legal-card span {
  color: #475569;
}

.page-hero {
  padding: 58px 0 26px;
}

.page-hero.light {
  background:
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.08), transparent 34%),
    #f8fafc;
  color: var(--ink);
}

.page-hero h1 {
  color: inherit;
  font-size: clamp(42px, 5vw, 64px);
}

.page-hero .lead {
  color: #475569;
}

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

.trust-cards .panel {
  padding: 18px 20px;
}

.trust-cards .panel h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.trust-cards .panel p {
  margin-bottom: 0;
  font-size: 14px;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: center;
}

.account-hero {
  padding-bottom: 80px;
}

.account-hero .eyebrow {
  border-color: rgba(37, 99, 235, 0.42);
  background: #dbeafe;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.account-panel {
  padding: 28px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.account-panel h2 {
  margin: 14px 0 10px;
  font-size: 28px;
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #f8fbff;
}

.account-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #475569;
  cursor: pointer;
  font-weight: 800;
}

.account-tabs button.is-active {
  background: var(--blue);
  color: #fff;
}

.account-form {
  display: none;
}

.account-form.is-active {
  display: grid;
  gap: 14px;
}

.account-form label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-weight: 700;
}

.account-dashboard {
  padding-top: 0;
}

.account-dashboard .app-top {
  margin-bottom: 14px;
}

.account-dashboard h2 {
  margin-bottom: 0;
}

.account-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.account-list div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  background: #f8fbff;
}

.account-list strong {
  color: var(--ink);
}

.account-list span {
  color: #475569;
  line-height: 1.45;
}

.admin-password-form,
.admin-password-login {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

body.modal-open {
  overflow: hidden;
}

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

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(8px);
}

.auth-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(90vh, 920px);
  padding: 24px;
  overflow: auto;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.98));
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.28);
}

.auth-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.auth-modal-card {
  display: grid;
  gap: 14px;
}

.auth-modal-card h3 {
  margin-bottom: 0;
}

.auth-modal-card .summary-row {
  padding: 14px 16px;
}

.auth-modal-card .button {
  justify-self: start;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 10px 0 20px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.search-input,
.field,
.select-field {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
}

.light-page .search-input {
  border-color: #dbe3ef;
  background: #fff;
  color: var(--ink);
}

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

.demo-preview {
  position: relative;
  display: grid;
  min-height: 178px;
  margin-bottom: 18px;
  padding: 22px 18px 18px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(145deg, #071a31, #030712 70%);
  color: #fff;
  overflow: hidden;
}

.demo-preview::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  opacity: 0.86;
}

.demo-preview strong,
.demo-preview span,
.demo-preview p {
  position: relative;
  z-index: 1;
}

.demo-preview p {
  max-width: 76%;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.demo-meta {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  color: #475569;
  font-size: 14px;
}

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

.demo-actions .button {
  min-height: 44px;
  padding: 0 12px;
  font-size: 14px;
}

.demo-call-strip,
.demo-live-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.demo-call-strip {
  padding: 12px;
  border: 1px solid #dbe3ef;
  border-radius: var(--card-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.demo-call-strip .button {
  min-height: 42px;
}

.demo-live-actions {
  max-width: 820px;
  padding: 14px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: var(--card-radius);
  background: rgba(15, 23, 42, 0.68);
}

.demo-live-actions span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.app-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 0%, rgba(37, 99, 235, 0.18), transparent 30%),
    var(--bg);
  color: #fff;
}

.app-header {
  border-bottom: 1px solid var(--line);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 0 14px;
}

.self-service-stepper {
  grid-template-columns: repeat(10, minmax(86px, 1fr));
}

.self-service-stepper .step-pill {
  cursor: pointer;
}

.step-pill {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.step-pill span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.step-pill.is-active,
.step-pill.is-done {
  color: #fff;
}

.step-pill.is-active span,
.step-pill.is-done span {
  border-color: var(--blue-2);
  background: var(--blue);
}

.config-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 22px;
  padding: 8px 0 54px;
}

.self-service-layout {
  align-items: start;
}

.setup-step {
  display: none;
}

.setup-step.is-current {
  display: block;
}

.setup-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.setup-method-card strong {
  font-size: 18px;
}

.policy-box,
.warning-box {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

.warning-box {
  border-color: rgba(239, 68, 68, 0.32);
  background: rgba(239, 68, 68, 0.1);
}

.policy-box p,
.warning-box p {
  margin-bottom: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.upload-ack {
  margin: 14px 0;
}

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

.materials-proof-grid > div {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.34);
}

.materials-proof-grid strong {
  color: #fff;
  line-height: 1.35;
}

.materials-proof-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.forwarding-guide {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 14px;
  background: rgba(14, 116, 144, 0.12);
}

.instruction-empty {
  padding: 12px 14px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.1);
  color: #fde68a;
  font-size: 13px;
  line-height: 1.45;
}

.forwarding-guide h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}

.provider-status {
  margin: 0;
  color: rgba(125, 211, 252, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.voice-preview {
  display: grid;
  gap: 12px;
  margin: 8px 0 4px;
  padding: 14px 16px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.42);
}

.voice-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}

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

.voice-preview-toggle .button.secondary {
  min-width: 0;
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 999px;
}

.voice-preview-toggle .button.secondary.is-active {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(59, 130, 246, 0.2));
  border-color: rgba(125, 211, 252, 0.55);
  color: #fff;
}

.voice-preview-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.setup-notice {
  display: none;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: rgba(15, 23, 42, 0.72);
  color: rgba(255, 255, 255, 0.78);
}

.setup-notice:not(:empty) {
  display: grid;
}

.setup-notice strong {
  color: #fff;
}

.setup-notice.is-error {
  border-color: rgba(245, 158, 11, 0.36);
  background: rgba(245, 158, 11, 0.1);
}

.setup-notice.is-success {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.setup-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: rgba(15, 23, 42, 0.72);
}

.setup-nav .button {
  min-width: 210px;
}

.setup-nav .button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.sticky-summary {
  position: sticky;
  top: 18px;
}

.app-body .section-title.align-left {
  margin-bottom: 18px;
}

.config-stack {
  display: grid;
  gap: 18px;
}

.config-panel,
.sim-card,
.checkout-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: rgba(15, 23, 42, 0.72);
}

.checkout-readiness {
  display: grid;
  gap: 14px;
  margin: 16px 0;
}

.checkout-status {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.5);
}

.checkout-status.is-ready {
  border-color: rgba(34, 197, 94, 0.38);
  background: rgba(22, 163, 74, 0.14);
}

.checkout-status.is-locked {
  border-color: rgba(148, 163, 184, 0.26);
}

.checkout-status p {
  margin: 10px 0 0;
}

.readiness-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.readiness-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.38);
  color: rgba(255, 255, 255, 0.8);
}

.readiness-list li strong {
  color: #fff;
  white-space: nowrap;
}

.readiness-list.is-complete li {
  border-color: rgba(34, 197, 94, 0.26);
}

.checkout-panel .button[disabled],
.checkout-panel .button[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  filter: grayscale(0.12);
}

.checkout-panel .button[hidden] {
  display: none;
}

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

.option-card,
.check-option,
.plan-option {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.72);
  cursor: pointer;
  min-width: 0;
  overflow-wrap: anywhere;
}

.option-card input,
.check-option input,
.plan-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.option-card:has(input:checked),
.check-option:has(input:checked),
.plan-option:has(input:checked) {
  border-color: rgba(56, 189, 248, 0.78);
  background: rgba(37, 99, 235, 0.16);
}

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

.field-label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.disabled-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.48);
}

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

.phone-mock {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #111827, #020617);
}

.transcript {
  display: grid;
  gap: 10px;
}

.bubble {
  max-width: 90%;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.94);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.bubble.customer {
  justify-self: end;
  background: rgba(51, 65, 85, 0.9);
}

.bubble.ai {
  background: rgba(37, 99, 235, 0.48);
}

.transcript.is-playing .bubble {
  opacity: 0.34;
}

.transcript .bubble.is-complete {
  opacity: 0.72;
}

.transcript .bubble.is-active {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.5), 0 14px 32px rgba(37, 99, 235, 0.22);
}

.demo-audio-player {
  display: grid;
  gap: 10px;
  width: min(100%, 540px);
}

.demo-audio-language-group,
.demo-audio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-audio-player .button {
  min-height: 42px;
}

.demo-audio-player .button[data-demo-lang] {
  position: relative;
  padding-inline: 16px;
  min-width: 108px;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.demo-audio-player .button.is-active {
  border-color: rgba(56, 189, 248, 0.78);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(11, 124, 255, 0.92));
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.32);
  transform: translateY(-1px);
}

.demo-audio-player .button.is-active::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  transform: translateY(-50%);
}

.demo-audio-player .button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.demo-audio-meter {
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.56);
}

.demo-audio-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
  transition: width 180ms ease;
}

.demo-audio-status {
  grid-column: 1 / -1;
  min-height: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.demo-audio-disclosure {
  grid-column: 1 / -1;
  color: rgba(226, 232, 240, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.transcript.is-paused .bubble.is-active {
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.42), 0 14px 32px rgba(245, 158, 11, 0.14);
}

.lead-summary {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
}

.upload-file-list {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.upload-file-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.6);
}

.upload-file-list span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-file-list strong {
  color: #86efac;
  font-size: 12px;
}

.upload-file-list .is-blocked strong {
  color: #fca5a5;
}

.forwarding-guide .lead-summary {
  padding: 0;
  border: 0;
  background: transparent;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.summary-row strong {
  color: #fff;
  overflow-wrap: anywhere;
  text-align: right;
}

.app-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
  background: var(--bg);
  color: #fff;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 28px 18px;
  border-right: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.72);
}

.side-nav {
  display: grid;
  gap: 8px;
}

.side-nav a {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.side-nav a.is-active {
  background: var(--blue);
  color: #fff;
}

.sidebar-account {
  margin-top: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.app-main {
  padding: 34px;
}

.admin-main {
  width: 100%;
  max-width: 100%;
}

.app-main h1,
.app-body .section-title h1 {
  margin: 0 0 10px;
  max-width: 860px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.app-main .lead,
.app-body .lead {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 17px;
}

.app-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.app-top > * {
  min-width: 0;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.panel-head h2 {
  margin-bottom: 6px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(22, 163, 74, 0.32);
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #86efac;
  font-size: 13px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-weight: 700;
}

.admin-tab.is-active {
  border-color: rgba(56, 189, 248, 0.42);
  background: linear-gradient(135deg, #0b7cff, var(--blue));
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.18);
}

.admin-tab:hover,
.admin-tab:focus-visible {
  outline: none;
  border-color: rgba(56, 189, 248, 0.58);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.admin-section {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-section[hidden] {
  display: none !important;
}

.admin-overview-grid,
.admin-dual-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-overview-card {
  min-height: 100%;
}

.admin-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.admin-quick-actions .button {
  min-height: 42px;
  padding: 0 14px;
}

#leads.dashboard-grid {
  grid-template-columns: 1fr;
}

#leads > .stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-metrics,
.admin-stats {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.admin-stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.dashboard-metrics {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
}

.metric-value {
  margin: 12px 0 4px;
  font-size: 30px;
  font-weight: 750;
}

.metric-value.small {
  font-size: 18px;
}

.admin-real .table-card {
  overflow-x: auto;
}

.config-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.table-card {
  position: relative;
  overflow: auto;
}

.table-card::before {
  content: "Scroll table";
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
}

.table-card table {
  min-width: 760px;
}

th,
td {
  padding: 13px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  text-align: left;
  color: rgba(255, 255, 255, 0.82);
}

th {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
}

.badge {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
}

.demo-card.light .badge {
  background: #e8f0ff;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.16);
}

.badge.green {
  background: rgba(22, 163, 74, 0.14);
  color: #86efac;
}

.badge.orange {
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
}

.badge.red {
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
}

.admin-stats {
  margin-bottom: 20px;
}

.progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.stack {
  display: grid;
  gap: 14px;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.mock-note {
  color: var(--muted);
  font-size: 13px;
}

.light-page .mock-note,
.section-light .mock-note,
.panel.light .mock-note,
.pricing-card.light .mock-note {
  color: #475569;
}

.table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: 8px;
  color: #bfdbfe;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.table-action:hover,
.table-action:focus-visible {
  outline: none;
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

details.row-actions {
  position: relative;
}

details.row-actions > summary {
  list-style: none;
  cursor: pointer;
}

details.row-actions > summary::-webkit-details-marker {
  display: none;
}

.row-actions-menu {
  display: grid;
  gap: 8px;
  min-width: 210px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.72);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
}

.row-action-item {
  width: 100%;
  justify-content: center;
}

.panel.light .table-action,
.section-light .table-action {
  border-color: rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.section-light .eyebrow,
.panel.light .eyebrow {
  border-color: rgba(37, 99, 235, 0.24);
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

html[data-view-theme="day"] .app-body,
html[data-view-theme="day"] .app-shell {
  background:
    radial-gradient(circle at 82% 0%, rgba(37, 99, 235, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 42%, #f8fafc 100%);
  color: var(--ink);
}

html[data-view-theme="day"] body:not(.light-page):not(.app-body):has(.hero-dark),
html[data-view-theme="day"] body:not(.light-page):not(.app-body):has(.hero),
html[data-view-theme="day"] body.demo-page,
html[data-view-theme="day"] .hero-dark,
html[data-view-theme="day"] .page-hero,
html[data-view-theme="day"] .hero,
html[data-view-theme="day"] .section-dark {
  background:
    radial-gradient(circle at 78% 8%, rgba(37, 99, 235, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 52%, #f8fafc 100%);
  color: var(--ink);
}

html[data-view-theme="day"] .hero-dark h1,
html[data-view-theme="day"] .page-hero h1,
html[data-view-theme="day"] .demo-page .hero h1,
html[data-view-theme="day"] .section-dark h2,
html[data-view-theme="day"] .section-dark h3,
html[data-view-theme="day"] .hero-dark .summary-panel h3,
html[data-view-theme="day"] .hero-dark .console-row strong,
html[data-view-theme="day"] .hero-dark .handoff-card strong,
html[data-view-theme="day"] .section-dark .panel h3,
html[data-view-theme="day"] .section-dark .demo-card h3 {
  color: var(--ink);
}

html[data-view-theme="day"] .hero-dark .lead,
html[data-view-theme="day"] .page-hero .lead,
html[data-view-theme="day"] .section-dark .section-title p,
html[data-view-theme="day"] .section-dark .panel p,
html[data-view-theme="day"] .section-dark .demo-card p,
html[data-view-theme="day"] .flow-card p,
html[data-view-theme="day"] .hero-dark .product-frame-top,
html[data-view-theme="day"] .hero-dark .console-row p,
html[data-view-theme="day"] .hero-dark .conversation-line p,
html[data-view-theme="day"] .hero-dark .handoff-card p,
html[data-view-theme="day"] .hero-dark .summary-panel dt,
html[data-view-theme="day"] .hero-dark .mini-metric span {
  color: #475569;
}

html[data-view-theme="day"] .demo-page .summary-list,
html[data-view-theme="day"] .demo-page .note p,
html[data-view-theme="day"] .demo-page .call-lines,
html[data-view-theme="day"] .demo-page .card-head {
  color: #475569;
}

html[data-view-theme="day"] .hero-kicker {
  color: #1d4ed8;
}

html[data-view-theme="day"] .hero-dark .eyebrow,
html[data-view-theme="day"] .section-dark .eyebrow,
html[data-view-theme="day"] .demo-page .eyebrow,
html[data-view-theme="day"] .account-hero .eyebrow,
html[data-view-theme="day"] .app-body .eyebrow,
html[data-view-theme="day"] .app-shell .eyebrow {
  border-color: rgba(37, 99, 235, 0.34);
  background: #bfdbfe;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

html[data-view-theme="day"] .product-frame,
html[data-view-theme="day"] .console-main,
html[data-view-theme="day"] .console-side,
html[data-view-theme="day"] .section-dark .panel,
html[data-view-theme="day"] .section-dark .demo-card,
html[data-view-theme="day"] .demo-page .panel,
html[data-view-theme="day"] .demo-page .note,
html[data-view-theme="day"] .demo-page .hero-visual,
html[data-view-theme="day"] .demo-page .call-card,
html[data-view-theme="day"] .demo-page .summary-card,
html[data-view-theme="day"] .flow-card,
html[data-view-theme="day"] .demo-live-actions {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

html[data-view-theme="day"] .problem-card.dark {
  border-color: rgba(37, 99, 235, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
    radial-gradient(circle at 50% 12%, rgba(37, 99, 235, 0.12), transparent 38%);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

html[data-view-theme="day"] .problem-card.dark h3 {
  color: var(--ink);
}

html[data-view-theme="day"] .problem-card.dark p {
  color: #334155;
}

html[data-view-theme="day"] .problem-card.dark .icon-bubble {
  opacity: 1;
  transform: scale(1.06);
}

html[data-view-theme="day"] .console-row,
html[data-view-theme="day"] .conversation-line,
html[data-view-theme="day"] .conversation-line.customer,
html[data-view-theme="day"] .mini-metric,
html[data-view-theme="day"] .handoff-card {
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: #f8fbff;
  color: var(--ink);
}

html[data-view-theme="day"] .summary-panel {
  border-color: rgba(22, 163, 74, 0.24);
  background: linear-gradient(135deg, rgba(240, 253, 244, 0.96), rgba(255, 255, 255, 0.94));
  color: var(--ink);
}

html[data-view-theme="day"] .summary-panel dd,
html[data-view-theme="day"] .mini-metric strong,
html[data-view-theme="day"] .product-frame-top strong {
  color: var(--ink);
}

html[data-view-theme="day"] .conversation-line span {
  color: #1d4ed8;
}

html[data-view-theme="day"] .demo-live-actions span {
  color: #475569;
}

html[data-view-theme="day"] .app-body .panel:not(.light) {
  border-color: rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

html[data-view-theme="day"] .app-body .panel:not(.light) .lead,
html[data-view-theme="day"] .app-body .panel:not(.light) .mock-note {
  color: #475569;
}

html[data-view-theme="day"] .app-header {
  border-bottom-color: rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

html[data-view-theme="day"] .topbar {
  border-bottom-color: rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

html[data-view-theme="day"] .brand,
html[data-view-theme="day"] .nav-links,
html[data-view-theme="day"] .nav-links a,
html[data-view-theme="day"] .app-header .brand,
html[data-view-theme="day"] .app-header .nav-links,
html[data-view-theme="day"] .app-header .nav-links a {
  color: #0f172a;
}

html[data-view-theme="day"] .nav-links a:hover,
html[data-view-theme="day"] .nav-links a.is-active {
  color: #0b55d9;
}

html[data-view-theme="day"] .button.secondary,
html[data-view-theme="day"] .btn.secondary {
  border-color: rgba(37, 99, 235, 0.24);
  background: #fff;
  color: #1d4ed8;
}

html[data-view-theme="day"] .footer {
  border-top-color: rgba(148, 163, 184, 0.24);
  background: #ffffff;
  color: #475569;
}

html[data-view-theme="day"] .footer-cta {
  border-color: rgba(37, 99, 235, 0.18);
  background: #f8fbff;
  color: var(--ink);
}

html[data-view-theme="day"] .footer .legal-links a {
  color: #334155;
}

html[data-view-theme="day"] .footer .legal-links a:hover {
  color: #1d4ed8;
}

html[data-view-theme="day"] .view-toggle {
  border-color: rgba(37, 99, 235, 0.28);
  background: #eff6ff;
  color: #1d4ed8;
}

html[data-view-theme="day"] .view-toggle span {
  background: rgba(37, 99, 235, 0.14);
  color: #1d4ed8;
}

html[data-view-theme="day"] .sidebar {
  border-right-color: rgba(148, 163, 184, 0.24);
  background: rgba(17, 24, 39, 0.94);
}

html[data-view-theme="day"] .app-main,
html[data-view-theme="day"] .app-body main.wrap {
  background: transparent;
  color: var(--ink);
}

html[data-view-theme="day"] .app-main .lead,
html[data-view-theme="day"] .app-body .lead,
html[data-view-theme="day"] .app-shell p,
html[data-view-theme="day"] .app-body .mock-note,
html[data-view-theme="day"] .app-shell .mock-note,
html[data-view-theme="day"] .summary-row,
html[data-view-theme="day"] .metric-card span,
html[data-view-theme="day"] .table-card::before {
  color: #475569;
}

html[data-view-theme="day"] .summary-row strong,
html[data-view-theme="day"] .app-main h1,
html[data-view-theme="day"] .app-main h2,
html[data-view-theme="day"] .app-main h3,
html[data-view-theme="day"] .app-body .section-title h1,
html[data-view-theme="day"] .metric-value,
html[data-view-theme="day"] th,
html[data-view-theme="day"] td {
  color: var(--ink);
}

html[data-view-theme="day"] .dashboard-card,
html[data-view-theme="day"] .admin-card,
html[data-view-theme="day"] .app-shell .panel,
html[data-view-theme="day"] .metric-card,
html[data-view-theme="day"] .config-panel,
html[data-view-theme="day"] .sim-card,
html[data-view-theme="day"] .checkout-panel,
html[data-view-theme="day"] .checkout-status,
html[data-view-theme="day"] .readiness-list li,
html[data-view-theme="day"] .lead-summary,
html[data-view-theme="day"] .option-card,
html[data-view-theme="day"] .check-option,
html[data-view-theme="day"] .plan-option,
html[data-view-theme="day"] .setup-nav,
html[data-view-theme="day"] .setup-notice,
html[data-view-theme="day"] .materials-proof-grid > div,
html[data-view-theme="day"] .forwarding-guide {
  border-color: rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

html[data-view-theme="day"] .option-card strong,
html[data-view-theme="day"] .check-option strong,
html[data-view-theme="day"] .plan-option strong,
html[data-view-theme="day"] .materials-proof-grid strong,
html[data-view-theme="day"] .forwarding-guide h3,
html[data-view-theme="day"] .setup-notice strong,
html[data-view-theme="day"] .readiness-list li strong {
  color: var(--ink);
}

html[data-view-theme="day"] .option-card span,
html[data-view-theme="day"] .option-card p,
html[data-view-theme="day"] .check-option span,
html[data-view-theme="day"] .plan-option span,
html[data-view-theme="day"] .materials-proof-grid p,
html[data-view-theme="day"] .checkout-status p,
html[data-view-theme="day"] .readiness-list li,
html[data-view-theme="day"] .policy-box,
html[data-view-theme="day"] .warning-box {
  color: #475569;
}

html[data-view-theme="day"] .policy-box,
html[data-view-theme="day"] .warning-box {
  background: #fffbeb;
}

html[data-view-theme="day"] .warning-box {
  background: #fef2f2;
}

html[data-view-theme="day"] .field,
html[data-view-theme="day"] .select-field,
html[data-view-theme="day"] textarea,
html[data-view-theme="day"] .app-shell input,
html[data-view-theme="day"] .app-shell select {
  border-color: rgba(148, 163, 184, 0.36);
  background: #fff;
  color: var(--ink);
}

html[data-view-theme="day"] .field::placeholder,
html[data-view-theme="day"] textarea::placeholder {
  color: #64748b;
}

html[data-view-theme="day"] .step-pill {
  border-color: rgba(148, 163, 184, 0.28);
  background: #fff;
  color: #475569;
}

html[data-view-theme="day"] .step-pill.is-active {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

html[data-view-theme="day"] th {
  color: #64748b;
}

html[data-view-theme="day"] td {
  border-bottom-color: rgba(148, 163, 184, 0.22);
}

html[data-view-theme="day"] .sidebar-account {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(15, 23, 42, 0.62);
  color: #dbeafe;
}

html[data-view-theme="day"] .sidebar-account strong {
  color: #fff;
}

html[data-view-theme="day"] .side-nav a {
  color: rgba(255, 255, 255, 0.76);
}

html[data-view-theme="day"] .side-nav a:hover {
  background: rgba(37, 99, 235, 0.14);
  color: #fff;
}

html[data-view-theme="day"] .side-nav a.is-active {
  background: var(--blue);
  color: #fff;
}

html[data-view-theme="day"] .app-body .table-action,
html[data-view-theme="day"] .app-shell .table-action {
  border-color: rgba(37, 99, 235, 0.34);
  background: #dbeafe;
  color: #1d4ed8;
}

html[data-view-theme="day"] .admin-tab {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: #334155;
}

html[data-view-theme="day"] .admin-tab.is-active {
  background: linear-gradient(135deg, #0b7cff, var(--blue));
  color: #fff;
}

html[data-view-theme="day"] .admin-tabs {
  border-color: rgba(148, 163, 184, 0.24);
}

html[data-view-theme="day"] .row-actions-menu {
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.96);
}

html[data-view-theme="day"] .clean-list {
  color: #334155;
}

html[data-view-theme="day"] .app-body .badge,
html[data-view-theme="day"] .problem-card .badge,
html[data-view-theme="day"] .app-shell .badge {
  border-color: rgba(37, 99, 235, 0.28);
  background: #dbeafe;
  color: #1d4ed8;
}

html[data-view-theme="day"] .app-body .badge.green,
html[data-view-theme="day"] .app-body .status-pill,
html[data-view-theme="day"] .app-shell .badge.green,
html[data-view-theme="day"] .app-shell .status-pill {
  border-color: rgba(21, 128, 61, 0.28);
  background: #dcfce7;
  color: #15803d;
}

html[data-view-theme="day"] .app-body .badge.orange,
html[data-view-theme="day"] .problem-card .badge.orange,
html[data-view-theme="day"] .app-shell .badge.orange {
  border-color: rgba(217, 119, 6, 0.28);
  background: #fef3c7;
  color: #92400e;
}

html[data-view-theme="day"] .app-body .badge.red,
html[data-view-theme="day"] .problem-card .badge.red,
html[data-view-theme="day"] .app-shell .badge.red {
  border-color: rgba(220, 38, 38, 0.26);
  background: #fee2e2;
  color: #991b1b;
}

.app-view-toggle {
  width: 100%;
  justify-content: center;
}

html[data-view-theme="night"] body.light-page,
html[data-view-theme="night"] .section-light,
html[data-view-theme="night"] .page-hero.light,
html[data-view-theme="night"] .legal-main {
  background:
    radial-gradient(circle at 85% 0%, rgba(37, 99, 235, 0.14), transparent 34%),
    #050a12;
  color: #f8fafc;
}

html[data-view-theme="night"] .section-title p,
html[data-view-theme="night"] .page-hero .lead,
html[data-view-theme="night"] .problem-card p,
html[data-view-theme="night"] .testimonial-card p,
html[data-view-theme="night"] .pricing-card p,
html[data-view-theme="night"] .demo-card p,
html[data-view-theme="night"] .math-card p,
html[data-view-theme="night"] .stat-card p,
html[data-view-theme="night"] .panel p,
html[data-view-theme="night"] .legal-main .lead,
html[data-view-theme="night"] .legal-section p,
html[data-view-theme="night"] .legal-section li,
html[data-view-theme="night"] .demo-meta,
html[data-view-theme="night"] .source-line,
html[data-view-theme="night"] .mock-note,
html[data-view-theme="night"] .light-page .mock-note,
html[data-view-theme="night"] .section-light .mock-note,
html[data-view-theme="night"] .panel.light .mock-note,
html[data-view-theme="night"] .pricing-card.light .mock-note {
  color: #cbd5e1;
}

html[data-view-theme="night"] .stat-card.light,
html[data-view-theme="night"] .problem-card.light,
html[data-view-theme="night"] .testimonial-card.light,
html[data-view-theme="night"] .pricing-card.light,
html[data-view-theme="night"] .demo-card.light,
html[data-view-theme="night"] .panel.light,
html[data-view-theme="night"] .stats-strip,
html[data-view-theme="night"] .demo-call-strip,
html[data-view-theme="night"] .legal-section,
html[data-view-theme="night"] .account-list div {
  border-color: rgba(96, 165, 250, 0.24);
  background: rgba(15, 23, 42, 0.82);
  color: #f8fafc;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

html[data-view-theme="night"] .pricing-callout {
  border-color: rgba(96, 165, 250, 0.24);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

html[data-view-theme="night"] .pricing-callout p,
html[data-view-theme="night"] .pricing-callout-side {
  color: #dbeafe;
}

html[data-view-theme="night"] .pricing-callout-side {
  border-color: rgba(96, 165, 250, 0.24);
  background: rgba(2, 6, 23, 0.58);
}

html[data-view-theme="night"] .testimonial-card blockquote,
html[data-view-theme="night"] .demo-card h3,
html[data-view-theme="night"] .legal-main h1,
html[data-view-theme="night"] .legal-section h2,
html[data-view-theme="night"] .account-list strong,
html[data-view-theme="night"] .filter-btn,
html[data-view-theme="night"] .light-page .search-input,
html[data-view-theme="night"] .search-input,
html[data-view-theme="night"] .field,
html[data-view-theme="night"] .select-field {
  color: #f8fafc;
}

html[data-view-theme="night"] .account-list span {
  color: #cbd5e1;
}

html[data-view-theme="night"] .account-tabs {
  border-color: rgba(96, 165, 250, 0.24);
  background: rgba(2, 6, 23, 0.5);
}

html[data-view-theme="night"] .account-tabs button {
  color: #cbd5e1;
}

html[data-view-theme="night"] .account-tabs button.is-active {
  background: var(--blue);
  color: #fff;
}

html[data-view-theme="night"] .account-form label {
  color: #dbeafe;
}

html[data-view-theme="night"] .light-page .search-input,
html[data-view-theme="night"] .search-input,
html[data-view-theme="night"] .field,
html[data-view-theme="night"] .select-field {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(2, 6, 23, 0.68);
}

html[data-view-theme="night"] .light-page .search-input::placeholder,
html[data-view-theme="night"] .search-input::placeholder,
html[data-view-theme="night"] .field::placeholder,
html[data-view-theme="night"] textarea::placeholder {
  color: #94a3b8;
}

html[data-view-theme="night"] .filter-btn,
html[data-view-theme="night"] .button.light,
html[data-view-theme="night"] .btn.light {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(15, 23, 42, 0.82);
  color: #dbeafe;
}

html[data-view-theme="night"] .filter-btn.is-active,
html[data-view-theme="night"] .button.light:hover,
html[data-view-theme="night"] .btn.light:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

html[data-view-theme="night"] .example-grid .panel.light {
  background: transparent;
  color: #f8fafc;
}

html[data-view-theme="night"] .math-card {
  border-color: rgba(96, 165, 250, 0.24);
  background: rgba(15, 23, 42, 0.86);
  color: #f8fafc;
}

html[data-view-theme="night"] .price-value span,
html[data-view-theme="night"] .standard-price,
html[data-view-theme="night"] .standard-price strong,
html[data-view-theme="night"] .standard-price strong span,
html[data-view-theme="night"] .price-note,
html[data-view-theme="night"] .check-list li {
  color: #dbeafe;
}

html[data-view-theme="night"] .standard-price {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(2, 6, 23, 0.46);
}

html[data-view-theme="night"] .demo-card.light .badge,
html[data-view-theme="night"] .section-light .eyebrow,
html[data-view-theme="night"] .panel.light .eyebrow,
html[data-view-theme="night"] .panel.light .table-action,
html[data-view-theme="night"] .section-light .table-action {
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(37, 99, 235, 0.18);
  color: #bfdbfe;
}

html[data-view-theme="night"] .demo-preview {
  border-color: rgba(96, 165, 250, 0.28);
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(145deg, #08203d, #020617 72%);
}

html[data-view-theme="night"] .view-toggle {
  border-color: rgba(250, 204, 21, 0.34);
  background: rgba(250, 204, 21, 0.1);
  color: #fef3c7;
}

html[data-view-theme="night"] .view-toggle span {
  background: rgba(250, 204, 21, 0.22);
  color: #fef3c7;
}


/* WelcomeOps share button (mobile only) */
.wo-share-btn {
  display: none;
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: #0b7cff;
  color: #fff;
  box-shadow: 0 8px 28px rgba(2, 6, 23, 0.35);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s, color 0.15s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.wo-share-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.45);
  color: #fff;
}
.wo-share-btn:active { transform: scale(0.95); }
.wo-share-btn svg { width: 22px; height: 22px; }
.wo-share-toast {
  display: none;
  position: fixed;
  top: 64px;
  right: 12px;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 28px rgba(2, 6, 23, 0.35);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.wo-share-toast.is-visible { opacity: 1; }
@media (max-width: 640px) {
  .wo-share-btn { display: flex; }
  .wo-share-toast { display: block; }
  .wo-share-btn { width: 44px; height: 44px; }
  .wo-share-toast { top: 60px; right: 12px; }
}

.wo-widget {
  position: fixed;
  right: 22px;
  right: 12px;
  z-index: 60;
  font-family: inherit;
}

.wo-chat-launcher,
.wo-call-toggle {
  border: 1px solid rgba(56, 189, 248, 0.32);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  color: #fff;
  box-shadow: 0 22px 54px rgba(2, 6, 23, 0.42), 0 0 0 1px rgba(37, 99, 235, 0.18);
  cursor: pointer;
}

.wo-chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 16px 10px 12px;
  text-align: left;
}

.wo-chat-launcher strong,
.wo-call-toggle strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
}

.wo-chat-launcher small {
  display: block;
  margin-top: 3px;
  color: rgba(226, 232, 240, 0.68);
  font-size: 12px;
}

.wo-pulse {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 34% 30%, #60a5fa, transparent 32%), linear-gradient(135deg, #0b7cff, #2563eb);
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.14);
}

.wo-chat-panel,
.wo-call-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 18px;
  background: radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.22), transparent 34%), linear-gradient(180deg, #0f172a, #020617);
  color: #fff;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.54);
}

.wo-chat-head,
.wo-call-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.wo-status {
  display: block;
  margin-bottom: 4px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 750;
}

.wo-icon-button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  cursor: pointer;
}

.wo-chat-body {
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow-y: auto;
  padding: 16px;
}

.wo-message {
  max-width: 88%;
  padding: 12px 13px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.86);
}

.wo-message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.wo-message.user {
  justify-self: end;
  background: rgba(37, 99, 235, 0.34);
  border-color: rgba(96, 165, 250, 0.35);
}

.wo-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.wo-message-actions a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.22);
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.wo-chat-quick {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 14px;
}

.wo-chat-quick button {
  flex: 0 0 auto;
  min-height: 32px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.wo-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.66);
}

.wo-chat-form input {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
}

.wo-chat-form button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b7cff, #2563eb);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}

.wo-chat-form .wo-voice-button {
  border: 1px solid rgba(96, 165, 250, 0.32);
  background: rgba(15, 23, 42, 0.82);
  color: #bfdbfe;
}

.wo-chat-form .wo-voice-button.is-listening {
  border-color: rgba(34, 197, 94, 0.6);
  background: rgba(34, 197, 94, 0.16);
  color: #dcfce7;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.wo-call-widget {
  display: none;
}

.wo-call-panel {
  padding-bottom: 12px;
}

.wo-call-panel p {
  margin: 0;
  padding: 14px 16px 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.wo-call-list {
  display: grid;
  gap: 8px;
  padding: 8px 16px 4px;
}

.wo-call-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.74);
  color: #fff;
  text-decoration: none;
}

.wo-call-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.wo-call-list strong {
  color: #bfdbfe;
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Legacy demo pages */
.hero {
  padding: 70px 0 46px;
  background: linear-gradient(135deg, #030712, #07111f);
}

.demo-page .hero h1 {
  color: #fff;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 24px;
  align-items: start;
}

.note,
.hero-visual,
.call-card,
.summary-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
}

.note,
.summary-card {
  padding: 18px;
}

.hero-visual {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.call-lines {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.summary-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1100px) {
  .hero-grid,
  .config-layout,
  .dashboard-grid,
  .admin-layout,
  .example-grid,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .flow-visual,
  .ops-console,
  .demo-grid,
  .cards-3,
  .pricing-grid,
  .pricing-callout,
  .steps-row,
  .dashboard-metrics,
  .admin-stats,
  .admin-overview-grid,
  .admin-dual-grid,
  .config-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-tool-grid,
  .partner-tool-grid-wide,
  .partner-fields {
    grid-template-columns: 1fr;
  }

  .ops-console {
    grid-template-columns: 1fr;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .admin-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .auth-modal {
    padding: 16px;
  }

  .auth-modal-panel {
    padding: 20px;
  }

  .auth-modal-grid {
    grid-template-columns: 1fr;
  }

  .self-service-stepper {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .self-service-stepper .step-pill {
    flex: 0 0 96px;
  }
}

@media (max-width: 760px) {
  body:has(.topbar),
  body:has(.app-header) {
    padding-top: var(--topbar-offset, 168px);
  }

  .wrap {
    width: min(100% - 40px, 1320px);
    overflow-x: visible;
  }

  .hero-grid,
  .hero-copy,
  .config-layout,
  .config-stack,
  .dashboard-grid,
  .admin-layout,
  .app-top,
  .account-layout,
  .account-panel,
  .section-title,
  .panel,
  .dashboard-card,
  .metric-card,
  .math-card,
  .config-panel,
  .sim-card,
    .checkout-panel {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    overflow-x: visible;
    padding-bottom: 0;
    font-size: 13px;
  }

  .nav-links a:not(.button) {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .nav-links .button {
    grid-column: span 2;
    width: auto;
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .nav-links .button[href^="mailto:"] {
    grid-column: 1 / -1;
    width: 100%;
  }

  .nav-links .view-toggle {
    grid-column: span 2;
    justify-content: center;
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .nav-links a.is-active::after {
    bottom: 0;
  }

  .self-service-stepper {
    display: block;
    padding-bottom: 0;
    overflow: visible;
  }

  .self-service-stepper .step-pill {
    display: none;
  }

  .self-service-stepper .step-pill.is-active {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .hero-dark {
    padding: 72px 0 48px;
  }

  h1 {
    max-width: calc(100vw - 40px);
    font-size: 31px;
    line-height: 1.06;
    word-break: break-word;
    white-space: normal;
  }

  .lead,
  .hero-kicker {
    width: 100%;
    max-width: calc(100vw - 40px);
    font-size: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

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

  .actions .button {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .flow-visual,
  .ops-console,
  .stats-strip,
  .trust-cards,
  .demo-grid,
  .cards-3,
  .pricing-grid,
  .pricing-callout,
  .steps-row,
  .setup-method-grid,
  .hours-grid,
  .dashboard-metrics,
  .admin-stats,
  .admin-overview-grid,
  .admin-dual-grid,
  .config-cards,
  .option-grid,
  .field-grid,
  .tone-row,
  .plan-row,
  .materials-proof-grid,
  .demo-layout,
  .partner-tool-grid,
  .partner-tool-grid-wide,
  .partner-fields {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .demo-call-strip,
  .demo-live-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .demo-live-actions > *,
  .demo-live-actions .button,
  .demo-live-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .filter-bar,
  .setup-nav,
  .app-top,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
    display: flex;
  }

  .panel-head {
    flex-direction: column;
  }

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

  .admin-quick-actions .button {
    width: 100%;
  }

  .setup-nav .button {
    width: 100%;
    min-width: 0;
  }

  .admin-tabs {
    gap: 8px;
  }

  .admin-tab {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .stepper {
    display: flex;
    overflow-x: auto;
  }

  .sticky-summary {
    position: static;
  }

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

  .legal-card-grid {
    grid-template-columns: 1fr;
  }

  .legal-section {
    padding: 20px;
  }

  .step-pill {
    min-width: 110px;
  }

  .app-main {
    padding: 22px 14px;
  }

  .app-main h1,
  .app-body .section-title h1,
  .page-hero h1 {
    max-width: calc(100vw - 40px);
    font-size: 30px;
    line-height: 1.05;
    word-break: break-word;
    white-space: normal;
  }

  .app-main .lead,
  .app-body .lead {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .product-frame {
    max-width: calc(100vw - 40px);
    padding: 8px;
    border-radius: 16px;
    overflow: hidden;
  }

  .product-frame-top {
    flex-wrap: wrap;
  }

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

  .standard-price strong {
    white-space: normal;
  }

  .price-value {
    font-size: 50px;
  }

  .price-value span {
    font-size: 16px;
  }

  .pricing-callout {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .pricing-grid > .pricing-card.featured,
  .pricing-grid > .pricing-card:nth-of-type(2),
  .pricing-grid > .pricing-card:nth-of-type(3),
  .pricing-grid > .pricing-callout {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-callout h3 {
    font-size: 24px;
  }

  .console-row {
    grid-template-columns: 10px minmax(0, 1fr);
  }

  .console-row > span:last-child {
    grid-column: 2;
  }

  .conversation-line,
  .conversation-line.customer {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .summary-panel dl div,
  .summary-row {
    display: grid;
    gap: 4px;
  }

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

  #leads > .stack {
    grid-template-columns: 1fr;
  }

  .config-panel,
  .sim-card,
  .checkout-panel,
  .option-card,
  .check-option,
  .plan-option {
    padding: 16px;
  }

  .example-grid .math-card {
    width: auto;
    max-width: 100%;
  }

  .config-panel h2,
  .sim-card h2,
  .checkout-panel h2 {
    font-size: 22px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .option-card span,
  .check-option span,
  .plan-option span,
  .field-label,
  .disabled-row {
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .field,
  .select-field,
  .search-input {
    min-width: 0;
  }

  .row-actions-menu {
    min-width: 0;
  }

  .steps-row {
    border-bottom: 0;
  }

  .step-card {
    border-right: 0;
    border-bottom: 1px solid #dbe3ef;
    padding: 20px 0;
  }

  .wo-widget {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    left: 14px;
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 10px;
    pointer-events: none;
  }

  .has-wo-widget .footer {
    padding-bottom: calc(126px + env(safe-area-inset-bottom, 0px));
  }

  .has-wo-widget main {
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }

  .wo-widget > * {
    pointer-events: auto;
  }

  .wo-call-widget {
    display: block;
  }

  .wo-call-toggle,
  .wo-chat-launcher {
    width: 100%;
    min-height: 54px;
    padding: 9px 12px;
  }

  .wo-call-toggle {
    display: grid;
    align-items: center;
    text-align: left;
  }

  .wo-call-toggle > span {
    color: #93c5fd;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .wo-chat-launcher small {
    display: none;
  }

  .wo-pulse {
    width: 28px;
    height: 28px;
    border-radius: 10px;
  }

  .wo-chat-panel,
  .wo-call-panel {
    right: 0;
    bottom: 68px;
    width: calc(100vw - 28px);
    max-height: min(70dvh, calc(100vh - 128px));
  }

  .wo-chat-panel {
    grid-column: 1 / -1;
  }

  .wo-chat-body {
    max-height: min(330px, calc(100vh - 330px));
  }

  .wo-chat-form {
    grid-template-columns: minmax(0, 1fr) 58px 64px;
  }

  .wo-chat-form button {
    padding: 0 10px;
  }
}

@media (max-width: 390px) {
  .demo-actions {
    grid-template-columns: 1fr;
  }

  .demo-actions .button,
  .demo-actions .btn {
    width: 100%;
  }

  .price-value {
    font-size: 44px;
  }
}
