:root {
  color-scheme: dark;
  --bg: #070b12;
  --bg-soft: #0b111c;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: #101827;
  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(147, 197, 253, 0.3);
  --text: #f8fafc;
  --muted: #a8b3c7;
  --soft: #dbeafe;
  --blue: #3b82f6;
  --cyan: #67e8f9;
  --green: #34d399;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 48% -18%, rgba(59, 130, 246, 0.22), transparent 34rem),
    radial-gradient(circle at 90% 18%, rgba(103, 232, 249, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--bg) 0%, #08101c 48%, var(--bg) 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

::selection {
  background: rgba(147, 197, 253, 0.28);
  color: var(--text);
}

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

a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
}

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  width: 142px;
  height: 44px;
}

.brand img {
  display: block;
  width: 100%;
  max-height: 40px;
  margin-left: 20px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-menu-panel {
  position: absolute;
  top: 54px;
  right: 0;
  display: grid;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  color: var(--muted);
}

.mobile-menu-panel a:hover {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.nav-links a,
.button,
.nav-cta {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.18rem;
  font-weight: 800;
}

.nav-cta,
.button.primary {
  border: 1px solid transparent;
  background: var(--text);
  color: #07111f;
}

.button.secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--soft);
}

.button.secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 72px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 54px;
  padding-bottom: 66px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.35rem;
  font-size: 60px;
}

h2 {
  max-width: 840px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.4vw, 3.55rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.12rem;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 650px;
  font-size: 1.12rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.response-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-proof span {
  padding: 0.58rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-panel,
.solution-panel,
.cta-content {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.hero-panel::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 50%;
  content: "";
}

.dashboard-shell,
.panel-top,
.metric-card,
.metric-row,
.mini-metrics,
.conversation-card,
.automation-flow {
  position: relative;
  z-index: 1;
}

.dashboard-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 10, 20, 0.54);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
}

.panel-top strong {
  margin-right: auto;
}

.panel-top small {
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 999px;
  color: var(--green);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.46);
  animation: pulse 1.8s infinite;
}

.metric-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-card span,
.metric-card small,
.automation-flow span {
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 0.25rem 0;
  color: var(--text);
  font-size: clamp(3rem, 7vw, 5rem);
}

.metric-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 12px;
  padding: 16px;
}

.mini-metrics {
  display: grid;
  gap: 12px;
}

.mini-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.026);
}

.mini-metrics span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.mini-metrics strong {
  color: var(--text);
  font-size: 1.4rem;
}

.conversation-card {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
}

.bubble {
  width: fit-content;
  max-width: 84%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 14px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.bubble.user {
  justify-self: end;
  background: #b6ffa0;
  color:#172429;
}

.bubble.ai {
  background: rgba(59, 130, 246, 0.18);
}

.automation-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0 16px 16px;
}

.automation-flow div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.026);
}

.automation-flow strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--text);
}

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

.audience,
.solutions,
.outcomes,
.blog {
  position: relative;
}

.three-grid,
.four-grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.card::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.card.premium {
  min-height: 300px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.09), transparent 46%),
    var(--panel);
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(15, 23, 42, 0.88);
}

.card span {
  display: inline-flex;
  margin-bottom: 1.35rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services,
.salon-seo,
.urgency,
.final-cta {
  padding-top: 52px;
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.solution-panel h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.12;
}

.flow-list {
  display: grid;
  gap: 10px;
}

.flow-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.026);
  color: var(--text);
}

.flow-list span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(103, 232, 249, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.section-cta {
  display: flex;
  margin-top: 28px;
}

.blog-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
}

a.blog-card {
  display: flex;
}

.blog-card p {
  margin-bottom: 1.4rem;
}

.blog-card strong {
  margin-top: auto;
  color: var(--cyan);
}
}

.article-shell {
  max-width: 1160px;
}

.article-hero {
  max-width: 920px;
  padding-top: 20px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--muted);
  font-weight: 750;
}

.article-back:hover {
  color: var(--text);
}

.article-lead {
  max-width: 780px;
  font-size: 1.18rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.article-meta span {
  padding: 0.52rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 42px;
  align-items: start;
  margin-top: 54px;
}

.article-note,
.article-highlight,
.message-example,
.article-cta {
  border: 1px solid var(--line);
  background: var(--panel);
}

.article-note {
  position: sticky;
  top: 110px;
  padding: 24px;
  border-radius: 14px;
}

.article-note strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.article-note p {
  margin-bottom: 0;
}

.article-content {
  max-width: 760px;
}

.article-content section {
  padding-bottom: 42px;
}

.article-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.article-content ul {
  display: grid;
  gap: 0.8rem;
  margin: 1.3rem 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.article-content li {
  display: flex;
  gap: 0.7rem;
}

.article-content li::before {
  color: var(--cyan);
  content: "•";
}

.article-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 1.6rem 0 2.4rem;
}

.article-steps div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.article-steps span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(103, 232, 249, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.article-steps h3 {
  margin-bottom: 0.45rem;
}

.article-steps p {
  margin-bottom: 0;
}

.article-highlight,
.message-example {
  margin-bottom: 42px;
  padding: 28px;
  border-radius: 16px;
}

.article-highlight {
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.12), transparent 56%),
    var(--panel);
}

.message-example {
  display: grid;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
}

.message-example p {
  margin: 0;
}

.article-cta {
  margin-top: 24px;
  padding: clamp(30px, 6vw, 58px);
  border-color: var(--line-strong);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.16), transparent 52%),
    var(--panel-strong);
}

.article-cta h2 {
  max-width: 760px;
}

.cta-content {
  padding: clamp(34px, 7vw, 72px);
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 82% 12%, rgba(103, 232, 249, 0.14), transparent 22rem),
    linear-gradient(135deg, rgba(59, 130, 246, 0.18), transparent 52%),
    var(--panel-strong);
}

.cta-content p {
  max-width: 720px;
}

.cta-content .button {
  margin-top: 1rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  color: var(--muted);
}

/* ── PRICING ── */
.pricing-grid {
  align-items: start;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.13), transparent 50%),
    var(--panel);
}

.popular-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(103, 232, 249, 0.35);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-block {
  margin: 1.2rem 0 1rem;
}

.price {
  display: block;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}

.price-block small {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.pricing-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.pricing-list li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.pricing-list li::before {
  content: "✓";
  color: var(--green);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.price-monthly {
  margin: 0.8rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.pricing-cta {
  margin-top: auto;
  width: 100%;
}

.pricing-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-note a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 180ms ease;
}

.faq-item[open] {
  border-color: var(--line-strong);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 1.1rem;
  transition: transform 220ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 0.95rem;
  line-height: 1.7;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(52, 211, 153, 0);
  }
}

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

  .mobile-menu {
    display: block;
  }

  .hero,
  .solution-panel,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .three-grid,
  .four-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-note {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand {
    width: 118px;
    height: 40px;
  }

  .nav-cta {
    display: none;
  }

  .section,
  .site-footer {
    width: min(100% - 24px, 1160px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    gap: 36px;
    padding-top: 42px;
    padding-bottom: 50px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.85rem);
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .three-grid,
  .four-grid,
  .pricing-grid,
  .article-steps,
  .metric-row,
  .automation-flow {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .solution-panel,
  .cta-content,
  .article-cta {
    border-radius: 18px;
  }

  .card,
  .card.premium {
    min-height: auto;
  }

  .section-cta {
    display: block;
  }

  .site-footer {
    flex-direction: column;
  }
}
