:root {
  --navy: #08111f;
  --navy-2: #060b14;
  --navy-3: #0e1a2c;
  --surface: #0e1a2c;
  --surface-light: #12233a;
  --blue: #2d6be4;
  --blue-2: #18b6ff;
  --white: #ffffff;
  --muted: #b8c7da;
  --line: rgba(184, 199, 218, 0.18);
  --glass: rgba(14, 26, 44, 0.72);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(24, 182, 255, 0.14), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(45, 107, 228, 0.16), transparent 30%),
    linear-gradient(180deg, #08111f 0%, #060b14 62%, #050912 100%),
    var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { color: var(--muted); margin: 0 0 1rem; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; letter-spacing: 0; margin: 0 0 1rem; }
h1 { font-size: clamp(2.7rem, 6vw, 5.45rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.25rem); }
h3 { font-size: 1.35rem; }
ul, ol { color: var(--muted); padding-left: 1.15rem; }
li { margin: 0.45rem 0; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100% - 40px)); }
.section { padding: 110px 0; position: relative; }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(45, 107, 228, 0.9);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid transparent;
  /* slide + fade on compositor — zero layout cost */
  transition: transform 0.32s ease, background 0.25s ease, border-color 0.25s ease;
  will-change: transform;
  backface-visibility: hidden;
}
/* glassy background once user has scrolled */
.site-header.scrolled {
  background: rgba(6, 11, 20, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--line);
}
/* slide header off-screen when scrolling down */
.site-header.header-hidden {
  transform: translateY(-100%);
}
/* keep visible if mobile nav is open */
.site-header.header-hidden.nav-open {
  transform: translateY(0);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.site-logo, .custom-logo {
  width: auto;
  max-width: 220px;
  height: 52px;
  object-fit: contain;
}
.header-logo { display: block; }
.footer-logo-img { height: 58px; max-width: 240px; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(83, 166, 255, 0.55);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(45,107,228,0.9), rgba(24,182,255,0.18));
  box-shadow: 0 0 34px rgba(24, 182, 255, 0.25);
  font-family: var(--font-display);
}
.brand-text { font-family: var(--font-display); font-size: 1.05rem; }
.nav-menu { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: rgba(255,255,255,0.82); font-weight: 700; font-size: 0.92rem; transition: color 0.2s ease; }
.nav-menu a:hover { color: var(--blue-2); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid var(--line);
  cursor: pointer;
}
.nav-cta, .btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  box-shadow: 0 18px 44px rgba(24, 182, 255, 0.22);
}
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--white); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 6px 0; }

.hero, .page-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
}
.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  /* GPU layer — no layout or paint cost */
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero-home::before {
  width: min(680px, 72vw);
  aspect-ratio: 1;
  right: -180px;
  top: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(24,182,255,0.2), transparent 58%),
    conic-gradient(from 120deg, transparent, rgba(24,182,255,0.3), transparent, rgba(45,107,228,0.22), transparent);
  /* filter: blur removed — blur forces CPU repaint every frame.
     The glow looks identical without it at this opacity.        */
  animation: heroPulse 5.6s ease-in-out infinite;
}
.hero-home::after {
  inset: 0;
  /* Static grid — no animation. Indistinguishable visually
     but saves 14s of constant background-position repaints.     */
  background:
    linear-gradient(rgba(24,182,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,182,255,0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), transparent 72%);
  /* animation: gridDrift removed — background-position anim = CPU repaint */
}
.page-hero { min-height: 62vh; padding-top: 150px; }
.page-hero {
  background:
    radial-gradient(circle at 78% 28%, rgba(24,182,255,0.16), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(45,107,228,0.14), transparent 36%),
    linear-gradient(180deg, rgba(18,35,58,0.42), rgba(6,11,20,0));
  border-bottom: 1px solid rgba(184,199,218,0.12);
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.page-hero::before {
  width: min(560px, 74vw);
  aspect-ratio: 1;
  right: -160px;
  top: 90px;
  border-radius: 50%;
  border: 1px solid rgba(24,182,255,0.18);
  background:
    repeating-radial-gradient(circle, rgba(24,182,255,0.12) 0 1px, transparent 1px 42px),
    radial-gradient(circle, rgba(24,182,255,0.13), transparent 62%);
  animation: heroPulse 7s ease-in-out infinite;
}
.page-hero::after {
  inset: 0;
  background:
    linear-gradient(rgba(24,182,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,182,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.56), transparent 72%);
  /* gridDrift removed — background-position animation forces repaint */
  will-change: auto;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.82; will-change: contents; transform: translateZ(0); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}
.hero-copy p, .page-hero p { max-width: 720px; font-size: 1.18rem; }
.page-hero h1 { max-width: 980px; }
.hero-home h1 { font-size: clamp(3.1rem, 7vw, 6.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.glass-card {
  background:
    linear-gradient(145deg, rgba(18,35,58,0.82), rgba(8,17,31,0.72)),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-panel {
  position: relative;
  padding: 24px;
  min-height: 520px;
  display: grid;
  align-content: stretch;
  gap: 18px;
  overflow: hidden;
  border-color: rgba(24,182,255,0.32);
  background:
    radial-gradient(circle at 50% 18%, rgba(24,182,255,0.18), transparent 34%),
    linear-gradient(145deg, rgba(18,35,58,0.94), rgba(6,11,20,0.82));
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(115deg, transparent 8%, rgba(24,182,255,0.16) 18%, transparent 30%),
    linear-gradient(rgba(24,182,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,182,255,0.045) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  transform: translateX(-120%) translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  /* Keep panelSheen only — dashboardGrid was a background-position anim (CPU repaint) */
  animation: panelSheen 5.2s ease-in-out infinite;
  pointer-events: none;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(24,182,255,0.12);
  border-radius: var(--radius);
  pointer-events: none;
}
.hero-command > * {
  position: relative;
  z-index: 1;
}
.command-topbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(184,199,218,0.14);
  border-radius: var(--radius);
  background: rgba(6,11,20,0.48);
}
.command-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(184,199,218,0.35);
}
.command-topbar span:first-child { background: #18b6ff; box-shadow: 0 0 18px rgba(24,182,255,0.75); }
.command-topbar strong {
  margin-left: auto;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.command-core {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(150px, 0.72fr);
  gap: 18px;
  align-items: center;
}
.command-radar {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(24,182,255,0.2) 0 1px, transparent 1px 42px),
    radial-gradient(circle, rgba(24,182,255,0.13), rgba(6,11,20,0.14) 62%, transparent 64%);
  overflow: hidden;
}
.command-radar::before,
.command-radar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.command-radar::before {
  inset: 9%;
  border: 1px solid rgba(24,182,255,0.18);
  animation: ringPing 2.7s ease-out infinite;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.command-radar::after {
  inset: 0;
  background: conic-gradient(from 0deg, rgba(24,182,255,0.42), transparent 25%, transparent);
  animation: radarSweep 5s linear infinite;
  mix-blend-mode: screen;
  will-change: transform;
  backface-visibility: hidden;
}
.radar-line {
  position: absolute;
  width: 50%;
  height: 1px;
  left: 50%;
  top: 50%;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(24,182,255,0.9), transparent);
  animation: radarSweepLine 5s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.radar-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 24px rgba(24,182,255,0.88);
  animation: dotPulse 2.2s ease-in-out infinite;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.dot-one { left: 28%; top: 25%; }
.dot-two { right: 24%; top: 38%; animation-delay: 0.45s; }
.dot-three { left: 42%; bottom: 22%; animation-delay: 0.9s; }
.growth-ring {
  position: relative;
  width: min(220px, 66%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(24,182,255,0.44);
  display: grid;
  place-items: center;
  text-align: center;
  margin: 0 auto;
  background:
    radial-gradient(circle at 50% 44%, rgba(24,182,255,0.2), rgba(6,11,20,0.74) 58%),
    conic-gradient(from 110deg, rgba(24,182,255,1), rgba(45,107,228,0.12), rgba(45,107,228,1), rgba(24,182,255,1));
  box-shadow:
    inset 0 0 52px rgba(24,182,255,0.12),
    0 0 44px rgba(24,182,255,0.18);
  animation: ringBreathe 3.6s ease-in-out infinite;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}
.growth-ring::before,
.growth-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.growth-ring::before {
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: radial-gradient(circle, rgba(8,17,31,0.92), rgba(6,11,20,0.68));
}
.growth-ring::after {
  inset: -8px;
  border: 1px solid rgba(24,182,255,0.18);
  animation: ringPing 2.8s ease-out infinite;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.growth-ring span,
.growth-ring small {
  position: relative;
  z-index: 1;
}
.growth-ring span {
  display: block;
  font: 800 clamp(3.2rem, 6vw, 4.9rem)/1 var(--font-display);
  text-shadow: 0 0 24px rgba(24,182,255,0.32);
}
.growth-ring small { display: block; max-width: 150px; margin: 10px auto 0; color: var(--white); }
.command-feed {
  display: grid;
  gap: 12px;
}
.command-feed p {
  margin: 0;
  padding: 13px;
  border: 1px solid rgba(24,182,255,0.18);
  border-radius: var(--radius);
  background: rgba(6,11,20,0.52);
  overflow: hidden;
}
.command-feed strong,
.command-feed em {
  color: var(--white);
  font-style: normal;
  font-weight: 900;
}
.command-feed p {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  align-items: center;
  gap: 10px;
}
.command-feed span {
  position: relative;
  height: 8px;
  border-radius: 99px;
  background: rgba(184,199,218,0.11);
  overflow: hidden;
}
.command-feed span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 18px rgba(24,182,255,0.42);
  animation: barLoad 1.4s ease both;
}
.command-feed .level-seo span::before { width: 92%; }
.command-feed .level-ads span::before { width: 88%; }
.command-feed .level-web span::before { width: 95%; }
.command-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.command-kpis p {
  margin: 0;
  padding: 16px 12px;
  border: 1px solid rgba(184,199,218,0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18,35,58,0.72), rgba(6,11,20,0.56));
}
.command-kpis strong,
.command-kpis span { display: block; }
.command-kpis strong {
  color: var(--white);
  font: 800 clamp(1.35rem, 2.3vw, 1.85rem)/1 var(--font-display);
}
.command-kpis span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
.glitch::before { color: var(--blue-2); transform: translate(2px, 0); }
.glitch::after { color: #ff4fd8; transform: translate(-2px, 0); }
.glitch:hover::before { animation: glitch 0.75s steps(2, end); opacity: 0.65; }
.glitch:hover::after { animation: glitch 0.55s steps(2, end) reverse; opacity: 0.45; }

.floating-orbit {
  position: absolute;
  border: 1px solid rgba(83,166,255,0.24);
  border-radius: 999px;
  animation: floatOrbit 9s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.orbit-one { width: 270px; height: 270px; right: 9%; top: 18%; }
.orbit-two { width: 190px; height: 190px; left: 5%; bottom: 10%; animation-delay: -3s; }

.service-grid, .value-grid, .team-grid, .coming-soon-grid, .pricing-grid, .post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card, .feature-card, .portfolio-card, .pricing-card, .post-card, .team-card, .value-grid article { padding: 26px; transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease; }
.service-card:hover, .portfolio-card:hover, .pricing-card:hover, .post-card:hover { transform: translateY(-8px); border-color: rgba(24,182,255,0.48); box-shadow: 0 28px 90px rgba(0,0,0,0.46), 0 0 38px rgba(24,182,255,0.14); }
.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(18,35,58,0.9), rgba(6,11,20,0.76)),
    radial-gradient(circle at 50% 0%, rgba(24,182,255,0.16), transparent 42%);
}
.service-card::before,
.service-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 8%, rgba(255,255,255,0.12) 18%, transparent 30%);
  transform: translateX(-120%);
  transition: transform 0.75s ease;
  pointer-events: none;
}
.service-card:hover::before,
.service-sticky:hover::before { transform: translateX(120%); }
.service-media,
.service-detail-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,199,218,0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 10%, rgba(24,182,255,0.22), transparent 34%),
    radial-gradient(circle at 82% 85%, rgba(45,107,228,0.2), transparent 38%),
    linear-gradient(145deg, rgba(18,35,58,0.95), rgba(6,11,20,0.86));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 42px rgba(0,0,0,0.28);
}
.service-media {
  aspect-ratio: 4 / 3;
  padding: 18px;
  margin-bottom: 0;
}
.service-media::after,
.service-detail-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(24,182,255,0.12);
  pointer-events: none;
}
.service-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(6,11,20,0.34);
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.26)) saturate(1.04) contrast(1.03);
  transition: transform 0.42s ease, filter 0.42s ease;
}
.service-card:hover .service-thumb,
.service-sticky:hover .service-detail-image {
  transform: scale(1.045);
  filter: drop-shadow(0 22px 34px rgba(24,182,255,0.16)) saturate(1.08) contrast(1.04);
}
.service-card-head {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: -31px 0 14px;
  padding-top: 0;
  text-align: center;
}
.service-card-head h2,
.service-card-head h3 {
  margin-bottom: 0;
  max-width: 100%;
}
.service-card-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background:
    linear-gradient(145deg, rgba(45,107,228,0.98), rgba(24,182,255,0.72)),
    rgba(6,11,20,0.9);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--blue-2);
  font-weight: 900;
  margin-bottom: 0;
  font-size: 0.82rem;
  box-shadow: 0 18px 34px rgba(0,0,0,0.32), 0 0 26px rgba(24,182,255,0.2);
}
.service-card .card-icon {
  color: var(--white);
  outline: 8px solid rgba(6,11,20,0.72);
}
.service-sticky .service-card-head {
  display: flex;
  align-items: center;
  justify-items: start;
  text-align: left;
  margin: 0 0 14px;
}
.service-sticky .card-icon {
  color: var(--blue-2);
}
.service-card p {
  text-align: center;
  margin-bottom: 22px;
}
.service-card a {
  align-self: center;
  margin-top: auto;
  padding: 9px 14px;
  border: 1px solid rgba(24,182,255,0.18);
  border-radius: var(--radius);
  background: rgba(24,182,255,0.06);
}
.service-card a, .post-card a, .portfolio-card span { color: var(--blue-2); font-weight: 800; }

