:root {
  color-scheme: light;
  --ink: #08111f;
  --ink-2: #122033;
  --paper: #eef3f8;
  --paper-2: #dfe8f2;
  --surface: #ffffff;
  --surface-2: #e8eef6;
  --line: #cbd7e4;
  --muted: #667789;
  --teal: #0ea5a3;
  --teal-dark: #08716f;
  --mint: #99f6e4;
  --amber: #f59e0b;
  --coral: #f43f5e;
  --blue: #2563eb;
  --violet: #7c3aed;
  --lime: #a3e635;
  --red: #a33a2b;
  --shadow: 0 28px 70px rgba(8, 17, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(8, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 17, 31, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(238, 243, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  font-size: 0.78rem;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a,
.site-footer a {
  font-size: 0.94rem;
  font-weight: 700;
}

.header-action,
.button,
.icon-button,
.scenario-tab,
.example-tab,
.quick-actions button {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-color: currentColor;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.97), rgba(8, 17, 31, 0.88) 40%, rgba(8, 17, 31, 0.48)),
    url("/assets/linepilot-hero.png") center right / cover no-repeat;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 17, 31, 0.08), rgba(8, 17, 31, 0.84)),
    linear-gradient(120deg, rgba(14, 165, 163, 0.22), transparent 44%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  width: min(1240px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px clamp(18px, 4vw, 42px) 64px;
  align-items: center;
}

.hero-copy-block {
  max-width: 660px;
}

.eyebrow,
.mini-label {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.24rem;
}

.hero-actions,
.trust-row,
.scenario-tabs,
.call-stage,
.call-facts,
.lead-grid,
.ticker-band,
.screen-grid,
.handoff-grid,
.example-tabs,
.example-stage,
.pricing-grid,
.form-row {
  display: grid;
  gap: 14px;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-weight: 900;
  white-space: nowrap;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 14px 34px rgba(14, 165, 163, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  color: currentColor;
  border-color: currentColor;
  background: transparent;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.trust-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  max-width: 620px;
}

.trust-row span {
  min-height: 48px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.demo-console {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(153, 246, 228, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    rgba(10, 18, 34, 0.94);
  background-size: 24px 24px;
  color: #f8fafc;
  box-shadow: var(--shadow);
}

.console-topbar,
.panel-heading,
.lead-head,
.dashboard-head,
.phone-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.console-topbar h2,
.dashboard-head h3,
.tour-script h3,
.screen-card h3,
.example-stage h3,
.price-card h3,
.section h2 {
  margin: 0;
  letter-spacing: 0;
}

.console-topbar h2 {
  font-size: 1.6rem;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
}

.scenario-tabs,
.example-tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.scenario-tab,
.example-tab {
  min-width: 0;
  padding: 0 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.scenario-tab.is-active,
.example-tab.is-active {
  background: linear-gradient(135deg, var(--ink), #14324c);
  color: #fff;
}

.demo-console .scenario-tabs {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.demo-console .scenario-tab {
  color: rgba(255, 255, 255, 0.7);
}

.demo-console .scenario-tab.is-active {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
}

.call-stage {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.phone-panel,
.transcript-panel,
.lead-card,
.owner-phone,
.dashboard-preview,
.call-map,
.calculator,
.price-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.demo-console .phone-panel,
.demo-console .transcript-panel,
.demo-console .lead-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  color: #f8fafc;
}

.phone-panel,
.transcript-panel,
.lead-card {
  padding: 18px;
}

.caller-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  font-weight: 900;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(216, 92, 67, 0.48);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(216, 92, 67, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 92, 67, 0);
  }
}

.waveform {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 92px;
  margin: 12px 0;
}

.waveform span {
  width: 7px;
  height: 22px;
  border-radius: 99px;
  background: var(--teal);
  animation: bars 920ms ease-in-out infinite;
}

.waveform span:nth-child(2n) {
  animation-delay: 110ms;
  background: var(--amber);
}

.waveform span:nth-child(3n) {
  animation-delay: 220ms;
  background: var(--blue);
}

@keyframes bars {
  0%,
  100% {
    height: 22px;
  }
  50% {
    height: 70px;
  }
}

.call-facts {
  grid-template-columns: 1fr;
}

.call-facts div,
.lead-grid div {
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 7px;
  background: var(--surface-2);
}

.demo-console .call-facts div,
.demo-console .lead-grid div {
  background: rgba(255, 255, 255, 0.085);
}

dt,
dd {
  margin: 0;
}

dt,
.lead-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

dd,
.lead-grid strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-weight: 900;
}

.demo-console dt,
.demo-console .lead-grid span,
.demo-console .panel-heading {
  color: rgba(255, 255, 255, 0.64);
}

.demo-console dd,
.demo-console .lead-grid strong {
  color: #fff;
}

.transcript-panel {
  min-height: 322px;
}

.panel-heading {
  min-height: 28px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.transcript-feed {
  display: grid;
  align-content: start;
  gap: 10px;
  height: 258px;
  overflow: hidden;
  padding-top: 14px;
}

.message {
  max-width: 88%;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface-2);
  font-size: 0.94rem;
  animation: messageIn 220ms ease both;
}

.message.ai {
  justify-self: end;
  background: #dff5ec;
}

.demo-console .message {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.11);
}

.demo-console .message.ai {
  background: rgba(14, 165, 163, 0.22);
}

@keyframes messageIn {
  from {
    transform: translateY(8px);
  }
  to {
    transform: translateY(0);
  }
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 99px;
  background: #dff5ec;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.demo-console .status-pill {
  background: rgba(153, 246, 228, 0.18);
  color: var(--mint);
}

.lead-head strong {
  color: var(--coral);
}

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

.ticker-band {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.section {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 42px);
}

.section-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-intro.compact {
  max-width: 620px;
}

.section h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
}

.section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.video-section,
.examples-section {
  background: var(--paper);
}

.product-tour {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
}

.tour-player {
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(125deg, rgba(13, 23, 20, 0.84), rgba(13, 23, 20, 0.42)),
    url("/assets/linepilot-hero.png") center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}

.player-screen {
  display: grid;
  align-content: end;
  gap: 24px;
  min-height: 396px;
  padding: 28px;
}

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

.screen-card {
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(13, 23, 20, 0.72);
}

.screen-card.active-card {
  border-color: var(--mint);
  background: rgba(15, 143, 127, 0.72);
}

.screen-card span {
  color: var(--mint);
  font-weight: 900;
}

.screen-card h3 {
  margin-top: 12px;
}

.screen-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
}

.tour-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.tour-progress span {
  display: block;
  width: 34%;
  height: 100%;
  background: var(--mint);
  transition: width 280ms ease;
}

.tour-progress span[data-step="1"] {
  width: 67%;
}

.tour-progress span[data-step="2"] {
  width: 100%;
}

.tour-script {
  display: grid;
  align-content: center;
  min-height: 440px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.tour-script h3 {
  font-size: 1.5rem;
  line-height: 1.16;
}

.handoff-section,
.pricing-section {
  width: 100%;
  max-width: none;
  background: var(--ink);
  color: #fff;
  padding-left: max(18px, calc((100vw - 1220px) / 2 + 42px));
  padding-right: max(18px, calc((100vw - 1220px) / 2 + 42px));
}

.handoff-section p,
.pricing-section p {
  color: rgba(255, 255, 255, 0.72);
}

.handoff-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.1fr) minmax(240px, 0.75fr);
}

.owner-phone,
.dashboard-preview,
.call-map {
  padding: 22px;
  color: var(--ink);
}

.owner-phone {
  min-height: 430px;
  display: grid;
  align-content: space-between;
  gap: 20px;
}

.phone-header {
  min-height: 42px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.sms-bubble {
  padding: 18px;
  border-radius: 8px;
  background: #dff5ec;
}

.sms-bubble p {
  color: var(--ink-2);
}

.sms-bubble span {
  color: var(--teal-dark);
  font-weight: 900;
}

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

.quick-actions button {
  padding: 0 8px;
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.dashboard-preview {
  min-height: 430px;
}

.dashboard-head strong {
  color: var(--teal);
  font-size: 2.5rem;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  height: 210px;
  margin: 28px 0 22px;
  padding: 14px;
  border-radius: 8px;
  background: var(--surface-2);
}

.pipeline div {
  display: grid;
  align-content: end;
  min-height: 100%;
}

.pipeline div::before {
  content: "";
  height: 50%;
  min-height: 32px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--teal), var(--blue));
}

.pipeline .bar-emergency::before {
  height: 82%;
}

.pipeline .bar-quotes::before {
  height: 56%;
}

.pipeline .bar-bookings::before {
  height: 38%;
}

.pipeline .bar-followup::before {
  height: 64%;
}

.pipeline span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

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

.dashboard-list li {
  color: var(--ink-2);
  font-weight: 800;
}

.dashboard-list span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 99px;
  background: var(--amber);
}

