:root {
  --bg: #07080b;
  --bg-soft: #0f1119;
  --panel: #151a26;
  --text: #f5f7ff;
  --muted: #9aa3b2;
  --accent: #46f3ff;
  --accent-2: #6bff7a;
  --accent-warm: #ff6a3d;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(70, 243, 255, 0.15), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(107, 255, 122, 0.12), transparent 42%),
    radial-gradient(circle at 50% 80%, rgba(255, 106, 61, 0.15), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

ul {
  list-style: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 8, 11, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.hero {
  padding: 96px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: 1.02;
  margin-bottom: 20px;
}

.hero h1 .line {
  display: block;
}

.subhead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.clarifier {
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #07080b;
  box-shadow: 0 18px 40px rgba(70, 243, 255, 0.25);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(21, 26, 38, 0.4);
}

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

.hero-media {
  position: relative;
}

.hero-media img {
  box-shadow: var(--shadow);
  border: 1px solid rgba(70, 243, 255, 0.2);
}

.section {
  padding: 80px 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.what {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.03), transparent 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.promise {
  background: var(--bg-soft);
}

.promise-list,
.steps,
.price-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.promise-list li,
.steps li,
.price-list li {
  background: var(--panel);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.98rem;
}

.split,
.pricing-grid,
.future-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.pricing {
  background: var(--bg-soft);
}

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

.price {
  font-size: 3rem;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.price-note {
  color: var(--muted);
  margin-bottom: 18px;
}

.future-card {
  background: linear-gradient(140deg, rgba(70, 243, 255, 0.16), rgba(107, 255, 122, 0.12));
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
}

.cta {
  background: #f5f7ff;
  color: #07080b;
}

.cta .container {
  color: #07080b;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta h2,
.cta p {
  color: #07080b;
}

.cta-actions {
  display: grid;
  gap: 8px;
  text-align: right;
}

.cta-note {
  font-size: 0.85rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 50px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-copy,
.hero-media,
.section {
  animation: fadeUp 0.9s ease both;
}

.hero-media {
  animation-delay: 0.15s;
}

.section:nth-of-type(2) {
  animation-delay: 0.1s;
}

.section:nth-of-type(3) {
  animation-delay: 0.15s;
}

.section:nth-of-type(4) {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .pricing-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    right: 4vw;
    top: 70px;
    flex-direction: column;
    background: rgba(7, 8, 11, 0.98);
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: none;
  }

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

  .cta-actions {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 70px;
  }
}