.split-band { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)); }
.split-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 48px; align-items: start; }
.choose-grid, .two-card-grid, .detail-columns, .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.feature-card span {
  display: block;
  width: 38px;
  height: 4px;
  background: var(--blue);
  border-radius: 4px;
  margin-bottom: 20px;
}
.story-section .glass-card,
.two-card-grid .glass-card,
.value-grid article,
.team-card,
.service-body .glass-card,
.mini-cta,
.faq-list details,
.contact-info .glass-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(18,35,58,0.86), rgba(6,11,20,0.7)),
    radial-gradient(circle at 100% 0%, rgba(24,182,255,0.12), transparent 42%);
}
.story-section .glass-card,
.two-card-grid .glass-card,
.value-grid article,
.team-card { padding: 28px; }
.story-section .glass-card::before,
.two-card-grid .glass-card::before,
.value-grid article::before,
.team-card::before,
.pricing-card::before,
.portfolio-card::before,
.post-card::before,
.contact-info .glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 10%, rgba(255,255,255,0.1) 20%, transparent 32%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.story-section .glass-card:hover::before,
.two-card-grid .glass-card:hover::before,
.value-grid article:hover::before,
.team-card:hover::before,
.pricing-card:hover::before,
.portfolio-card:hover::before,
.post-card:hover::before,
.contact-info .glass-card:hover::before { transform: translateX(120%); }
.value-grid article:hover,
.team-card:hover,
.two-card-grid .glass-card:hover,
.contact-info .glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24,182,255,0.38);
  box-shadow: 0 24px 70px rgba(0,0,0,0.36), 0 0 30px rgba(24,182,255,0.1);
}
.value-grid article h3::before,
.team-card h3::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 16px rgba(24,182,255,0.36);
}

