:root {
  --bg: #0c0d10;
  --surface: #12141a;
  --muted: #161923;
  --text: #e9ecf5;
  --subtext: #b6bccd;
  --accent: #5dd8ff;
  --accent-2: #a96bff;
  --success: #3ce57d;
  --border: #1f2230;
  --card: #171a24;
  --shadow: 0 24px 60px rgba(5, 8, 20, 0.45);
  --radius: 16px;
  --grid-gap: 24px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(93, 216, 255, 0.07), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(169, 107, 255, 0.05), transparent 20%),
    linear-gradient(120deg, #0b0d12, #0d1017 45%, #0c0d10 90%);
  color: var(--text);
  min-height: 100vh;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--subtext);
}

header, section {
  width: 100%;
}

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  background: rgba(12, 13, 16, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.brand {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  gap: 20px;
}

.nav__links a {
  color: var(--subtext);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav__links a.is-active {
  color: var(--text);
  position: relative;
}

.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #5dd8ff, #a96bff);
  border-radius: 999px;
}

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

.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  padding: 80px 6vw 40px;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
}

.hero__content .lede {
  margin: 16px 0 20px;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.hero__stats strong {
  display: block;
  font-size: 1.25rem;
}

.hero__stats span {
  color: var(--subtext);
  font-size: 0.95rem;
}

.hero__card {
  background: linear-gradient(145deg, rgba(93, 216, 255, 0.12), rgba(169, 107, 255, 0.12));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 6vw;
}

.section--muted {
  background: var(--muted);
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

.lede {
  font-size: 1.05rem;
}

.pill {
  background: rgba(93, 216, 255, 0.18);
  color: var(--text);
  border: 1px solid rgba(93, 216, 255, 0.35);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pill--dark {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.08);
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card--wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.badge--green {
  border-color: rgba(60, 229, 125, 0.6);
  background: rgba(60, 229, 125, 0.1);
}

.badge--purple {
  border-color: rgba(169, 107, 255, 0.6);
  background: rgba(169, 107, 255, 0.1);
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 12px 0;
}

.list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  color: var(--subtext);
  line-height: 1.5;
}

.btn {
  background: linear-gradient(135deg, #5dd8ff, #a96bff);
  color: #050712;
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 35px rgba(169, 107, 255, 0.28);
  text-decoration: none;
}

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

.btn:active {
  transform: translateY(1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.card button {
  width: 100%;
}

.section code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.form {
  display: grid;
  gap: 12px;
  background: var(--card);
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--text);
}

input, select, textarea {
  width: 100%;
  background: #0f1118;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  color: var(--text);
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  padding: 32px 6vw 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  background: #0b0d12;
}

.footer__links {
  display: flex;
  gap: 16px;
}

.footer__links a {
  color: var(--subtext);
  text-decoration: none;
  font-weight: 600;
}

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .hero__card {
    order: -1;
  }

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

@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav__links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
