:root {
  --bg: #070B14;
  --panel: rgba(255,255,255,0.055);
  --border: rgba(255,255,255,0.13);
  --text: #F6F8FC;
  --muted: #A8B2C6;
  --soft: #DDE5F4;
  --blue: #4F6BFF;
  --cyan: #68E7FF;
  --green: #42E99A;
  --yellow: #FFC85A;
  --red: #FF5C7C;
  --radius: 26px;
  --shadow: 0 28px 90px rgba(0,0,0,0.36);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(79,107,255,0.20), transparent 31%),
    radial-gradient(circle at 90% 12%, rgba(104,231,255,0.12), transparent 30%),
    linear-gradient(180deg, #0A1222, var(--bg) 42%, #05070D);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 80%);
}

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

.page {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 14px 0 0;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 11, 20, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.nav-button {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 92px 0 74px;
  min-height: 760px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(66,233,154,0.12);
}

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

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.076em;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.email-capture {
  display: flex;
  gap: 10px;
  max-width: 620px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
}

.email-capture input {
  flex: 1;
  min-height: 50px;
  border: none;
  border-radius: 999px;
  background: transparent;
  padding: 0 16px;
  color: white;
  outline: none;
  font: inherit;
}

.email-capture button {
  min-height: 50px;
  border: none;
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(135deg, #3F63FF, #69E8FF);
  color: white;
  font-weight: 850;
  cursor: pointer;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.trust-pills span {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--muted);
  font-size: 13px;
}

.console,
.diagnostic-card,
.buyer-card,
.final-cta,
.comparison-card,
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.032)),
    rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.console { padding: 22px; }

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.small-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.console h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.045em;
}

.pill-green {
  align-self: flex-start;
  white-space: nowrap;
  padding: 8px 10px;
  border: 1px solid rgba(66,233,154,0.32);
  border-radius: 999px;
  background: rgba(66,233,154,0.11);
  color: #C8FFE5;
  font-size: 12px;
  font-weight: 850;
}

.finding {
  display: flex;
  gap: 13px;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
}

.finding > span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.finding.danger > span { background: var(--red); }
.finding.warning > span { background: var(--yellow); }
.finding.info > span { background: var(--cyan); }

.finding h3 {
  margin-bottom: 5px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.finding p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

code {
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(255,255,255,0.075);
  color: #EAF0FF;
}

.plan-box {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(79,107,255,0.28);
  border-radius: 20px;
  background: rgba(79,107,255,0.09);
}

.plan-step {
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(0,0,0,0.14);
}

.plan-step strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.plan-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.44;
}

.section { padding: 82px 0; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.section h2,
.center h2,
.diagnostic h2,
.final-cta h2,
.comparison-card h2,
.pricing-card h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.064em;
}

.copy p,
.center p,
.diagnostic p,
.final-cta p,
.comparison-card p,
.pricing-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0 0 32px;
}

.second-row {
  margin-top: -16px;
}

.cards article,
.module-grid article,
.buyer-list div {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.card-number,
.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 1px solid rgba(79,107,255,0.34);
  background: rgba(79,107,255,0.15);
  font-weight: 900;
  color: #E2E8FF;
}

.cards h3,
.module-grid h3,
.buyer-list h3,
.pricing-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.cards p,
.module-grid p,
.buyer-list p,
.pricing-grid p,
.footer p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 36px;
}

.buyer-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
}

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

.comparison,
.pricing-section {
  padding: 52px 0 20px;
}

.comparison-card,
.pricing-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  padding: clamp(28px, 5vw, 48px);
  align-items: start;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(0,0,0,0.16);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th, td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

th {
  color: var(--text);
  background: rgba(255,255,255,0.055);
  font-weight: 850;
}

tr:last-child td { border-bottom: none; }

.diagnostic { padding: 78px 0; }

.diagnostic-card {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 42px;
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at top right, rgba(104,231,255,0.16), transparent 34%),
    rgba(255,255,255,0.055);
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 26px 0 18px;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--soft);
}

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

.support-note {
  margin: 12px 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(104,231,255,0.22);
  border-radius: 14px;
  background: rgba(104,231,255,0.07);
  color: var(--soft);
  font-size: 13px;
  line-height: 1.55;
}

.service-path,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.service-path div,
.pricing-grid div {
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0,0,0,0.14);
}

.service-path span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-weight: 900;
  font-size: 12px;
}

.service-path strong,
.pricing-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  font-size: 13px;
}

.service-path p,
.pricing-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.disclaimer,
.form-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(0,0,0,0.22);
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

input, textarea, select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: 0;
  color: white;
  background: rgba(255,255,255,0.075);
  font: inherit;
}

textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

select option {
  background: #0C1322;
  color: white;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(79,107,255,0.72);
  box-shadow: 0 0 0 4px rgba(79,107,255,0.14);
}

.final-cta {
  margin: 44px 0 86px;
  padding: 52px 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(79,107,255,0.14), rgba(104,231,255,0.05)),
    rgba(255,255,255,0.045);
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 25px;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 40px 0 56px;
  border-top: 1px solid var(--border);
}

.footer p { margin-top: 12px; }

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 650;
}

.footer-links a:hover { color: white; }

@media (max-width: 960px) {
  .hero,
  .split,
  .buyer-card,
  .diagnostic-card,
  .comparison-card,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }

  .cards.three,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }
}

@media (max-width: 620px) {
  .page { width: min(100% - 22px, 1160px); }

  .nav {
    position: relative;
    top: auto;
    margin-top: 12px;
    border-radius: 22px;
  }

  .nav-button { display: none; }

  .hero {
    gap: 34px;
    padding: 62px 0 56px;
  }

  h1 {
    font-size: 47px;
    letter-spacing: -0.068em;
    line-height: 1;
  }

  .hero-text { font-size: 18px; }

  .email-capture {
    display: grid;
    border-radius: 22px;
  }

  .email-capture input,
  .email-capture button {
    width: 100%;
  }

  .console,
  .diagnostic-card,
  .buyer-card,
  .final-cta,
  .comparison-card,
  .pricing-card {
    border-radius: 28px;
  }

  .console { padding: 18px; }

  .console-top { flex-direction: column; }

  .console h2 { font-size: 28px; }

  .finding { padding: 14px; }

  .plan-box { padding: 14px; }

  .section { padding: 64px 0; }

  .section h2,
  .center h2,
  .diagnostic h2,
  .final-cta h2,
  .comparison-card h2,
  .pricing-card h2 {
    font-size: 39px;
    line-height: 1.03;
  }

  .copy p,
  .center p,
  .diagnostic p,
  .final-cta p,
  .comparison-card p,
  .pricing-card p {
    font-size: 17px;
  }

  .buyer-list,
  .service-path,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic { padding: 60px 0; }

  .diagnostic-card,
  .comparison-card,
  .pricing-card { padding: 24px; }

  .footer { flex-direction: column; }

  .footer-links { flex-wrap: wrap; }
}