.stats-section { padding: 60px 0; background: linear-gradient(180deg, rgba(18,35,58,0.54), rgba(8,17,31,0.32)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stats-grid-5 { grid-template-columns: repeat(5, 1fr); }
.stat strong { font: 800 1.8rem/1 var(--font-display); color: var(--white); display:flex; align-items:baseline; justify-content:center; gap:2px; }
.stat strong .suffix { font-size:1.2rem; font-weight:700; color:var(--blue-2,#18b6ff); }
.stat p { margin-top: 8px; }

.testimonial-slider {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
  overflow: hidden;
  border-color: rgba(83,166,255,0.28);
}
.testimonial-slider::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -100px;
  background: radial-gradient(circle, rgba(45,107,228,0.36), transparent 68%);
  pointer-events: none;
}
.testimonial { display: none; font-size: 1.28rem; position: relative; z-index: 1; }
.testimonial.active { display: block; animation: fadeUp 0.45s ease both; }
.testimonial p {
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.35;
  margin-top: 28px;
  max-width: 950px;
}
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 18px;
}
.testimonial-profile img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px solid rgba(83,166,255,0.7);
  box-shadow: 0 14px 36px rgba(45,107,228,0.32);
}
.testimonial strong, .testimonial span { display: block; }
.testimonial strong { font-size: 1.1rem; }
.testimonial span { color: var(--muted); font-size: 0.95rem; }
.testimonial-controls { display: flex; gap: 10px; margin-top: 24px; }
.slider-dot { width: 42px; height: 4px; border: 0; border-radius: 4px; background: rgba(255,255,255,0.2); cursor: pointer; }
.slider-dot.active { background: var(--blue-2); }

.cta-section { padding: 110px 0; }
.cta-inner {
  padding: clamp(34px, 7vw, 80px);
  border: 1px solid rgba(83,166,255,0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(45,107,228,0.22), rgba(255,255,255,0.06));
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-inner p { max-width: 720px; margin: 0 auto 26px; }

.service-detail-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 26px; align-items: start; }
.service-detail-grid.reverse { grid-template-columns: 1.22fr 0.78fr; }
.service-detail-grid.reverse .service-sticky { order: 2; }
.service-sticky {
  position: sticky;
  top: 110px;
  overflow: hidden;
  padding: 30px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.service-sticky:hover {
  transform: translateY(-6px);
  border-color: rgba(24,182,255,0.48);
  box-shadow: 0 28px 90px rgba(0,0,0,0.46), 0 0 38px rgba(24,182,255,0.13);
}
.service-detail-media {
  aspect-ratio: 16 / 10;
  padding: 22px;
  margin-bottom: 24px;
}
.service-detail-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(6,11,20,0.32);
  transition: transform 0.42s ease, filter 0.42s ease;
}
.service-body { display: grid; gap: 22px; }
.service-body .glass-card, .mini-cta { padding: 26px; }
.service-body .glass-card h3,
.mini-cta h3 {
  font-size: 1.35rem;
}
.service-body ul {
  list-style: none;
  padding-left: 0;
}
.service-body ul li {
  position: relative;
  padding-left: 28px;
}
.service-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 16px rgba(24,182,255,0.55);
}
.process-list { counter-reset: step; list-style: none; padding-left: 0; }
.process-list li { position: relative; padding-left: 48px; }
.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  font-weight: 800;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  margin-bottom: 26px;
  background: linear-gradient(145deg, rgba(18,35,58,0.86), rgba(6,11,20,0.74));
}
.filter-bar button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.filter-bar button:hover,
.filter-bar button.active {
  transform: translateY(-2px);
  border-color: rgba(24,182,255,0.46);
  background: linear-gradient(135deg, rgba(45,107,228,0.86), rgba(24,182,255,0.56));
}
.portfolio-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6,11,20,0.04), rgba(6,11,20,0.86)),
    radial-gradient(circle at 20% 0%, rgba(24,182,255,0.2), transparent 44%),
    linear-gradient(145deg, rgba(18,35,58,0.86), rgba(6,11,20,0.72));
}
.portfolio-visual {
  position: absolute;
  inset: 22px 22px auto;
  height: 128px;
  border: 1px solid rgba(24,182,255,0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(24,182,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,182,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 70% 25%, rgba(24,182,255,0.2), transparent 36%);
  background-size: 22px 22px, 22px 22px, 100% 100%;
}
.portfolio-visual span {
  position: absolute;
  bottom: 18px;
  width: 18%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  box-shadow: 0 0 22px rgba(24,182,255,0.32);
}
.portfolio-visual span:nth-child(1) { left: 16%; height: 42%; }
.portfolio-visual span:nth-child(2) { left: 41%; height: 68%; }
.portfolio-visual span:nth-child(3) { right: 16%; height: 54%; }

.pricing-card {
  position: relative;
  padding-top: 38px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(18,35,58,0.9), rgba(6,11,20,0.74)),
    radial-gradient(circle at 50% 0%, rgba(24,182,255,0.12), transparent 42%);
}
.pricing-card.popular {
  border-color: rgba(24,182,255,0.62);
  transform: translateY(-12px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.46), 0 0 48px rgba(24,182,255,0.16);
}
.pricing-card h2 { font-size: clamp(1.8rem, 3vw, 2.45rem); }
.pricing-card strong { display: block; font: 800 2rem/1 var(--font-display); margin: 24px 0; color: var(--white); }
.pricing-card ul {
  list-style: none;
  padding-left: 0;
}
.pricing-card li {
  position: relative;
  padding-left: 28px;
}
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 16px rgba(24,182,255,0.42);
}
.popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  padding: 7px 11px;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 900;
}
.faq-list { display: grid; gap: 14px; }
details { padding: 22px; }
summary { cursor: pointer; font-weight: 900; font-family: var(--font-display); color: var(--white); }
details[open] {
  border-color: rgba(24,182,255,0.36);
}

.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.blog-sidebar { position: sticky; top: 110px; display: grid; gap: 18px; }
.blog-sidebar .glass-card { padding: 22px; }
.post-thumb {
  min-height: 210px;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(rgba(24,182,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,182,255,0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(45,107,228,0.62), rgba(24,182,255,0.14));
  background-size: 24px 24px, 24px 24px, 100% 100%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
}
.post-thumb img { width: 100%; height: 230px; object-fit: cover; }
.post-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18,35,58,0.86), rgba(6,11,20,0.74));
}
.post-card-body { padding: 24px; }
.post-card-body span { color: var(--blue-2); font-size: 0.82rem; font-weight: 800; }

.contact-form {
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: grid;
  gap: 18px;
  background:
    linear-gradient(145deg, rgba(18,35,58,0.88), rgba(6,11,20,0.74)),
    radial-gradient(circle at 100% 0%, rgba(24,182,255,0.14), transparent 42%);
}
.contact-form label { display: grid; gap: 8px; color: var(--white); font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7,17,32,0.72);
  color: var(--white);
  padding: 14px 15px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: rgba(24,182,255,0.62);
  box-shadow: 0 0 0 4px rgba(24,182,255,0.1);
  background: rgba(8,17,31,0.92);
}
textarea { resize: vertical; }
.contact-info { display: grid; gap: 18px; }
.contact-info .glass-card, .map-placeholder { padding: 24px; }
.map-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  border-style: solid;
  background:
    linear-gradient(rgba(24,182,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,182,255,0.04) 1px, transparent 1px),
    linear-gradient(145deg, rgba(18,35,58,0.82), rgba(6,11,20,0.74));
  background-size: 28px 28px, 28px 28px, 100% 100%;
}
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(45,107,228,0.18);
  border: 1px solid rgba(83,166,255,0.35);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}
.photo-placeholder {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid rgba(24,182,255,0.28);
  display: grid;
  place-items: center;
  color: var(--white);
  margin-bottom: 20px;
  font: 800 clamp(2rem, 5vw, 3.8rem)/1 var(--font-display);
  background:
    radial-gradient(circle at 50% 30%, rgba(24,182,255,0.24), transparent 42%),
    linear-gradient(145deg, rgba(45,107,228,0.42), rgba(6,11,20,0.74));
  box-shadow: inset 0 0 44px rgba(24,182,255,0.08);
}
.content-card { padding: clamp(24px, 5vw, 54px); }
.legal-section .content-card h2 { margin-top: 34px; }
.legal-section .content-card h2:first-child { margin-top: 0; }
.elementor-ready-content { padding-top: 140px; }
.page-editor-content {
  padding-bottom: 0;
}
.page-editor-content + .page-hero {
  min-height: auto;
  padding-top: 78px;
}
.elementor-full-width-page { padding-top: 86px; }
.elementor-full-width-page .elementor-section-wrap,
.elementor-full-width-page .elementor {
  width: 100%;
}
.single-thumb { margin-bottom: 28px; }
.single-thumb img { border-radius: var(--radius); width: 100%; }

.site-footer {
  padding: 80px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--navy-2);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.8fr 1fr; gap: 34px; }
