:root {
  --bg: #faf6ec;
  --surface: #ffffff;
  --surface-2: #f2ecdd;
  --line: #e3dbc7;
  --text: #211e18;
  --muted: #726c5d;
  --blue: #0e86b8;
  --blue-dim: #dcf0f8;
  --green: #1c9a66;
  --green-dim: #dff4e9;
  --radius: 14px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.home {
  overflow-x: hidden;
}
body.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1,
h2,
h3,
.display {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}
.mono {
  font-family: "IBM Plex Mono", monospace;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 15% 10%,
      rgba(14, 134, 184, 0.07),
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(28, 154, 102, 0.06),
      transparent 40%
    );
  pointer-events: none;
  z-index: 0;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-dim);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px var(--blue-dim);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(14, 134, 184, 0.16);
  }
}
.navlinks {
  display: flex;
  gap: 24px;
  font-size: 14.5px;
  color: var(--muted);
}
.navlinks a:hover {
  color: var(--text);
}
.navcta {
  background: var(--blue);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.navcta:hover {
  background: #3aa8d6;
}
@media (max-width: 920px) {
  .navlinks {
    display: none;
  }
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--blue);
  color: #ffffff;
  padding: 15px 26px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.btn-primary:hover {
  background: #3aa8d6;
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--line);
  padding: 15px 26px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  display: inline-block;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.btn-ghost:hover {
  border-color: #c9bfa4;
  background: var(--surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue-dim);
  background: rgba(14, 134, 184, 0.07);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* ---------- HERO (homepage) ---------- */
.hero {
  position: relative;
  z-index: 1;
  padding: 88px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero h1 span {
  color: var(--blue);
}
.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
}
.trust-row div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-row svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--green);
}

/* ---------- PHONE TRANSCRIPT ---------- */
.phone {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(28, 26, 22, 0.18);
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.phone-top .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0b4a63);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}
.who .name {
  font-weight: 600;
  font-size: 14.5px;
}
.who .num {
  font-size: 12.5px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
}
.who .num a {
  color: var(--muted);
}
.who .num a:hover {
  color: var(--blue);
}
.call-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--green);
}
.call-status .bar {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse2 1.4s infinite;
}
@keyframes pulse2 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.transcript {
  padding: 22px 20px;
  height: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.bubble {
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  animation: rise 0.45s ease forwards;
}
.bubble.caller {
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-bottom-left-radius: 3px;
}
.bubble.ai {
  align-self: flex-end;
  background: rgba(14, 134, 184, 0.16);
  border: 1px solid var(--blue-dim);
  border-bottom-right-radius: 3px;
  color: #0a5a78;
}
.bubble.system {
  align-self: center;
  background: var(--green-dim);
  border: 1px solid rgba(61, 220, 151, 0.3);
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 7px 14px;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.phone-bottom {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--muted);
}
.phone-bottom .booked {
  color: var(--green);
  font-weight: 500;
}

/* ---------- STATS ---------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.stat .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--blue);
}
.stat .label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.stat .note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.star {
  font-size: 0.45em;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
  margin-left: 1px;
}

/* ---------- SECTIONS ---------- */
section {
  position: relative;
  z-index: 1;
}
.section-pad {
  padding: 60px 0;
}
.section-head {
  max-width: 600px;
  margin-bottom: 56px;
}
.section-head .eyebrow {
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-head p {
  color: var(--muted);
  font-size: 16.5px;
}

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  background: var(--surface);
  padding: 36px 30px;
}
.step .idx {
  font-family: "IBM Plex Mono", monospace;
  color: var(--blue);
  font-size: 13px;
  margin-bottom: 18px;
  display: block;
}
.step h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 600;
}
.step p {
  color: var(--muted);
  font-size: 14.5px;
}
.software-note {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 20px;
  max-width: 720px;
}