.call-map {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 430px;
  text-align: center;
}

.map-node {
  display: grid;
  place-items: center;
  width: min(180px, 100%);
  min-height: 54px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
}

.map-node.customer {
  background: var(--blue);
}

.map-node.ai {
  background: var(--teal);
}

.map-node.owner {
  background: var(--violet);
}

.map-line {
  width: 3px;
  height: 48px;
  background: var(--line);
}

.call-map p {
  margin: 20px 0 0;
}

.example-switcher {
  display: grid;
  gap: 18px;
}

.example-tabs {
  max-width: 540px;
}

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

.example-stage article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.example-stage .after-card {
  background: var(--ink);
  color: #fff;
}

.after-card p {
  color: rgba(255, 255, 255, 0.72);
}

.example-stage h3 {
  font-size: 2rem;
  line-height: 1.04;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

.calculator {
  display: grid;
  gap: 18px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

input,
select {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 143, 127, 0.16);
}

input[type="range"] {
  min-height: 28px;
  accent-color: var(--teal);
}

.estimate {
  display: block;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
}

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

.price-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.price-card.featured {
  border-color: var(--amber);
  box-shadow: 0 18px 55px rgba(216, 138, 37, 0.18);
}

.plan-name,
.setup {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.price-card h3 {
  font-size: 3rem;
  line-height: 1;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 136px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-2);
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal);
}