.footer-grid h3 { font-size: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--blue-2); }
.footer-brand p { max-width: 360px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 34px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a { color: var(--muted); }

.page-transition {
  position: fixed;
  inset: 0;
  background: var(--navy-2);
  z-index: 999;
  pointer-events: none;
  transform: translateY(-100%);
}
.page-transition.active { animation: pageSweep 0.75s ease both; }
.magnetic-cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  border: 1px solid var(--blue-2);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}
.magnetic-cursor.visible { opacity: 0.8; }
.magnetic-cursor.grow { width: 46px; height: 46px; background: rgba(45,107,228,0.12); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes rotateGlow {
  from { filter: hue-rotate(0deg); transform: rotate(0deg); }
  to { filter: hue-rotate(18deg); transform: rotate(360deg); }
}
@keyframes heroPulse {
  0%, 100% { transform: scale(0.96) rotate(0deg); opacity: 0.62; }
  50% { transform: scale(1.06) rotate(10deg); opacity: 0.92; }
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 54px 54px, 54px 54px; }
}
@keyframes panelSheen {
  0%, 42% { transform: translateX(-125%); }
  68%, 100% { transform: translateX(125%); }
}
@keyframes dashboardGrid {
  from { background-position: 0 0, 0 0, center; }
  to { background-position: 28px 28px, 28px 28px, center; }
}
@keyframes orbitSpin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}
@keyframes orbitSpinReverse {
  from { rotate: 360deg; }
  to { rotate: 0deg; }
}
@keyframes ringBreathe {
  0%, 100% { transform: scale(1); box-shadow: inset 0 0 52px rgba(24,182,255,0.12), 0 0 44px rgba(24,182,255,0.18); }
  50% { transform: scale(1.035); box-shadow: inset 0 0 70px rgba(24,182,255,0.18), 0 0 70px rgba(24,182,255,0.26); }
}
@keyframes ringPing {
  0% { transform: scale(0.98); opacity: 0.72; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes radarSweepLine {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes dotPulse {
  0%, 100% { transform: scale(0.82); opacity: 0.58; }
  50% { transform: scale(1.18); opacity: 1; }
}
@keyframes barLoad {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
@keyframes signalSweep {
  0%, 35% { transform: translateX(-110%); }
  75%, 100% { transform: translateX(110%); }
}
@keyframes floatOrbit {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -24px, 0); }
}
@keyframes glitch {
  0% { clip-path: inset(0 0 82% 0); }
  25% { clip-path: inset(44% 0 34% 0); }
  50% { clip-path: inset(12% 0 62% 0); }
  75% { clip-path: inset(74% 0 10% 0); }
  100% { clip-path: inset(0 0 82% 0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pageSweep {
  0% { transform: translateY(-100%); }
  45% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7,17,32,0.95);
    backdrop-filter: blur(18px);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu { display: grid; gap: 12px; }
  .nav-cta { display: none; }
  .hero-grid, .split-grid, .service-detail-grid, .service-detail-grid.reverse, .blog-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .hero-panel { min-height: auto; }
  .command-core { grid-template-columns: 1fr; }
  .command-radar { width: min(360px, 100%); margin: 0 auto; }
  .service-detail-grid.reverse .service-sticky { order: 0; }
  .service-sticky, .blog-sidebar { position: static; }
  .service-grid, .pricing-grid, .post-grid, .team-grid, .value-grid, .coming-soon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  h1 { font-size: clamp(2.7rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .section { padding: 76px 0; }
  .hero, .page-hero { padding-top: 120px; min-height: auto; }
  .hero-panel { min-height: auto; padding: 22px; }
  .command-topbar strong { font-size: 0.68rem; }
  .command-radar { width: min(280px, 100%); }
  .command-kpis { grid-template-columns: 1fr; }
  .command-feed p { grid-template-columns: 44px 1fr 28px; }
  .service-grid, .pricing-grid, .post-grid, .team-grid, .value-grid, .coming-soon-grid, .choose-grid, .two-card-grid, .detail-columns, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .brand-text { max-width: 160px; line-height: 1.1; }
  .site-logo, .custom-logo { max-width: 178px; height: 44px; }
  .service-card, .service-sticky { padding: 20px; }
  .service-media, .service-detail-media { padding: 14px; }
  .service-card-head { align-items: center; }
  .service-card-head h3 { font-size: 1.28rem; }
  .portfolio-card { min-height: 280px; }
  .portfolio-visual { height: 104px; }
  .pricing-card.popular { transform: none; }
  .contact-form { padding: 22px; }
  .testimonial-profile { align-items: flex-start; }
  .testimonial-profile img { width: 66px; height: 66px; }
  .magnetic-cursor { display: none; }
}

/* ============================================================
   MOBILE HERO PERFORMANCE — animations kept, GPU promoted
   ============================================================ */
@media (max-width: 768px) {
  /* Reduce backdrop blur on glass cards in hero — 20px blur on
     every element composited on mobile GPU is the main cause
     of dropped frames. 8px is visually identical on small screens. */
  .glass-card          { backdrop-filter: blur(8px);  -webkit-backdrop-filter: blur(8px); }
  .hero-panel          { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .primary-nav         { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

  /* Parallax is a scroll-linked JS style write — forces layout.
     Disable on mobile; the card still looks great statically.   */
  .parallax-card       { transform: none !important; will-change: auto; }

  /* iOS momentum scrolling */
  html                 { -webkit-overflow-scrolling: touch; }

  /* heroPulse blob — slow it on mobile so GPU updates less often.
     Still animates, just at half the frame budget.              */
  .hero-home::before   { animation-duration: 9s; }

  /* Contain hero painting to its own layer — stops hero repaint
     bleeding into rest of page compositor tree.                 */
  .hero, .hero-home    {
    contain: layout style;
    isolation: isolate;
  }

  /* Reduce box-shadow complexity on hero panel — large spreads
     are composited per-frame and expensive on mid-range phones. */
  .hero-panel {
    box-shadow: 0 12px 40px rgba(0,0,0,0.38);
  }

  /* Radar sweep on mobile — slightly slower = fewer GPU updates  */
  .command-radar::after,
  .radar-line          { animation-duration: 7s; }

  /* Ring breathe — slower on mobile                             */
  .growth-ring         { animation-duration: 5s; }
}

/* Respect OS reduced-motion — pause all hero animations */
@media (prefers-reduced-motion: reduce) {
  .floating-orbit,
  .hero-home::before,
  .command-radar::after,
  .radar-line,
  .hero-panel::before,
  .growth-ring,
  .growth-ring::after,
  .command-radar::before,
  .radar-dot           { animation-play-state: paused; }
  .particle-canvas     { display: none; }
}

/* ============================================================
   HERO V2 — Lag-free, CSS-only animated hero
   No canvas, no particle JS, pure GPU-composited transforms
   ============================================================ */

/* ── Layout ── */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}

.hv2-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Background — all GPU-composited transforms only ── */
.hv2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hv2-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  backface-visibility: hidden;
}

.hv2-blob-a {
  width: min(700px, 80vw);
  aspect-ratio: 1;
  right: -200px;
  top: -100px;
  background: radial-gradient(circle, rgba(24,182,255,0.18) 0%, rgba(45,107,228,0.10) 40%, transparent 70%);
  animation: hv2BlobA 12s ease-in-out infinite;
}

.hv2-blob-b {
  width: min(500px, 60vw);
  aspect-ratio: 1;
  left: -150px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(45,107,228,0.14) 0%, transparent 65%);
  animation: hv2BlobB 16s ease-in-out infinite;
}

.hv2-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24,182,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,182,255,0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 80%);
}

.hv2-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(24,182,255,0.12);
  will-change: transform, opacity;
  backface-visibility: hidden;
  top: 50%;
  right: 8%;
  transform: translate(50%, -50%);
}

.hv2-ring-1 { width: 340px; height: 340px; animation: hv2Ring 8s ease-in-out infinite; }
.hv2-ring-2 { width: 520px; height: 520px; animation: hv2Ring 8s ease-in-out infinite 1s; opacity: 0.6; }
.hv2-ring-3 { width: 700px; height: 700px; animation: hv2Ring 8s ease-in-out infinite 2s; opacity: 0.3; }

/* ── Badge ── */
.hv2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(24,182,255,0.28);
  border-radius: 99px;
  background: rgba(24,182,255,0.08);
  color: var(--blue-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hv2-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 10px rgba(24,182,255,0.9);
  animation: hv2Blink 2s ease-in-out infinite;
  will-change: opacity;
}

/* ── Headline ── */
.hv2-headline {
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1.05;
  font-weight: 900;
  margin: 0 0 24px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hv2-highlight {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-2), #18b6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Sub ── */
.hv2-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin: 0 0 32px;
}

/* ── Actions ── */
.hv2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hv2-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Trust bar ── */
.hv2-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hv2-trust-item {
  display: flex;
  flex-direction: column;
}

.hv2-trust-item strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hv2-trust-item span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

.hv2-trust-div {
  width: 1px;
  height: 36px;
  background: rgba(184,199,218,0.2);
}

/* ── Cards column ── */
.hv2-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Main metric card ── */
.hv2-card-main {
  padding: 24px;
  border-color: rgba(24,182,255,0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(24,182,255,0.14), transparent 50%),
    linear-gradient(145deg, rgba(18,35,58,0.95), rgba(6,11,20,0.85));
}

.hv2-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hv2-card-header > div {
  flex: 1;
}

.hv2-card-header strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.hv2-card-header span {
  color: var(--muted);
  font-size: 0.75rem;
}

.hv2-card-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.hv2-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #18ff8a;
  box-shadow: 0 0 12px rgba(24,255,138,0.8);
  animation: hv2Blink 1.6s ease-in-out infinite;
  will-change: opacity;
  flex-shrink: 0;
}

/* ── Big stat ── */
.hv2-big-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(184,199,218,0.1);
}

.hv2-big-num {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-display);
}

.hv2-big-num em {
  font-style: normal;
  color: var(--blue-2);
}

.hv2-big-label {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 120px;
  line-height: 1.4;
}

/* ── Progress bars ── */
.hv2-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hv2-bar-row {
  display: grid;
  grid-template-columns: 80px 1fr 28px;
  align-items: center;
  gap: 10px;
}

.hv2-bar-row > span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hv2-bar-row > em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}

.hv2-bar-track {
  height: 6px;
  border-radius: 99px;
  background: rgba(184,199,218,0.1);
  overflow: hidden;
}

.hv2-bar-fill {
  height: 100%;
  width: var(--w, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 10px rgba(24,182,255,0.4);
  animation: hv2BarLoad 1.6s cubic-bezier(0.22,1,0.36,1) both;
  will-change: transform;
  transform-origin: left;
}

/* ── Small cards ── */
.hv2-small-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hv2-card-sm {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.hv2-card-sm:hover {
  transform: translateY(-4px);
  border-color: rgba(24,182,255,0.4);
}

.hv2-sm-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 4px;
}

.hv2-card-sm strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hv2-card-sm span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── Notification card ── */
.hv2-notif {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-color: rgba(24,255,138,0.2);
  background: linear-gradient(145deg, rgba(18,35,58,0.9), rgba(6,11,20,0.75));
  animation: hv2SlideIn 0.6s ease both 0.8s;
}

.hv2-notif-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.hv2-notif strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}

.hv2-notif span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* ── Scroll cue ── */
.hv2-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hv2-scroll-cue span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(184,199,218,0.3);
  border-radius: 99px;
  position: relative;
}

.hv2-scroll-cue span::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  background: var(--blue-2);
  border-radius: 99px;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: hv2ScrollDot 2s ease-in-out infinite;
  will-change: transform, opacity;
}

/* ── Keyframes — transform/opacity only = GPU composited, zero repaint ── */
@keyframes hv2BlobA {
  0%, 100% { transform: translateZ(0) scale(1) translate(0,0); }
  33%       { transform: translateZ(0) scale(1.06) translate(-20px, 15px); }
  66%       { transform: translateZ(0) scale(0.96) translate(10px, -10px); }
}

@keyframes hv2BlobB {
  0%, 100% { transform: translateZ(0) scale(1) translate(0,0); }
  50%       { transform: translateZ(0) scale(1.08) translate(15px, -20px); }
}

