/* ============================================================
   EDUOPS — Clean, minimal stylesheet
   Written from scratch. Every class used in index.html is here.
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --blue:    #5E8FD6;
  --green:   #4CAF7D;
  --ink:     #1a1a1a;
  --mid:     #555;
  --muted:   #888;
  --border:  #e4e4e4;
  --light:   #f5f5f5;
  --mono:    'JetBrains Mono', monospace;
  --nav-h:   64px;
  --radius:  3px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Typography helpers ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}
.eyebrow-dim { color: rgba(255,255,255,0.4); }

.text-white { color: #fff; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-dark {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.btn-dark:hover { background: #333; border-color: #333; }

.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border-color: #ccc;
}
.btn-outline:hover { border-color: #1a1a1a; }

.btn-white {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}
.btn-white:hover { background: #e8e8e8; border-color: #e8e8e8; }

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost-white:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.w-full { width: 100%; }

/* ── Shared section styles ───────────────────────────────────── */
.section {
  padding: 100px 0;
  background: #fff;
}
.section-light { background: var(--light); }
.section-dark  { background: #111; }

.section-head {
  max-width: 620px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-p {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 280ms var(--ease),
    border-color 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav links (desktop) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  color: rgba(255,255,255,0.75);
  transition: color 180ms ease, background 180ms ease;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
/* Dark text on white scrolled nav */
.nav.scrolled .nav-link { color: var(--mid); }
.nav.scrolled .nav-link:hover { color: var(--ink); background: rgba(0,0,0,0.04); }

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-wordmark {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 280ms var(--ease);
}
/* On dark transparent hero, wordmark should be white */
.nav:not(.scrolled) .nav-wordmark { color: #fff; }

/* Nav CTA */
.nav-cta {
  background: #1a1a1a;
  color: #fff;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: var(--radius);
  border: 1.5px solid #1a1a1a;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}
.nav-cta:hover { background: #333; border-color: #333; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: all 200ms ease;
}
/* On white scrolled nav, bars go dark */
.nav.scrolled .nav-hamburger span { background: var(--ink); }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 198;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0; right: -300px;
  width: 280px;
  height: 100%;
  z-index: 199;
  background: #fff;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 260ms var(--ease);
}
.drawer.open { right: 0; }

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.drawer-brand { display: flex; align-items: center; gap: 8px; }
.drawer-logo  { width: 24px; height: 24px; object-fit: contain; }
.drawer-name  { font-weight: 700; font-size: 15px; color: var(--ink); }

.drawer-close {
  background: none; border: none;
  font-size: 18px; color: var(--muted);
  cursor: pointer; line-height: 1;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.drawer-link {
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: color 150ms ease;
}
.drawer-link:last-child { border-bottom: none; }
.drawer-link:hover { color: var(--blue); }

.drawer-cta {
  display: block;
  margin-top: 24px;
  padding: 13px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  text-align: center;
  border: 1.5px solid var(--ink);
}
.drawer-cta:hover { background: #333; }


/* ============================================================
   HERO — aurora gradient mesh
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: #06040f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 60px;
}

/* ── Aurora orbs ───────────────────────────────────────────── */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

/* Deep violet — top left */
.aurora-orb-1 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, #4f2fa8 0%, transparent 70%);
  top: -15%; left: -10%;
  animation: drift1 18s ease-in-out infinite alternate;
}
/* Teal — top right */
.aurora-orb-2 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, #0ea5a0 0%, transparent 70%);
  top: -20%; right: -5%;
  animation: drift2 22s ease-in-out infinite alternate;
}
/* Indigo — center */
.aurora-orb-3 {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, #2d41c7 0%, transparent 70%);
  top: 20%; left: 25%;
  animation: drift3 16s ease-in-out infinite alternate;
  opacity: 0.40;
}
/* Amber/warm gold — bottom left */
.aurora-orb-4 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, #c06a14 0%, transparent 70%);
  bottom: -10%; left: 5%;
  animation: drift4 20s ease-in-out infinite alternate;
  opacity: 0.35;
}
/* Magenta — bottom right */
.aurora-orb-5 {
  width: 38vw; height: 38vw;
  background: radial-gradient(circle, #8b1a6b 0%, transparent 70%);
  bottom: 0%; right: 10%;
  animation: drift5 25s ease-in-out infinite alternate;
  opacity: 0.40;
}

/* Mobile — orbs are too small at vw units, switch to larger values */
@media (max-width: 768px) {
  .aurora-orb { filter: blur(60px); opacity: 0.65; }
  .aurora-orb-1 { width: 140vw; height: 140vw; top: -30%; left: -30%; }
  .aurora-orb-2 { width: 130vw; height: 130vw; top: -20%; right: -30%; }
  .aurora-orb-3 { width: 110vw; height: 110vw; top: 15%; left: -10%; opacity: 0.50; }
  .aurora-orb-4 { width: 100vw; height: 100vw; bottom: -20%; left: -10%; opacity: 0.45; }
  .aurora-orb-5 { width: 100vw; height: 100vw; bottom: -10%; right: -20%; opacity: 0.50; }
}

@keyframes drift1 {
  0%   { transform: translate(0,   0)   scale(1); }
  100% { transform: translate(6%,  8%)  scale(1.12); }
}
@keyframes drift2 {
  0%   { transform: translate(0,   0)   scale(1); }
  100% { transform: translate(-7%, 10%) scale(1.08); }
}
@keyframes drift3 {
  0%   { transform: translate(0,   0)   scale(1); }
  100% { transform: translate(5%, -6%)  scale(1.15); }
}
@keyframes drift4 {
  0%   { transform: translate(0,  0)    scale(1); }
  100% { transform: translate(8%, -8%)  scale(1.10); }
}
@keyframes drift5 {
  0%   { transform: translate(0,  0)    scale(1); }
  100% { transform: translate(-6%, -7%) scale(1.08); }
}

/* Dark vignette overlay — keeps edges deep, text legible */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(6,4,15,0.55) 100%),
    radial-gradient(ellipse 100% 40% at 50% 0%,   rgba(6,4,15,0.6) 0%, transparent 100%),
    radial-gradient(ellipse 100% 30% at 50% 100%, rgba(6,4,15,0.7) 0%, transparent 100%);
}

/* Notion badge — top center */
.hero-badge {
  position: absolute;
  top: calc(var(--nav-h) + 32px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.hero-badge-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Hero content — centered */
.hero-body {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  /* badge is ~44px tall + 32px from nav + spacing — push content clear */
  margin-top: 100px;
}

/* Desktop only — shift hero content slightly lower for better optical centre */
@media (min-width: 1025px) {
  .hero-body { margin-top: 140px; }
  .hero { padding-bottom: 100px; }
}

/* ── Headline ───────────────────────────────────────────────── */
.hero-h1 {
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 32px;
}

/* The italic serif "flows." word */
.hero-flows {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.03em;
  /* Colorful gradient matching aurora palette */
  background: linear-gradient(110deg, #7dd3fc 0%, #a78bfa 40%, #f0abfc 75%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.05em;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Desktop-only scroll arrow */
.hero-scroll-arrow {
  display: none;
}
@media (min-width: 1025px) {
  .hero-scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
    animation: arrowBob 2.4s ease-in-out infinite;
  }
  .hero-scroll-arrow:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    animation: none;
    transform: translateX(-50%) translateY(2px);
  }
}
@keyframes arrowBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   WHAT WE DO — pillars
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pillar {
  background: #fff;
  padding: 48px 36px;
  transition: background 200ms ease;
}
.pillar:hover { background: #fafafa; }

.pillar-num {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 24px;
}

.pillar-icon {
  color: var(--ink);
  opacity: 0.65;
  margin-bottom: 20px;
}

.pillar-h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.pillar-p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pillar-list li {
  font-size: 13px;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.pillar-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 11px;
  top: 1px;
}


/* ============================================================
   NOTION PARTNERSHIP — dark
   ============================================================ */
.notion-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: center;
}

.notion-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Big Notion logo in left column */
.notion-hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
}

.notion-right .eyebrow { margin-bottom: 18px; }

.section-dark .section-h2 { color: #fff; }

.notion-body {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}
.check-list li svg { flex-shrink: 0; margin-top: 1px; }


/* ============================================================
   WHO WE SERVE
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.who-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px 24px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.who-card:hover {
  border-color: #bbb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.who-accent {
  height: 3px;
  width: 32px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.who-h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.who-p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}


/* ============================================================
   PACKAGES
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pkg-card {
  border: 1px solid var(--border);
  padding: 40px 32px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease;
  position: relative;
}
.pkg-card:hover { border-color: #bbb; }

/* Featured card */
.pkg-featured {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.pkg-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--ink);
  padding: 4px 10px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 20px;
}

.pkg-tier {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

.pkg-price {
  font-size: 30px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.pkg-scope {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  display: block;
}

.pkg-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.pkg-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pkg-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-list li {
  font-size: 13px;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.pkg-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  top: 0;
}


/* ============================================================
   WHY EDUOPS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-card {
  background: var(--light);
  padding: 40px 32px;
  transition: background 200ms ease;
}
.why-card:hover { background: #fff; }

.why-icon {
  color: var(--blue);
  margin-bottom: 16px;
}

.why-h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.why-p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* CTA card in why-grid (replaces quote) */
.why-card-cta {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.why-card-cta .why-h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}
.why-card-cta .why-p {
  color: rgba(255,255,255,0.5);
}
.why-btn { margin-top: 8px; }


/* ============================================================
   CONTACT
   ============================================================ */
/* ============================================================
   CONTACT — aurora background (mirrors hero)
   ============================================================ */
.section-contact {
  position: relative;
  overflow: hidden;
  background: #06040f;
  text-align: center;
  padding: 120px 0;
}

/* Aurora orbs */
.contact-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}
/* Violet — top left */
.contact-orb-1 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, #4f2fa8 0%, transparent 70%);
  top: -20%; left: -10%;
  opacity: 0.55;
  animation: drift2 20s ease-in-out infinite alternate;
}
/* Teal — top right */
.contact-orb-2 {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, #0ea5a0 0%, transparent 70%);
  top: -10%; right: -5%;
  opacity: 0.50;
  animation: drift1 24s ease-in-out infinite alternate;
}
/* Indigo — bottom center */
.contact-orb-3 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, #2d41c7 0%, transparent 70%);
  bottom: -20%; left: 20%;
  opacity: 0.40;
  animation: drift3 18s ease-in-out infinite alternate;
}
/* Magenta — bottom right */
.contact-orb-4 {
  width: 38vw; height: 38vw;
  background: radial-gradient(circle, #8b1a6b 0%, transparent 70%);
  bottom: -10%; right: 5%;
  opacity: 0.40;
  animation: drift5 22s ease-in-out infinite alternate;
}

/* Same dark vignette as hero */
.contact-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(6,4,15,0.55) 100%),
    radial-gradient(ellipse 100% 40% at 50% 0%,   rgba(6,4,15,0.6) 0%, transparent 100%),
    radial-gradient(ellipse 100% 30% at 50% 100%, rgba(6,4,15,0.7) 0%, transparent 100%);
}

/* Content sits above aurora */
.section-contact .container { position: relative; z-index: 10; }

.contact-wrap {
  max-width: 580px;
  margin: 0 auto;
}

.contact-h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.contact-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-wordmark {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.85);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  transition: color 150ms ease;
}
.footer-link:hover { color: rgba(255,255,255,0.82); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}
.footer-links a {
  color: rgba(255,255,255,0.32);
  transition: color 150ms ease;
}
.footer-links a:hover { color: rgba(255,255,255,0.68); }


