/* ── Reset & Variables ───────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #080808;
  --bg-card:      #0d0d0d;
  --bg-dark:      #050505;
  --purple:       #9B59FF;
  --purple-light: #C084FC;
  --purple-dim:   rgba(155, 89, 255, 0.12);
  --purple-glow:  rgba(155, 89, 255, 0.45);
  --text:         #FFFFFF;
  --text-muted:   #888888;
  --border:       rgba(155, 89, 255, 0.18);
  --font:         'Space Grotesk', sans-serif;
  --font-mono:    'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Glow Text ───────────────────────────────────────── */
.glow-text {
  color: var(--purple-light);
  text-shadow:
    0 0 18px var(--purple-glow),
    0 0 40px rgba(155, 89, 255, 0.2);
}

/* ── Layout ──────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section      { padding: 110px 0; }
.section-dark { background: var(--bg-dark); }

/* ── Navigation ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--purple-light);
  text-shadow: 0 0 14px var(--purple-glow);
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--purple-light);
  border: 1px solid var(--purple);
  padding: 11px 22px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
}

.btn-primary:hover {
  background: var(--purple-dim);
  border-color: var(--purple-light);
  box-shadow:
    0 0 18px var(--purple-glow),
    0 0 40px rgba(155, 89, 255, 0.12);
}

.btn-large {
  padding: 16px 38px;
  font-size: 14px;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(155, 89, 255, 0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 89, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 89, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 40%, black 20%, transparent 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--border);
  background: var(--purple-dim);
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 32px;
}

.hero-headline {
  font-size: clamp(50px, 7.5vw, 88px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.75;
}

/* ── Section Labels & Titles ─────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 60px;
}

/* ── Cards Grid ──────────────────────────────────────── */
.cards-grid { display: grid; gap: 1px; }
.three-col  { grid-template-columns: repeat(3, 1fr); }
.two-col    { grid-template-columns: repeat(2, 1fr); }

/* ── Why Cards ───────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 28px rgba(155, 89, 255, 0.08);
}

.card-icon {
  font-size: 22px;
  color: var(--purple-light);
  margin-bottom: 22px;
  text-shadow: 0 0 12px var(--purple-glow);
  display: block;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ── Service Cards ───────────────────────────────────── */
.service-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 34px 30px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 28px rgba(155, 89, 255, 0.08);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--purple);
  min-width: 26px;
  padding-top: 4px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ── Process ─────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  padding: 48px 36px;
  border: 1px solid var(--border);
  border-right: none;
  transition: background 0.3s ease;
}

.process-step:last-child {
  border-right: 1px solid var(--border);
}

.process-step:hover {
  background: var(--purple-dim);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  color: var(--purple);
  opacity: 0.35;
  margin-bottom: 24px;
  line-height: 1;
}

.process-step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ── CTA / Book Section ──────────────────────────────── */
.cta-section { text-align: center; }

.cta-sub {
  margin: 0 auto 52px;
}

.calendly-wrapper {
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .three-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .two-col,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }

  .process-step:last-child {
    border-bottom: 1px solid var(--border);
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav-cta { display: none; }

  .hero-headline { letter-spacing: -0.5px; }
}