.price-card .button.secondary:hover,
.price-card .button.secondary:focus-visible {
  color: var(--ink);
  background: var(--surface-2);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

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

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.submit-button {
  width: fit-content;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.form-status.is-error {
  color: var(--red);
}

.form-status.is-success {
  color: var(--teal);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  align-items: flex-start;
  padding: 38px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer p {
  max-width: 360px;
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-page {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 126px 28px 80px;
}

.legal-page h1 {
  margin: 0 0 24px;
  font-size: 3rem;
  letter-spacing: 0;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.dashboard-body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--ink);
  background-size: 42px 42px;
  color: #fff;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-actions,
.board-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-shell {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 48px) 60px;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 22px;
  align-items: stretch;
}

.dashboard-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.dashboard-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
}

.token-panel,
.dashboard-stat-grid article,
.dashboard-board {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.token-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.dashboard-body label {
  color: rgba(255, 255, 255, 0.86);
}

.dashboard-body input,
.dashboard-body select,
.dashboard-body textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.dashboard-stat-grid article {
  min-height: 136px;
  padding: 20px;
  display: grid;
  align-content: space-between;
}

.dashboard-stat-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.dashboard-stat-grid strong {
  color: var(--mint);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
}

.dashboard-board {
  margin-top: 22px;
  padding: 22px;
}

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

.board-head h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0;
}

.lead-table-wrap {
  overflow-x: auto;
}

.lead-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.lead-table th,
.lead-table td {
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.lead-table th {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lead-table td {
  color: rgba(255, 255, 255, 0.84);
}

.lead-table td strong,
.lead-table td span,
.lead-table td a {
  display: block;
}

.lead-table td span,
.lead-table td a {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.lead-table textarea {
  min-height: 68px;
}

.table-save {
  min-height: 36px;
  margin-top: 8px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .hero-shell,
  .product-tour,
  .handoff-grid,
  .split,
  .form-section,
  .dashboard-hero {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    padding-top: 118px;
  }

  .demo-console {
    max-width: 780px;
  }

  .handoff-grid {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero-shell {
    padding-bottom: 42px;
  }

  .hero-actions,
  .call-stage,
  .lead-grid,
  .screen-grid,
  .example-stage,
  .pricing-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .tour-player,
  .tour-script,
  .owner-phone,
  .dashboard-preview,
  .call-map {
    min-height: auto;
  }

  .player-screen {
    min-height: auto;
  }

  .dashboard-head {
    align-items: flex-start;
  }

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

  .board-head,
  .board-tools {
    display: grid;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero {
    background-position: 66% center;
  }

  .hero-shell {
    padding: 102px 16px 34px;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .button,
  .play-button {
    width: 100%;
  }

  .demo-console,
  .phone-panel,
  .transcript-panel,
  .lead-card,
  .calculator,
  .lead-form,
  .price-card,
  .owner-phone,
  .dashboard-preview,
  .call-map,
  .example-stage article,
  .tour-script,
  .player-screen {
    padding: 18px;
  }

  .transcript-panel {
    min-height: 300px;
  }

  .transcript-feed {
    height: 232px;
  }

  .message {
    max-width: 100%;
  }

  .section,
  .handoff-section,
  .pricing-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .pipeline {
    gap: 8px;
    padding: 10px;
  }

  .price-card ul {
    min-height: 0;
  }

  .submit-button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    display: grid;
    gap: 12px;
  }

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

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

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