:root {
  --bg: #080e18;
  --surface: #101928;
  --surface-soft: #0d1625;
  --line: rgba(101, 116, 139, 0.28);
  --line-strong: rgba(34, 211, 238, 0.24);
  --text: #e7eef9;
  --muted: #93a4bf;
  --primary: #22d3ee;
  --primary-strong: #06b6d4;
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-xl: 0 22px 44px rgba(2, 8, 18, 0.44);
  --shadow-md: 0 12px 24px rgba(2, 8, 18, 0.34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -12%, rgba(34, 211, 238, 0.14), transparent 34%),
    radial-gradient(circle at 86% -8%, rgba(45, 212, 191, 0.09), transparent 36%),
    linear-gradient(180deg, #070c15 0%, #080f1a 48%, #070f1a 100%);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.75), transparent 82%);
  z-index: -2;
}

.marketing-bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(76px);
  opacity: 0.5;
  pointer-events: none;
}

.marketing-bg-orb-a {
  width: 360px;
  height: 360px;
  left: -140px;
  top: -130px;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.48), rgba(34, 211, 238, 0));
}

.marketing-bg-orb-b {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 12px;
  background: radial-gradient(circle at center, rgba(45, 212, 191, 0.34), rgba(45, 212, 191, 0));
}

.shell {
  width: min(1280px, calc(100% - 52px));
  margin: 0 auto;
}

.marketing-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(8, 14, 24, 0.86);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: "Space Mono", "DM Sans", monospace;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 17px;
}

.nav-links a {
  text-decoration: none;
  color: #8ea2be;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #d7e7fd;
}

.nav-links a[aria-current="page"] {
  color: #eef6ff;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(18, 29, 44, 0.72);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 0.68rem;
  cursor: pointer;
}

.mobile-menu-toggle:hover {
  border-color: var(--line-strong);
  color: var(--primary);
}

.mobile-menu-panel {
  display: none;
  padding: 0 0 0.65rem;
}

.mobile-menu-panel.open {
  display: grid;
  gap: 0.22rem;
}

.mobile-menu-panel a {
  text-decoration: none;
  color: #c9d9ef;
  font-size: 0.86rem;
  padding: 0.48rem 0.12rem;
}

.mobile-menu-panel a:hover {
  color: var(--primary);
}

.mobile-menu-ctas {
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.56rem 0.8rem;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #05131f;
}

.btn-primary:hover {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.22);
}

.btn-secondary {
  background: rgba(18, 29, 44, 0.72);
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  color: var(--primary);
  background: rgba(16, 27, 40, 0.9);
}

.btn-lg {
  padding: 0.64rem 0.95rem;
  font-size: 0.89rem;
}

main {
  padding-bottom: 20px;
}

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

.hero-simple {
  padding: 48px 0 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 26px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  color: var(--primary);
}

