:root {
  --ink: #07080d;
  --panel: rgba(255, 255, 255, .045);
  --panel-strong: rgba(255, 255, 255, .08);
  --line: rgba(255, 255, 255, .13);
  --muted: #b8c0cf;
  --soft: #7e8798;
  --blue: #00aaff;
  --green: #63e6be;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.site {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% -10%, rgba(0, 102, 204, .22), transparent 42rem),
    radial-gradient(circle at 90% 35%, rgba(0, 170, 255, .08), transparent 28rem),
    var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.site a { color: #fff; }
.site a:hover { color: var(--blue); }

.site-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1001;
  display: flex;
  gap: .75rem 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: .55rem 1rem;
  color: #fff;
  background: linear-gradient(90deg, #007abb, #174ca1);
  font-size: .85rem;
}

.site-banner a {
  padding: .2rem .8rem;
  border-radius: 999px;
  color: #07101d;
  background: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.floating-nav {
  position: fixed;
  top: 3.15rem;
  left: 50%;
  z-index: 999;
  display: flex;
  gap: .15rem;
  align-items: center;
  max-width: calc(100% - 2rem);
  padding: .4rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(4, 6, 12, .88);
  box-shadow: 0 0 26px rgba(0, 170, 255, .16);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.floating-nav a {
  padding: .5rem .7rem;
  border-radius: 999px;
  color: #d7deea;
  font-size: .78rem;
  text-decoration: none;
  white-space: nowrap;
}

.floating-nav a:hover,
.floating-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(0, 170, 255, .14);
}

.floating-nav .nav-cta {
  color: #06111c;
  background: var(--blue);
  font-weight: 700;
}

.floating-nav .nav-cta:hover { color: #fff; background: #078ad0; }

.hamburger-menu {
  position: fixed;
  top: 3.1rem;
  right: 1rem;
  z-index: 1000;
  display: none;
  padding: .65rem;
  border: 1px solid var(--line);
  border-radius: .7rem;
  background: rgba(0, 0, 0, .85);
  cursor: pointer;
}

.hamburger-menu span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 4px;
  border-radius: 2px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  background: rgba(3, 5, 10, .97);
}

.mobile-menu a {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  text-decoration: none;
}

.mobile-menu .nav-cta {
  padding: .7rem 1.3rem;
  border-radius: .6rem;
  color: #06111c;
  background: var(--blue);
  font-size: 1rem;
  font-weight: 700;
}

.close-menu {
  position: absolute;
  top: 4.8rem;
  right: 1.4rem;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
}

.site .container {
  width: min(1140px, calc(100% - 3rem));
  margin: 0 auto;
}

.site .hero {
  padding: 12.5rem 0 6rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site h1, .site h2, .site h3, .site h4 {
  margin-top: 0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.12;
}

.site h1 {
  max-width: 900px;
  margin-right: auto;
  margin-bottom: 1.35rem;
  margin-left: auto;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  letter-spacing: -.055em;
}

.site h1 span, .accent { color: var(--blue); }
.site h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.site h3 { font-size: 1.35rem; }

.lede {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.subtle { color: var(--soft); }
.body-copy { color: var(--muted); }

.button-row {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: .85rem 1.2rem;
  border: 1px solid var(--blue);
  border-radius: .55rem;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(0, 170, 255, .24);
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.cta-btn:hover {
  color: #fff;
  background: #078bd0;
  box-shadow: 0 0 32px rgba(0, 170, 255, .4);
  transform: translateY(-2px);
}

.cta-btn.secondary {
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}

.cta-btn.secondary:hover { background: rgba(0, 170, 255, .1); }

.section { padding: 4.5rem 0; }
.section-heading { max-width: 680px; margin-bottom: 2rem; }
.section-heading p { color: var(--muted); }

.surface {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--panel);
  box-shadow: 0 0 30px rgba(255, 255, 255, .035);
}

.surface + .surface { margin-top: 1rem; }

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: .9rem;
  background: rgba(255, 255, 255, .035);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.card:hover {
  border-color: rgba(0, 170, 255, .45);
  background: rgba(0, 170, 255, .07);
  transform: translateY(-3px);
}

.card p, .card li { color: var(--muted); }
.card h3 { margin-bottom: .55rem; }
.card .price { margin: .3rem 0 .8rem; color: var(--blue); font-size: 1.15rem; font-weight: 700; }

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow: hidden;
}

.path-card::after {
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(0, 170, 255, .13);
  content: "";
  filter: blur(2px);
}

.path-card .cta-btn { align-self: flex-start; margin-top: auto; }
.path-card h3 { font-size: 1.65rem; }

.method {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
  margin-top: 2rem;
}

.method::before {
  position: absolute;
  top: 1.35rem;
  right: 7%;
  left: 7%;
  height: 1px;
  background: rgba(0, 170, 255, .35);
  content: "";
}

.method-step { position: relative; text-align: center; }
.method-number {
  position: relative;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  margin: 0 auto .75rem;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  background: #09101a;
  font-weight: 700;
}
.method-step h3 { margin-bottom: .3rem; font-size: 1rem; }
.method-step p { margin: 0; color: var(--soft); font-size: .85rem; }

.price { color: var(--blue); font-weight: 700; }
.tag {
  display: inline-block;
  margin-bottom: .75rem;
  padding: .25rem .55rem;
  border: 1px solid rgba(0, 170, 255, .3);
  border-radius: 999px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.list-clean { margin: 1rem 0 0; padding-left: 1.1rem; }
.list-clean li { margin-bottom: .45rem; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: .4rem; color: #fff; font-weight: 600; }
.form-group small { display: block; margin-top: .3rem; color: var(--soft); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: .8rem .85rem;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: .55rem;
  outline: none;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  font: inherit;
}
.form-group textarea { min-height: 8rem; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, .12);
}
.form-group select option { color: #fff; background: #101522; }
.form-actions { margin-top: 1.25rem; }
.success-message { display: none; text-align: center; }

.stars { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  opacity: .3;
  background: #fff;
  animation: shimmer 3s infinite ease-in-out alternate;
}
@keyframes shimmer {
  0%, 100% { opacity: .2; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.4); }
}

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--soft);
  text-align: center;
  font-size: .88rem;
}
.site-footer p { margin: .35rem 0; }
.site-footer a { color: var(--blue); }

@media (max-width: 1050px) {
  .floating-nav a { padding-inline: .5rem; font-size: .72rem; }
}

@media (max-width: 860px) {
  .floating-nav { display: none; }
  .hamburger-menu { display: block; }
  .grid-3, .grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method { grid-template-columns: repeat(3, 1fr); gap: 1.4rem .6rem; }
  .method::before { display: none; }
}

@media (max-width: 600px) {
  .site .container { width: min(100% - 2rem, 1140px); }
  .site .hero { padding-top: 10rem; padding-bottom: 3rem; }
  .section { padding: 3rem 0; }
  .grid-2, .grid-3, .grid-6, .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .method { grid-template-columns: repeat(2, 1fr); }
}

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