@keyframes hv2Ring {
  0%, 100% { transform: translate(50%, -50%) scale(1);   opacity: 0.5; }
  50%       { transform: translate(50%, -50%) scale(1.06); opacity: 0.9; }
}

@keyframes hv2Blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes hv2BarLoad {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes hv2SlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hv2ScrollDot {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%  { transform: translateX(-50%) translateY(14px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hv2-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hv2-ring-2, .hv2-ring-3 { display: none; }
  .hv2-ring-1 { width: 220px; height: 220px; top: 10%; right: 4%; transform: none; }
  .hv2-headline { font-size: clamp(2.6rem, 8vw, 4rem); }
}

@media (max-width: 540px) {
  .hv2-small-cards { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hv2-card-sm { padding: 14px 8px; }
  .hv2-trust { gap: 16px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hv2-blob-a, .hv2-blob-b,
  .hv2-ring-1, .hv2-ring-2, .hv2-ring-3,
  .hv2-badge-dot, .hv2-live-dot,
  .hv2-bar-fill, .hv2-notif,
  .hv2-scroll-cue span::before { animation: none; }
}

/* ================================================================
   HERO V3 — Jaw-dropping animated dashboard hero
   All animations: transform/opacity only = zero repaint, GPU only
================================================================ */

.hero-v3 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}

/* ── Layered Background ── */
.v3-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.v3-aurora {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  backface-visibility: hidden;
}
.v3-aurora-1 {
  width: 900px; height: 600px;
  top: -200px; right: -200px;
  background: radial-gradient(ellipse, rgba(24,182,255,0.13) 0%, rgba(45,107,228,0.08) 40%, transparent 70%);
  animation: v3AuroraA 14s ease-in-out infinite;
}
.v3-aurora-2 {
  width: 600px; height: 600px;
  bottom: -150px; left: -150px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 65%);
  animation: v3AuroraB 18s ease-in-out infinite;
}
.v3-aurora-3 {
  width: 400px; height: 400px;
  top: 40%; left: 30%;
  background: radial-gradient(circle, rgba(45,107,228,0.07) 0%, transparent 65%);
  animation: v3AuroraC 22s ease-in-out infinite;
}

.v3-grid-lines {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(24,182,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,182,255,0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.v3-scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.015) 2px, rgba(0,0,0,0.015) 4px);
  pointer-events: none;
}

.v3-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  backface-visibility: hidden;
}
.v3-orb-1 {
  width: 6px; height: 6px;
  background: var(--blue-2);
  box-shadow: 0 0 20px rgba(24,182,255,0.9);
  top: 20%; right: 20%;
  animation: v3OrbFloat 6s ease-in-out infinite;
}
.v3-orb-2 {
  width: 4px; height: 4px;
  background: #7c3aed;
  box-shadow: 0 0 14px rgba(124,58,237,0.9);
  top: 60%; right: 45%;
  animation: v3OrbFloat 8s ease-in-out infinite 2s;
}
.v3-orb-3 {
  width: 5px; height: 5px;
  background: #10b981;
  box-shadow: 0 0 16px rgba(16,185,129,0.9);
  top: 35%; right: 55%;
  animation: v3OrbFloat 10s ease-in-out infinite 4s;
}

.v3-corner {
  position: absolute;
  width: 60px; height: 60px;
  border-color: rgba(24,182,255,0.25);
  border-style: solid;
}
.v3-corner-tl { top: 24px; left: 24px; border-width: 2px 0 0 2px; }
.v3-corner-br { bottom: 24px; right: 24px; border-width: 0 2px 2px 0; }

/* ── Layout ── */
.v3-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── LEFT Copy ── */
.v3-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(24,182,255,0.3);
  border-radius: 99px;
  background: rgba(24,182,255,0.07);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 28px;
}
.v3-badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 12px rgba(24,182,255,1);
  animation: v3Blink 2s ease-in-out infinite;
  will-change: opacity;
  flex-shrink: 0;
}
.v3-badge-sep { opacity: 0.35; }
.v3-badge-tag {
  background: rgba(24,182,255,0.15);
  padding: 2px 8px;
  border-radius: 99px;
  color: var(--white);
}

.v3-headline {
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
  font-weight: 900;
  line-height: 1.0;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}
.v3-hl-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.v3-hl-line.visible {
  opacity: 1;
  transform: translateY(0);
}
.v3-hl-line:nth-child(2) { transition-delay: 0.1s; }
.v3-hl-line:nth-child(3) { transition-delay: 0.2s; }

.v3-gradient-text {
  font-style: normal;
  background: linear-gradient(135deg, #18b6ff 0%, #2d6be4 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v3-desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 0 32px;
}

.v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
  align-items: center;
}

.v3-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid rgba(184,199,218,0.25);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  will-change: transform;
}
.v3-ghost-btn:hover {
  border-color: rgba(24,182,255,0.5);
  background: rgba(24,182,255,0.06);
  transform: translateX(4px);
}

.v3-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.v3-trust::-webkit-scrollbar { display: none; }
.v3-trust-stat { display: flex; flex-direction: column; gap: 4px; }
.v3-trust-stat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.v3-trust-stat strong .suffix {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-2, #18b6ff);
  line-height: 1;
}
.v3-trust-stat span {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.v3-trust-sep { width: 1px; height: 32px; background: rgba(184,199,218,0.15); }

/* ── RIGHT Dashboard ── */
.v3-dashboard { position: relative; }

.v3-window {
  background: rgba(8,17,31,0.88);
  border: 1px solid rgba(24,182,255,0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(24,182,255,0.06),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(24,182,255,0.06);
  backdrop-filter: blur(20px);
}

.v3-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(14,26,44,0.8);
  border-bottom: 1px solid rgba(24,182,255,0.12);
}
.v3-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.v3-dot-r { background: #ef4444; }
.v3-dot-y { background: #f59e0b; }
.v3-dot-g { background: #10b981; }
.v3-window-title {
  flex: 1;
  font-size: 0.72rem;
  color: rgba(184,199,218,0.6);
  text-align: center;
  letter-spacing: 0.04em;
}
.v3-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #10b981;
  letter-spacing: 0.1em;
}
.v3-live-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16,185,129,0.9);
  animation: v3Blink 1.4s ease-in-out infinite;
  will-change: opacity;
}

.v3-dash-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }

/* KPI row */
.v3-kpi-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}
.v3-kpi {
  padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: transform 0.3s ease;
}
.v3-kpi:hover { transform: translateY(-2px); }
.v3-kpi-blue  { background: rgba(24,182,255,0.08); border-color: rgba(24,182,255,0.2); }
.v3-kpi-green { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); }
.v3-kpi-purple{ background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); }
.v3-kpi-orange{ background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.2); }

.v3-kpi-label { font-size: 0.66rem; color: var(--muted); letter-spacing: 0.03em; }
.v3-kpi-val   { font-size: 1.25rem; font-weight: 900; color: var(--white); line-height: 1; font-family: var(--font-display); }
.v3-kpi-delta { font-size: 0.66rem; font-weight: 700; }
.v3-up   { color: #10b981; }
.v3-down { color: #ef4444; }

/* Mid row */
.v3-mid-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}

/* Chart */
.v3-chart-box {
  background: rgba(14,26,44,0.6);
  border: 1px solid rgba(24,182,255,0.1);
  border-radius: 10px;
  padding: 14px;
}
.v3-chart-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v3-chart-period { color: var(--muted); font-weight: 400; font-size: 0.65rem; }

.v3-chart { position: relative; height: 90px; }

.v3-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 70px;
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
}
.v3-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
}
.v3-bar-col span { font-size: 0.58rem; color: rgba(184,199,218,0.5); }
.v3-bar-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.v3-bar {
  width: 100%;
  height: var(--h, 50%);
  background: linear-gradient(180deg, rgba(24,182,255,0.5), rgba(45,107,228,0.25));
  border-radius: 3px 3px 0 0;
  border-top: 1px solid rgba(24,182,255,0.6);
  animation: v3BarRise 1.2s cubic-bezier(0.22,1,0.36,1) both;
  will-change: transform;
  transform-origin: bottom;
}
.v3-bar-active {
  background: linear-gradient(180deg, rgba(24,182,255,0.85), rgba(45,107,228,0.4));
  border-color: var(--blue-2);
  box-shadow: 0 0 14px rgba(24,182,255,0.4);
}
.v3-bar-col:nth-child(1) .v3-bar { animation-delay: 0.0s; }
.v3-bar-col:nth-child(2) .v3-bar { animation-delay: 0.08s; }
.v3-bar-col:nth-child(3) .v3-bar { animation-delay: 0.16s; }
.v3-bar-col:nth-child(4) .v3-bar { animation-delay: 0.24s; }
.v3-bar-col:nth-child(5) .v3-bar { animation-delay: 0.32s; }
.v3-bar-col:nth-child(6) .v3-bar { animation-delay: 0.40s; }