/* ---------- VERTICALS ---------- */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }
}
.vcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
  display: block;
}
a.vcard:hover {
  border-color: #c9bfa4;
  transform: translateY(-2px);
}
.vcard .icon {
  width: 38px;
  height: 38px;
  color: var(--blue);
  margin-bottom: 16px;
}
.vcard h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.vcard p {
  font-size: 13.5px;
  color: var(--muted);
}
.vcard-other {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--surface-2);
}
.vcard-other .icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* ---------- FEATURE STRIP ---------- */
.feature-strip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .feature-strip {
    grid-template-columns: 1fr;
    padding: 36px 26px;
  }
}
.feature-strip h2 {
  font-size: 30px;
  margin-bottom: 16px;
  font-weight: 700;
}
.feature-strip p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 22px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
}
.feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-list b {
  font-weight: 600;
}
.feature-list span {
  color: var(--muted);
}
.missed-visual {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
}
.missed-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
  gap: 12px;
}
.missed-row:last-child {
  border-bottom: none;
}
.missed-row .miss {
  color: #ff6b6b;
}
.missed-row .caught {
  color: var(--green);
}

/* ---------- PRICING ---------- */
.price-card {
  max-width: 440px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--blue-dim);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  position: relative;
}
.price-card .tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.price-card .amount {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin: 18px 0 4px;
}
.price-card .amount span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}
.price-card .sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 30px;
}
.price-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.price-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  align-items: flex-start;
}
.price-list svg {
  width: 17px;
  height: 17px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.faq-item p {
  color: var(--muted);
  font-size: 14.5px;
}
.faq-item a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center;
  padding: 60px 0 100px;
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 700;
  max-width: 680px;
  margin: 0 auto 20px;
}
.final-cta p {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 36px;
}
.call-demo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  border: 1px solid var(--line);
  padding: 12px 20px;
  border-radius: 100px;
  color: var(--muted);
  margin-top: 26px;
}
.call-demo a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.call-demo a:hover {
  color: var(--blue);
}
.call-demo .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse2 1.4s infinite;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.foot-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-links a:hover {
  color: var(--text);
}

/* ---------- INNER PAGES ---------- */
main {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 72px 0 40px;
}
.crumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.crumbs a:hover {
  color: var(--text);
}
.crumbs span {
  margin: 0 8px;
  color: var(--line);
}
.page-hero {
  max-width: 720px;
  margin-bottom: 48px;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
}
.page-hero .lead {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
}
.page-hero .hero-ctas {
  margin-bottom: 0;
}

.prose,
.legal {
  max-width: 720px;
}
.prose h2,
.legal h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 36px 0 12px;
}
.prose h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 8px;
}
.prose p,
.legal p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 14px;
}
.prose ul,
.prose ol {
  color: var(--muted);
  font-size: 15.5px;
  margin: 0 0 16px 20px;
}
.prose li {
  margin-bottom: 8px;
}
.prose a,
.legal a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ---------- BLOG INDEX ---------- */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.post-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.post-card:hover {
  border-color: #c9bfa4;
  transform: translateY(-2px);
}
.post-card .meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.post-card h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.post-card p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-grid h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
}
.contact-grid .lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 34px;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-item .ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.info-item .ico svg {
  width: 18px;
  height: 18px;
}
.info-item .label {
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "IBM Plex Mono", monospace;
  margin-bottom: 3px;
}
.info-item .value {
  font-size: 15.5px;
  font-weight: 500;
}
.info-item .value a:hover {
  color: var(--blue);
}
.info-hint {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.4;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 24px 60px -24px rgba(28, 26, 22, 0.12);
}
@media (max-width: 600px) {
  .form-card {
    padding: 30px 24px;
  }
}
.form-row {
  margin-bottom: 20px;
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
input,
select,
textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
input::placeholder,
textarea::placeholder {
  color: #a79f8c;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: var(--surface);
}
textarea {
  resize: vertical;
  min-height: 110px;
}
.btn-submit {
  width: 100%;
  background: var(--blue);
  color: #ffffff;
  border: none;
  padding: 15px 26px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
  margin-top: 6px;
}
.btn-submit:hover {
  background: #0a6e97;
  transform: translateY(-1px);
}
.form-foot {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}
.success-state {
  text-align: center;
  padding: 40px 10px;
  display: none;
}
.success-state.show {
  display: block;
}
.success-state .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}
.success-state p {
  color: var(--muted);
  font-size: 14.5px;
}
.form-card.submitted .form-body {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 20px;
  }
  nav {
    padding: 16px 20px;
  }
  .call-demo {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
  }
  .foot-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
