:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-2: #070d16;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(116, 180, 255, 0.22);
  --text: #f4f7fb;
  --muted: #97a3b0;
  --muted-2: #c5cfda;
  --blue: #3e8cff;
  --blue-2: #74b4ff;
  --blue-soft: rgba(62, 140, 255, 0.22);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 0%, rgba(62, 140, 255, 0.22), transparent 28%),
    radial-gradient(circle at 100% 15%, rgba(116, 180, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #090909 0%, #050505 52%, #030304 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
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: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 88%);
  opacity: .32;
}
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(116, 180, 255, .95);
  outline-offset: 3px;
}
img { max-width: 100%; }

.page {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}

.surface {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 999px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}
.brand strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.03em;
}
.brand span {
  color: var(--muted);
  font-size: 13px;
}
.navlinks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  color: #dbe4ef;
  font-size: 14px;
}
.navlinks a {
  opacity: .82;
  transition: opacity .15s ease, color .15s ease;
}
.navlinks a:hover { opacity: 1; color: white; }

.btn, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover, .btn-ghost:hover { transform: translateY(-1px); }
.btn {
  background: linear-gradient(135deg, var(--blue), #2d6cff);
  color: white;
  box-shadow: 0 10px 30px rgba(62, 140, 255, .22);
}
.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 28px;
  align-items: center;
  padding: 72px 0 30px;
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: #dce5ef;
  font-size: 13px;
}
.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}
.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(48px, 7.8vw, 94px);
  line-height: .92;
  letter-spacing: -0.075em;
  max-width: 10ch;
}
.lede {
  margin: 0;
  max-width: 58ch;
  color: #c7d0db;
  font-size: 18px;
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  padding: 16px 18px;
}
.stat strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}
.stat span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.hero-visual .head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.hero-visual .head strong {
  display: block;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-visual .head span {
  color: var(--muted);
  font-size: 13px;
}
.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-visual .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 20px 22px;
}
.chip {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: #dfe6ef;
  font-size: 13px;
}

.section { margin-top: 92px; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: #dce5ef;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
}
.section-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}
.section h2 {
  margin: 16px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.section-sub {
  margin: 0;
  max-width: 64ch;
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.72;
}

.card-grid,
.package-grid,
.faq-grid,
.contact-grid,
.split-grid {
  display: grid;
  gap: 16px;
}
.card-grid { margin-top: 26px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.package-grid { margin-top: 26px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq-grid { margin-top: 26px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-grid { margin-top: 26px; grid-template-columns: 1.05fr .95fr; }
.split-grid { margin-top: 26px; grid-template-columns: .95fr 1.05fr; }

.card,
.package,
.faq-item,
.contact-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
}
.card,
.package,
.faq-item,
.contact-card { padding: 22px; }
.card.featured,
.package.featured {
  background: linear-gradient(180deg, rgba(62,140,255,.12), rgba(255,255,255,.04));
  border-color: var(--line-strong);
}
.card-number,
.package-label {
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
}
.card h3,
.package h3,
.faq-item h3,
.contact-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  letter-spacing: -.03em;
}
.card p,
.package p,
.faq-item p,
.contact-card p,
.panel p,
.list-item {
  margin: 0;
  color: #c7d0db;
  line-height: 1.68;
}
.list { display: grid; gap: 10px; margin-top: 16px; }
.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
}
.list-item i {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 6px;
}

.panel-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: #b7c3d0;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 700;
}
.panel-body { padding: 20px; }
.timeline { display: grid; gap: 14px; }
.timeline-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}
.timeline-step .n {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(116,180,255,.18);
  background: linear-gradient(135deg, rgba(62,140,255,.22), rgba(116,180,255,.08));
  font-weight: 800;
}
.timeline-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}
.timeline-step span {
  color: #c7d0db;
  font-size: 14px;
  line-height: 1.65;
}

.package {
  position: relative;
}
.package.featured::before {
  content: "Most popular";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(116,180,255,.24);
  background: rgba(62,140,255,.18);
  color: #eef4ff;
  font-size: 12px;
  font-weight: 700;
}
.package ul,
.contact-card ul,
.faq-item ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #dce4ee;
  line-height: 1.8;
}
.package-price {
  margin-top: 14px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.05em;
}
.package .muted,
.contact-card .muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: #dce4ee;
}
.contact-line span { color: var(--muted); }

.footer {
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.center-hero {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
}
.fourohfour {
  max-width: 760px;
  text-align: center;
  padding: 42px 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.fourohfour h1 {
  margin: 16px 0 12px;
  font-size: clamp(44px, 8vw, 84px);
  line-height: .95;
  letter-spacing: -.07em;
}
.fourohfour p {
  margin: 0 auto;
  max-width: 54ch;
  color: var(--muted-2);
  line-height: 1.72;
}

@media (max-width: 980px) {
  .hero,
  .card-grid,
  .package-grid,
  .faq-grid,
  .contact-grid,
  .split-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }
  .topbar {
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero { padding-top: 48px; }
}

@media (max-width: 640px) {
  .page { padding-inline: 14px; }
  .hero h1 { max-width: 9ch; }
  .fourohfour { padding: 32px 20px; }
}