.v3-chart-svg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.v3-line-svg { width: 100%; height: 100%; }
.v3-area {
  fill: url(#areaGrad);
}
.v3-line {
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: v3LineDraw 2s ease forwards 0.5s;
}
.v3-line-dot {
  fill: var(--blue-2);
  filter: drop-shadow(0 0 6px rgba(24,182,255,0.9));
  animation: v3Blink 2s ease-in-out infinite;
}

/* Channels */
.v3-channels {
  background: rgba(14,26,44,0.6);
  border: 1px solid rgba(24,182,255,0.1);
  border-radius: 10px;
  padding: 14px;
}
.v3-ch-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.v3-ch-list { display: flex; flex-direction: column; gap: 9px; }
.v3-ch-item {
  display: grid;
  grid-template-columns: 8px 64px 1fr 22px;
  align-items: center;
  gap: 7px;
}
.v3-ch-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dc, #18b6ff);
  box-shadow: 0 0 8px var(--dc, #18b6ff);
  flex-shrink: 0;
}
.v3-ch-name { font-size: 0.68rem; color: var(--muted); }
.v3-ch-track {
  height: 5px;
  background: rgba(184,199,218,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.v3-ch-fill {
  height: 100%;
  width: var(--fw, 0);
  background: var(--fc, #18b6ff);
  border-radius: inherit;
  animation: v3ChFill 1.5s cubic-bezier(0.22,1,0.36,1) both;
  will-change: transform;
  transform-origin: left;
}
.v3-ch-item:nth-child(1) .v3-ch-fill { animation-delay: 0.1s; }
.v3-ch-item:nth-child(2) .v3-ch-fill { animation-delay: 0.2s; }
.v3-ch-item:nth-child(3) .v3-ch-fill { animation-delay: 0.3s; }
.v3-ch-item:nth-child(4) .v3-ch-fill { animation-delay: 0.4s; }
.v3-ch-item:nth-child(5) .v3-ch-fill { animation-delay: 0.5s; }
.v3-ch-item > em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--white);
  text-align: right;
}

/* Activity feed */
.v3-feed {
  background: rgba(14,26,44,0.5);
  border: 1px solid rgba(24,182,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v3-feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(-8px);
  animation: v3FeedIn 0.5s ease forwards;
  will-change: opacity, transform;
}
.v3-feed-anim-1 { animation-delay: 0.8s; }
.v3-feed-anim-2 { animation-delay: 1.1s; }
.v3-feed-anim-3 { animation-delay: 1.4s; }
.v3-feed-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.v3-feed-text { font-size: 0.69rem; color: var(--muted); flex: 1; line-height: 1.4; }
.v3-feed-time { font-size: 0.62rem; color: rgba(184,199,218,0.4); white-space: nowrap; }

/* Floating accent cards */
.v3-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(8,17,31,0.92);
  border: 1px solid rgba(24,182,255,0.25);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  will-change: transform;
}
.v3-float-card > span { font-size: 1.3rem; line-height: 1; }
.v3-float-card strong { display: block; font-size: 0.8rem; color: var(--white); font-weight: 700; }
.v3-float-card span:last-child, .v3-float-card > div > span { font-size: 0.7rem; color: var(--muted); }

.v3-float-1 {
  top: -18px; right: -24px;
  animation: v3Float 4s ease-in-out infinite;
}
.v3-float-2 {
  bottom: 40px; left: -28px;
  animation: v3Float 5s ease-in-out infinite 1s;
}

/* Scroll hint */
.v3-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.v3-scroll-hint span { font-size: 0.65rem; color: rgba(184,199,218,0.4); letter-spacing: 0.1em; text-transform: uppercase; }
.v3-mouse {
  width: 20px; height: 32px;
  border: 2px solid rgba(184,199,218,0.25);
  border-radius: 99px;
  position: relative;
}
.v3-mouse-wheel {
  width: 3px; height: 6px;
  background: var(--blue-2);
  border-radius: 99px;
  position: absolute;
  left: 50%; top: 5px;
  transform: translateX(-50%);
  animation: v3MouseScroll 2s ease-in-out infinite;
  will-change: transform, opacity;
}

/* Feature card icon */
.feature-icon-wrap {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

/* CTA upgrades */
.cta-inner { position: relative; text-align: center; }
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(45,107,228,0.18) 0%, transparent 70%);
  pointer-events: none;
  will-change: opacity;
  animation: v3GlowPulse 4s ease-in-out infinite;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── V3 Keyframes (transform+opacity only) ── */
@keyframes v3AuroraA {
  0%,100% { transform: translateZ(0) scale(1) translate(0,0); }
  33%      { transform: translateZ(0) scale(1.08) translate(-30px,20px); }
  66%      { transform: translateZ(0) scale(0.95) translate(15px,-15px); }
}
@keyframes v3AuroraB {
  0%,100% { transform: translateZ(0) scale(1) translate(0,0); }
  50%      { transform: translateZ(0) scale(1.12) translate(20px,-25px); }
}
@keyframes v3AuroraC {
  0%,100% { transform: translateZ(0) scale(1); }
  50%      { transform: translateZ(0) scale(1.3); }
}
@keyframes v3OrbFloat {
  0%,100% { transform: translateZ(0) translate(0,0); }
  50%      { transform: translateZ(0) translate(8px,-12px); }
}
@keyframes v3Blink {
  0%,100% { opacity:1; }
  50%      { opacity:0.25; }
}
@keyframes v3BarRise {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes v3LineDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes v3ChFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes v3FeedIn {
  to { opacity:1; transform: translateX(0); }
}
@keyframes v3Float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes v3MouseScroll {
  0%   { transform: translateX(-50%) translateY(0); opacity:1; }
  80%  { transform: translateX(-50%) translateY(14px); opacity:0; }
  100% { transform: translateX(-50%) translateY(0); opacity:0; }
}
@keyframes v3GlowPulse {
  0%,100% { opacity:1; }
  50%      { opacity:0.5; }
}

/* ── Responsive V3 ── */
@media (max-width:1024px) {
  .v3-layout { grid-template-columns:1fr; gap:50px; }
  .v3-dashboard { max-width:600px; margin:0 auto; }
  .v3-float-1,.v3-float-2 { display:none; }
}
@media (max-width:640px) {
  .v3-kpi-row { grid-template-columns:repeat(2,1fr); }
  .v3-mid-row { grid-template-columns:1fr; }
  .v3-headline { font-size:clamp(2.8rem,10vw,4rem); }
  .v3-trust { gap:12px; }
}
@media (prefers-reduced-motion:reduce) {
  .v3-aurora-1,.v3-aurora-2,.v3-aurora-3,
  .v3-orb-1,.v3-orb-2,.v3-orb-3,
  .v3-badge-pulse,.v3-live-pulse,
  .v3-bar,.v3-line,.v3-ch-fill,
  .v3-feed-item,.v3-float-1,.v3-float-2,
  .v3-mouse-wheel,.v3-line-dot,.cta-glow { animation:none; opacity:1; transform:none; stroke-dashoffset:0; }
}

/* ================================================================
   ABOUT PAGE V2 — Upgraded animations & layout
================================================================ */

.about-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.about-hero-bg { position:absolute; inset:0; pointer-events:none; }
.ah-aurora {
  position:absolute; border-radius:50%;
  will-change:transform; backface-visibility:hidden;
}
.ah-aurora-1 {
  width:800px; height:500px; top:-150px; right:-150px;
  background: radial-gradient(ellipse, rgba(24,182,255,0.12) 0%, rgba(45,107,228,0.07) 40%, transparent 70%);
  animation: v3AuroraA 16s ease-in-out infinite;
}
.ah-aurora-2 {
  width:500px; height:500px; bottom:-100px; left:-100px;
  background: radial-gradient(circle, rgba(124,58,237,0.09) 0%, transparent 65%);
  animation: v3AuroraB 20s ease-in-out infinite;
}
.ah-grid {
  position:absolute; inset:0;
  background: linear-gradient(rgba(24,182,255,0.022) 1px,transparent 1px), linear-gradient(90deg,rgba(24,182,255,0.018) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image: linear-gradient(180deg, black 40%, transparent 100%);
}
.ah-ring {
  position:absolute; border-radius:50%;
  border:1px solid rgba(24,182,255,0.1);
  top:50%; left:75%;
  will-change:transform,opacity; backface-visibility:hidden;
}
.ah-ring-1 { width:300px; height:300px; transform:translate(-50%,-50%); animation:v3AuroraC 10s ease-in-out infinite; }
.ah-ring-2 { width:500px; height:500px; transform:translate(-50%,-50%); animation:v3AuroraC 10s ease-in-out infinite 2s; opacity:.5; }

.about-hero-inner { position:relative; z-index:2; }
.about-hero-copy { max-width:780px; }
.about-hero-copy h1 { margin-top:16px; }

.about-hero-stats {
  display:flex; align-items:center; gap:24px; flex-wrap:wrap;
  margin-top:48px;
  padding:24px 32px;
  background:rgba(14,26,44,0.7);
  border:1px solid rgba(24,182,255,0.15);
  border-radius:12px;
  backdrop-filter:blur(12px);
  max-width:600px;
}
.ahs-item { display:flex; flex-direction:column; gap:4px; }
.ahs-item strong { font-size:2rem; font-weight:900; color:var(--white); line-height:1; }
.ahs-item span { font-size:0.75rem; color:var(--muted); }
.ahs-sep { width:1px; height:40px; background:rgba(184,199,218,0.15); }

/* Story */
.story-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start;
}
.story-timeline { display:flex; flex-direction:column; gap:0; margin-top:32px; }
.stl-item {
  display:flex; gap:20px; position:relative;
  padding-bottom:32px;
}
.stl-item:last-child { padding-bottom:0; }
.stl-dot {
  width:14px; height:14px; border-radius:50%;
  background:var(--blue); border:2px solid var(--blue-2);
  box-shadow:0 0 16px rgba(24,182,255,0.7);
  flex-shrink:0; margin-top:4px; position:relative; z-index:1;
}
.stl-item:not(:last-child)::before {
  content:"";
  position:absolute; left:6px; top:18px; bottom:0;
  width:2px;
  background:linear-gradient(180deg, rgba(24,182,255,0.4), rgba(45,107,228,0.1));
}
.stl-content strong { display:block; color:var(--white); font-size:0.95rem; margin-bottom:6px; }
.story-card {
  padding:32px; display:flex; flex-direction:column; gap:16px;
  border-color:rgba(24,182,255,0.2);
}
.story-card-icon { font-size:2.5rem; line-height:1; }
.story-card-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; }
.story-card-tags span {
  padding:4px 12px; border-radius:99px;
  background:rgba(24,182,255,0.1); border:1px solid rgba(24,182,255,0.2);
  font-size:0.75rem; color:var(--blue-2); font-weight:600;
}

/* Mission/Vision */
.mv-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.mv-card { padding:36px; display:flex; flex-direction:column; gap:16px; }
.mv-icon-wrap { font-size:2.5rem; line-height:1; }
.mv-list { display:flex; flex-direction:column; gap:10px; padding-left:0; list-style:none; margin:0; }
.mv-list li {
  padding-left:20px; position:relative;
  font-size:0.88rem; color:var(--muted);
}
.mv-list li::before {
  content:"✓"; position:absolute; left:0;
  color:var(--blue-2); font-weight:700;
}

/* Values */
.values-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.value-card { padding:28px; }
.value-icon { font-size:2rem; margin-bottom:12px; display:block; }

/* Team */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.team-card { padding:28px; text-align:center; }
.team-avatar { position:relative; margin:0 auto 20px; width:72px; height:72px; }
.team-avatar-inner {
  width:72px; height:72px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; font-weight:900; color:var(--white);
  position:relative; z-index:1;
}
.team-avatar-ring {
  position:absolute; inset:-4px; border-radius:50%;
  border:1px solid rgba(24,182,255,0.4);
  animation:v3AuroraC 4s ease-in-out infinite;
  will-change:transform,opacity;
}

/* Why GRM */
.why-grm-inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.why-grm-pills { display:flex; flex-wrap:wrap; gap:10px; }
.grm-pill {
  padding:8px 16px; border-radius:99px;
  border:1px solid rgba(24,182,255,0.2);
  background:rgba(24,182,255,0.06);
  font-size:0.8rem; font-weight:600; color:var(--muted);
  transition:border-color 0.25s, color 0.25s, transform 0.25s;
  will-change:transform;
}
.grm-pill:hover {
  border-color:rgba(24,182,255,0.5); color:var(--blue-2);
  transform:translateY(-2px);
}

/* Responsive about */
@media (max-width:900px) {
  .story-grid,.mv-grid,.why-grm-inner { grid-template-columns:1fr; gap:32px; }
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:540px) {
  .values-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
}

/* ================================================================
   GLOBAL PAGE UPGRADES — Staggered reveals, hover effects
================================================================ */

/* Staggered child reveals */
.service-grid .service-card:nth-child(1) { transition-delay:0s; }
.service-grid .service-card:nth-child(2) { transition-delay:0.08s; }
.service-grid .service-card:nth-child(3) { transition-delay:0.16s; }
.service-grid .service-card:nth-child(4) { transition-delay:0.24s; }
.service-grid .service-card:nth-child(5) { transition-delay:0.32s; }
.service-grid .service-card:nth-child(6) { transition-delay:0.40s; }

.values-grid .value-card:nth-child(1) { transition-delay:0s; }
.values-grid .value-card:nth-child(2) { transition-delay:0.07s; }
.values-grid .value-card:nth-child(3) { transition-delay:0.14s; }
.values-grid .value-card:nth-child(4) { transition-delay:0.21s; }
.values-grid .value-card:nth-child(5) { transition-delay:0.28s; }
.values-grid .value-card:nth-child(6) { transition-delay:0.35s; }

/* Glass card hover glow */
.glass-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24,182,255,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(24,182,255,0.07);
}

/* Eyebrow shimmer line */
.eyebrow::before {
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  animation: v3GlowPulse 3s ease-in-out infinite;
}


/* ── Footer upgrades ── */
.site-footer { position: relative; overflow: hidden; }
.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-2), var(--blue), transparent);
  opacity: 0.6;
}
.footer-grid h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.85rem;
}
.contact-list svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(184,199,218,0.18);
  border-radius: 8px;
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
  will-change: transform;
}
.social-links a:hover {
  border-color: rgba(24,182,255,0.5);
  color: var(--blue-2);
  transform: translateY(-2px);
}

