/* ════════════════════════════════════════════════
   Haruun Ali — The Operator
   Flagship design system (multi-page)
   ════════════════════════════════════════════════ */

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

:root {
  --green: #39FF14;
  --green-deep: #1FB80A;
  --gold: #C9A84C;
  --gold-light: #E2BF6A;
  --blue: #7EB8F7;
  --black: #060606;
  --black-2: #0A0A0B;
  --white: #F2F2F0;
  --gray: #0F0F11;
  --gray-2: #141417;
  --border: #1E1E22;
  --border-2: #26262b;
  --muted: #8A8A8A;
  --text-secondary: #B4B4B4;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
::selection { background: var(--green); color: var(--black); }

/* ─── ATMOSPHERE: AURORA ─── */
.aurora {
  position: fixed;
  inset: -20vmax;
  z-index: -3;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.55;
}
.aurora b {
  position: absolute;
  display: block;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform;
}
.aurora .a1 { width: 46vmax; height: 46vmax; left: -6vmax; top: -4vmax;
  background: radial-gradient(circle at 50% 50%, rgba(57,255,20,0.55), transparent 62%);
  animation: drift1 22s var(--ease) infinite alternate; }
.aurora .a2 { width: 40vmax; height: 40vmax; right: -8vmax; top: 8vmax;
  background: radial-gradient(circle at 50% 50%, rgba(126,184,247,0.42), transparent 62%);
  animation: drift2 28s var(--ease) infinite alternate; }
.aurora .a3 { width: 38vmax; height: 38vmax; left: 28vmax; bottom: -10vmax;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.40), transparent 62%);
  animation: drift3 25s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(14vmax, 10vmax) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-12vmax, 14vmax) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-10vmax, -12vmax) scale(1.2); } }

/* ─── ATMOSPHERE: GRAIN ─── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── ATMOSPHERE: SPOTLIGHT CURSOR GLOW ─── */
.spotlight {
  position: fixed;
  width: 540px; height: 540px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(circle, rgba(57,255,20,0.10), transparent 60%);
  transform: translate(-50%, -50%);
  left: 50%; top: 30%;
  transition: opacity 0.4s;
  will-change: left, top;
}

/* ─── PARTICLE CANVAS ─── */
#particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--green); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(57,255,20,0.5); transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s; }
.cursor-ring.hover { width: 60px; height: 60px; background: rgba(57,255,20,0.08); border-color: var(--green); }
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button { cursor: none; }

/* ─── TYPOGRAPHY ─── */
.h-display { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; line-height: 1.02; letter-spacing: -0.035em; }
.h-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); display: inline-flex; align-items: center; gap: 9px;
}
.label::before { content: ''; width: 22px; height: 1px; background: var(--green); display: inline-block; }
.label.center::before { display: none; }

