/* ============ FMT Solutions — modern IT single page ============ */

:root {
  --bg: #070b16;
  --bg-2: #0a0f1e;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf7;
  --muted: #9aa6bd;
  --brand: #00d4ff;
  --brand-2: #6a5cff;
  --brand-3: #00ffa3;
  --grad: linear-gradient(120deg, #00d4ff 0%, #6a5cff 55%, #00ffa3 100%);
  --radius: 18px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: rgba(0, 212, 255, 0.18); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  /* respect notch / rounded-corner safe areas */
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* comfortable tap targets everywhere */
a, button { touch-action: manipulation; }
.btn, .nav-cta, .nav-toggle, .contact-item, .nav-links a { min-height: 44px; }

h1, h2, h3, .brand { font-family: "Space Grotesk", "Inter", sans-serif; line-height: 1.1; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }

section { position: relative; z-index: 1; }

/* ---------- Animated background ---------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(106, 92, 255, 0.18), transparent 60%),
    radial-gradient(1000px 700px at 0% 20%, rgba(0, 212, 255, 0.12), transparent 60%),
    var(--bg);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.blob-1 { width: 540px; height: 540px; background: var(--brand); top: -140px; left: -120px; animation: float1 18s var(--ease) infinite; }
.blob-2 { width: 480px; height: 480px; background: var(--brand-2); top: 30%; right: -160px; animation: float2 22s var(--ease) infinite; }
.blob-3 { width: 420px; height: 420px; background: var(--brand-3); bottom: -160px; left: 30%; animation: float3 26s var(--ease) infinite; opacity: 0.35; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 40%, transparent 80%);
}
@keyframes float1 { 50% { transform: translate(80px, 60px) scale(1.1); } }
@keyframes float2 { 50% { transform: translate(-70px, 40px) scale(1.15); } }
@keyframes float3 { 50% { transform: translate(60px, -50px) scale(1.05); } }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px clamp(18px, 4vw, 28px);
  max-width: calc(var(--maxw) - 40px);
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(10, 15, 30, 0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-color: var(--border);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.25rem; }
.brand-mark {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-text { color: var(--text); font-weight: 500; }
.logo { position: relative; display: inline-block; line-height: 0; }
.logo img { display: block; height: 30px; width: auto; }
/* blue cursor bar overlaid where the baked bar was removed; blinks like a terminal cursor */
.logo-blink {
  position: absolute;
  left: 84.75%; width: 9.1%;
  top: 14.4%; height: 71.3%;
  background: #5aa0ff;
  border-radius: 3px;
  pointer-events: none;
  animation: fmtBlink 1.1s steps(1) infinite;
}
@keyframes fmtBlink { 0%, 48% { opacity: 1; } 49%, 100% { opacity: 0; } }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta {
  padding: 9px 20px;
  border-radius: 999px;
  color: var(--text) !important;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 600;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-cta:hover { color: var(--text); background: var(--surface-strong); border-color: rgba(0, 212, 255, 0.45); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, filter 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: #051018; box-shadow: 0 10px 30px rgba(0, 212, 255, 0.28); }
.btn-primary:hover { box-shadow: 0 14px 40px rgba(106, 92, 255, 0.4); }
.btn-ghost { background: var(--surface); border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--surface-strong); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 12vw, 130px) clamp(20px, 5vw, 48px) clamp(50px, 8vw, 90px);
  text-align: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--brand-3); box-shadow: 0 0 0 0 rgba(0,255,163,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(0,255,163,0); } 100% { box-shadow: 0 0 0 0 rgba(0,255,163,0); } }
.hero-title { font-size: clamp(2.4rem, 6.5vw, 4.6rem); font-weight: 700; margin: 26px 0 20px; }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { max-width: 640px; margin: 0 auto; color: var(--muted); font-size: clamp(1rem, 2vw, 1.18rem); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-stats { display: flex; gap: clamp(24px, 6vw, 64px); justify-content: center; flex-wrap: wrap; margin-top: 58px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: "Space Grotesk"; font-size: 1.7rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Generic section ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 10vw, 110px) clamp(20px, 5vw, 48px); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.eyebrow { display: inline-block; color: var(--brand); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.section-head h2, .about h2, .contact h2, .unifi h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 700; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(0,212,255,0.12), transparent 45%);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.35); background: var(--surface-strong); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(106,92,255,0.18));
  border: 1px solid var(--border);
  margin-bottom: 18px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- UniFi section ---------- */
