:root {
  --blue: #0A66FF;
  --blue-dark: #084BCB;
  --cyan: #2DD4FF;
  --ink: #071A33;
  --slate: #476079;
  --muted: #5C7288;
  --cloud: #F4F8FF;
  --white: #FFFFFF;
  --line: #DCE8F5;
  --success: #16A36A;
  --warning: #D97706;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(7, 26, 51, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; }
button, input, textarea, select { font: inherit; }
.skip-link { position: absolute; left: 12px; top: -80px; z-index: 100; padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(220, 232, 245, .82);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 76px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 24px; font-weight: 780; letter-spacing: -1.2px; }
.brand span span { color: var(--blue); }
nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
nav a, .footer-links a { color: var(--slate); text-decoration: none; font-size: 14px; font-weight: 650; }
nav a:hover, .footer-links a:hover { color: var(--blue); }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 14px;
  color: white; background: var(--blue);
  font-weight: 760; font-size: 15px; text-decoration: none;
  box-shadow: 0 12px 28px rgba(10, 102, 255, .20);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(10, 102, 255, .26); }
.button-small { min-height: 42px; padding: 0 16px; border-radius: 11px; font-size: 13px; }
.button-ghost { color: var(--ink); background: white; border-color: var(--line); box-shadow: none; }
.button-ghost:hover { border-color: #9CC1F6; box-shadow: 0 12px 30px rgba(7, 26, 51, .08); }

.hero {
  position: relative; overflow: hidden;
  padding: 104px 0 94px;
  background:
    radial-gradient(circle at 86% 12%, rgba(45,212,255,.21), transparent 25%),
    radial-gradient(circle at 72% 60%, rgba(10,102,255,.12), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F6FAFF 100%);
}
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: 1.55px; text-transform: uppercase; }
.status-dot { display: inline-block; width: 9px; height: 9px; margin-right: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(10,102,255,.10); }
h1, h2, h3, p { text-wrap: pretty; }
h1 { max-width: 680px; margin: 0; font-size: clamp(48px, 5.2vw, 78px); line-height: .98; letter-spacing: -4.2px; font-weight: 790; }
.blue-text { color: var(--blue); }
.hero-lede { max-width: 680px; margin: 26px 0 0; color: var(--slate); font-size: 20px; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.fine-print { max-width: 660px; margin: 18px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.55; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 25px 0 0; }
.hero-proof li { padding: 8px 11px; border: 1px solid var(--line); background: rgba(255,255,255,.8); border-radius: 999px; color: var(--slate); font-size: 12px; font-weight: 700; }

.product-visual { position: relative; min-height: 640px; }
.glow { position: absolute; border-radius: 50%; filter: blur(1px); }
.glow-one { width: 390px; height: 390px; right: -55px; top: 55px; background: rgba(10,102,255,.12); }
.glow-two { width: 240px; height: 240px; left: 0; bottom: 20px; background: rgba(45,212,255,.16); }
.crm-window {
  position: absolute; left: 0; top: 20px; z-index: 3;
  width: min(470px, 82%); min-height: 520px;
  border: 1px solid rgba(198, 218, 239, .9); border-radius: 26px;
  background: rgba(255,255,255,.96); box-shadow: var(--shadow); overflow: hidden;
}
.window-top { height: 58px; display: flex; align-items: center; gap: 12px; padding: 0 18px; border-bottom: 1px solid var(--line); color: var(--slate); font-size: 12px; font-weight: 750; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #D4E0EC; }
.online-pill { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; background: #EAF8F1; color: #0F7D51; }
.online-pill b { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.contact-row { display: flex; align-items: center; gap: 11px; padding: 17px 18px; border-bottom: 1px solid var(--line); }
.avatar { width: 39px; height: 39px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 50%; font-size: 12px; font-weight: 800; }
.contact-row strong, .contact-row small { display: block; }
.contact-row strong { font-size: 14px; }
.contact-row small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.conversation { min-height: 342px; padding: 20px 17px; background: linear-gradient(180deg, #FBFDFF, #F4F8FF); }
.message, .transcript { max-width: 76%; margin: 0 0 10px; padding: 10px 13px; border-radius: 16px; font-size: 12px; line-height: 1.45; }
.inbound { margin-right: auto; color: var(--ink); background: #E8EEF5; border-bottom-left-radius: 5px; }
.outbound { margin-left: auto; color: white; background: var(--blue); border-bottom-right-radius: 5px; }
.image-message {
  width: 178px;
  height: 110px;
  display: grid;
  place-items: end start;
  padding: 10px;
  border-radius: 18px;
  border-bottom-right-radius: 5px;
  background:
    linear-gradient(180deg, rgba(7,26,51,.05), rgba(7,26,51,.35)),
    linear-gradient(135deg, #9CC7FF 0%, #0A66FF 58%, #084BCB 100%);
}
.image-placeholder {
  padding: 5px 8px;
  color: white;
  background: rgba(7,26,51,.35);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.legal-page { padding: 72px 0 96px; }
.legal-page > .shell { max-width: 820px; }
.legal-page h1 { margin: 0 0 12px; font-size: 42px; letter-spacing: -1.5px; }
.legal-page .lede { max-width: 640px; margin: 0 0 28px; color: var(--slate); line-height: 1.6; }
.legal-page h2 { margin: 28px 0 8px; font-size: 20px; }
.legal-page p, .legal-page li { color: var(--slate); line-height: 1.65; }
.legal-page ul { padding-left: 1.2rem; }
.legal-page .check-list li::before { color: var(--blue); background: #EAF2FF; }
.voice-message { width: 215px; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 16px; border-bottom-left-radius: 5px; color: var(--ink); background: #E8EEF5; font-size: 10px; }
.play { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--blue); font-size: 8px; }
.wave { flex: 1; display: flex; align-items: center; gap: 3px; height: 24px; }
.wave i { width: 3px; border-radius: 10px; background: var(--blue); }
.wave i:nth-child(1), .wave i:nth-child(7) { height: 7px; }.wave i:nth-child(2), .wave i:nth-child(6) { height: 14px; }.wave i:nth-child(3), .wave i:nth-child(5) { height: 20px; }.wave i:nth-child(4) { height: 24px; }
.transcript { font-style: italic; color: var(--slate); }
.composer { display: flex; justify-content: space-between; align-items: center; margin: 12px 14px 14px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 12px; color: #90A0B1; font-size: 11px; }
.composer b { color: var(--blue); }
.route { position: absolute; top: 300px; right: 80px; z-index: 4; display: flex; gap: 11px; transform: rotate(-8deg); }
.route i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(10,102,255,.08); }
.mac-card {
  position: absolute; right: 0; bottom: 25px; z-index: 5;
  width: 282px; padding: 19px;
  color: white; background: var(--ink); border-radius: 22px;
  box-shadow: 0 26px 70px rgba(7,26,51,.28); transform: rotate(2.5deg);
}
.mac-card-head { display: flex; align-items: center; gap: 10px; }
.mac-card-head strong, .mac-card-head small { display: block; }
.mac-card-head small { margin-top: 2px; color: #B7C9DA; font-size: 10px; }
.mac-card-head small span { display: inline-block; width: 7px; height: 7px; margin-right: 4px; border-radius: 50%; background: var(--success); }
.mac-card dl { margin: 18px 0 13px; }
.mac-card dl div { padding: 10px 0; border-top: 1px solid rgba(255,255,255,.12); }
.mac-card dt { color: #8EA5BB; font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }
.mac-card dd { margin: 4px 0 0; font-size: 12px; font-weight: 650; }
.mac-options { display: flex; justify-content: space-between; padding: 8px 0; color: #B7C9DA; font-size: 10px; }
.mac-options b { color: var(--cyan); }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid div { padding: 31px 30px; border-right: 1px solid var(--line); }
.proof-grid div:first-child { padding-left: 0; }
.proof-grid div:last-child { border-right: 0; padding-right: 0; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { margin-bottom: 7px; font-size: 15px; }
.proof-grid span { color: var(--slate); font-size: 12.5px; line-height: 1.55; }

.section { padding: 108px 0; }
.section-tinted { background: var(--cloud); }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2, .boundaries h2, .final-card h2 { margin: 0; font-size: clamp(38px, 4.2vw, 58px); line-height: 1.04; letter-spacing: -3px; }
.section-heading > p:last-child, .lead { margin: 20px 0 0; color: var(--slate); font-size: 18px; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-card { min-height: 330px; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 40px rgba(7,26,51,.05); }
.feature-card-primary { background: linear-gradient(145deg, #F4F8FF, #EAF3FF); }
.feature-card-dark { color: white; background: var(--ink); border-color: var(--ink); }
.feature-number { display: inline-flex; padding: 7px 9px; border-radius: 8px; color: var(--blue); background: #E7F0FF; font-size: 11px; font-weight: 850; }
.feature-card-dark .feature-number { color: var(--cyan); background: rgba(45,212,255,.1); }
.feature-card h3 { margin: 42px 0 12px; font-size: 27px; letter-spacing: -1.1px; }
.feature-card p { max-width: 540px; margin: 0; color: var(--slate); font-size: 15px; line-height: 1.65; }
.feature-card-dark p { color: #B7C9DA; }
.mini-ui, .status-panel { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding: 14px 15px; border: 1px solid #CBDDF1; border-radius: 13px; background: white; font-size: 12px; font-weight: 700; }
.mini-ui b { color: var(--blue); }
.tapback-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tapback-row span { padding: 8px 10px; border-radius: 999px; color: var(--slate); background: #EEF3F8; font-size: 11px; font-weight: 700; }
.status-panel { display: block; }
.status-panel b, .status-panel span { display: block; }
.status-panel b { color: var(--success); }.status-panel b i { display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: var(--success); }
.status-panel span { margin-top: 7px; color: var(--slate); font-size: 11px; font-weight: 550; }
.check-list, .x-list { list-style: none; padding: 0; margin: 25px 0 0; }
.check-list li, .x-list li { position: relative; padding: 8px 0 8px 28px; color: inherit; font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 7px; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: var(--success); background: #EAF8F1; font-size: 11px; font-weight: 900; }
.feature-card-dark .check-list li { color: #D7E2ED; }.feature-card-dark .check-list li::before { color: var(--cyan); background: rgba(45,212,255,.12); }
.x-list li::before { content: "×"; position: absolute; left: 0; top: 7px; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: #C94747; background: #FFF0F0; font-size: 14px; font-weight: 900; }

.setup-layout, .faq-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.sticky-heading { position: sticky; top: 120px; }
.steps { list-style: none; padding: 0; margin: 0; }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 32px 0; border-bottom: 1px solid #CDDEEF; }
.steps li:first-child { padding-top: 0; }
.steps li > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; color: white; background: var(--blue); font-weight: 850; }
.steps h3 { margin: 0 0 9px; font-size: 24px; letter-spacing: -.7px; }
.steps p { margin: 0; color: var(--slate); font-size: 15px; line-height: 1.65; }
.boundary-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.do-dont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.do-dont-grid article { min-height: 365px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.do-dont-grid h3 { margin: 0; font-size: 22px; }
.dont-card { background: #FFFBFB !important; }

.section-dark { color: white; background: var(--ink); }
.section-heading-light p:last-child { color: #B7C9DA; }
.requirement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.requirement-grid article { min-height: 290px; padding: 25px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.04); }
.requirement-grid article > span { color: var(--cyan); font-size: 11px; font-weight: 850; letter-spacing: 1.2px; text-transform: uppercase; }
.requirement-grid h3 { margin: 42px 0 10px; font-size: 21px; line-height: 1.25; }
.requirement-grid p { margin: 0; color: #B7C9DA; font-size: 13px; line-height: 1.65; }

.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 42px 25px 0; cursor: pointer; font-size: 18px; font-weight: 740; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 23px; color: var(--blue); font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; margin: -5px 0 25px; color: var(--slate); font-size: 15px; line-height: 1.7; }

.final-cta { padding: 30px 0 90px; }
.final-card { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 55px; color: white; background: linear-gradient(135deg, #071A33 0%, #0B2A54 60%, #084BCB 150%); border-radius: 30px; box-shadow: var(--shadow); }
.final-card h2 { max-width: 760px; }
.final-card p:not(.eyebrow) { max-width: 650px; margin: 17px 0 0; color: #B7C9DA; line-height: 1.6; }
.final-actions { display: flex; flex-direction: column; align-items: stretch; gap: 14px; min-width: 230px; }
.button-light { color: var(--ink); background: white; border-color: white; box-shadow: none; }
.text-link { color: #C9D8EB; text-align: center; text-decoration: none; font-size: 13px; font-weight: 700; }

footer { padding: 45px 0 30px; border-top: 1px solid var(--line); background: #FBFDFF; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; }
.footer-brand { font-size: 21px; }
.footer-grid > p { margin: 0; color: var(--slate); text-align: center; font-size: 13px; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; }
.legal { display: flex; justify-content: space-between; gap: 30px; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); }
.legal p { max-width: 860px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.legal p:last-child { white-space: nowrap; }


.pricing-section { background: linear-gradient(180deg, #FFFFFF, #F4F8FF); }
.pricing-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.pricing-card { padding: 36px; border: 1px solid #BFD6F2; border-radius: 26px; background: white; box-shadow: var(--shadow); }
.price-label { margin: 0; color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: 1.2px; text-transform: uppercase; }
.price { display: flex; align-items: baseline; gap: 11px; margin: 14px 0 0; }
.price strong { font-size: 64px; line-height: 1; letter-spacing: -4px; }
.price span, .annual, .pricing-fine { color: var(--slate); }
.annual { margin: 9px 0 0; font-size: 14px; }
.pricing-card .button { width: 100%; margin-top: 26px; }
.pricing-fine { margin: 14px 0 0; font-size: 11px; line-height: 1.55; }
@media (max-width: 1040px) {
  nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .product-visual { width: min(680px, 100%); margin: 0 auto; }
  .requirement-grid { grid-template-columns: 1fr 1fr; }
  .pricing-layout { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 820px) {
  .section { padding: 82px 0; }
  h1 { letter-spacing: -3px; }
  .proof-grid, .feature-grid, .setup-layout, .boundary-grid, .faq-layout, .final-card { grid-template-columns: 1fr; }
  .proof-grid div { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid div:last-child { border-bottom: 0; }
  .sticky-heading { position: static; }
  .do-dont-grid { grid-template-columns: 1fr; }
  .final-actions { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid > p { text-align: left; }.footer-links { justify-content: flex-start; }.legal { flex-direction: column; }
}
@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header .button-small { display: none; }
  .nav-shell { min-height: 68px; }
  .hero { padding: 76px 0 70px; }
  h1 { font-size: 48px; letter-spacing: -2.8px; }
  .hero-lede { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .product-visual { min-height: 650px; }
  .crm-window { width: 100%; left: 0; }
  .mac-card { right: 6px; width: 255px; }
  .route { right: 90px; }
  .feature-card { min-height: 0; padding: 24px; }
  .requirement-grid { grid-template-columns: 1fr; }
  .requirement-grid article { min-height: 230px; }
  .final-card { padding: 34px 24px; }
  .pricing-card { padding: 28px 22px; }
  .price strong { font-size: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
