/* ============================================================
   TECH FOR PEOPLE — Dark Tech Redesign (CoreByte-inspired)
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --bg:           #030b15;
  --bg-2:         #060f1e;
  --bg-3:         #0a1628;
  --surface:      rgba(255,255,255,0.03);
  --surface-2:    rgba(255,255,255,0.06);
  --surface-3:    rgba(255,255,255,0.09);
  --border:       rgba(62,161,210,0.14);
  --border-hover: rgba(62,161,210,0.35);

  --accent:       #3EA1D2;
  --accent-rgb:   62, 161, 210;
  --accent-dim:   rgba(62,161,210,0.18);
  --accent-glow:  rgba(62,161,210,0.35);
  --green:        #34d399;
  --red:          #f87171;

  --white:        #ffffff;
  --text:         rgba(255,255,255,0.88);
  --text-muted:   rgba(255,255,255,0.52);
  --text-dim:     rgba(255,255,255,0.32);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-md:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 48px rgba(var(--accent-rgb),0.18);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);

  /* Translucent “sheets” so the fixed neuron canvas shows through the whole page */
  --sheet:    rgba(3, 11, 21, 0.82);
  --sheet-2:  rgba(6, 15, 30, 0.84);
  --sheet-3:  rgba(10, 22, 40, 0.85);
  --sheet-hero: rgba(3, 11, 21, 0.58);
}

/* ---- Reset & Base ---- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  background-color: var(--bg);
  overflow-x: hidden;
  position: relative;
}

/* Fixed neuron / globe WebGL — persists while scrolling entire site */
#neuron-bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

#neuron-bg-canvas.neuron-bg--fallback {
  opacity: 0;
  visibility: hidden;
}

/* Stack content above neuron canvas; keep .nav as position:fixed */
body > *:not(#neuron-bg-canvas):not(.nav) {
  position: relative;
  z-index: 1;
}

img { max-width:100%; height:auto; display:block; }
a   { text-decoration:none; color:inherit; transition:color var(--transition); }
ul  { list-style:none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

section[id] { scroll-margin-top: 72px; }

/* ---- Layout ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-title .accent,
.accent { color: var(--accent); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-label { margin-bottom: 12px; }
.section-header .section-label::before { display: none; }
.section-header::after {
  content: none; /* reset any pseudo */
}
.section-header .section-subtitle { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),0.4);
}
.btn--primary:hover {
  background: #50b5e5;
  box-shadow: 0 6px 30px rgba(var(--accent-rgb),0.55);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.btn--large { padding: 16px 36px; font-size: 1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(3,11,21,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.nav.scrolled {
  background: rgba(3,11,21,0.95);
  border-bottom-color: var(--border);
}

.nav__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo { flex-shrink: 0; }
.nav__logo-img {
  height: 34px;
  width: auto;
  filter: brightness(1.12) contrast(1.06)
    drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 18px rgba(62, 161, 210, 0.12));
}

.nav__end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover,
.nav__link--active { color: var(--white); background: var(--surface-2); }
.nav__link--cta {
  color: var(--accent);
  border: 1px solid var(--border);
  margin-left: 8px;
}
.nav__link--cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn:hover { color: var(--white); background: var(--surface-2); }
.lang-btn--active {
  background: var(--accent);
  color: var(--white);
}
.lang-btn__flag { font-size: 0.85rem; }
.lang-btn__code { font-size: 0.72rem; }

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 0;
}
.nav__toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.active .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle.active .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sheet-hero);
  padding-top: 68px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 80% at 50% -10%,
    rgba(var(--accent-rgb),0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__content {
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid rgba(var(--accent-rgb),0.35);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title-accent { color: var(--accent); }

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero__visual {
  margin-top: 64px;
  max-width: 560px;
  width: 100%;
}
.hero__visual-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 45%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 45%, transparent 72%);
  transition: mask-image 0.5s ease;
}
.hero__visual:hover .hero__visual-img {
  mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, black 55%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, black 55%, transparent 80%);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--sheet-2);
  border-top: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text .section-title { margin-bottom: 20px; }

.about__description {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

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

.about__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about__image { width: 100%; height: 280px; object-fit: cover; }

.about__value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about__value-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
}
.about__value-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-2);
}
.about__value-card svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   PILLARS (What We Do)
   ============================================================ */