/* ── Customizer postMessage live preview ── */

/* ── About Hero 2-column layout fix ── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero-left { display: flex; flex-direction: column; gap: 32px; }
.about-hero-stats { max-width: 100%; }

/* Agency info card (right side) */
.ah-info-card {
  padding: 28px;
  border-color: rgba(24,182,255,0.25);
  background: linear-gradient(145deg, rgba(14,26,44,0.95), rgba(6,11,20,0.85));
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ah-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ah-info-logo img { height: 36px; width: auto; }
.ah-info-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ah-info-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(184,199,218,0.1);
  border-bottom: 1px solid rgba(184,199,218,0.1);
  padding: 16px 0;
}
.ah-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ah-info-label {
  font-size: 0.75rem;
  color: var(--muted);
  min-width: 80px;
}
.ah-info-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  text-align: right;
}
.ah-info-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ah-info-services span {
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(24,182,255,0.1);
  border: 1px solid rgba(24,182,255,0.2);
  font-size: 0.72rem;
  color: var(--blue-2);
  font-weight: 600;
}

/* ── Team card — name + role fix ── */
.team-card { padding: 28px; text-align: center; }
.team-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px;
}
.team-role {
  display: block;
  font-size: 0.78rem;
  color: var(--blue-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.team-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive about hero */
@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── About Hero fixes ── */
.about-hero {
  padding: 120px 0 70px;
  min-height: auto;
}
.about-hero-grid {
  align-items: center !important;
}
.about-hero-copy h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
  line-height: 1.15 !important;
  margin-bottom: 16px;
}
.about-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.ah-info-card {
  width: 100%;
}

/* ================================================================
   ABOUT HERO V2 — Full-width centered, no two-column issues
================================================================ */
.about-hero-v2 {
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
}

/* Background */
.ahv2-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ahv2-aurora {
  position: absolute; border-radius: 50%;
  will-change: transform; backface-visibility: hidden;
}
.ahv2-aurora-1 {
  width: 900px; height: 500px; top: -200px; right: -200px;
  background: radial-gradient(ellipse, rgba(24,182,255,0.13) 0%, rgba(45,107,228,0.07) 40%, transparent 70%);
  animation: v3AuroraA 16s ease-in-out infinite;
}
.ahv2-aurora-2 {
  width: 600px; height: 600px; bottom: 0; left: -150px;
  background: radial-gradient(circle, rgba(124,58,237,0.09) 0%, transparent 65%);
  animation: v3AuroraB 20s ease-in-out infinite;
}
.ahv2-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(24,182,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,182,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}
.ahv2-line {
  position: absolute; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24,182,255,0.3), transparent);
  will-change: transform;
}
.ahv2-line-1 { width: 80%; top: 35%; left: 10%; animation: ahv2LineScan 8s ease-in-out infinite; }
.ahv2-line-2 { width: 60%; top: 65%; left: 20%; animation: ahv2LineScan 12s ease-in-out infinite 3s; }
.ahv2-dot {
  position: absolute; border-radius: 50%;
  will-change: transform; backface-visibility: hidden;
}
.ahv2-dot-1 { width:5px; height:5px; background:var(--blue-2); box-shadow:0 0 14px rgba(24,182,255,0.9); top:20%; right:15%; animation:v3OrbFloat 6s ease-in-out infinite; }
.ahv2-dot-2 { width:4px; height:4px; background:#7c3aed; box-shadow:0 0 12px rgba(124,58,237,0.9); top:55%; right:8%; animation:v3OrbFloat 9s ease-in-out infinite 2s; }
.ahv2-dot-3 { width:6px; height:6px; background:#10b981; box-shadow:0 0 16px rgba(16,185,129,0.9); top:30%; left:8%; animation:v3OrbFloat 7s ease-in-out infinite 4s; }

/* Breadcrumb */
.ahv2-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 40px;
  position: relative; z-index: 2;
}
.ahv2-breadcrumb a { color: var(--muted); transition: color 0.2s; }
.ahv2-breadcrumb a:hover { color: var(--blue-2); }
.ahv2-bc-sep { opacity: 0.4; }

/* Main content — centered */
.ahv2-main {
  text-align: center;
  position: relative; z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

/* Badge */
.ahv2-main .v3-badge { justify-content: center; margin-bottom: 24px; }

/* Headline */
.ahv2-headline {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 24px;
}

/* Sub */
.ahv2-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* Actions */
.ahv2-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stats row */
.ahv2-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  padding: 28px 40px;
  background: rgba(14,26,44,0.7);
  border: 1px solid rgba(24,182,255,0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  margin-bottom: 0;
}
.ahv2-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ahv2-stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-display);
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.ahv2-stat strong .suffix {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-2, #18b6ff);
}
.ahv2-stat span { font-size: 0.68rem; color: var(--muted); white-space: nowrap; text-transform: uppercase; letter-spacing: .04em; }
.ahv2-stat-div { width: 1px; height: 36px; background: rgba(184,199,184,0.15); }

/* Scrolling pills marquee */
.ahv2-pills-wrap {
  margin-top: 40px;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ahv2-pills {
  display: flex; gap: 12px; width: max-content;
  animation: ahv2Marquee 28s linear infinite;
  will-change: transform;
  padding: 20px 0 32px;
}
.ahv2-pill {
  padding: 8px 20px; border-radius: 99px;
  border: 1px solid rgba(24,182,255,0.2);
  background: rgba(24,182,255,0.06);
  font-size: 0.82rem; font-weight: 600;
  color: var(--muted); white-space: nowrap;
  flex-shrink: 0;
}

/* Keyframes */
@keyframes ahv2Marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ahv2LineScan {
  0%,100% { opacity: 0.4; transform: scaleX(1); }
  50%      { opacity: 1;   transform: scaleX(1.1); }
}

/* Responsive */
@media (max-width: 640px) {
  .ahv2-stats { gap: 16px; padding: 20px; }
  .ahv2-stat-div { display: none; }
  .ahv2-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .ahv2-stats { flex-wrap: wrap; justify-content: center; }
  .ahv2-stat { min-width: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  .ahv2-aurora-1,.ahv2-aurora-2,.ahv2-dot-1,.ahv2-dot-2,.ahv2-dot-3,
  .ahv2-line-1,.ahv2-line-2,.ahv2-pills { animation: none; }
}

/* ================================================================
   MOBILE MARGIN FIX — Remove extra spacing on phones
   NOTE: breakpoint bumped to 980px to match nav hamburger breakpoint
================================================================ */
@media (max-width: 980px) {

  /* Container padding */
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Hero */
  .hero-v3 {
    padding: 90px 0 50px !important;
    min-height: auto !important;
  }
  .v3-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 0 !important;
  }
  .v3-copy { padding: 0 !important; }
  .v3-headline { font-size: clamp(2.2rem, 9vw, 3rem) !important; }
  .v3-desc { font-size: 0.95rem !important; margin-bottom: 20px !important; }
  .v3-badge { font-size: 0.68rem !important; padding: 6px 12px !important; margin-bottom: 16px !important; }

  /* Buttons full width */
  .v3-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
  }
  .v3-actions .btn,
  .v3-actions .v3-ghost-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Trust bar */
  .v3-trust { gap: 10px !important; }
  .v3-trust-stat strong { font-size: 1.3rem !important; }
  .v3-trust-sep { height: 26px !important; }

  /* Dashboard */
  .v3-dashboard { margin: 0 !important; }
  .v3-dash-body { padding: 12px !important; gap: 10px !important; }
  .v3-kpi-row { grid-template-columns: repeat(2,1fr) !important; gap: 8px !important; }
  .v3-kpi { padding: 10px 8px !important; }
  .v3-kpi-val { font-size: 1.05rem !important; }
  .v3-mid-row { grid-template-columns: 1fr !important; gap: 10px !important; }
  .v3-float-1, .v3-float-2 { display: none !important; }
  .v3-scroll-hint { display: none !important; }
  .v3-titlebar { padding: 8px 10px !important; }
  .v3-window-title { font-size: 0.6rem !important; }

  /* Sections */
  .section { padding: 48px 0 !important; }
  .section-heading h2 { font-size: 1.55rem !important; }
  .service-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .stats-grid { grid-template-columns: repeat(2,1fr) !important; gap: 20px !important; }
  .choose-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .split-grid { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* CTA */
  .cta-inner { padding: 36px 20px !important; }
  .cta-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .cta-actions .btn,
  .cta-actions .v3-ghost-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* About hero */
  .about-hero-v2 { padding: 100px 0 0 !important; }
  .ahv2-main { padding: 0 !important; }
  .ahv2-headline { font-size: clamp(1.9rem, 8vw, 2.8rem) !important; }
  .ahv2-stats { padding: 18px 14px !important; gap: 12px !important; }
  .ahv2-stat-div { display: none !important; }
  .ahv2-stat strong { font-size: 1.6rem !important; }

  /* Story, values, team */
  .story-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .mv-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .values-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .team-grid { grid-template-columns: repeat(2,1fr) !important; gap: 14px !important; }
  .why-grm-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
}

@media (max-width: 480px) {
  .v3-headline { font-size: clamp(1.9rem, 10vw, 2.5rem) !important; }
  .team-grid { grid-template-columns: 1fr !important; }
  .stat strong { font-size: 2rem !important; }
  .v3-feed-text { font-size: 0.62rem !important; }
  .v3-ch-name { font-size: 0.62rem !important; }
}

/* ================================================================
   FINAL MOBILE FIX v2 — Right side overflow + buttons + trust
   NOTE: breakpoint bumped to 980px to match the nav hamburger
   breakpoint. Previously 768px caused the right-side overflow
   strip to appear on phones/tablets between 769px–980px.
================================================================ */
@media (max-width: 980px) {

  /* Fix right side overflow — aurora blobs causing extra space */
  .hero-v3,
  .v3-bg,
  .about-hero-v2,
  .ahv2-bg { overflow: hidden !important; }

  .v3-aurora,
  .v3-aurora-1,
  .v3-aurora-2,
  .v3-aurora-3,
  .ahv2-aurora,
  .ahv2-aurora-1,
  .ahv2-aurora-2 {
    width: 200px !important;
    height: 200px !important;
    right: -80px !important;
    top: -60px !important;
    opacity: 0.5 !important;
  }
  .v3-aurora-2,
  .v3-aurora-3 { display: none !important; }

  /* Fix orbs overflow */
  .v3-orb-1 { right: 5% !important; top: 15% !important; }
  .v3-orb-2, .v3-orb-3 { display: none !important; }

  /* Fix corner accents overflow */
  .v3-corner-br { display: none !important; }

  /* Buttons — both full width equal */
  .v3-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-bottom: 28px !important;
    width: 100% !important;
  }
  .v3-actions .btn,
  .v3-actions a.btn,
  .v3-actions .v3-ghost-btn,
  .v3-actions a.v3-ghost-btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Trust stats — 2x2 grid, hide separator */
  .v3-trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 20px !important;
    overflow-x: unset !important;
    width: 100% !important;
  }
  .v3-trust-sep { display: none !important; }
  .v3-trust-stat strong { font-size: 1.5rem !important; }

  /* Remove bottom empty space */
  .hero-v3 {
    padding-bottom: 40px !important;
    min-height: unset !important;
  }

  /* Hide rings that cause overflow */
  .ah-ring, .hv2-ring-2, .hv2-ring-3 { display: none !important; }
}

