:root {
  --bg: #07111f;
  --bg-2: #0b1728;
  --panel: rgba(15, 28, 47, .78);
  --panel-strong: #101f34;
  --line: rgba(255,255,255,.09);
  --text: #f5f8ff;
  --muted: #9fb0c8;
  --brand: #31d7c6;
  --brand-2: #70f0df;
  --accent: #6ea8ff;
  --ok: #42d68a;
  --shadow: 0 26px 80px rgba(0,0,0,.34);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 4%, rgba(45, 211, 190, .09), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(87, 140, 255, .10), transparent 32rem),
    linear-gradient(180deg, #06101d 0%, #081424 55%, #07111f 100%);
  color: var(--text);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.aurora {
  position: fixed;
  z-index: -1;
  width: 36rem;
  height: 36rem;
  filter: blur(90px);
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
}
.aurora-a { top: 0; left: -12rem; background: #25e0ca; }
.aurora-b { top: 18rem; right: -15rem; background: #4f82ff; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(49,215,198,.35);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(49,215,198,.2), rgba(110,168,255,.12));
  color: var(--brand-2);
  font-weight: 900;
  letter-spacing: -.04em;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .98rem; letter-spacing: .13em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .69rem; letter-spacing: .18em; }

.nav { display: flex; align-items: center; gap: 28px; color: #c6d2e3; font-size: .93rem; }
.nav a { transition: color .2s ease, transform .2s ease; }
.nav a:hover { color: #fff; transform: translateY(-1px); }
.nav-admin {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: center;
  min-height: 700px;
  padding: 72px 0 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #b8c6d9;
  font-size: .82rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8d9aad;
  box-shadow: 0 0 0 5px rgba(141,154,173,.08);
}
.status-dot.online {
  background: var(--ok);
  box-shadow: 0 0 0 5px rgba(66,214,138,.10), 0 0 18px rgba(66,214,138,.55);
}
.hero h1 {
  margin: 22px 0 22px;
  max-width: 790px;
  font-size: clamp(3.25rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.055em;
}
.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--brand-2), #9bc1ff 72%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 760;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #54a8ff);
  color: #04111c;
  box-shadow: 0 16px 36px rgba(49,215,198,.16);
}
.btn-primary:hover { box-shadow: 0 20px 44px rgba(49,215,198,.24); }
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #eaf1fb;
}
.btn-large { min-height: 58px; padding-inline: 26px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}
.hero-meta div { display: grid; }
.hero-meta strong { color: #fff; font-size: 1.08rem; }
.hero-meta span { color: #7f91aa; font-size: .79rem; }

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16,31,52,.92), rgba(8,19,34,.9));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.terminal-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.terminal-head span { width: 9px; height: 9px; border-radius: 50%; background: #506077; }
.terminal-head span:first-child { background: #ff6f73; }
.terminal-head span:nth-child(2) { background: #f5c45d; }
.terminal-head span:nth-child(3) { background: #58d68d; }
.terminal-head em { margin-left: auto; color: #71849e; font: normal .72rem ui-monospace, SFMono-Regular, Menlo, monospace; }

.terminal-body { padding: 8px 0; }
.pipeline-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 19px 20px;
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.pipeline-row:last-child { border-bottom: 0; }
.pipeline-row b { color: #526880; font: 700 .78rem ui-monospace, monospace; }
.pipeline-row span { font-weight: 720; }
.pipeline-row i {
  padding: 5px 8px;
  border: 1px solid rgba(49,215,198,.18);
  border-radius: 7px;
  color: var(--brand-2);
  background: rgba(49,215,198,.055);
  font: normal 700 .67rem ui-monospace, monospace;
}
.strip {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 17px;
  overflow-x: auto;
  color: #8194ad;
  white-space: nowrap;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section { padding: 110px 0 10px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}
.section-heading.compact { margin-bottom: 26px; }
.section-heading h2,
.cta h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.section-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}
.kicker {
  color: var(--brand-2);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plan-card {
  position: relative;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  overflow: hidden;
}
.plan-card.featured {
  border-color: rgba(49,215,198,.32);
  background: linear-gradient(180deg, rgba(49,215,198,.105), rgba(255,255,255,.025));
}
.plan-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(49,215,198,.08);
  filter: blur(3px);
}
.plan-tag {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #9db0c8;
  font: 700 .66rem ui-monospace, monospace;
  letter-spacing: .08em;
}
.plan-card h3 { margin: 18px 0 4px; font-size: 1.45rem; }
.plan-price { color: #fff; font-size: 1.32rem; font-weight: 820; }
.plan-card p { min-height: 100px; margin: 18px 0 24px; color: var(--muted); font-size: .91rem; }
.plan-link { position: relative; z-index: 1; color: var(--brand-2); font-weight: 750; font-size: .88rem; }
.skeleton {
  min-height: 320px;
  background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.07), rgba(255,255,255,.03));
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite linear;
}
@keyframes shimmer { to { background-position: -200% 0; } }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.steps article,
.trust-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}
.steps article > span {
  color: #536a83;
  font: 700 .75rem ui-monospace, monospace;
}
.steps h3, .trust-card h3 { margin: 38px 0 8px; font-size: 1.05rem; }
.steps p, .trust-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-card { min-height: 230px; }
.trust-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(49,215,198,.2);
  border-radius: 13px;
  color: var(--brand-2);
  background: rgba(49,215,198,.06);
  font-size: 1.2rem;
}

.order-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}
.order-form,
.order-info {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.025);
}
.order-form { display: grid; gap: 16px; padding: 26px; }
.order-form label { display: grid; gap: 7px; }
.order-form label > span { color: #b8c6d9; font-size: .82rem; font-weight: 700; }
.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #091426;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}
.order-form textarea { resize: vertical; min-height: 130px; }
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: rgba(49,215,198,.55);
  box-shadow: 0 0 0 3px rgba(49,215,198,.08);
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.form-actions .btn { width: auto; }
.hidden-field { display: none !important; }
.order-message {
  min-height: 24px;
  padding: 0;
  color: var(--muted);
  font-size: .9rem;
}
.order-message.success {
  padding: 12px 14px;
  border: 1px solid rgba(66,214,138,.22);
  border-radius: 12px;
  background: rgba(66,214,138,.07);
  color: #89e7b0;
}
.order-message.error {
  padding: 12px 14px;
  border: 1px solid rgba(255,111,115,.22);
  border-radius: 12px;
  background: rgba(255,111,115,.07);
  color: #ff9da1;
}
.order-info { padding: 28px; }
.order-info h3 { margin: 10px 0 12px; font-size: 1.7rem; line-height: 1.12; }
.order-info p { color: var(--muted); }
.order-points { display: grid; gap: 10px; margin-top: 26px; }
.order-points span {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.02);
  color: #c8d5e6;
  font-size: .86rem;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 110px;
  margin-bottom: 80px;
  padding: 50px;
  border: 1px solid rgba(49,215,198,.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(110,168,255,.12), transparent 35%),
    linear-gradient(135deg, rgba(49,215,198,.08), rgba(255,255,255,.025));
}
.cta p { max-width: 680px; margin: 16px 0 0; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0 42px;
}
.footer-inner > div:first-child { display: grid; }
.footer-inner strong { letter-spacing: .06em; }
.footer-inner span { color: #71849e; font-size: .79rem; }
.footer-links { display: flex; gap: 22px; color: #8295ae; font-size: .82rem; }
.footer-links a:hover { color: #fff; }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 72px; }
  .hero-panel { max-width: 700px; transform: none; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .order-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; gap: 14px; }
  .cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .shell, .site-header { width: min(100% - 26px, 1180px); }
  .site-header { padding-block: 14px; }
  .nav a:not(.nav-admin) { display: none; }
  .brand-copy small { display: none; }
  .hero { gap: 34px; padding: 54px 0 62px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .form-two { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .hero-meta { gap: 18px; justify-content: space-between; }
  .hero-meta div { min-width: 90px; }
  .plans-grid, .steps, .trust-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }
  .plan-card p { min-height: 0; }
  .section { padding-top: 82px; }
  .cta { margin-top: 82px; padding: 30px 22px; }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