.hero-title {
  margin: 0.74rem 0 0.78rem;
  max-width: 780px;
  font-size: clamp(1.66rem, 3.9vw, 2.76rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.95rem;
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.hero-footnote {
  margin: 10px 0 0;
  color: #7f92b1;
  font-size: 0.8rem;
}

.hero-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(17, 27, 41, 0.95), rgba(13, 21, 33, 0.95));
  padding: 16px;
  box-shadow: var(--shadow-xl);
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-card-head p {
  margin: 0;
  font-size: 0.76rem;
  font-family: "Space Mono", monospace;
  color: #8ea2be;
}

.hero-card-head strong {
  font-size: 0.93rem;
  color: #eaf3ff;
}

.hero-kpi-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-kpi-grid div {
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 10px;
  background: rgba(13, 22, 35, 0.86);
  padding: 9px 10px;
}

.hero-kpi-grid span {
  display: block;
  font-size: 0.72rem;
  color: #8ca2bf;
}

.hero-kpi-grid strong {
  display: block;
  margin-top: 3px;
  color: #e5eefc;
  font-size: 1rem;
  font-family: "Space Mono", monospace;
}

.hero-quality {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.hero-quality div {
  display: grid;
  gap: 6px;
}

.hero-quality span {
  font-size: 0.75rem;
  color: #8ca2bf;
}

.hero-quality i {
  display: block;
  width: var(--w, 60%);
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.trust-row {
  padding: 0 0 10px;
}

.trust-inner {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(12, 21, 34, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 13px;
}

.trust-inner p {
  margin: 0;
  color: #8ea2be;
  font-size: 0.83rem;
  font-weight: 600;
}

.trust-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.trust-tags span {
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  padding: 4px 9px;
  color: var(--primary);
  font-size: 0.72rem;
  font-family: "Space Mono", monospace;
}

.section {
  padding: 20px 0;
}

.section-soft .shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(12, 21, 34, 0.86);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.section-head {
  margin-bottom: 12px;
}

.section h2 {
  margin: 8px 0 0;
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

.pillar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(15, 26, 40, 0.92);
  padding: 12px;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.pillar-card:hover {
  border-color: rgba(34, 211, 238, 0.34);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.08);
}

.pillar-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.pillar-card p {
  margin: 7px 0 0;
  color: #8ea2be;
  line-height: 1.55;
  font-size: 0.85rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.check-list {
  margin: 11px 0 14px;
  padding-left: 18px;
  color: #8fa4c0;
  line-height: 1.7;
  font-size: 0.87rem;
}

.stack-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 24, 38, 0.92);
  padding: 10px;
}

.stack-row {
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 10px;
  padding: 9px;
  background: rgba(11, 19, 30, 0.84);
}

.stack-row + .stack-row {
  margin-top: 8px;
}

.stack-row strong {
  display: block;
  color: #dceafb;
  font-size: 0.84rem;
}

.stack-row span {
  display: block;
  margin-top: 3px;
  color: #89a0bc;
  font-size: 0.78rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.steps-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 24, 38, 0.92);
  padding: 12px;
}

.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #05131f;
  font-size: 0.7rem;
  font-family: "Space Mono", monospace;
  font-weight: 700;
}

.steps-grid h3 {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.steps-grid p {
  margin: 6px 0 0;
  color: #8da3bf;
  font-size: 0.82rem;
  line-height: 1.5;
}

.cta-panel {
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.08), transparent 38%),
    rgba(13, 22, 35, 0.96);
  padding: 20px;
  box-shadow: var(--shadow-xl);
}

.cta-panel p {
  margin: 7px 0 0;
  color: #8ca2bf;
  line-height: 1.6;
  max-width: 760px;
}

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

.stat-pill {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 24, 38, 0.92);
  padding: 10px;
}

.stat-pill strong {
  display: block;
  font-size: 0.9rem;
}

.stat-pill span {
  display: block;
  margin-top: 3px;
  color: #8ea3c0;
  font-size: 0.79rem;
}

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

.price-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(14, 24, 38, 0.92);
  padding: 14px;
  box-shadow: var(--shadow-md);
}

.price-card-featured {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 14px 30px rgba(34, 211, 238, 0.12);
}

.price-badge {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary);
  font-size: 0.66rem;
  font-family: "Space Mono", monospace;
  font-weight: 700;
}

.price-plan {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-value {
  margin: 7px 0 4px;
  font-size: 1.24rem;
  font-weight: 800;
}

.price-copy {
  margin: 0;
  color: #8da3bf;
  font-size: 0.83rem;
  line-height: 1.55;
}

.price-list {
  margin: 9px 0 13px;
  padding-left: 18px;
  color: #8ea4c0;
  line-height: 1.65;
  font-size: 0.82rem;
}

.faq-panel {
  padding: 0;
}

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

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 24, 38, 0.92);
  padding: 12px;
}

.faq-grid h3 {
  margin: 0;
  font-size: 0.9rem;
}

.faq-grid p {
  margin: 7px 0 0;
  color: #8da3bf;
  font-size: 0.82rem;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 24, 38, 0.92);
  padding: 12px;
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  margin: 0;
  font-size: 0.92rem;
}

.contact-card p {
  margin: 7px 0 0;
  color: #8ea4c0;
  font-size: 0.83rem;
  line-height: 1.55;
}

.marketing-footer {
  margin-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(8, 14, 24, 0.7);
}

.footer-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #8ea4c0;
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: #d7e8ff;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .pricing-layout,
  .faq-grid,
  .steps-grid,
  .pillar-grid,
  .pill-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav-actions > a {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(1280px, calc(100% - 28px));
  }

  .hero {
    padding-top: 44px;
  }

  .hero-title {
    font-size: clamp(1.46rem, 8vw, 2.05rem);
  }

  .nav-inner {
    min-height: 62px;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .nav-actions {
    width: 100%;
  }

  .btn {
    flex: 1;
  }

  .section-soft .shell,
  .cta-panel {
    padding: 16px;
  }
}