/* ================================================================
   OVERFLOW FIX — Right-side white strip on mobile
   Root cause: .hero-home::before, .hv2-blob-a, .page-hero::before,
   and .ahv2-aurora-1 are absolutely positioned with large negative
   right values (right: -160px to right: -200px) that bleed past
   the viewport. The parent overflow:hidden is bypassed because
   will-change:transform on the header creates a new stacking
   context. This block clamps all offending elements at ≤980px.
================================================================ */
@media (max-width: 980px) {

  /* ── Force ALL hero/page containers to clip their children ── */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .hero,
  .hero-home,
  .hero-v3,
  .hero-v2,
  .page-hero,
  .about-hero,
  .about-hero-v2,
  .v3-bg,
  .hv2-bg,
  .ahv2-bg {
    overflow: hidden !important;
    max-width: 100vw !important;
  }

  /* ── .hero-home::before — the PRIMARY culprit ── */
  /* 680px blob with right:-180px. On mobile shrink it and pull
     it fully inside the viewport so nothing bleeds right. */
  .hero-home::before {
    width: min(300px, 80vw) !important;
    right: -60px !important;
    top: 30px !important;
    opacity: 0.5 !important;
  }

  /* ── .hero-home::after — static grid overlay, safe to keep ── */
  .hero-home::after {
    /* no overflow risk — inset:0, contained */
  }

  /* ── .page-hero::before — 560px blob with right:-160px ── */
  .page-hero::before {
    width: min(240px, 70vw) !important;
    right: -40px !important;
    top: 60px !important;
    opacity: 0.5 !important;
  }

  /* ── .hv2-blob-a — 700px blob with right:-200px ── */
  .hv2-blob-a {
    width: min(250px, 70vw) !important;
    right: -50px !important;
    top: -40px !important;
    opacity: 0.5 !important;
  }

  /* ── .hv2-blob-b — left side blob, can stay ── */

  /* ── hv2 rings — large rings that extend past right edge ── */
  .hv2-ring-2,
  .hv2-ring-3 {
    display: none !important;
  }
  .hv2-ring-1 {
    width: 180px !important;
    height: 180px !important;
  }

  /* ── ah-aurora (about hero v1) ── */
  .ah-aurora-1 {
    width: min(300px, 80vw) !important;
    right: -60px !important;
    opacity: 0.5 !important;
  }

  /* ── Orbit elements ── */
  .orbit-one,
  .orbit-two,
  .floating-orbit {
    display: none !important;
  }
}
