:root {
  --bg: #080b14;
  --bg-soft: #0d1220;
  --card: #111827;
  --card-2: #151d2e;
  --text: #f5f7fb;
  --muted: #aab4c6;
  --line: rgba(255,255,255,.11);
  --accent: #78e6c3;
  --accent-2: #7c8cff;
  --max: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(8,11,20,.78);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .14em; font-weight: 700; }
.brand b { color: var(--muted); font-weight: 600; }
.brand-mark {
  width: 34px; height: 34px; border: 1px solid rgba(120,230,195,.5);
  display: grid; place-items: center; border-radius: 10px;
  color: var(--accent); font-weight: 800; letter-spacing: 0;
}
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; color: var(--muted); }
.nav a:hover { color: var(--text); }
.nav-cta { color: var(--text) !important; border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px; }
.menu-toggle { display:none; background:none; color:var(--text); border:0; font-size:22px; }

.hero {
  min-height: 720px; max-width: var(--max); margin: 0 auto;
  padding: 110px 24px 90px; display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 50px; align-items: center; position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .38;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  color: var(--accent); font-size: 11px; letter-spacing: .2em; font-weight: 800; margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(48px, 6.2vw, 82px); line-height: .98; letter-spacing: -.055em;
  margin: 0 0 26px; max-width: 850px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-text { color: var(--muted); max-width: 650px; font-size: 18px; }
.hero-actions { display:flex; gap:12px; margin: 32px 0; flex-wrap:wrap; }
.button {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 13px 20px; border-radius: 999px; font-size:14px; font-weight:750;
  transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color:#07110f; }
.button-secondary { border:1px solid var(--line); color:var(--text); }
.button-secondary:hover { border-color: rgba(120,230,195,.5); }
.hero-proof { display:flex; flex-wrap:wrap; gap:18px; color:#7f8ba0; font-size:12px; }
.hero-proof span::before { content:"•"; color:var(--accent); margin-right:7px; }

.hero-art { height: 480px; position:relative; display:grid; place-items:center; }
.orbit { position:absolute; border:1px solid rgba(120,230,195,.18); border-radius:50%; transform:rotate(-20deg); }
.orbit-one { width: 390px; height: 260px; }
.orbit-two { width: 260px; height: 390px; }
.core {
  width: 165px; height:165px; border-radius:50%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:3px; text-align:center;
  border:1px solid rgba(120,230,195,.35);
  background: radial-gradient(circle at 35% 30%, #19332e, #0d1820 60%, #0a1018);
  box-shadow: 0 0 80px rgba(120,230,195,.08);
}
.core span { font-size:10px; letter-spacing:.14em; color:var(--muted); }
.core strong { color:var(--accent); font-size:22px; }
.node {
  position:absolute; padding:8px 12px; border:1px solid var(--line); border-radius:999px;
  background:rgba(13,18,32,.85); color:#dbe2ee; font-size:10px; letter-spacing:.1em;
  backdrop-filter:blur(8px);
}
.node-a { top: 52px; right: 72px; }
.node-b { top: 205px; right: 0; }
.node-c { bottom: 55px; left: 35px; }
.node-d { top: 95px; left: 25px; }

.section { max-width:var(--max); margin:0 auto; padding:110px 24px; }
.intro { border-top:1px solid var(--line); }
.intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; }
h2 { font-size: clamp(34px, 4vw, 56px); line-height:1.04; letter-spacing:-.04em; margin:0; }
.intro p { color:var(--muted); font-size:17px; margin:0; }
.intro strong { color:var(--text); }

.section-heading { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:44px; }
.section-heading h2 { max-width:700px; }

.service-card {
  display:grid; grid-template-columns:90px 1fr; gap:20px; padding:44px;
  border:1px solid var(--line); border-radius:var(--radius); margin-top:18px;
  background:linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  overflow:hidden; position:relative;
}
.service-card::after { content:""; position:absolute; width:380px; height:380px; border-radius:50%; filter:blur(80px); opacity:.09; right:-160px; top:-180px; background:var(--accent); }
.creator-card::after { background:var(--accent-2); }
.service-number { font-size:14px; color:var(--accent); font-weight:800; letter-spacing:.12em; }
.service-label { color:var(--muted); letter-spacing:.17em; font-size:11px; font-weight:800; margin:0 0 10px; }
.service-main h3 { font-size:clamp(30px,3.3vw,48px); line-height:1.05; letter-spacing:-.04em; margin:0 0 18px; max-width:850px; }
.service-lead { color:var(--muted); max-width:800px; font-size:17px; }
.service-columns { display:grid; grid-template-columns:1fr 1fr; gap:50px; margin-top:35px; }
.service-columns h4 { font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); margin:0 0 14px; }
.service-columns ul { margin:0; padding:0; list-style:none; color:#c5ccda; }
.service-columns li { padding:9px 0 9px 20px; border-bottom:1px solid rgba(255,255,255,.06); position:relative; font-size:14px; }
.service-columns li::before { content:""; width:5px; height:5px; border-radius:50%; background:var(--accent); position:absolute; left:0; top:18px; }
.service-bottom { display:flex; gap:8px; flex-wrap:wrap; margin-top:35px; }
.service-bottom span { font-size:11px; padding:7px 10px; border-radius:999px; background:rgba(255,255,255,.05); color:#aab4c6; }

.approach { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; border-top:1px solid var(--line); }
.approach-intro p:last-child { color:var(--muted); max-width:500px; margin-top:25px; }
.steps { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); }
.step { background:var(--bg); padding:25px; min-height:170px; }
.step span { color:var(--accent); font-size:11px; letter-spacing:.1em; }
.step h3 { margin:16px 0 8px; font-size:20px; }
.step p { margin:0; color:var(--muted); font-size:13px; }

.about { display:grid; grid-template-columns:.7fr 1.3fr; gap:80px; align-items:center; border-top:1px solid var(--line); }
.about-image { display:flex; justify-content:center; }
.portrait-placeholder {
  width:300px; height:390px; border-radius:150px 150px 26px 26px;
  border:1px solid rgba(120,230,195,.25);
  background: radial-gradient(circle at 50% 28%, #2a4050, #101927 55%, #0b1018);
  display:grid; place-items:center; box-shadow:0 25px 80px rgba(0,0,0,.35);
}
.portrait-placeholder span { font-size:72px; font-weight:800; color:rgba(120,230,195,.55); letter-spacing:-.08em; }
.about-copy > p:not(.eyebrow) { color:var(--muted); max-width:760px; }
.credentials { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:35px; }
.credentials div { border-top:1px solid var(--line); padding-top:14px; }
.credentials strong { display:block; font-size:25px; color:var(--accent); }
.credentials span { color:var(--muted); font-size:11px; }

.positioning { padding-top:80px; padding-bottom:80px; border-top:1px solid var(--line); }
.quote-mark { color:var(--accent); font-size:60px; line-height:.5; }
blockquote { max-width:1000px; font-size:clamp(28px,4vw,52px); line-height:1.1; letter-spacing:-.035em; margin:30px 0 0; }

.contact {
  display:grid; grid-template-columns:1fr auto; gap:50px; align-items:end;
  background:linear-gradient(120deg, #0f1c24, #0b111d); border:1px solid var(--line);
  border-radius:var(--radius); margin-bottom:70px; padding:60px;
}
.contact p:not(.eyebrow) { color:var(--muted); max-width:680px; margin-bottom:0; }
.contact-actions { display:flex; gap:10px; flex-wrap:wrap; }

.footer {
  max-width:var(--max); margin:0 auto; padding:30px 24px 50px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:20px; color:#748096; font-size:11px;
}
.footer .brand { color:var(--text); }
.footer .brand-mark { width:27px; height:27px; border-radius:8px; }

@media (max-width: 850px) {
  .nav { display:none; position:absolute; top:76px; left:0; right:0; padding:20px 24px; background:var(--bg); border-bottom:1px solid var(--line); flex-direction:column; align-items:flex-start; }
  .nav.open { display:flex; }
  .menu-toggle { display:block; }
  .hero { grid-template-columns:1fr; padding-top:80px; min-height:auto; }
  .hero-art { height:360px; order:-1; }
  .intro-grid, .approach, .about, .contact { grid-template-columns:1fr; }
  .section-heading { display:block; }
  .section-heading h2 { margin-top:10px; }
  .service-card { grid-template-columns:1fr; padding:30px 24px; }
  .service-columns { grid-template-columns:1fr; gap:30px; }
  .about-image { justify-content:flex-start; }
  .contact { padding:40px 28px; }
  .footer { flex-direction:column; align-items:flex-start; }
}
@media (max-width: 520px) {
  .hero h1 { font-size:48px; }
  .hero-art { transform:scale(.85); margin:-30px 0; }
  .credentials { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr; }
}

/* NexGen Partners supplied assets */
.brand-logo{display:block;width:142px;height:48px;object-fit:contain;object-position:left center;mix-blend-mode:screen}
.footer .brand-logo{width:130px;height:42px}
.profile-photo{width:300px;height:390px;object-fit:cover;object-position:center top;border-radius:150px 150px 26px 26px;border:1px solid rgba(120,230,195,.25);box-shadow:0 25px 80px rgba(0,0,0,.35);display:block}
.contact-email{margin:18px 0 0 !important;color:var(--text) !important}
.contact-email strong{color:var(--accent);font-size:15px}
@media (max-width:520px){.brand-logo{width:125px;height:43px}}