.pillars {
  padding: 100px 0;
  background: var(--sheet);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pillar-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.pillar-card--featured {
  border-color: rgba(var(--accent-rgb),0.4);
  background: rgba(var(--accent-rgb),0.05);
}
.pillar-card--featured:hover {
  border-color: var(--accent);
}

.pillar-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.pillar-card__icon svg { width: 22px; height: 22px; color: var(--accent); }

.pillar-card__title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

.pillar-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-card__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.pillar-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============================================================
   PROCESS (How We Work)
   ============================================================ */
.process {
  padding: 100px 0;
  background: var(--sheet-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 22px);
  right: calc(10% + 22px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process__number {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3, 11, 21, 0.65);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
  z-index: 1;
}

.process__content h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
}
.process__content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community {
  padding: 100px 0;
  background: var(--sheet-3);
  border-top: 1px solid var(--border);
}

.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.community__text .section-title { color: var(--white); }
.community__description {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

.community__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.community__img { width: 100%; height: 320px; object-fit: cover; }

.community__cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.community__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.community__card:hover {
  border-color: var(--border-hover);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.community__card svg {
  width: 24px; height: 24px;
  color: var(--accent);
  margin-bottom: 12px;
}
.community__card h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
}
.community__card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHY TECH FOR PEOPLE
   ============================================================ */
.why {
  padding: 100px 0;
  background: var(--sheet);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.why__card:hover {
  border-color: var(--border-hover);
  background: var(--surface-2);
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(var(--accent-rgb),0.1);
}
.why__card svg {
  width: 24px; height: 24px;
  color: var(--accent);
  margin-bottom: 14px;
}
.why__card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.why__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   FEATURED SERVICES
   ============================================================ */
.featured-services {
  padding: 100px 0;
  background: var(--sheet-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.service-item:hover {
  border-color: var(--border-hover);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.service-item svg {
  width: 22px; height: 22px;
  color: var(--accent);
  margin-bottom: 14px;
}
.service-item h4 {
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.service-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SECTORS
   ============================================================ */
.sectors {
  padding: 80px 0;
  background: var(--sheet);
}

.sectors__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: default;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.sector-tag:hover {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent-dim);
}
.sector-tag svg { width: 16px; height: 16px; color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--sheet-2);
  border-top: 1px solid var(--border);
}

.faq .section-title { text-align: center; margin-bottom: 48px; }
.faq .section-label { display: block; text-align: center; }

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.faq__item[open] { border-color: rgba(var(--accent-rgb),0.4); }

.faq__question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }

.faq__answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.faq__answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 16px;
}

/* ============================================================
   TALENT
   ============================================================ */
.talent {
  padding: 100px 0;
  background: var(--sheet-3);
  border-top: 1px solid var(--border);
}

.talent__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.talent__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.talent__text .section-title { color: var(--white); }
.talent__description {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.talent__description + .talent__description { margin-bottom: 28px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  position: relative;
  padding: 120px 0;
  background: var(--sheet);
  border-top: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final__glow { display: none; }

.cta-final__content { position: relative; z-index: 1; }

.cta-final__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-final__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--sheet-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(1.1) contrast(1.05)
    drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 14px rgba(62, 161, 210, 0.1));
}
.footer__statement {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal--left  { transform: translateX(-28px) translateY(0); }
.reveal--right { transform: translateX(28px)  translateY(0); }
.reveal--left.visible,
.reveal--right.visible { transform: none; }

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .featured-services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid                { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(3,11,21,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav__menu.open {
    display: flex;
    transform: none;
    opacity: 1;
    pointer-events: all;
  }
  .nav__link { padding: 12px 16px; }
  .nav__link--cta { margin-left: 0; margin-top: 8px; text-align: center; }

  .pillars__grid     { grid-template-columns: 1fr; }
  .about__grid,
  .community__grid,
  .talent__grid      { grid-template-columns: 1fr; gap: 36px; }
  .community__grid   { grid-template-columns: 1fr; }
  .community__cards  { grid-template-columns: repeat(2, 1fr); }
  .faq__grid         { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr 1fr; }

  .process__timeline { grid-template-columns: 1fr; }
  .process__timeline::before { display: none; }
  .process__step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; padding: 0 0 24px; }
  .process__number { flex-shrink: 0; }
}

@media (max-width: 640px) {
  .hero__ctas       { flex-direction: column; align-items: center; }
  .why__grid        { grid-template-columns: 1fr; }
  .featured-services__grid { grid-template-columns: 1fr; }
  .community__cards { grid-template-columns: 1fr; }
  .footer__grid     { grid-template-columns: 1fr; gap: 28px; }
  .cta-final__buttons { flex-direction: column; align-items: center; }
  .about__value-cards { grid-template-columns: 1fr; }
}

/* ── Synapse burst on hamburger click ── */
.synapse-burst {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent, #00e5ff);
  box-shadow: 0 0 6px 2px rgba(0,229,255,.6), 0 0 14px 4px rgba(0,229,255,.25);
  animation: synapseFly .7s cubic-bezier(.22,.68,.32,1.1) forwards;
}
@keyframes synapseFly {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  60%  { opacity: .85; }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(.3); }
}