/* gradient text */
.grad { background: linear-gradient(100deg, var(--green) 0%, var(--gold-light) 55%, var(--blue) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.01em; border-radius: 100px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s;
  cursor: pointer; border: none; position: relative; will-change: transform;
}
.btn-primary { background: var(--green); color: var(--black); box-shadow: 0 0 0 rgba(57,255,20,0); }
.btn-primary:hover { box-shadow: 0 12px 40px rgba(57,255,20,0.35); }
.btn-ghost { background: rgba(255,255,255,0.02); color: var(--white); border: 1px solid var(--border-2); }
.btn-ghost:hover { border-color: var(--green); background: rgba(57,255,20,0.06); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { box-shadow: 0 12px 40px rgba(201,168,76,0.3); }

/* ─── NAV (glass) ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 48px; height: 74px;
  background: rgba(8, 8, 9, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, height 0.3s;
}
nav.scrolled { height: 64px; background: rgba(8,8,9,0.8); }
.nav-logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 18px; color: var(--white); letter-spacing: -0.02em; }
.nav-logo .dot { color: var(--green); }
.nav-links { display: flex; list-style: none; gap: 34px; }
.nav-links a { font-size: 14px; color: rgba(242,242,240,0.78); font-weight: 500; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--green); transition: width 0.25s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 74px; left: 0; right: 0;
  background: rgba(6,6,6,0.96); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border); padding: 24px 24px 32px; z-index: 99;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 16px; padding: 15px 0; font-weight: 500; }
.mobile-menu a:not(.btn) { border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
html.seen #loader { display: none; }
.loader-logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 30px; color: var(--white); letter-spacing: -0.02em; }
.loader-logo .dot { color: var(--green); }
.loader-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 40%; background: var(--green); border-radius: 3px; animation: loaderSlide 1s ease-in-out infinite; }
@keyframes loaderSlide { 0% { transform: translateX(-100%);} 100% { transform: translateX(450%);} }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ─── HERO ─── */
#hero { position: relative; min-height: 100vh; display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; padding-top: 74px; overflow: hidden; }
.hero-left { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 70px 56px; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 30px; padding: 8px 16px; border: 1px solid var(--border-2); border-radius: 100px; background: rgba(255,255,255,0.02); width: fit-content; }
.hero-tag-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 12px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.hero-tag span { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-secondary); }
.hero-headline { font-size: clamp(46px, 6vw, 88px); margin-bottom: 26px; color: var(--white); }
.hero-headline em { font-style: normal; color: var(--green); }
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line > span { display: inline-block; transform: translateY(110%); animation: kineticUp 0.9s var(--ease) forwards; }
.hero-headline .line:nth-child(1) > span { animation-delay: 0.15s; }
.hero-headline .line:nth-child(2) > span { animation-delay: 0.28s; }
.hero-headline .line:nth-child(3) > span { animation-delay: 0.41s; }
@keyframes kineticUp { to { transform: translateY(0); } }
.rotator { display: inline-block; position: relative; color: var(--green); }
.hero-sub { font-size: clamp(15px, 1.35vw, 18px); color: var(--text-secondary); font-weight: 300; max-width: 520px; margin-bottom: 42px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 58px; }
.hero-stats { display: flex; gap: 0; border-top: 1px solid var(--border); padding-top: 36px; }
.stat { flex: 1; padding-right: 28px; border-right: 1px solid var(--border); margin-right: 28px; }
.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 400; line-height: 1.4; }
.hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 60px 56px; }
.hero-photo-wrap { position: relative; width: 100%; max-width: 440px; will-change: transform; }
.hero-photo-glow { position: absolute; inset: -30px; background: radial-gradient(circle at 50% 40%, rgba(57,255,20,0.3), transparent 65%); filter: blur(40px); z-index: -1; }
.hero-photo-wrap img { width: 100%; height: auto; border-radius: 20px; border: 1px solid var(--border-2); box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
.hero-badge {
  position: absolute; bottom: 26px; left: 26px;
  background: rgba(8,8,9,0.6); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 15px 19px;
}
.hero-badge-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.hero-badge-role { font-size: 12px; color: var(--text-secondary); display: flex; align-items: center; gap: 7px; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); }

