:root {
  --bg: #06101f;
  --bg-2: #09182c;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #edf6ff;
  --muted: #a9b8cc;
  --line: rgba(255, 255, 255, 0.14);
  --brand: #00e5ff;
  --brand-2: #4467ff;
  --accent: #8b5cf6;
  --success: #36d399;
  --warning: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 229, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(139, 92, 246, 0.22), transparent 30rem),
    linear-gradient(180deg, var(--bg), #040912 55%, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad { padding: 108px 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--text);
  color: #07111f;
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 31, 0.72);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2) 52%, var(--accent));
  color: white;
  box-shadow: 0 14px 36px rgba(68, 103, 255, 0.32);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.btn-small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.9rem;
}

.hero { padding-top: 90px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  max-width: 840px;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2.1vw, 1.24rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 30px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.hero-card,
.panel,
.card,
.price-card,
.payment-box,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 28px;
  border-radius: 36px;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -100px auto;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.16);
  filter: blur(20px);
}

.orbit-wrap {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: 190px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.35));
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  animation: float 6s ease-in-out infinite;
}

.orbit-one { width: 300px; height: 300px; }
.orbit-two { width: 220px; height: 220px; animation-delay: -2s; transform: rotate(25deg); }

.status-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(4, 9, 18, 0.65);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(54, 211, 153, 0.12);
  margin-bottom: 8px;
}

.status-card small, .metric-grid span { color: var(--muted); }

.metric-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.metric-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 18px;
}

.metric-grid strong {
  display: block;
  font-size: 1.35rem;
}

.metric-grid span { display: block; font-size: 0.82rem; }

.strip {
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.strip-track {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.section-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 46px;
}

.section-head.left {
  margin-inline: 0;
  text-align: left;
}

.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }

.cards {
  display: grid;
  gap: 18px;
}

.three-cols { grid-template-columns: repeat(3, 1fr); }

.card {
  padding: 26px;
  border-radius: var(--radius);
  min-height: 240px;
}

.card p, .price-card p, .panel p, .payment-box p { color: var(--muted); }

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--brand);
  font-weight: 900;
  border: 1px solid rgba(0, 229, 255, 0.22);
}

.muted-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 48px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  font-weight: 900;
}

.step p { color: var(--muted); margin-bottom: 0; }

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

.price-card {
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(0, 229, 255, 0.42);
  background:
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  transform: translateY(-14px);
}

.package {
  color: var(--brand) !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.price-card h3 {
  font-size: 2.4rem;
  letter-spacing: -0.05em;
}

.price-card ul {
  padding: 0;
  margin: 18px 0 28px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-card li {
  color: var(--muted);
  padding-left: 28px;
  position: relative;
}

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

.price-card .btn { margin-top: auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  padding: 34px;
  border-radius: 30px;
}

.business-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.business-list div,
.address-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.business-list span,
.address-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.business-list strong,
.address-card strong {
  display: block;
  color: var(--text);
}

.address-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.payment-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 20%, rgba(139, 92, 246, 0.22), transparent 22rem),
    linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(255, 255, 255, 0.055));
}

code {
  color: var(--brand);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
  padding: 2px 6px;
  border-radius: 8px;
}

.payment-actions {
  display: grid;
  gap: 12px;
  min-width: 240px;
}

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

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods a {
  color: var(--text);
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-form {
  padding: 28px;
  border-radius: 28px;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

input, textarea, select {
  width: 100%;
  color: var(--text);
  background: rgba(4, 9, 18, 0.6);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px;
  outline: none;
}

textarea { resize: vertical; }

input:focus, textarea:focus, select:focus {
  border-color: rgba(0, 229, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}

.footer {
  padding: 58px 0 28px;
  background: #040912;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 34px;
}

.footer h3 {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer p, .footer a, .footer span {
  color: var(--muted);
}

.footer a, .footer span {
  display: block;
  margin: 8px 0;
}

.footer a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 22px;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(6, 16, 31, 0.96);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open { display: flex; }

  .hero-grid,
  .split,
  .about-grid,
  .payment-box,
  .contact-grid { grid-template-columns: 1fr; }

  .hero-card { min-height: 480px; }

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

  .price-card.featured { transform: none; }

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

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 76px 0; }
  .hero { padding-top: 62px; }
  .three-cols,
  .pricing-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions, .footer-bottom { flex-direction: column; align-items: stretch; }
  .metric-grid { grid-template-columns: 1fr; }
  .strip-track { justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .payment-actions { min-width: auto; }
  .panel, .payment-box, .contact-form { padding: 22px; }
}
