:root {
  --teal-950: #052f3a;
  --teal-900: #063f4d;
  --teal-800: #07576a;
  --teal-700: #007f9f;
  --teal-600: #0798b8;
  --teal-100: #dcf7fb;
  --orange-600: #ff9700;
  --orange-500: #ffad1f;
  --orange-100: #fff0d1;
  --ink: #10242b;
  --muted: #5f7178;
  --line: #d9e7ea;
  --surface: #f7fbfc;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(5, 47, 58, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 14px;
  font-weight: 800;
  color: var(--teal-900);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 12px 14px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 251, 252, 0.92);
  box-shadow: 0 10px 30px rgba(5, 47, 58, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-shell,
.strip-shell,
.footer-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header.is-scrolled .brand {
  color: var(--teal-900);
}

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

.brand span {
  display: none;
}

.nav-links {
  display: none;
}

.nav-cta {
  border-radius: 8px;
  background: var(--orange-600);
  color: var(--teal-950);
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255, 151, 0, 0.28);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5, 47, 58, 0.56) 0%, rgba(5, 47, 58, 0.82) 82%),
    linear-gradient(90deg, rgba(5, 47, 58, 0.92) 0%, rgba(5, 47, 58, 0.74) 45%, rgba(5, 47, 58, 0.18) 100%);
}

.hero-shell {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 44px;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-500);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 18px;
  max-width: 900px;
  font-size: clamp(38px, 8vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
  color: var(--teal-950);
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.16;
  font-weight: 900;
}

.hero-lead,
.section-lead,
.section-heading p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.section-lead,
.section-heading p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 950;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  color: var(--teal-950);
  box-shadow: 0 18px 38px rgba(255, 151, 0, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.button-light {
  background: var(--white);
  color: var(--teal-900);
  box-shadow: 0 18px 42px rgba(5, 47, 58, 0.22);
}

.full {
  width: 100%;
}

.hero-proof,
.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span,
.mini-proof span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.mini-proof span {
  border-color: var(--line);
  background: var(--white);
  color: var(--teal-800);
}

.conversion-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.strip-shell {
  display: grid;
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.strip-shell div {
  background: var(--white);
  padding: 22px;
}

.strip-shell strong,
.strip-shell span {
  display: block;
}

.strip-shell strong {
  color: var(--teal-900);
  font-size: 18px;
  font-weight: 950;
}

.strip-shell span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

.split,
.demo-grid,
.pricing-grid,
.faq-grid,
.cta-shell {
  display: grid;
  gap: 34px;
}

.problem-section {
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(5, 47, 58, 0.05);
}

.problem-item span {
  color: var(--orange-600);
  font-weight: 950;
}

.problem-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.product-demo {
  background: var(--teal-950);
  color: var(--white);
}

.product-demo h2 {
  color: var(--white);
}

.product-demo .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.phone-mock {
  width: min(100%, 360px);
  justify-self: center;
  border: 10px solid #081f27;
  border-radius: 34px;
  background: #081f27;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 96px;
  height: 18px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: #06171d;
}

.app-screen {
  margin-top: 10px;
  min-height: 560px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7fbfc 0%, #eaf8fb 100%);
  padding: 18px;
  color: var(--ink);
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.app-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.app-header strong {
  color: var(--teal-700);
}

.voice-card,
.ticket-card,
.field-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.voice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(7, 152, 184, 0.14);
}

.voice-card strong,
.voice-card span {
  display: block;
}

.voice-card span {
  color: var(--muted);
  font-size: 13px;
}

.mic-pulse {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--orange-500) 0 28%, rgba(255, 173, 31, 0.32) 29% 58%, rgba(255, 173, 31, 0.12) 59% 100%);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.field-row,
.ticket-card {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 16px;
}

.field-row span,
.ticket-card span {
  color: var(--muted);
  font-weight: 800;
}

.ticket-card {
  display: block;
  border-color: rgba(255, 151, 0, 0.32);
  background: var(--orange-100);
}

.ticket-card strong {
  display: block;
  margin-top: 4px;
  color: var(--teal-950);
}

.app-button {
  margin-top: 18px;
  border-radius: 8px;
  background: var(--teal-700);
  color: var(--white);
  padding: 16px;
  text-align: center;
  font-weight: 950;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list p {
  margin: 0;
  border-left: 4px solid var(--orange-600);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 14px 40px rgba(5, 47, 58, 0.06);
}

.feature-card.featured {
  border-color: rgba(255, 151, 0, 0.36);
  background: linear-gradient(145deg, var(--orange-100), var(--white));
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--teal-100);
  color: var(--teal-800);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0;
}

.cta-shell {
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange-600);
  color: var(--teal-950);
  font-weight: 950;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(220, 247, 251, 0.72), rgba(247, 251, 252, 1));
}

.pricing-card {
  border: 1px solid rgba(7, 152, 184, 0.24);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
}

.pricing-top span {
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-top strong {
  color: var(--teal-950);
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 750;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange-600);
}

.pricing-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--teal-950);
  font-weight: 950;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 34px 0 104px;
}

.footer-shell {
  display: grid;
  gap: 20px;
  text-align: center;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 6px;
  color: var(--teal-950);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-action {
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--teal-900);
  font-weight: 950;
}

.footer-rights {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.powered a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(95, 113, 120, 0.78);
  font-size: 12px;
  transition: color 0.2s ease;
}

.powered a:hover {
  color: var(--teal-800);
}

.powered img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.72;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247, 251, 252, 0.92);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 34px rgba(5, 47, 58, 0.12);
  backdrop-filter: blur(18px);
  pointer-events: none;
  transform: translateY(110%);
  transition: transform 0.22s ease;
}

.mobile-sticky-cta.is-visible {
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }

  .button {
    width: auto;
    min-width: 190px;
  }

  .strip-shell,
  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .brand span {
    display: inline;
  }

  .nav-links {
    display: flex;
    gap: 22px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 800;
  }

  .site-header.is-scrolled .nav-links {
    color: var(--muted);
  }

  .hero {
    min-height: 92svh;
    align-items: center;
  }

  .hero-shell {
    padding: 96px 0 44px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .split,
  .demo-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

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

  .strip-shell {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .site-footer {
    padding-bottom: 34px;
  }

  .footer-shell {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .footer-rights,
  .powered {
    grid-column: 1 / -1;
    text-align: center;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 420px) {

  .nav-shell,
  .section-shell,
  .strip-shell,
  .footer-shell,
  .hero-shell {
    width: min(100% - 24px, 1120px);
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero {
    min-height: 92svh;
  }
}