/* ─── MARQUEE ─── */
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.012); padding: 22px 0; position: relative; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(20px, 3vw, 34px); letter-spacing: -0.02em; color: #2a2a2e; display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee-item .accent { color: var(--green); }
.marquee-item .dot { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── SECTIONS ─── */
.section { padding: 110px 56px; position: relative; }
.section-sm { padding: 80px 56px; }
.section-header { max-width: 680px; margin-bottom: 60px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.center .label { justify-content: center; }
.section-header .label { margin-bottom: 18px; }
.section-header h2 { font-size: clamp(34px, 4.4vw, 58px); margin-bottom: 20px; }
.section-header h2 em { font-style: normal; color: var(--green); }
.section-header p { font-size: 16.5px; color: var(--text-secondary); line-height: 1.75; font-weight: 300; }
.bg-gray { background: linear-gradient(180deg, var(--black) 0%, var(--gray) 50%, var(--black) 100%); }

/* ─── PAGE HERO (inner) ─── */
.page-hero { padding: 160px 56px 84px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero-inner { max-width: 880px; position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 26px; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: #3a3a3a; }
.page-hero h1 { font-size: clamp(42px, 6.4vw, 80px); margin-bottom: 24px; color: var(--white); }
.page-hero h1 em { font-style: normal; color: var(--green); }
.page-hero .lede { font-size: clamp(16px, 1.6vw, 21px); color: var(--text-secondary); font-weight: 300; line-height: 1.7; max-width: 680px; }

/* ─── SERVICES ─── */
.services-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; flex-wrap: wrap; }
.services-top p { font-size: 16px; color: var(--text-secondary); max-width: 400px; line-height: 1.75; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.service-card {
  background: linear-gradient(160deg, var(--gray-2), var(--gray)); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 38px 32px; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s; transform-style: preserve-3d;
}
.service-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px; background: linear-gradient(160deg, rgba(57,255,20,0.4), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.3s; }
.service-card:hover { border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 12px; color: var(--green); letter-spacing: 0.12em; margin-bottom: 16px; font-weight: 700; }
.service-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
.service-card > p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; margin-bottom: 22px; }
.service-list { list-style: none; display: flex; flex-direction: column; }
.service-list li { font-size: 13px; color: var(--muted); padding: 9px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; transition: color 0.2s; }
.service-card:hover .service-list li { color: #9a9a9a; }
.service-list li::before { content: ''; width: 4px; height: 4px; background: var(--green); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px var(--green); }
.service-list li:last-child { border-bottom: none; }

/* ─── PROOF STRIP / STATS ─── */
.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.proof-item { background: linear-gradient(160deg, var(--gray-2), var(--gray)); border: 1px solid var(--border); border-radius: var(--radius); padding: 38px 30px; text-align: center; transition: border-color 0.3s, transform 0.3s var(--ease); }
.proof-item:hover { border-color: var(--border-2); transform: translateY(-4px); }
.proof-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(34px, 4vw, 52px); font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 10px; letter-spacing: -0.03em; }
.proof-label { font-size: 13px; color: var(--text-secondary); font-weight: 300; line-height: 1.5; }

/* ─── WORK GALLERY ─── */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-card { position: relative; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--gray); aspect-ratio: 4/3; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; transition: transform 0.35s var(--ease), border-color 0.3s; }
.work-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 0%, rgba(57,255,20,0.10), transparent 55%); opacity: 0; transition: opacity 0.35s; }
.work-card:hover { transform: translateY(-6px); border-color: var(--border-2); }
.work-card:hover::after { opacity: 1; }
.work-industry { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 8px; position: relative; z-index: 1; }
.work-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 700; line-height: 1.15; position: relative; z-index: 1; }
.work-meta { font-size: 12.5px; color: var(--muted); margin-top: 6px; position: relative; z-index: 1; }

/* ─── LOGO STRIP ─── */
.logo-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 980px; margin: 0 auto; }
.logo-chip { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 15px; color: #6f6f74; padding: 12px 22px; border: 1px solid var(--border); border-radius: 100px; transition: color 0.25s, border-color 0.25s; }
.logo-chip:hover { color: var(--white); border-color: var(--border-2); }

/* ─── VENTURES ─── */
.ventures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.venture-card { background: linear-gradient(160deg, var(--gray-2), var(--gray)); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; gap: 13px; transition: transform 0.3s var(--ease), border-color 0.3s; position: relative; overflow: hidden; }
.venture-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.venture-card:hover { transform: translateY(-6px); }
.venture-card.v-ug::before { background: var(--green); }
.venture-card.v-bs::before { background: var(--gold); }
.venture-card.v-sl::before { background: var(--blue); }
.venture-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.v-ug .venture-kicker { color: var(--green); }
.v-bs .venture-kicker { color: var(--gold); }
.v-sl .venture-kicker { color: var(--blue); }
.venture-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 23px; font-weight: 700; color: var(--white); line-height: 1.2; }
.venture-desc { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; flex: 1; }
.venture-link { font-size: 13px; font-weight: 600; display: inline-flex; gap: 6px; align-items: center; margin-top: 4px; }
.v-ug .venture-link { color: var(--green); }
.v-bs .venture-link { color: var(--gold); }
.v-sl .venture-link { color: var(--blue); }

