:root {
  --bg: #05070b;
  --bg-soft: #0b1119;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f7fbff;
  --muted: #aeb9c7;
  --blue: #14b8ff;
  --cyan: #35f0df;
  --green: #67e8a8;
  --amber: #f8c35b;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 75% 5%, rgba(20, 184, 255, 0.2), transparent 30rem),
    linear-gradient(180deg, #05070b 0%, #08101a 45%, #05070b 100%);
  color: var(--text);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(5, 7, 11, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.cta-row,
.hero-points,
.request-grid,
.footer,
.commitment {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  overflow: hidden;
}

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

.nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.header-cta,
.button,
.phone-link,
.sticky-cta {
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  padding: 10px 16px;
  background: var(--text);
  color: #07111c;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 36px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding-top: clamp(48px, 8vw, 86px);
  padding-bottom: clamp(48px, 7vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-sub,
.section-intro p,
.demo-strip p,
.value p,
.trust p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.hero-sub {
  max-width: 680px;
  margin-bottom: 28px;
}

.cta-row {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #031018;
  box-shadow: 0 14px 42px rgba(20, 184, 255, 0.24);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.microcopy,
.small {
  color: var(--muted);
  font-size: 14px;
}

.microcopy {
  margin-top: 14px;
}

.hero-points {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-points span {
  padding: 9px 11px;
  border: 1px solid rgba(103, 232, 168, 0.28);
  border-radius: 8px;
  background: rgba(103, 232, 168, 0.08);
  color: #dfffee;
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.photo-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.photo-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05) brightness(0.78);
}

.photo-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.78);
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(103, 232, 168, 0.75);
  animation: pulse 1.8s infinite;
}

.phone-card {
  position: relative;
  width: min(390px, 88%);
  margin: -86px 0 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 14, 23, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.flow {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.flow-step {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}

.flow-step.active {
  border-color: rgba(20, 184, 255, 0.7);
  color: var(--text);
}

.flow-step.done {
  border-color: rgba(103, 232, 168, 0.7);
  color: var(--green);
}

.request-card,
.summary-card,
.timeline-panel,
.compare-card,
.price-card,
.offer-card,
.day-one,
.benefit-grid article,
.setup-grid article,
.steps article,
.pain-grid div,
.offer-side article,
.chat,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.request-card {
  padding: 16px;
}

.label {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

blockquote {
  margin: 12px 0;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
  color: #e7f8ff;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  color: var(--muted);
}

.request-grid strong,
dd {
  color: var(--green);
}

.demo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 36px);
  border: 1px solid rgba(53, 240, 223, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(20, 184, 255, 0.13), rgba(53, 240, 223, 0.05));
}

.demo-strip h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.phone-link {
  display: inline-flex;
  min-width: max-content;
  padding: 16px 20px;
  background: var(--text);
  color: #06111b;
}

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

.timeline-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.timeline-item time {
  color: var(--cyan);
  font-weight: 800;
}

.timeline-item.danger time,
.timeline-item.danger span {
  color: var(--danger);
}

.timeline-end {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.pain-grid,
.steps,
.benefit-grid,
.setup-grid,
.pricing-grid,
.before-after,
.conversation,
.value {
  display: grid;
  gap: 18px;
}

.pain-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.pain-grid div,
.benefit-grid article,
.setup-grid article,
.steps article,
.offer-card,
.offer-side article,
.day-one,
.summary-card {
  padding: 22px;
}

.calm {
  text-align: center;
}

.calm .section-intro,
.final-cta {
  margin-inline: auto;
  text-align: center;
}

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

.steps span,
.setup-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 800;
}

.statement {
  margin: 28px 0 0;
  padding: 20px;
  border: 1px solid rgba(53, 240, 223, 0.24);
  border-radius: 8px;
  background: rgba(53, 240, 223, 0.07);
  font-size: 20px;
  font-weight: 800;
}

.conversation {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
}

.chat {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.bubble {
  max-width: 76%;
  padding: 14px;
  border-radius: 8px;
}

.bubble strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--cyan);
}

.bubble.customer {
  background: rgba(255, 255, 255, 0.08);
}

.bubble.ai {
  justify-self: end;
  background: rgba(20, 184, 255, 0.13);
}

dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 800;
}

.before-after,
.value {
  grid-template-columns: repeat(2, 1fr);
}

.compare-card {
  padding: 26px;
}

.compare-card ul,
.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-card li,
.price-card li {
  position: relative;
  padding-left: 26px;
}

.before li::before {
  content: "x";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 800;
}

.after li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.benefit-grid article {
  min-height: 210px;
}

.value-copy,
.day-one {
  align-self: center;
}

.value-copy strong {
  display: block;
  margin-top: 20px;
  color: var(--green);
  font-size: 20px;
}

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

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.offer-card.featured {
  border-color: rgba(53, 240, 223, 0.58);
  background: linear-gradient(180deg, rgba(20, 184, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: 0 24px 80px rgba(20, 184, 255, 0.18);
}

.offer-card ul,
.offer-side ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 28px;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.offer-side {
  display: grid;
  gap: 18px;
}

.offer-side article {
  min-height: 0;
}

.offer-side strong {
  color: var(--amber);
  font-size: 22px;
}

.risk-box {
  border-color: rgba(248, 195, 91, 0.34);
  background: rgba(248, 195, 91, 0.08);
}

.price-card {
  position: relative;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(53, 240, 223, 0.55);
  background: linear-gradient(180deg, rgba(20, 184, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: 0 24px 80px rgba(20, 184, 255, 0.18);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(53, 240, 223, 0.14);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-size: 16px;
}

.setup {
  color: var(--muted);
}

.commitment {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.commitment span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

details {
  padding: 0;
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 800;
}

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

.final-cta {
  max-width: 960px;
}

.center {
  justify-content: center;
}

.footer {
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 34px 18px 96px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #031018;
  box-shadow: var(--shadow);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(103, 232, 168, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(103, 232, 168, 0);
  }
}

@media (max-width: 940px) {
  .nav {
    display: none;
  }

  .hero,
  .conversation,
  .before-after,
  .value,
  .pain-grid,
  .offer-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .demo-strip,
  .trust {
    align-items: stretch;
    flex-direction: column;
  }
}

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

  .brand span:last-child {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 58px 16px;
  }

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

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-sub,
  .section-intro p,
  .demo-strip p,
  .value p,
  .trust p,
  .final-cta p {
    font-size: 16px;
  }

  .button,
  .phone-link {
    width: 100%;
  }

  .hero-visual {
    margin-top: 8px;
  }

  .phone-card {
    width: 100%;
    margin-top: 14px;
  }

  .photo-overlay {
    position: static;
    max-width: none;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .steps,
  .benefit-grid,
  .setup-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 58px 1fr;
    font-size: 14px;
  }

  .bubble {
    max-width: 92%;
  }

  .price {
    font-size: 34px;
  }

  .sticky-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    justify-content: center;
  }
}
