:root {
  --bg: #09111d;
  --bg-alt: #0f1b2d;
  --surface: #12243a;
  --surface-2: #16314f;
  --border: #264564;
  --text: #e8f0fb;
  --text-muted: #a4bad4;
  --accent: #53a9ff;
  --accent-hover: #74bcff;
  --accent-soft: rgba(83, 169, 255, 0.16);
  --success-soft: rgba(130, 255, 182, 0.18);
  --radius: 14px;
  --shadow: 0 12px 32px rgba(2, 8, 18, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(83, 169, 255, 0.18), transparent 40%),
    radial-gradient(circle at top left, rgba(130, 255, 182, 0.1), transparent 35%),
    var(--bg);
}

a {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(9, 17, 29, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

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

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.section {
  margin-bottom: 4rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.hero {
  padding: 3.25rem;
  background: linear-gradient(160deg, rgba(18, 36, 58, 0.94), rgba(22, 49, 79, 0.78));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.hero .tagline {
  max-width: 720px;
  font-size: 1.15rem;
}

.hero-support {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--text);
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 0;
}

.trust-strip {
  list-style: none;
  margin: 1.9rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-strip li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.88rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  padding: 0.68rem 1.05rem;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.15s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #071320;
}

.btn.primary:hover {
  background: var(--accent-hover);
}

.btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn.secondary:hover {
  background: var(--accent-soft);
}

.section-heading {
  margin-bottom: 1.25rem;
}

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

.card {
  background: rgba(18, 36, 58, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.card p {
  margin-bottom: 0;
}

.section-note {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--text);
}

.split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
}

.check-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.check-list li {
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.steps li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.steps span {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 99px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.12rem;
}

.highlight,
.panel {
  background: rgba(18, 36, 58, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.small {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.compact {
  margin: 0;
  padding-left: 1.15rem;
}

.compact li {
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

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

.price-card {
  position: relative;
  background: rgba(18, 36, 58, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.price-card ul {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
}

.price-card li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price {
  margin: 0;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.price span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.meta {
  margin: 0.25rem 0 1rem;
  font-size: 0.92rem;
}

.featured {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent-soft);
}

.badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--success-soft);
  color: #c5ffd9;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1rem 2.25rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pilot-form {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.pilot-form label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.pilot-form input,
.pilot-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.68rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: rgba(9, 17, 29, 0.65);
}

.pilot-form textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .nav-cta {
    display: none;
  }

  .card-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  main {
    padding: 2rem 1rem 4rem;
  }

  .hero {
    padding: 2rem 1.1rem;
  }

  .card-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