/* ─── PROCESS ─── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-step { background: linear-gradient(160deg, var(--gray-2), var(--gray)); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 30px; position: relative; }
.process-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 44px; font-weight: 800; line-height: 1; margin-bottom: 18px; background: linear-gradient(160deg, var(--green), transparent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.85; }
.process-step h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.testi-card { background: linear-gradient(160deg, var(--gray-2), var(--gray)); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 30px; display: flex; flex-direction: column; gap: 18px; }
.testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; }
.testi-quote { font-size: 16px; color: var(--white); line-height: 1.6; font-weight: 400; flex: 1; }
.testi-quote::before { content: '\201C'; color: var(--green); font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 800; }
.testi-by { font-size: 13px; color: var(--muted); display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-by strong { color: var(--text-secondary); font-weight: 600; }
.placeholder-note { margin-top: 28px; text-align: center; font-size: 13px; color: var(--gold); border: 1px dashed rgba(201,168,76,0.4); border-radius: 10px; padding: 14px 18px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ─── WHO IT'S FOR ─── */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit-col { background: linear-gradient(160deg, var(--gray-2), var(--gray)); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; }
.fit-col h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.fit-col.good h3 { color: var(--green); }
.fit-col.bad h3 { color: var(--muted); }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fit-list li { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; font-weight: 300; padding-left: 28px; position: relative; }
.fit-col.good .fit-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.fit-col.bad .fit-list li::before { content: '✕'; position: absolute; left: 0; color: #5a5a5a; font-weight: 700; }

/* ─── MANIFESTO ─── */
.manifesto { padding: 120px 56px; text-align: center; position: relative; }
.manifesto blockquote { max-width: 920px; margin: 0 auto; }
.manifesto blockquote p { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(26px, 3.6vw, 46px); line-height: 1.2; letter-spacing: -0.025em; color: var(--white); }
.manifesto blockquote p em { font-style: normal; color: var(--green); }
.manifesto cite { display: block; margin-top: 30px; font-style: normal; font-size: 14px; color: var(--muted); }

/* ─── NEWSLETTER ─── */
.newsletter { max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter h2 { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 16px; }
.newsletter p { color: var(--text-secondary); font-weight: 300; margin-bottom: 30px; font-size: 16px; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-2); border-radius: 100px; padding: 15px 24px; color: var(--white); font-family: 'DM Sans'; font-size: 14px; }
.newsletter-form input:focus { outline: none; border-color: var(--green); }
.newsletter-note { font-size: 12px; color: var(--muted); margin-top: 16px; }
.newsletter-ok { color: var(--green); font-size: 14px; margin-top: 18px; min-height: 18px; }

/* ─── FAQ (AEO) ─── */
.faq-wrap { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(17px, 2vw, 22px); text-align: left; padding: 28px 50px 28px 0; cursor: pointer; position: relative; letter-spacing: -0.01em; line-height: 1.3; transition: color 0.2s; }
.faq-q:hover { color: var(--green); }
.faq-q::after { content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 28px; font-weight: 300; color: var(--green); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease), padding 0.35s var(--ease); }
.faq-item.open .faq-a { max-height: 640px; padding-bottom: 28px; }
.faq-a p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.78; font-weight: 300; max-width: 700px; }
.faq-a p + p { margin-top: 14px; }
.faq-a a { color: var(--green); border-bottom: 1px solid rgba(57,255,20,0.3); }