/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, background 150ms ease;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: #333; }


/* ============================================================
   SCROLL FADE ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   RESPONSIVE — 1024px (tablet landscape + small desktop)
   ============================================================ */
@media (max-width: 1024px) {
  /* Collapse nav links + CTA, show hamburger */
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }

  .pillars { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .notion-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* More badge-to-headline room on tablet */
  .hero-body { margin-top: 160px; padding: 0 32px; }
  .hero { padding-bottom: 100px; }
}


/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }

  /* Already hidden at 1024, reiterate cleanly */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Sections */
  .section { padding: 72px 0; }
  .section-contact { padding: 80px 0; }

  /* Hero */
  .hero-h1 { font-size: 38px; }
  .hero-body { margin-top: 160px; padding: 0 28px; }
  .hero { padding-bottom: 80px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 360px; }

  /* Who grid */
  .who-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }
  .why-quote { grid-column: auto; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Section head */
  .section-head { margin-bottom: 48px; }
  .section-h2 { font-size: 28px; }
}


/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .who-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 36px; }
  .hero-body { margin-top: 190px; padding: 0 20px; }
  .hero { padding-bottom: 90px; }
  .hero-actions .btn { width: 100%; max-width: 100%; }
  .contact-h2 { font-size: 30px; }
  .notion-layout { gap: 32px; }
  .pillar { padding: 36px 24px; }
  .why-card, .why-quote { padding: 32px 24px; }
  .pkg-card { padding: 32px 24px; }
}
