:root {
  --bg: #07111f;
  --bg-soft: #0d1b2f;
  --bg-card: rgba(15, 30, 52, 0.78);
  --bg-card-solid: #102039;
  --text: #eef7ff;
  --text-soft: #a9b8cc;
  --muted: #72839a;
  --line: rgba(148, 180, 216, 0.17);
  --blue: #2aabee;
  --blue-strong: #168bd4;
  --cyan: #67e8f9;
  --green: #34d399;
  --red: #fb7185;
  --warning: #fbbf24;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 4%, rgba(42, 171, 238, 0.24), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(103, 232, 249, 0.14), transparent 32%),
    linear-gradient(180deg, #07111f 0%, #081426 42%, #060d19 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  background: rgba(7, 17, 31, 0.72);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 17, 31, 0.9);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #04101f;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(42, 171, 238, 0.3);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 650;
}

.nav a {
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(42, 171, 238, 0.14);
  border: 1px solid rgba(42, 171, 238, 0.36);
  color: var(--text) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 62px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% -20% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(42, 171, 238, 0.12);
  filter: blur(44px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--text-soft);
  font-size: clamp(18px, 2.3vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #03111e;
  box-shadow: 0 18px 44px rgba(42, 171, 238, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line);
  color: var(--text);
}

.button-disabled {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  color: var(--muted);
  pointer-events: none;
}

.full-button {
  width: 100%;
}

.mini-disclaimer {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 13px;
}

.hero-search-line {
  max-width: 730px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-soft);
  font-size: 14px;
}

.hero-search-line strong {
  color: var(--text);
}

.hero-card {
  position: relative;
}

.phone-frame {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(148, 180, 216, 0.24);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(18, 34, 58, 0.98), rgba(9, 19, 36, 0.98)),
    var(--bg-card-solid);
  box-shadow: var(--shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.52), rgba(103, 232, 249, 0.12), rgba(255, 255, 255, 0));
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 12px 12px 14px;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(52, 211, 153, 0.12);
}

.phone-title {
  font-weight: 850;
}

.phone-time {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.chat-message {
  display: flex;
  gap: 12px;
  padding: 15px;
  margin-bottom: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.chat-message strong,
.chat-message span:last-child {
  display: block;
}

.chat-message span:last-child {
  color: var(--text-soft);
  font-size: 13px;
}

.chat-message.online .status-icon {
  color: var(--green);
}

.chat-message.offline .status-icon {
  color: var(--red);
}

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

.timeline-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-soft);
  font-size: 14px;
}

.timeline-row.active {
  background: rgba(42, 171, 238, 0.13);
  color: var(--text);
}

.trust-strip {
  padding: 18px 0 56px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.trust-grid div {
  padding: 14px 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 750;
}

.section {
  padding: 72px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.two-column p,
.section-heading p,
.solution-card p,
.step-card p,
.feature-card p,
.use-case-card p,
.faq-section p,
.final-cta p,
.site-footer p {
  color: var(--text-soft);
}

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

.pain-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 700;
}

.solution-card,
.final-cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(42, 171, 238, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 20%, rgba(42, 171, 238, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(16, 32, 57, 0.94), rgba(9, 19, 35, 0.94));
  box-shadow: var(--shadow);
}

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

.section-heading.narrow {
  max-width: 690px;
  margin-inline: auto;
  text-align: center;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.step-card,
.use-case-card,
.pricing-card,
.compare-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.18);
}

.feature-card,
.step-card,
.use-case-card,
.compare-card {
  padding: 22px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(42, 171, 238, 0.12);
  font-size: 22px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.use-case-card.full-width {
  grid-column: span 2;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.pricing-card.featured {
  border-color: rgba(42, 171, 238, 0.5);
  background: linear-gradient(180deg, rgba(42, 171, 238, 0.13), rgba(15, 30, 52, 0.86));
}

.pricing-card.muted {
  opacity: 0.82;
}

.badge {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.pricing-card ul,
.compare-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  color: var(--text-soft);
}

.pricing-card li,
.compare-card li {
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before,
.compare-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.pricing-card .button {
  margin-top: auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-card.manual li::before {
  content: "×";
  color: var(--red);
}

.compare-card.statusly {
  border-color: rgba(42, 171, 238, 0.35);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(42, 171, 238, 0.12);
  color: var(--cyan);
  font-size: 20px;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  padding-bottom: 96px;
}

.final-cta-box {
  text-align: center;
}

.final-cta-box p {
  max-width: 620px;
  margin-inline: auto;
}

.site-footer {
  padding: 42px 0 104px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 11px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  background: rgba(7, 17, 31, 0.86);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.mobile-sticky-cta .button {
  width: 100%;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    margin: 0 auto;
  }

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

  .feature-grid,
  .steps-grid,
  .pricing-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(9, 19, 35, 0.98);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 13px 12px;
    border-radius: 12px;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    padding: 58px 0 44px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-grid,
  .feature-grid,
  .steps-grid,
  .pricing-grid,
  .comparison-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .use-case-card.full-width {
    grid-column: auto;
  }

  .section {
    padding: 54px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* SEO guide hub and article pages */
.guides-section {
  position: relative;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guides-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.guide-card:hover,
.guide-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(42, 171, 238, 0.44);
  background: rgba(42, 171, 238, 0.075);
}

.guide-label {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.article-hero {
  padding: 78px 0 34px;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 42px;
  align-items: start;
}

.article-page h1 {
  max-width: 900px;
  font-size: clamp(38px, 5.8vw, 68px);
}

.toc-card,
.article-disclaimer,
.article-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
}

.toc-card {
  position: sticky;
  top: 96px;
  padding: 20px;
}

.toc-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.toc-links a {
  color: var(--text-soft);
  font-weight: 700;
}

.toc-links a:hover,
.toc-links a:focus-visible {
  color: var(--text);
}

.article-layout {
  padding: 24px 0 84px;
}

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

.article-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.article-section p,
.article-section li,
.article-disclaimer p,
.article-cta p {
  color: var(--text-soft);
  font-size: 17px;
}

.article-section h2 {
  font-size: clamp(28px, 3.3vw, 42px);
}

.article-disclaimer {
  margin: 34px 0;
  padding: 24px;
  border-color: rgba(251, 191, 36, 0.32);
  background: rgba(251, 191, 36, 0.08);
}

.article-disclaimer h2 {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

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

.article-cta {
  margin: 34px 0;
  padding: clamp(26px, 5vw, 44px);
  border-color: rgba(42, 171, 238, 0.28);
  background:
    radial-gradient(circle at 12% 20%, rgba(42, 171, 238, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.article-faq-list {
  margin: 0;
  max-width: none;
}

@media (max-width: 980px) {
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .toc-card {
    position: static;
  }

  .guides-grid,
  .guides-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .guides-grid,
  .guides-grid.compact {
    grid-template-columns: 1fr;
  }

  .article-hero {
    padding: 52px 0 22px;
  }

  .article-layout {
    padding-bottom: 64px;
  }

  .article-section {
    padding: 24px 0;
  }
}