.unifi-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.unifi-text p { color: var(--muted); margin: 18px 0 22px; font-size: 1.05rem; }
.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; color: var(--text); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; display: grid; place-items: center;
  border-radius: 50%; background: var(--grad); color: #051018; font-size: 0.75rem; font-weight: 700;
}
.unifi-visual { display: grid; place-items: center; }
.orbit { position: relative; width: min(360px, 80vw); aspect-ratio: 1; }
.node {
  position: absolute;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.node-center {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--grad); color: #051018; padding: 18px 28px; font-size: 1.1rem;
  box-shadow: 0 0 50px rgba(0,212,255,0.35);
  animation: hubPulse 3.2s ease-in-out infinite;
  z-index: 2;
}
.n1 { top: 4%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.n2 { top: 50%; right: -6%; transform: translateY(-50%); animation-delay: 2s; }
.n3 { bottom: 4%; left: 50%; transform: translateX(-50%); animation-delay: 4s; }
.n4 { top: 50%; left: -6%; transform: translateY(-50%); animation-delay: 6s; }

/* each outer node lights up in turn (background-image/color/shadow only,
   so the positioning transforms above are never overwritten) */
.orbit .node:not(.node-center) { animation: nodeCycle 8s var(--ease) infinite; }
@keyframes nodeCycle {
  0%, 25%, 100% {
    background-image: none;
    color: var(--text);
    border-color: var(--border);
    box-shadow: none;
  }
  8%, 17% {
    background-image: var(--grad);
    color: #051018;
    border-color: transparent;
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.5);
  }
}
@keyframes hubPulse {
  50% { box-shadow: 0 0 78px rgba(106, 92, 255, 0.55); }
}

