*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; user-select: none; -webkit-user-select: none; }

:root {
  --cyan:    #22D3EE;
  --indigo:  #4F46E5;
  --violet:  #7C3AED;
  --lavender:#A87BF5;
  --navy:    #0B1020;
  --dark:    #111827;
  --white:   #F9FAFB;
  --muted:   rgba(249,250,251,0.45);
  --border:  rgba(249,250,251,0.08);
}

html { scroll-behavior: smooth; }

input, textarea, select { user-select: text; -webkit-user-select: text; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 20px;
  left: 50%; transform: translateX(-50%);
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px 0 24px;
  height: 52px;
  width: min(560px, 92vw);
  background: rgba(17,24,39,0.82);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(249,250,251,0.1);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(79,70,229,0.12);
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.4px;
  display: flex; align-items: center; gap: 3px;
  color: var(--white); text-decoration: none;
  transform: translateX(-13px);
}
.logo img { height: 35px; }
.logo-pip {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 14px; color: var(--muted);
  text-decoration: none; padding: 8px 14px;
  border-radius: 8px; transition: color .2s;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); }

.pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  border-radius: 100px; cursor: pointer; text-decoration: none;
  transition: all .2s; border: none;
}
.pill-outline {
  padding: 8px 18px;
  border: 1px solid var(--border);
  color: var(--muted); background: transparent;
}
.pill-outline:hover { color: var(--white); border-color: rgba(249,250,251,0.22); }
.pill-fill {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  box-shadow: 0 0 24px rgba(124,58,237,0.4);
}
.pill-fill:hover { box-shadow: 0 0 40px rgba(124,58,237,0.7); transform: translateY(-1px); }

/* ─── PAGE HEADER ─── */
.ph {
  min-height: 56vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 190px 32px 90px;
  position: relative;
}
.ph-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(79,70,229,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 15% 75%, rgba(34,211,238,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 85% 70%, rgba(168,123,245,0.1) 0%, transparent 55%);
}
.ph-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 20%, transparent 75%);
}
.sec-label {
  font-size: 11px; font-weight:500; letter-spacing:2px; text-transform:uppercase;
  color: var(--lavender);
  margin-bottom: 26px;
  display:flex; align-items:center; gap:12px;
  position: relative;
}
.sec-label::before, .sec-label::after {
  content:''; width:36px; height:1px;
  background:rgba(168,123,245,.35);
}
.ph h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -3px;
  max-width: 760px;
  position: relative;
}
.h1-cyan { color: var(--cyan); }
.h1-lav { color: var(--lavender); }
.ph-desc {
  position: relative;
  margin-top: 26px;
  font-size: 17px; line-height: 1.8;
  color: var(--muted);
  max-width: 460px;
}

/* ─── CTA ─── */
.cta {
  padding: 150px 32px 180px;
  text-align:center;
  position:relative; z-index:1;
}
.cta-glow {
  position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 60% 65% at 50% 50%, rgba(79,70,229,.26) 0%, transparent 70%);
}
.cta h2 {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(40px,7vw,76px);
  font-weight:800; letter-spacing:-3px; line-height:1;
  position:relative; margin-bottom:32px;
}
.cta h2 .cc { color:var(--cyan); }
.cta h2 .cv { color:var(--lavender); }
.cta-sub {
  font-size:17px; color:var(--muted);
  line-height:1.8; margin-bottom:48px;
  position:relative;
}
.cta-btn { font-size:16px; padding:18px 48px; }

/* ─── FOOTER ─── */
footer {
  border-top:1px solid var(--border);
  padding:80px 64px 52px;
  display:grid; grid-template-columns:1fr auto;
  gap:48px; align-items:start;
  position:relative; z-index:1;
}
.ft-name {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:18px; font-weight:700;
  display:flex; align-items:center; gap:9px;
  margin-bottom:14px;
}
.ft-sub { font-size:13.5px; color:var(--muted); line-height:1.65; max-width:220px; }
.ft-cols { display:flex; gap:64px; }
.ft-col h4 {
  font-size:11px; font-weight:500; letter-spacing:1.5px; text-transform:uppercase;
  color:rgba(249,250,251,.28); margin-bottom:22px;
}
.ft-col a {
  display:block; font-size:14px;
  color:var(--muted); text-decoration:none;
  margin-bottom:14px; transition:color .2s;
}
.ft-col a:hover { color:var(--white); }
.ft-bottom {
  border-top:1px solid var(--border);
  padding:20px 64px;
  font-size:12px; color:rgba(249,250,251,.22);
  position:relative; z-index:1;
}

/* ─── REVEAL ─── */
.rv { opacity:0; transform:translateY(28px); transition:opacity .7s ease,transform .7s ease; }
.rv.in { opacity:1; transform:translateY(0); }

@media (max-width:720px){
  nav{padding:0 20px;}
  footer{grid-template-columns:1fr;padding:48px 24px 32px;}
  .ft-cols{gap:32px; flex-wrap:wrap;}
}
