:root {
  --pitch: #5b86ff;
  --pitch-dark: #3d63e0;
  --navy: #16214a;
  --navy-soft: #1c2a5c;
  --ink: #f2f4fb;
  --paper: #05070c;
  --paper-dim: #0a0d16;
  --surface: #12151f;
  --surface-2: #1a1e2c;
  --line: #232838;
  --gold: #e8a53d;
  --muted: #93a0c2;
  --white: #ffffff;
  --font-display: "Orbitron", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  flex: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-tagline {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.8;
}

.nav-links a:not(.btn):hover { opacity: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--pitch);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover { background: var(--pitch-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover { border-color: var(--pitch); }

.btn-gold {
  background: var(--gold);
  color: #16130a;
}

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

.btn-sm { padding: 9px 16px; font-size: 13px; }

/* Hero */
.hero {
  padding: 76px 0 56px;
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(61, 107, 255, 0.14), transparent 60%),
    var(--paper);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--pitch);
  background: rgba(61, 107, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  max-width: 820px;
}

.hero h1 span { color: var(--pitch); }

.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 30px;
}

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

.hero-note {
  font-size: 13px;
  color: var(--muted);
}

/* Sections */
section { padding: 72px 0; }

.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}

.section-head .kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pitch);
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.section-alt { background: var(--paper-dim); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy .section-head p { color: rgba(255,255,255,0.7); }

/* Comparison */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
}

.compare-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.compare-card.win {
  border-color: var(--pitch);
  box-shadow: var(--shadow);
  position: relative;
}

.compare-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.compare-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.compare-card.lose .tag { background: rgba(239, 83, 80, 0.16); color: #ff8a80; }
.compare-card.win .tag { background: rgba(61, 107, 255,0.16); color: var(--pitch); }

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

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}

.compare-list .icon { flex: none; font-size: 15px; line-height: 1.4; }
.compare-card.lose .icon { color: #ff8a80; }
.compare-card.win .icon { color: var(--pitch); }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}

.step h3 { margin: 0 0 8px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

/* What it includes */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.card .feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(61, 107, 255,0.14);
  color: var(--pitch);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 14px;
}

.card h3 { margin: 0 0 8px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Example / showcase */
.showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; }
}

.browser-mock {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #e9ebe4;
}

.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: #d0d5c8; }
.browser-url {
  margin-left: 8px;
  font-size: 12px;
  color: #555;
  background: var(--white);
  border-radius: 999px;
  padding: 4px 12px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-body {
  padding: 26px 24px 30px;
  background: linear-gradient(180deg, #2547c9 0%, #0f1f57 100%);
  color: var(--white);
}

.browser-body .bs-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.01em; }
.browser-body .bs-role { font-size: 13px; opacity: 0.8; margin-bottom: 18px; }

.bs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.bs-stat {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.bs-stat b { display: block; font-size: 16px; }
.bs-stat span { font-size: 11px; opacity: 0.75; }

.bs-video {
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  font-size: 13px;
  opacity: 0.85;
}

.showcase-copy h2 { margin-top: 0; }
.showcase-copy p { color: rgba(255,255,255,0.75); }

.showcase-copy .btn { margin-top: 10px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--pitch);
  box-shadow: var(--shadow);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--pitch);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.price-card h3 { margin: 4px 0 4px; font-size: 18px; }
.price-card .price-sub { color: var(--muted); font-size: 13px; margin-bottom: 18px; }

.price-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.price-hosting { font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }

.price-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 11px;
  flex: 1;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
}

.price-list .icon { color: var(--pitch); flex: none; }

.price-card .btn { justify-content: center; }

/* FAQ */
.faq {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary .plus {
  flex: none;
  font-size: 18px;
  color: var(--pitch);
  transition: transform 0.15s ease;
}

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

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* Final CTA */
.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  margin: 0 24px;
}

@media (min-width: 1120px) {
  .cta-band { margin: 0 auto; max-width: 1120px; }
}

.cta-band h2 { margin: 0 0 12px; font-size: clamp(24px, 3vw, 32px); }
.cta-band p { color: rgba(255,255,255,0.7); margin: 0 0 26px; }
.cta-band .hero-actions { justify-content: center; }

/* Footer */
footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-links { display: flex; gap: 18px; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

@media (max-width: 640px) {
  .nav-links { gap: 12px; }
  .nav-links a:not(.btn):not(.btn-sm) { display: none; }
}

/* Form pages (signup / payment) */
.form-page {
  padding: 56px 0 90px;
  min-height: calc(100vh - 65px);
}

.form-shell {
  max-width: 520px;
  margin: 0 auto;
}

.form-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 22px;
}

.form-back:hover { color: var(--ink); }

.order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
}

.order-summary .os-tier { font-weight: 800; font-size: 15px; }
.order-summary .os-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.order-summary .os-price { font-weight: 800; font-size: 20px; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-card h1 {
  font-size: 24px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.form-card .form-intro {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 26px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pitch);
  background: var(--surface-2);
}

.field .field-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}

.form-shell.wide { max-width: 680px; }

.subhead {
  font-weight: 800;
  font-size: 14px;
  margin: 30px 0 6px;
  color: var(--ink);
}

.subhead span {
  font-weight: 500;
  color: var(--muted);
}

.form-status {
  display: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}

.form-status.show { display: block; }
.form-status.ok { background: rgba(61, 107, 255,0.14); color: var(--pitch); }
.form-status.err { background: rgba(239, 83, 80, 0.16); color: #ff8a80; }

.success-view {
  text-align: center;
  padding: 12px 0 4px;
}

.success-check {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--pitch);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.success-check svg {
  width: 38px;
  height: 38px;
}

.success-view h1 {
  font-size: 24px;
  margin: 0 0 10px;
}

.success-view .success-eta {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 26px;
}

.success-view .form-back {
  margin-bottom: 0;
  display: inline-flex;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}

.field-error {
  display: none;
  font-size: 12.5px;
  color: #ff8a80;
  margin-top: 6px;
}

.field.invalid input { border-color: #ff8a80; }
.field.invalid .field-error { display: block; }

.form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.form-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}

.payment-slot {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  background: var(--paper-dim);
  margin-bottom: 22px;
}

.payment-slot p { margin: 0; font-size: 13.5px; color: var(--muted); }

.customer-recap {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.customer-recap li { display: flex; justify-content: space-between; gap: 12px; }
.customer-recap li span:first-child { color: var(--muted); }