/* slow rotating dashed ring */
.orbit::before {
  content: ""; position: absolute; inset: 14%;
  border: 1px dashed var(--border); border-radius: 50%;
  animation: spin 40s linear infinite;
}
/* expanding signal pulse emanating from the hub */
.orbit::after {
  content: ""; position: absolute; inset: 30%;
  border: 1.5px solid rgba(0, 212, 255, 0.45); border-radius: 50%;
  animation: signal 3.2s ease-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes signal {
  0% { transform: scale(0.45); opacity: 0.85; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- UniFi showcase ---------- */
/* Video embed */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background: #0d1326;
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gallery-hint { text-align: center; color: var(--muted); font-size: 0.9rem; margin: 8px 0 30px; }

/* Click-to-play video facade */
.video-facade {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%;
  padding: 0; margin: 0; border: 0;
  cursor: pointer; background: #0d1326;
  overflow: hidden;
}
.video-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.5s var(--ease);
}
.video-facade::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(4, 7, 14, 0.45) 100%);
  transition: background 0.3s;
}
.video-facade:hover .video-thumb, .video-facade:focus-visible .video-thumb { opacity: 1; transform: scale(1.04); }
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s var(--ease);
}
.video-play .yt-bg { fill: rgba(20, 24, 36, 0.85); transition: fill 0.2s; }
.video-facade:hover .video-play, .video-facade:focus-visible .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-facade:hover .video-play .yt-bg, .video-facade:focus-visible .video-play .yt-bg { fill: #ff0000; }
.video-facade:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

/* Gallery */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.shot {
  position: relative;
  display: block;
  margin: 0; padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.shot:hover, .shot:focus-visible { transform: translateY(-6px); border-color: rgba(0, 212, 255, 0.4); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35); outline: none; }
.shot img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 11; object-fit: cover; object-position: top; background: #0d1326; transition: transform 0.4s var(--ease); }
.shot:hover img { transform: scale(1.04); }
.shot-cap { display: block; padding: 14px 18px; color: var(--muted); font-size: 0.9rem; }
.shot-cap strong { color: var(--text); font-weight: 600; }
.shot-zoom {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(7, 11, 22, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  color: var(--text); font-size: 1rem;
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s;
}
.shot:hover .shot-zoom, .shot:focus-visible .shot-zoom { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(4, 7, 14, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 0.28s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lb-figure { margin: 0; max-width: min(1100px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-figure img {
  max-width: 100%; max-height: 76vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96); transition: transform 0.28s var(--ease);
}
.lightbox.open .lb-figure img { transform: scale(1); }
.lb-figure figcaption { color: var(--text); font-size: 0.98rem; text-align: center; }
.lb-close, .lb-nav {
  position: absolute;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255, 255, 255, 0.16); }
.lb-close { top: 20px; right: 20px; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 600px) {
  .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { top: 12px; right: 12px; }
}

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.why-item { padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s; }
.why-item:hover { border-color: rgba(106,92,255,0.4); transform: translateY(-4px); }
.why-item h3 { font-size: 1.12rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 0.96rem; }

/* ---------- About ---------- */
.about-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.about-inner p { color: var(--muted); margin-top: 18px; font-size: 1.1rem; }

/* ---------- Contact ---------- */
.contact-card {
  text-align: center;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(106,92,255,0.12), rgba(0,212,255,0.06));
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-card p { color: var(--muted); margin-top: 10px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 38px 0 24px; }
.contact-web { color: var(--muted); font-size: 1.02rem; }
.contact-web a {
  position: relative;
  color: var(--text);
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-web a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.contact-web a:hover::after { transform: scaleX(1); }
.contact-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 26px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.contact-item:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.4); background: var(--surface-strong); }
.contact-icon { font-size: 1.6rem; margin-bottom: 6px; }
.contact-label { color: var(--brand); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.contact-value { color: var(--text); font-weight: 500; word-break: break-word; }

/* ---------- Footer ---------- */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); margin-top: 40px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 40px clamp(20px, 5vw, 48px); text-align: center; display: grid; gap: 8px; }
.footer .brand { justify-content: center; }
.footer-tag { color: var(--muted); font-size: 0.95rem; }
.footer-copy { color: #5d6883; font-size: 0.85rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.cards .reveal:nth-child(2) { transition-delay: 0.06s; }
.cards .reveal:nth-child(3) { transition-delay: 0.12s; }
.cards .reveal:nth-child(4) { transition-delay: 0.18s; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .unifi-inner { grid-template-columns: 1fr; }
  .unifi-visual { order: -1; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 26px; width: min(78vw, 320px); padding: 0 32px;
    background: rgba(7, 11, 22, 0.96); backdrop-filter: blur(18px);
    transform: translateX(100%); transition: transform 0.35s var(--ease);
    border-left: 1px solid var(--border);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 60; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Ultra mobile-friendly tuning */
@media (max-width: 520px) {
  .hero { padding-top: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 28px 40px; margin-top: 44px; }
  .hero-stats strong { font-size: 1.45rem; }
  .cards, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .card, .why-item { padding: 24px 20px; }
  .contact-card { padding: 32px 20px; }
  .btn-lg { width: 100%; }
  .section-head { margin-bottom: 40px; }
  .nav { padding-left: 18px; padding-right: 18px; }
  .orbit { width: min(290px, 86vw); }
  .node { padding: 8px 14px; font-size: 0.82rem; }
  .node-center { padding: 14px 22px; font-size: 1rem; }
}

/* Lighten heavy GPU effects on smaller / touch screens for smooth scrolling */
@media (max-width: 768px) {
  .blob { filter: blur(60px); opacity: 0.4; }
  .blob-1 { width: 320px; height: 320px; }
  .blob-2 { width: 300px; height: 300px; }
  .blob-3 { width: 280px; height: 280px; }
  .grid-overlay { background-size: 44px 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