/* ─── CONTACT ─── */
#contact, .contact-block { position: relative; overflow: hidden; padding: 120px 56px; text-align: center; }
#contact .label, .contact-block .label { justify-content: center; margin-bottom: 18px; }
#contact h2, .contact-block h2 { font-size: clamp(34px, 5vw, 66px); color: var(--white); margin: 0 auto 20px; max-width: 760px; }
#contact h2 em, .contact-block h2 em { font-style: normal; color: var(--green); }
.contact-sub { font-size: 17px; color: var(--text-secondary); margin: 0 auto 48px; max-width: 480px; font-weight: 300; }
.booking-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 840px; margin: 0 auto 32px; text-align: left; }
.booking-card { background: linear-gradient(160deg, var(--gray-2), var(--gray)); border: 1px solid var(--border); border-top: 3px solid var(--green); border-radius: var(--radius); padding: 36px 32px; display: flex; flex-direction: column; gap: 12px; transition: transform 0.25s var(--ease); }
.booking-card:hover { transform: translateY(-5px); }
.booking-card-alt { border-top-color: var(--gold); }
.booking-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }
.booking-card-alt .booking-card-label { color: var(--gold); }
.booking-card-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 23px; font-weight: 700; color: var(--white); line-height: 1.2; }
.booking-card-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; flex: 1; font-weight: 300; }
.booking-card .btn { align-self: flex-start; margin-top: 8px; }
.contact-note { margin-top: 26px; font-size: 13px; color: var(--text-secondary); }
.contact-note a { color: var(--white); border-bottom: 1px solid var(--border); }
.contact-note a:hover { color: var(--green); border-bottom-color: var(--green); }

/* ─── CLOSING ─── */
.closing { padding: 110px 56px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; position: relative; }
.closing .h-title { font-size: clamp(30px, 3.8vw, 50px); color: var(--white); }
.closing .h-title em { font-style: normal; color: var(--green); }
.closing > p { font-size: 15.5px; color: var(--text-secondary); font-weight: 300; line-height: 1.75; max-width: 460px; }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--border); padding: 44px 56px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; position: relative; }
.footer-logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 17px; color: var(--white); }
.footer-logo .dot { color: var(--green); }
footer p { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-links a.fl-ug:hover { color: var(--green); }
.footer-links a.fl-bs:hover { color: var(--gold); }
.footer-links a.fl-sl:hover { color: var(--blue); }

/* ─── RESPONSIVE: TABLET ─── */
@media (max-width: 1024px) {
  body.has-cursor { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  nav { padding: 0 28px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { padding: 56px 28px 36px; justify-content: flex-start; order: -1; }
  .hero-left { padding: 0 28px 72px; }
  .page-hero { padding: 130px 28px 64px; }
  .section { padding: 80px 28px; }
  .section-sm { padding: 64px 28px; }
  .services-grid, .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .ventures-grid, .testi-grid, .work-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto, #contact, .contact-block, .closing { padding: 80px 28px; }
  footer { padding: 32px 28px; }
}

/* ─── RESPONSIVE: MOBILE ─── */
@media (max-width: 640px) {
  nav { padding: 0 18px; height: 64px; }
  .mobile-menu { top: 64px; }
  #hero { padding-top: 64px; }
  .hero-right { padding: 44px 18px 28px; }
  .hero-left { padding: 0 18px 56px; }
  .hero-headline { font-size: 42px; }
  .hero-stats { flex-direction: column; gap: 18px; }
  .stat { border-right: none; margin-right: 0; padding-right: 0; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .page-hero { padding: 108px 18px 52px; }
  .section { padding: 60px 18px; }
  .section-sm { padding: 44px 18px; }
  .section-header { margin-bottom: 38px; }
  .services-grid, .services-grid.cols-2, .proof-strip, .ventures-grid, .testi-grid, .work-grid, .process-grid, .fit-grid, .booking-cards { grid-template-columns: 1fr; }
  .services-top { flex-direction: column; align-items: flex-start; }
  .manifesto, #contact, .contact-block, .closing { padding: 60px 18px; }
  footer { padding: 28px 18px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { gap: 16px; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .aurora { opacity: 0.4; }
  .reveal { opacity: 1; transform: none; }
  .hero-headline .line > span { transform: none; }
  #particles, .spotlight, .cursor-dot, .cursor-ring { display: none; }
  body.has-cursor { cursor: auto; }
}
