/* ============================================================
   LUNARWORKS — style.css
   ============================================================ */

:root {
  --bg-primary:    #08060f;
  --bg-secondary:  #0e0b1a;
  --bg-card:       #120f1e;
  --bg-card-hover: #181428;
  --accent:        #8b5cf6;
  --accent-bright: #a78bfa;
  --accent-glow:   rgba(139, 92, 246, 0.28);
  --gold:          #c9a84c;
  --gold-light:    #f0c060;
  --gold-dim:      rgba(201, 168, 76, 0.14);
  --text-primary:  #ede9ff;
  --text-secondary:#9b8dbb;
  --text-muted:    #4e4568;
  --border:        rgba(139, 92, 246, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.055);
  --radius:        16px;
  --radius-sm:     10px;
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-serif:    'Cormorant Garamond', serif;
  --transition:    0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h:         74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---- Scrollbar -------------------------------------------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-outer {
  width: 38px; height: 38px;
  border: 1px solid rgba(167, 139, 250, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  will-change: transform;
}
.cursor-inner {
  width: 8px; height: 8px;
  background: radial-gradient(circle, rgba(167,139,250,0.9), rgba(109,40,217,0.7));
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(139,92,246,0.8);
  will-change: transform;
  transition: width 0.2s ease, height 0.2s ease;
}
body.cursor-hover .cursor-outer {
  width: 56px; height: 56px;
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
body.cursor-hover .cursor-inner {
  width: 6px; height: 6px;
}
body.cursor-click .cursor-inner {
  width: 12px; height: 12px;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.hide-mobile { display: inline; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.section-title.centered { text-align: center; }
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--accent-bright);
}
.gradient-text {
  background: linear-gradient(130deg, var(--accent-bright) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 13px 30px;
  border-radius: 50px;
  cursor: none;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(255,255,255,0.09);
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #5b21b6 100%);
  color: #fff;
  box-shadow: 0 0 28px var(--accent-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 48px rgba(139,92,246,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a07828 100%);
  color: #08060f;
  font-weight: 600;
}
.btn-gold:hover {
  box-shadow: 0 0 36px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}
.btn-sm  { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg  { padding: 17px 44px; font-size: 1rem; margin-top: 8px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8, 6, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border-subtle);
}
.nav-container {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.nav-logo:hover .logo-text { color: var(--accent-bright); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-bright);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-cta-pill {
  background: linear-gradient(135deg, var(--accent), #5b21b6);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 0 20px var(--accent-glow);
}
.nav-cta-pill::after { display: none; }
.nav-cta-pill:hover {
  box-shadow: 0 0 36px rgba(139,92,246,0.5);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; opacity: 0.75;
}
.hero-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50% 40%, rgba(109,40,217,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(201,168,76,0.06) 0%, transparent 60%);
  z-index: 1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 960px;
  padding: clamp(20px, 4vw, 60px);
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid var(--gold-dim);
  border-radius: 50px;
  background: rgba(201,168,76,0.06);
  backdrop-filter: blur(8px);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  text-align: center;
}
.hero-heading .line-1 {
  display: block;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroLineIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.hero-heading .line-2 {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.8;
  opacity: 0;
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}
.hero-trust {
  display: flex; align-items: center; gap: 9px;
  justify-content: center;
  margin-top: 32px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}
.trust-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74,222,128,0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0.35;
}
.hero-scroll-indicator span {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-secondary);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-secondary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-track {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
.marquee-track::before,
.marquee-track::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.marquee-track::before { left: 0; background: linear-gradient(to right, var(--bg-card), transparent); }
.marquee-track::after  { right: 0; background: linear-gradient(to left, var(--bg-card), transparent); }
.marquee-inner {
  display: flex; gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 18px;
  padding: 0 40px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-item span {
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ============================================================
   SCROLL-DRIVEN ZOOM EFFECTS
   ============================================================ */

/* About — zoom bloom */
.about-zoom-wrap {
  will-change: transform, filter;
  transform-origin: center top;
}

/* Why — perspective rise container */
.why-perspective {
  perspective: 1400px;
  perspective-origin: 50% 0%;
}
.why-grid {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Projects — depth cascade handled per-card in JS */
.project-card {
  will-change: transform, opacity;
}

/* Vision — split parallax */
.vision-left  { will-change: transform; }
.vision-right { will-change: transform; }

/* Services — waterfall container */
.services-inner-wrap { will-change: transform; }

/* Contact — glow expand */
.contact-inner {
  will-change: transform, box-shadow;
  transform-origin: center center;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-secondary); }
.about::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: start; margin-top: 20px;
}
.about-left .section-title { margin-bottom: 24px; }
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-muted);
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  background: rgba(255,255,255,0.02);
}
.about-right p {
  color: var(--text-secondary);
  font-size: 0.97rem; line-height: 1.82;
  margin-bottom: 18px;
}
.about-stats {
  display: flex; gap: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 12px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent-bright), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.73rem; color: var(--text-muted); letter-spacing: 0.06em; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { background: var(--bg-primary); }
.why::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 20px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(139,92,246,0.1);
  background: var(--bg-card-hover);
}
.why-card:hover::before { transform: scaleX(1); }
.why-num {
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; color: var(--gold);
  margin-bottom: 16px; display: block;
  opacity: 0.7;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.why-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.72; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-secondary); }
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(139,92,246,0.1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  font-size: 1.3rem; color: var(--accent-bright);
  margin-bottom: 14px; display: block; opacity: 0.8;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.93rem; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.service-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects { background: var(--bg-primary); }
.projects::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 20px;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 24px 60px rgba(139,92,246,0.18), 0 0 0 1px rgba(139,92,246,0.1);
}
.project-preview {
  position: relative; height: 230px; overflow: hidden;
  background: var(--bg-card);
}
.project-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-preview-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
}
.project-card:hover .project-preview img { transform: scale(1.04); }
.project-overlay {
  position: absolute; inset: 0;
  background: rgba(8,6,15,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
  z-index: 10; backdrop-filter: blur(5px);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-info { padding: 26px; }
.project-tag {
  font-size: 0.67rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim);
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 12px; display: inline-block;
}
.project-name {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 800;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.project-desc {
  font-size: 0.87rem; color: var(--text-secondary);
  line-height: 1.68; margin-bottom: 20px;
}
.project-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.project-tech {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.project-tech span {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  padding: 3px 8px; border-radius: 20px;
}
.project-link-arrow {
  font-size: 0.75rem; color: var(--accent-bright);
  opacity: 0.6; transition: opacity var(--transition), transform var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.project-card:hover .project-link-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ============================================================
   VISION / YOUR APPROACH
   ============================================================ */
.vision {
  background: var(--bg-secondary);
  overflow: hidden;
}
.vision::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.vision-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px); align-items: center;
}
.vision-left .section-title { margin-bottom: 20px; }
.vision-body {
  font-size: 0.97rem; color: var(--text-secondary);
  line-height: 1.82; margin-bottom: 16px;
}
.vision-body strong { color: var(--text-primary); font-weight: 500; }
.vision-body em { color: var(--accent-bright); font-style: italic; }
.vision-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vision-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.vision-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139,92,246,0.12);
}
.vision-card:hover::before { transform: scaleX(1); }
.vc-icon { font-size: 1.4rem; margin-bottom: 10px; display: block; }
.vision-card h4 {
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.vision-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }
.vision-orb {
  position: absolute; right: -200px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ============================================================
   WHO WE WORK WITH
   ============================================================ */
.anyone { background: var(--bg-primary); }
.anyone::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.anyone-sub {
  max-width: 680px; margin: 0 auto 56px;
  text-align: center;
  font-size: 1rem; color: var(--text-secondary);
  line-height: 1.8;
}
.anyone-sub strong { color: var(--text-primary); font-weight: 500; }
.anyone-sub em { color: var(--accent-bright); font-style: italic; }
.anyone-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}
.anyone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 22px 16px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.anyone-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(139,92,246,0.12);
}
.anyone-icon { font-size: 1.6rem; }
.anyone-card span:last-child {
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.anyone-cta {
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(201,168,76,0.05));
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.anyone-cta p {
  font-size: 1.05rem; color: var(--text-secondary);
  line-height: 1.6;
}
.anyone-cta strong { color: var(--text-primary); font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-secondary); overflow: hidden; }
.contact .container { position: relative; z-index: 1; }
.contact-inner {
  max-width: 660px;
  padding: 60px 60px 56px;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-primary));
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  box-shadow: 0 0 100px rgba(139,92,246,0.1), 0 0 0 1px rgba(139,92,246,0.08);
}
.contact-inner .section-title { margin-bottom: 14px; }
.contact-sub {
  color: var(--text-secondary);
  font-size: 0.95rem; margin-bottom: 32px; line-height: 1.78;
}
.contact-sub strong { color: var(--text-primary); font-weight: 500; }
.contact-email {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600; color: var(--accent-bright);
  margin-bottom: 26px; letter-spacing: -0.01em;
  transition: color var(--transition);
  word-break: break-all;
}
.contact-email:hover { color: var(--gold-light); }
.contact-note {
  font-size: 0.75rem; color: var(--text-muted);
  margin-top: 14px; letter-spacing: 0.04em;
}
.contact-orb {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.14) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
}
.footer-logo { font-size: 1rem; }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); }
.footer-email {
  font-size: 0.85rem; color: var(--accent-bright);
  opacity: 0.65; transition: opacity var(--transition);
}
.footer-email:hover { opacity: 1; }
.footer-copy { font-size: 0.73rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-inner { grid-template-columns: 1fr; gap: 50px; }
  .anyone-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .projects-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hide-mobile { display: none; }
  .contact-inner { padding: 36px 28px; }
  .contact-orb { display: none; }
  .vision-cards { grid-template-columns: 1fr; }
  body { cursor: auto; }
  .cursor-outer, .cursor-inner { display: none; }
  .btn { cursor: pointer; }
  .nav-link, .nav-logo { cursor: pointer; }
  .nav-toggle { display: flex; z-index: 10; cursor: pointer; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
    background: rgba(8,6,15,0.97);
    backdrop-filter: blur(24px);
    flex-direction: column; justify-content: center;
    gap: 28px; padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    border-left: 1px solid var(--border-subtle);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; cursor: pointer; }
  .nav-cta-pill { width: fit-content; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
}
@media (max-width: 600px) {
  .anyone-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .hero-cta { flex-direction: column; align-items: center; }
}
