
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap");

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand Colors */
  --cobalt: #0232CC;
  --cobalt-bright: #2e55f0;
  --cobalt-deep: #0e2699;
  --cobalt-abyss: #07155c;
  --cobalt-glow: rgba(26, 63, 216, 0.45);
  --cobalt-soft: rgba(26, 63, 216, 0.08);
  --cobalt-mist: rgba(26, 63, 216, 0.04);

  --gold: #e8a020;
  --gold-bright: #f5b940;
  --gold-deep: #c47a08;
  --gold-glow: rgba(232, 160, 32, 0.45);
  --gold-soft: rgba(232, 160, 32, 0.12);

  --coral: #ff4d6a;
  --coral-glow: rgba(255, 77, 106, 0.3);
  --teal: #00c4b4;
  --teal-glow: rgba(0, 196, 180, 0.3);
  --violet: #7c3aed;

  /* Surface System */
  --void: #030509;
  --abyss: #060a14;
  --deep: #0c1128;
  --surface: #ffffff;
  --panel: #f5f7fc;
  --panel-strong: #eceffe;

  /* Text */
  --ink: #07091a;
  --ink-soft: #151a32;
  --muted: #4f5a7a;
  --subtle: #7a869e;
  --ghost: rgba(255, 255, 255, 0.45);

  /* Lines */
  --line: rgba(26, 63, 216, 0.07);
  --line-light: rgba(255, 255, 255, 0.06);
  --line-bright: rgba(255, 255, 255, 0.13);

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 44px;

  /* Shadows */
  --s-sm: 0 2px 12px rgba(7, 9, 26, 0.05);
  --s: 0 8px 40px rgba(7, 9, 26, 0.07), 0 2px 12px rgba(7, 9, 26, 0.04);
  --s-md: 0 20px 64px rgba(7, 9, 26, 0.1), 0 4px 20px rgba(7, 9, 26, 0.05);
  --s-lg: 0 32px 96px rgba(7, 9, 26, 0.14), 0 12px 40px rgba(7, 9, 26, 0.07);
  --s-xl: 0 48px 140px rgba(7, 9, 26, 0.18), 0 20px 60px rgba(7, 9, 26, 0.1);
  --s-cobalt:
    0 24px 80px rgba(26, 63, 216, 0.28), 0 8px 32px rgba(26, 63, 216, 0.15);
  --s-gold:
    0 20px 60px rgba(232, 160, 32, 0.35), 0 4px 20px rgba(232, 160, 32, 0.18);

  /* Easing */
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --e-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --e-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --f-display: "DM Serif Display", Georgia, serif;
  --f-ui: "DM Sans", system-ui, sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-ui);
  color: var(--ink);
  background: var(--panel);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  cursor: default;
}

::selection {
  background: var(--cobalt);
  color: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--panel);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cobalt), var(--gold));
  border-radius: 99px;
}

/* ===== AMBIENT BG ===== */
.ambient-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: orb-drift 25s var(--e-smooth) infinite alternate;
}

.ambient-orb--a {
  width: min(75vw, 750px);
  height: min(75vw, 750px);
  top: -25%;
  left: -20%;
  background: radial-gradient(
    circle,
    rgba(26, 63, 216, 0.1) 0%,
    transparent 65%
  );
  animation-duration: 28s;
}

.ambient-orb--b {
  width: min(55vw, 550px);
  height: min(55vw, 550px);
  top: 40%;
  right: -20%;
  background: radial-gradient(
    circle,
    rgba(232, 160, 32, 0.08) 0%,
    transparent 65%
  );
  animation-delay: -9s;
  animation-duration: 22s;
}

.ambient-orb--c {
  width: min(45vw, 450px);
  height: min(45vw, 450px);
  bottom: 5%;
  left: 30%;
  background: radial-gradient(
    circle,
    rgba(0, 196, 180, 0.06) 0%,
    transparent 65%
  );
  animation-delay: -15s;
  animation-duration: 32s;
}

.ambient-orb--d {
  width: min(35vw, 350px);
  height: min(35vw, 350px);
  top: 60%;
  left: -5%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.05) 0%,
    transparent 65%
  );
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, -50px) scale(1.18);
  }
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

header,
section,
footer {
  position: relative;
  z-index: 2;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 63, 216, 0.06) 0%,
    rgba(232, 160, 32, 0.025) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.4s ease;
  will-change: transform;
  mix-blend-mode: screen;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  height: 74px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(56px) saturate(2.2);
  -webkit-backdrop-filter: blur(56px) saturate(2.2);
  border-bottom: 1px solid rgba(26, 63, 216, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    height 0.4s var(--e-out),
    box-shadow 0.4s var(--e-out),
    background 0.4s ease;
}

header.scrolled {
  height: 62px;
  box-shadow:
    0 1px 0 rgba(26, 63, 216, 0.06),
    0 24px 64px rgba(26, 63, 216, 0.06);
  background: rgba(255, 255, 255, 0.97);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 44px !important;
  height: 44px !important;
  border-radius: 13px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  box-shadow:
    0 4px 20px rgba(26, 63, 216, 0.14),
    0 0 0 1px rgba(26, 63, 216, 0.07);
  transition:
    transform 0.45s var(--e-spring),
    box-shadow 0.4s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.07) rotate(-3deg);
  box-shadow: 0 10px 32px rgba(26, 63, 216, 0.24);
}

.brand-text h1 {
  font-family: var(--f-display);
  font-size: 1.38rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-tagline {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.57rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-top: 3px;
  background: linear-gradient(90deg, var(--cobalt), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Navigation */
.header-nav {
  display: flex;
  gap: 0.1rem;
  background: rgba(9, 14, 30, 0.035);
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 63, 216, 0.06);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.25s var(--e-out);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--cobalt);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 14px rgba(26, 63, 216, 0.08);
}

.nav-link.active {
  color: var(--cobalt);
  background: #fff;
  box-shadow: 0 2px 16px rgba(26, 63, 216, 0.1);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: min(100vh, 1000px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: var(--abyss);
}

/* ===== HERO PARTICLES ===== */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: particle-drift linear infinite;
}
.hero-particle--sm {
  width: 1px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}
.hero-particle--lg {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
}

@keyframes particle-drift {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(40px);
    opacity: 0;
  }
}

/* Layered background image */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.32) saturate(0.65);
  transform: scale(1.05);
  animation: hero-drift 40s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-1.5%, 1%);
  }
}

/* Dark overlay layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(7, 21, 92, 0.78) 0%,
      rgba(14, 38, 153, 0.62) 40%,
      rgba(6, 10, 20, 0.88) 100%
    ),
    radial-gradient(
      ellipse 80% 60% at 30% 40%,
      rgba(26, 63, 216, 0.38) 0%,
      transparent 60%
    );
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 40% 50% at 75% 40%,
      rgba(232, 160, 32, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 40% at 15% 70%,
      rgba(0, 196, 180, 0.07) 0%,
      transparent 50%
    );
}

/* Animated mesh lines */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.2;
}

.hero-mesh::before,
.hero-mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: mesh-expand 8s var(--e-smooth) infinite;
}

.hero-mesh::before {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}

.hero-mesh::after {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation-delay: -4s;
}

@keyframes mesh-expand {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4);
  }
}

/* Orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-orb--1 {
  width: 650px;
  height: 650px;
  top: -12%;
  right: -10%;
  background: rgba(232, 160, 32, 0.11);
  animation: hero-orb-drift 18s ease-in-out infinite alternate;
}

.hero-orb--2 {
  width: 420px;
  height: 420px;
  bottom: -8%;
  left: 32%;
  background: rgba(0, 196, 180, 0.08);
  animation: hero-orb-drift 24s ease-in-out infinite alternate-reverse;
}

.hero-orb--3 {
  width: 260px;
  height: 260px;
  top: 28%;
  left: -6%;
  background: rgba(255, 77, 106, 0.07);
  animation: hero-orb-drift 20s ease-in-out infinite alternate;
}

@keyframes hero-orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(32px, -28px) scale(1.12);
  }
}

/* Inner layout */
.hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  padding: 9rem 0 6rem;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 7rem 0 4rem;
  }
}

/* Left content */
.hero-text {
  max-width: 640px;
}
@media (max-width: 900px) {
  .hero-text {
    max-width: 100%;
  }
}

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  animation: fade-up 0.8s var(--e-out) 0.1s both;
}

@media (max-width: 900px) {
  .hero-badges {
    justify-content: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 1rem 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(24px);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.75);
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.3);
  }
}

.hero-badge--gold {
  background: rgba(232, 160, 32, 0.12);
  border-color: rgba(232, 160, 32, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge--gold svg {
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* Title */
.hero-title {
  margin-bottom: 1.6rem;
  animation: fade-up 0.9s var(--e-out) 0.2s both;
}

.hero-title__line {
  display: block;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 400;
  line-height: 1.05;
  font-family: var(--f-display);
  letter-spacing: -0.035em;
  color: #fff;
}

.hero-title__line--light {
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
}

.hero-title__accent {
  background: linear-gradient(
    135deg,
    #fff 0%,
    rgba(0, 196, 180, 0.92) 28%,
    rgba(232, 160, 32, 0.96) 62%,
    #fff 100%
  );
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-shimmer 7s ease-in-out infinite;
}

@keyframes title-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Lead */
.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin-bottom: 2.75rem;
  font-weight: 300;
  line-height: 1.85;
  animation: fade-up 0.9s var(--e-out) 0.35s both;
}

@media (max-width: 900px) {
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fade-up 0.9s var(--e-out) 0.5s both;
}

@media (max-width: 900px) {
  .hero-actions {
    justify-content: center;
  }
}

/* CTA Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.6rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  font-family: var(--f-ui);
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #fff 0%, rgba(238, 242, 255, 0.96) 100%);
  color: var(--cobalt);
  box-shadow:
    0 20px 60px rgba(255, 255, 255, 0.22),
    0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.45s var(--e-spring);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 48%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.6s var(--e-out);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow:
    0 32px 80px rgba(255, 255, 255, 0.3),
    0 8px 28px rgba(0, 0, 0, 0.22);
}
.btn-primary:hover::before {
  transform: translateX(120%);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}
.btn-primary svg {
  transition: transform 0.4s var(--e-spring);
}
.btn-primary:hover svg {
  transform: translateX(6px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 500;
  font-family: var(--f-ui);
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  transition: all 0.4s var(--e-spring);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-4px);
  color: #fff;
}

/* ===== HERO VISUAL (Dashboard) ===== */
.hero-visual {
  position: relative;
  z-index: 3;
  animation: fade-up 1s var(--e-out) 0.4s both;
}

.hero-dashboard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(32px);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.5),
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.hero-dashboard__bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-dashboard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-dashboard__dot:nth-child(1) {
  background: #ff5f57;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}
.hero-dashboard__dot:nth-child(2) {
  background: #febc2e;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}
.hero-dashboard__dot:nth-child(3) {
  background: #28c840;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}

.hero-dashboard__url {
  flex-grow: 1;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-dashboard__body {
  padding: 1.5rem;
}

/* Chart */
.hero-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
  margin-bottom: 1.25rem;
}

.hero-chart__bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(
    180deg,
    rgba(26, 63, 216, 0.9) 0%,
    rgba(0, 196, 180, 0.5) 100%
  );
  min-height: 8px;
  position: relative;
  overflow: hidden;
  transform-origin: bottom;
  animation: bar-grow 1s var(--e-out) both;
}

.hero-chart__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 60%
  );
  animation: bar-wave 3s ease-in-out infinite;
}

.hero-chart__bar:nth-child(1) {
  height: 45%;
  animation-delay: 0.1s;
}
.hero-chart__bar:nth-child(2) {
  height: 72%;
  animation-delay: 0.2s;
}
.hero-chart__bar:nth-child(3) {
  height: 58%;
  animation-delay: 0.3s;
}
.hero-chart__bar:nth-child(4) {
  height: 85%;
  animation-delay: 0.4s;
}
.hero-chart__bar:nth-child(5) {
  height: 63%;
  animation-delay: 0.5s;
}
.hero-chart__bar:nth-child(6) {
  height: 90%;
  animation-delay: 0.6s;
}
.hero-chart__bar:nth-child(7) {
  height: 76%;
  animation-delay: 0.7s;
}

.hero-chart__bar:nth-child(1)::after {
  animation-delay: 0.2s;
}
.hero-chart__bar:nth-child(2)::after {
  animation-delay: 0.4s;
}
.hero-chart__bar:nth-child(3)::after {
  animation-delay: 0.6s;
}
.hero-chart__bar:nth-child(4)::after {
  animation-delay: 0.8s;
}
.hero-chart__bar:nth-child(5)::after {
  animation-delay: 1s;
}
.hero-chart__bar:nth-child(6)::after {
  animation-delay: 1.2s;
}
.hero-chart__bar:nth-child(7)::after {
  animation-delay: 1.4s;
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes bar-wave {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.hero-stat {
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--coral),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.13);
}
.hero-stat:hover::before {
  opacity: 1;
}

.hero-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--f-display);
  color: #fff;
  line-height: 1.1;
}

.hero-stat span {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
}

/* Floating badges on visual */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.hero-float svg {
  flex-shrink: 0;
}

.hero-float--1 {
  top: -4%;
  right: -6%;
  color: #22c55e;
  animation: float-bob 5s var(--e-smooth) infinite;
  animation-delay: -1s;
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(34, 197, 94, 0.12);
}

.hero-float--2 {
  bottom: -3%;
  left: -10%;
  color: var(--gold-bright);
  animation: float-bob 6s var(--e-smooth) infinite;
  animation-delay: -3s;
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(245, 185, 64, 0.12);
}

.hero-float--3 {
  bottom: 15%;
  right: -12%;
  color: var(--teal);
  font-size: 0.68rem;
  animation: float-bob 5.5s var(--e-smooth) infinite;
  animation-delay: -1.5s;
  display: none;
}

@media (min-width: 1200px) {
  .hero-float--3 {
    display: flex;
  }
}

@keyframes float-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 900px) {
  .hero-float--1 {
    right: 2%;
    top: -2%;
  }
  .hero-float--2 {
    left: 2%;
    bottom: -1%;
  }
  .hero-float--3 {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero-float--1,
  .hero-float--2 {
    display: none;
  }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0.35;
  animation: scroll-bounce 2.8s var(--e-smooth) infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll__mouse {
  display: block;
  width: 22px;
  height: 36px;
  border-radius: 99px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  position: relative;
}

.hero-scroll__wheel {
  display: block;
  width: 3px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.55);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 7px;
  animation: wheel-drop 2s var(--e-smooth) infinite;
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes wheel-drop {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  position: relative;
  z-index: 3;
  line-height: 0;
  overflow: hidden;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: clamp(50px, 8vw, 100px);
}
.section-divider--dark svg {
  height: clamp(30px, 5vw, 60px);
}
.section-divider--top svg {
  transform: rotate(180deg);
}

/* ===== SECTION TRANSITION GLOW ===== */
.section-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cobalt),
    var(--teal),
    var(--gold),
    transparent
  );
  opacity: 0.12;
}

.section-transition--top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cobalt),
    var(--teal),
    var(--gold),
    transparent
  );
  opacity: 0.08;
}

/* ===== SECTION INNER GLOW ===== */
.section-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: min(80vw, 600px);
  height: min(40vw, 300px);
  background: radial-gradient(
    ellipse,
    rgba(26, 63, 216, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ===== SECTIONS BASE ===== */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 12vw, 7.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1440px;
  margin: 0 auto;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 0.9rem;
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
  background: var(--cobalt-soft);
  border: 1px solid rgba(26, 63, 216, 0.09);
}

.section-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cobalt);
  opacity: 0.75;
}

.section-title {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.07;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(
    135deg,
    var(--cobalt) 0%,
    var(--teal) 40%,
    var(--cobalt-bright) 80%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: section-title-shift 6s ease-in-out infinite;
}

@keyframes section-title-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.section-desc {
  max-width: 520px;
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

.section-header--light .section-tag {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-header--light .section-tag::before {
  background: #fff;
}
.section-header--light .section-title {
  color: #fff;
}
.section-header--light .section-title em {
  background: linear-gradient(
    135deg,
    #fff 0%,
    rgba(0, 196, 180, 0.92) 40%,
    var(--gold-bright) 80%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: section-title-shift 6s ease-in-out infinite;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.85s var(--e-out),
    transform 0.85s var(--e-out);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal.active[style*="--delay"] {
  transition-delay: var(--delay);
}

/* ===== SKELETON ===== */
.grid-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1440px;
  margin: 0 auto;
}

.skeleton-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.skeleton-img {
  width: 100%;
  height: 230px;
  background: linear-gradient(
    90deg,
    var(--panel) 25%,
    var(--panel-strong) 50%,
    var(--panel) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
}

.skeleton-line {
  height: 14px;
  border-radius: 99px;
  margin: 1rem 1.25rem 0.6rem;
  background: linear-gradient(
    90deg,
    var(--panel) 25%,
    var(--panel-strong) 50%,
    var(--panel) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
}

.skeleton-line--l {
  width: 75%;
}
.skeleton-line--s {
  width: 45%;
  margin-bottom: 1.25rem;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ===== SERVICES GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1440px;
  margin: 0 auto;
}

/* ===== SERVICE CARD ===== */
.card {
  --card-delay: 0s;
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(26, 63, 216, 0.05);
  box-shadow: var(--s-md);
  display: flex;
  flex-direction: column;
  perspective: 1200px;
  transform-style: preserve-3d;
  transition:
    transform 0.65s var(--e-out),
    box-shadow 0.65s var(--e-out),
    border-color 0.4s ease;
  animation: card-arrive 0.9s var(--e-out) both;
  animation-delay: var(--card-delay);
}

@keyframes card-arrive {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Gradient border on hover */
.card::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    var(--cobalt),
    var(--teal),
    var(--gold),
    var(--cobalt)
  );
  background-size: 300% 300%;
  animation: border-cycle 5s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

@keyframes border-cycle {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Top shine line */
.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2.5px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cobalt),
    var(--teal),
    var(--gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 99px;
  z-index: 5;
}

.card:hover {
  transform: translateY(-20px) scale(1.025);
  box-shadow:
    var(--s-xl),
    0 0 80px rgba(26, 63, 216, 0.1);
  border-color: transparent;
}
.card:hover::before {
  opacity: 1;
}
.card:hover::after {
  opacity: 1;
}

/* Card image */
.card-image-container {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--panel);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s var(--e-out),
    filter 0.6s ease;
}

.card:hover img {
  transform: scale(1.15) rotate(0.5deg);
  filter: brightness(1.08) saturate(1.18);
}

/* Overlay on hover */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 130, 0.96) 0%,
    rgba(26, 63, 216, 0.55) 40%,
    transparent 75%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.card:hover .card-overlay {
  opacity: 1;
}

/* Category chip on image */
.card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.28rem 0.82rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 3;
}

.open-label {
  color: #fff;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(16px);
  opacity: 0;
  transition:
    transform 0.55s var(--e-spring),
    opacity 0.4s ease;
}

.card:hover .open-label {
  transform: translateY(0);
  opacity: 1;
}

/* Card body */
.card-content {
  padding: 1.6rem 1.75rem 1.85rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background: var(--surface);
  transition: background 0.4s ease;
}

.card:hover .card-content {
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    rgba(26, 63, 216, 0.02) 100%
  );
}

/* Card number */
.card-number {
  font-family: var(--f-display);
  font-size: 0.75rem;
  color: var(--cobalt);
  opacity: 0.38;
  margin-bottom: 0.45rem;
  letter-spacing: 0.12em;
}

.card h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 400;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--cobalt);
}

.card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
  flex-grow: 1;
}

/* Card footer */
.card-footer {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cobalt);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--e-spring);
}

.card:hover .card-cta {
  gap: 0.7rem;
}
.card:hover .card-cta svg {
  transform: translateX(4px);
}
.card-cta svg {
  transition: transform 0.3s var(--e-spring);
}

.card-tag {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cobalt);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--cobalt-soft);
}

/* Card icon */
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cobalt-soft);
  color: var(--cobalt);
  margin-bottom: 0.8rem;
  flex-shrink: 0;
  transition: all 0.4s var(--e-spring);
}

.card:hover .card-icon {
  transform: scale(1.12) rotate(-5deg);
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 10px 28px rgba(26, 63, 216, 0.28);
}

/* Card category-specific glow */
.card[data-cat="Consulting"]:hover {
  box-shadow:
    var(--s-xl),
    0 0 80px rgba(26, 63, 216, 0.18);
}
.card[data-cat="Éducation"]:hover {
  box-shadow:
    var(--s-xl),
    0 0 80px rgba(0, 196, 180, 0.18);
}
.card[data-cat="Social"]:hover {
  box-shadow:
    var(--s-xl),
    0 0 80px rgba(255, 77, 106, 0.18);
}
.card[data-cat="Emploi"]:hover {
  box-shadow:
    var(--s-xl),
    0 0 80px rgba(232, 160, 32, 0.18);
}
.card[data-cat="Mobilité"]:hover {
  box-shadow:
    var(--s-xl),
    0 0 80px rgba(124, 58, 237, 0.18);
}
.card[data-cat="Solutions"]:hover {
  box-shadow:
    var(--s-xl),
    0 0 80px rgba(46, 85, 240, 0.22);
}

.card[data-cat="Consulting"]::before {
  background: linear-gradient(
    135deg,
    var(--cobalt),
    var(--cobalt-bright),
    var(--teal)
  );
}
.card[data-cat="Éducation"]::before {
  background: linear-gradient(135deg, var(--teal), var(--cobalt), var(--teal));
}
.card[data-cat="Social"]::before {
  background: linear-gradient(
    135deg,
    var(--coral),
    var(--violet),
    var(--coral)
  );
}
.card[data-cat="Emploi"]::before {
  background: linear-gradient(135deg, var(--gold), var(--coral), var(--gold));
}
.card[data-cat="Mobilité"]::before {
  background: linear-gradient(
    135deg,
    var(--violet),
    var(--cobalt),
    var(--teal)
  );
}
.card[data-cat="Solutions"]::before {
  background: linear-gradient(
    135deg,
    var(--cobalt-bright),
    var(--teal),
    var(--gold)
  );
}

/* ===== STATS SECTION ===== */
.section--stats {
  background: linear-gradient(
    160deg,
    var(--cobalt-abyss) 0%,
    var(--cobalt-deep) 40%,
    #0c1a6e 80%,
    var(--abyss) 100%
  );
  color: #fff;
  max-width: none;
  padding: clamp(5rem, 14vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.section--stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 30%,
      rgba(46, 85, 240, 0.22) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 55% at 80% 70%,
      rgba(232, 160, 32, 0.09) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 35% at 50% 10%,
      rgba(0, 196, 180, 0.07) 0%,
      transparent 45%
    );
  pointer-events: none;
}

/* Grid lines decoration */
.section--stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px);
  overflow: hidden;
  transition:
    transform 0.5s var(--e-out),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.5s ease;
}

/* Corner accent */
.stat-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: var(--r-xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 40%,
    rgba(0, 196, 180, 0.05) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.stat-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition:
    transform 0.5s var(--e-spring),
    background 0.4s ease;
  position: relative;
  isolation: isolate;
}

.stat-card__icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: radial-gradient(
    circle,
    rgba(0, 196, 180, 0.4) 0%,
    transparent 70%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover .stat-card__icon {
  transform: scale(1.12) rotate(-5deg);
  background: rgba(255, 255, 255, 0.1);
}
.stat-card:hover .stat-card__icon::before {
  opacity: 1;
}

.stat-card__value {
  display: inline;
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card__plus,
.stat-card__suffix {
  display: inline;
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-bright), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  vertical-align: super;
  margin-left: 2px;
  letter-spacing: -0.02em;
}

.stat-card__label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--surface);
  max-width: none;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 40% at 80% 50%,
    rgba(26, 63, 216, 0.03) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5.5rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-img-col {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--s-xl);
  aspect-ratio: 4/5;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s var(--e-out),
    filter 0.6s ease;
}

.about-img-wrap:hover .about-img {
  transform: scale(1.06);
  filter: brightness(1.06);
}

/* Image overlay */
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 21, 92, 0.7) 0%,
    rgba(26, 63, 216, 0.15) 35%,
    transparent 55%
  );
  pointer-events: none;
}

/* Floating badge */
.about-img-badge {
  position: absolute;
  bottom: -1.4rem;
  right: -1.4rem;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.6rem;
  box-shadow: var(--s-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 135px;
  transition: transform 0.5s var(--e-spring);
}

.about-img-badge:hover {
  transform: scale(1.07) rotate(-2.5deg);
}

.about-img-badge__value {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--cobalt);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-img-badge__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 4px;
}

/* Second badge */
.about-img-badge2 {
  position: absolute;
  top: -1.4rem;
  left: -1.4rem;
  background: var(--cobalt);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--s-cobalt);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  transition: transform 0.5s var(--e-spring);
}

.about-img-badge2:hover {
  transform: scale(1.07) rotate(2.5deg);
}
.about-img-badge2 svg {
  flex-shrink: 0;
  opacity: 0.8;
}
.about-img-badge2 strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}
.about-img-badge2 span {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.62;
}

/* About content */
.about-content .section-title {
  text-align: left;
}

.about-text {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-weight: 300;
}

.about-text:last-of-type {
  margin-bottom: 2.1rem;
}

/* Values list */
.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.6rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  background: var(--panel);
  border-radius: var(--r);
  border: 1px solid var(--line);
  transition: all 0.35s var(--e-out);
}

.about-value:hover {
  background: var(--cobalt-mist);
  border-color: rgba(26, 63, 216, 0.13);
  transform: translateX(7px);
}

.about-value__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    var(--cobalt-soft),
    rgba(0, 196, 180, 0.06)
  );
  border: 1px solid rgba(26, 63, 216, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cobalt);
  transition:
    transform 0.4s var(--e-spring),
    background 0.3s ease;
}

.about-value:hover .about-value__icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(
    135deg,
    var(--cobalt-soft),
    rgba(0, 196, 180, 0.1)
  );
}

.about-value strong {
  display: block;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink);
  margin-bottom: 3px;
}
.about-value span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
}

/* About button */
.btn-hero--about {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  font-family: var(--f-ui);
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: linear-gradient(
    135deg,
    var(--cobalt) 0%,
    var(--cobalt-bright) 50%,
    var(--teal) 100%
  );
  background-size: 200% 200%;
  color: #fff;
  box-shadow: var(--s-cobalt);
  transition: all 0.45s var(--e-spring);
  position: relative;
  overflow: hidden;
}

.btn-hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--e-out);
}

.btn-hero--about:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 32px 90px rgba(26, 63, 216, 0.38);
  background-position: 100% 50%;
}
.btn-hero--about:hover::before {
  transform: translateX(120%);
}
.btn-hero--about svg {
  transition: transform 0.4s var(--e-spring);
}
.btn-hero--about:hover svg {
  transform: translateX(6px);
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  background: var(--panel);
  overflow: hidden;
  padding-bottom: 0;
  max-width: none;
}

/* Ambient for partners */
.partners-ambient-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.partners-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.partners-orb--a {
  width: 550px;
  height: 550px;
  top: -20%;
  left: 0;
  background: radial-gradient(
    circle,
    rgba(26, 63, 216, 0.07) 0%,
    transparent 70%
  );
}
.partners-orb--b {
  width: 450px;
  height: 450px;
  bottom: 0;
  right: -10%;
  background: radial-gradient(
    circle,
    rgba(232, 160, 32, 0.06) 0%,
    transparent 70%
  );
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--e-out);
  box-shadow: var(--s-sm);
}

.carousel-btn:hover {
  background: var(--cobalt);
  color: #fff;
  border-color: transparent;
  transform: scale(1.12);
  box-shadow: var(--s-cobalt);
}

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--panel-strong);
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--cobalt);
  transform: scale(1.4);
}

/* Carousel */
.partners-carousel {
  overflow: hidden;
  position: relative;
  padding-bottom: 3.5rem;
}

/* Fade edges */
.partners-carousel::before,
.partners-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--panel) 0%, transparent 100%);
}
.partners-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--panel) 0%, transparent 100%);
}

.partners-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  animation: carousel-scroll 40s linear infinite;
  will-change: transform;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Partner cards */
.partner-card {
  flex-shrink: 0;
  width: 210px;
  padding: 1.75rem 1.35rem;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: var(--s);
  transition:
    transform 0.5s var(--e-out),
    box-shadow 0.5s var(--e-out),
    border-color 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: var(--s-xl);
  border-color: rgba(26, 63, 216, 0.1);
}

/* Holographic border */
.partner-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    var(--cobalt) 60deg,
    var(--teal) 120deg,
    var(--gold) 240deg,
    transparent 360deg
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  animation: partner-spin 4s linear infinite paused;
}

.partner-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes partner-spin {
  to {
    --angle: 360deg;
  }
}

/* Sheen */
.partner-card__sheen {
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.55) 50%,
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.9s var(--e-out);
  pointer-events: none;
  z-index: 4;
}

.partner-card:hover .partner-card__sheen {
  left: 160%;
}

.partner-card__inner-fill {
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--r-lg) - 1px);
  background: var(--surface);
  z-index: 0;
  pointer-events: none;
}

.partner-logo-badge {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--f-ui);
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.5s var(--e-spring),
    box-shadow 0.5s ease;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.17),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.partner-card:hover .partner-logo-badge {
  transform: translateY(-5px) scale(1.12) rotate(-4deg);
}

.partner-name {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
  color: var(--cobalt);
}

.partner-status {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 0.38rem;
  position: relative;
  z-index: 2;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
  opacity: 0.72;
}

.partner-card:hover .partner-status {
  color: var(--gold-deep);
  opacity: 1;
}

.partner-card__line {
  width: 30px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cobalt), var(--gold));
  margin-top: 0.9rem;
  position: relative;
  z-index: 2;
  transform: scaleX(0.5);
  opacity: 0;
  transition:
    transform 0.4s var(--e-spring),
    opacity 0.4s ease;
  transform-origin: center;
}

.partner-card:hover .partner-card__line {
  transform: scaleX(1);
  opacity: 1;
}

/* ===== CTA SECTION ===== */
.section--cta {
  text-align: center;
  max-width: none;
  padding: clamp(5.5rem, 14vw, 10rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--panel) 40%,
    rgba(26, 63, 216, 0.04) 100%
  );
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cobalt),
    var(--teal),
    var(--gold),
    var(--coral),
    transparent
  );
  opacity: 0.55;
  background-size: 200% 100%;
  animation: cta-shimmer 6s ease-in-out infinite;
}

@keyframes cta-shimmer {
  0%,
  100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}

.section--cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 60% at 50% 0%,
      rgba(26, 63, 216, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 30% 40% at 20% 80%,
      rgba(0, 196, 180, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 25% 35% at 80% 70%,
      rgba(232, 160, 32, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--ink);
  letter-spacing: -0.035em;
  margin-bottom: 1.15rem;
  line-height: 1.06;
}

.cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cobalt), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-text {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.78;
  margin: 0 auto 2.75rem;
  max-width: 510px;
  font-weight: 300;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 2.85rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  font-family: var(--f-ui);
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: linear-gradient(
    135deg,
    var(--cobalt) 0%,
    var(--cobalt-bright) 50%,
    var(--teal) 100%
  );
  background-size: 200% 200%;
  color: #fff;
  box-shadow: var(--s-cobalt);
  transition: all 0.45s var(--e-spring);
  position: relative;
  overflow: hidden;
}

.btn-cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--e-out);
}

.btn-cta-primary:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 36px 96px rgba(26, 63, 216, 0.42);
  background-position: 100% 50%;
}
.btn-cta-primary:hover::before {
  transform: translateX(120%);
}
.btn-cta-primary:active {
  transform: translateY(-1px) scale(0.98);
}
.btn-cta-primary svg {
  transition: transform 0.4s var(--e-spring);
}
.btn-cta-primary:hover svg {
  transform: translateX(6px);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--abyss) 0%, var(--void) 100%);
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
}

/* Decorative top gold line */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--cobalt) 20%,
    var(--teal) 40%,
    var(--gold) 60%,
    var(--coral) 80%,
    transparent 100%
  );
  opacity: 0.45;
}

.footer__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80vw, 800px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cobalt),
    var(--teal),
    var(--gold),
    transparent
  );
  opacity: 0.35;
}

.footer__glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 140px;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(26, 63, 216, 0.12) 0%,
    transparent 70%
  );
  transform: translateY(-50%);
  pointer-events: none;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.5rem, 5vw, 4rem)
    clamp(2.5rem, 6vw, 4rem);
}

@media (max-width: 960px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.footer__logo-img {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

.footer__logo-name {
  font-family: var(--f-display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.62) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.33);
  max-width: 305px;
  margin-bottom: 1.6rem;
  font-weight: 300;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.35s var(--e-spring);
}

.footer__social-link:hover {
  transform: translateY(-4px) scale(1.1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}
.footer__social-link--linkedin:hover {
  background: #0a66c2;
}
.footer__social-link--twitter:hover {
  background: #000;
}
.footer__social-link--instagram:hover {
  background: radial-gradient(
    circle at 30% 110%,
    #f09433,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888
  );
}
.footer__social-link--facebook:hover {
  background: #1877f2;
}

.footer__col {
  min-width: 0;
}

.footer__col-title {
  font-family: var(--f-ui);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.7rem;
}

.footer__col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1.5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cobalt), var(--teal));
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__links a,
.footer__links span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.37);
  text-decoration: none;
  font-weight: 300;
  transition:
    color 0.25s ease,
    transform 0.25s var(--e-out);
  display: inline-block;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.82);
  transform: translateX(5px);
}

.footer__links--contact {
  gap: 0.85rem;
}

.footer__links--contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer__contact-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
  font-weight: 300;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.55);
}

.footer__made {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}
.footer__made span {
  color: var(--coral);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--cobalt);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--s-cobalt);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s var(--e-spring);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 28px 72px rgba(26, 63, 216, 0.45);
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(3, 5, 9, 0.75);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  background: var(--abyss);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 64px 180px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.45s var(--e-out);
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

/* Chrome nav */
.chrome-nav {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.modal-progress-bar {
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cobalt), var(--teal), var(--gold));
  background-size: 200% 100%;
  border-radius: 0 2px 2px 0;
  position: relative;
  transition: width 0.3s ease;
  animation: progress-shimmer 2s linear infinite;
  z-index: 10;
  box-shadow:
    0 0 12px rgba(26, 63, 216, 0.55),
    0 0 24px rgba(0, 196, 180, 0.3);
}

.modal-progress-bar::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(0, 196, 180, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-progress-bar.loading::after {
  opacity: 1;
}

@keyframes progress-shimmer {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Mac dots */
.mac-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition:
    filter 0.2s ease,
    transform 0.2s var(--e-spring);
}

.mac-dot--close {
  background: #ff5f57;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) inset;
}
.mac-dot--minimize {
  background: #febc2e;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) inset;
}
.mac-dot--maximize {
  background: #28c840;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) inset;
}

.mac-dot:hover {
  filter: brightness(1.15);
  transform: scale(1.15);
}

/* Nav controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
}

.nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}
.nav-btn--close {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.4);
}

.url-bar {
  flex-grow: 1;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 0.75rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--f-ui);
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Tabs */
.tabs-container {
  display: flex;
  gap: 2px;
  padding: 0 1rem;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.chrome-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 8px 8px 0 0;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  min-width: 0;
  max-width: 160px;
}

.chrome-tab span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chrome-tab.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
}

.chrome-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.65);
}

.chrome-tab__close {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    background 0.2s ease;
}

.chrome-tab:hover .chrome-tab__close,
.chrome-tab.active .chrome-tab__close {
  opacity: 1;
}

.chrome-tab__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Tab content */
.tab-content {
  flex: 1;
  position: relative;
  min-height: 0;
}

.iframe-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--abyss);
  z-index: 5;
  gap: 1.25rem;
}

.iframe-loader__rings {
  position: relative;
  width: 50px;
  height: 50px;
}

.iframe-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--cobalt);
  animation: spin 1s linear infinite;
}

.iframe-loader__ring--delay {
  border-top-color: var(--teal);
  animation-delay: -0.5s;
  inset: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.iframe-loader__text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

#siteFrame {
  width: 100%;
  height: 65vh;
  border: none;
  background: var(--surface);
}

/* ===== HERO LIVE CLOCK ===== */
.hero-clock {
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.52);
  padding: 0.22rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ===== HERO CHART LIVE ANIMATION ===== */
.hero-chart__bar.chart-animated {
  transition: height 0.9s var(--e-out);
}

/* ===== DROPDOWN NAV (DESKTOP) ===== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.chevron {
  font-size: 0.55rem;
  display: inline-block;
  transition: transform 0.3s ease;
  opacity: 0.65;
  margin-left: 2px;
}

.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 240px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(26, 63, 216, 0.07);
  border-radius: var(--r-sm);
  padding: 0.7rem;
  box-shadow: var(--s-md);
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  transition:
    transform 0.35s var(--e-out),
    opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
  }
}

.dropdown-item {
  padding: 0.7rem 1.05rem;
  border-radius: var(--r-xs);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s var(--e-out);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-item::after {
  content: "→";
  opacity: 0;
  transform: translateX(-8px);
  transition:
    transform 0.25s var(--e-spring),
    opacity 0.2s ease;
  font-size: 0.9rem;
  color: var(--cobalt);
}

.dropdown-item:hover {
  color: var(--cobalt);
  background: rgba(26, 63, 216, 0.05);
}
.dropdown-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ===== MOBILE COLLAPSIBLE DROPDOWN ===== */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .dropdown-toggle.active .chevron {
    transform: rotate(180deg);
    color: var(--gold-bright);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    display: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.35rem;
    padding: 0.35rem;
    box-shadow: none;
    border-radius: var(--r-sm);
  }

  .dropdown-menu.show {
    display: flex;
    animation: mobile-expand 0.35s var(--e-out) forwards;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.58);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  .dropdown-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }
  .dropdown-item::after {
    color: var(--gold-bright);
  }
}

@keyframes mobile-expand {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nav-link-slide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== DROPDOWN ICON ===== */
.dropdown-item-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.dropdown-item-icon {
  flex-shrink: 0;
  color: var(--cobalt);
  opacity: 0.7;
}

/* ===== NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0.4rem;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: var(--cobalt-soft);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: all 0.3s var(--e-out);
}

.nav-toggle.active .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(6, 10, 20, 0.95);
    backdrop-filter: blur(36px);
    -webkit-backdrop-filter: blur(36px);
    padding: 6rem 2rem 2rem;
    border-radius: 0;
    border: none;
    border-left: 2px solid transparent;
    border-image: linear-gradient(to bottom, var(--cobalt), var(--gold)) 1 100%;
    box-shadow: -14px 0 56px rgba(0, 0, 0, 0.45);
    transition: right 0.5s var(--e-out);
    z-index: 1050;
    left: auto;
    transform: none;
  }

  .header-nav.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.15rem;
    padding: 0.85rem 1.2rem;
    width: 100%;
    text-align: left;
    color: rgba(255, 255, 255, 0.68) !important;
    border-radius: var(--r-sm);
    background: transparent;
    box-shadow: none;
    transition: all 0.25s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  .header-nav.open .nav-link,
  .header-nav.open .nav-dropdown {
    animation: nav-link-slide 0.5s var(--e-out) both;
  }
  .header-nav.open .nav-link:nth-child(1) {
    animation-delay: 0.1s;
  }
  .header-nav.open .nav-dropdown {
    animation-delay: 0.15s;
  }
  .header-nav.open #navBlogBtn {
    animation-delay: 0.2s;
  }
  .header-nav.open .nav-link:nth-child(4) {
    animation-delay: 0.25s;
  }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(7, 21, 92, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 1024px) {
  .nav-controls {
    flex-wrap: wrap;
  }
  .url-bar {
    min-width: 0;
  }
  .about-grid {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 7rem 0 4rem;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .card {
    border-radius: 22px;
  }
  .card-image-container {
    height: 200px;
  }
  .hero-dashboard__body {
    padding: 1rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 5rem 0 3rem;
    gap: 2rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .about-img-badge2 {
    display: none;
  }
  .about-img-wrap {
    aspect-ratio: 16/10;
    max-height: 350px;
  }
  .about-img-badge {
    right: 1rem;
    bottom: -1rem;
    padding: 0.8rem 1.25rem;
    min-width: 110px;
  }
  .about-img-badge__value {
    font-size: 2.3rem;
  }
  .partners-carousel::before,
  .partners-carousel::after {
    width: 60px;
  }
  .partners-track {
    animation-duration: 20s;
  }
  .partner-card {
    width: 165px;
    padding: 1.3rem 1.05rem;
  }
  .partner-logo-badge {
    width: 58px;
    height: 58px;
    font-size: 1.1rem;
    border-radius: 16px;
  }
  .hero-title__line {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__brand {
    grid-column: auto;
  }
  .chrome-nav {
    padding: 0.5rem 0.75rem;
  }
  .nav-controls {
    gap: 0.3rem;
  }
  .nav-btn {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  .section-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .stat-card {
    padding: 2rem 1.35rem;
  }
  .stat-card__value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
  .cta-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  .grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  .section--stats {
    padding: clamp(3.5rem, 10vw, 5rem) clamp(1rem, 4vw, 1.5rem);
  }
  .hero-image__img {
    object-position: center 35%;
  }
  .hero-dashboard__body {
    padding: 1rem;
  }
  .hero-chart {
    height: 52px;
    gap: 3px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .hero-float {
    display: none;
  }
  .hero-mesh {
    display: none;
  }
  .hero-scroll {
    display: none;
  }
  .about-img-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.5rem;
    padding: 1rem;
    min-width: 100px;
  }
  .about-img-badge__value {
    font-size: 2.2rem;
  }
  .section {
    padding: clamp(2.5rem, 8vw, 3.5rem) clamp(1rem, 4vw, 1.25rem);
  }
  .btn-primary {
    padding: 0.8rem 1.6rem;
    font-size: 0.83rem;
  }
  .btn-cta-primary {
    padding: 0.85rem 1.8rem;
    font-size: 0.87rem;
  }
  .btn-ghost {
    padding: 0.8rem 1.6rem;
    font-size: 0.83rem;
  }
  .card-image-container {
    height: 180px;
  }
  .card-content {
    padding: 1.25rem;
  }
  .card h3 {
    font-size: 1.35rem;
  }
  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__inner {
    padding: 2rem 1.25rem 1.5rem;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .modal {
    padding: 0.5rem;
  }
  .modal-content {
    border-radius: var(--r-lg);
    max-height: 95vh;
  }
  #siteFrame {
    height: 50vh;
  }
  .hero-title {
    margin-bottom: 1rem;
  }
  .hero-lead {
    font-size: 0.93rem;
    margin-bottom: 2rem;
  }
  .about-value {
    padding: 0.9rem 1rem;
  }
  .about-values {
    gap: 0.75rem;
  }
}

@media (max-width: 380px) {
  header {
    padding: 0 1rem;
  }
  .brand-logo {
    width: 38px !important;
    height: 38px !important;
  }
  .brand-text h1 {
    font-size: 1.12rem;
  }
  .hero-title__line {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .hero-badges {
    gap: 0.45rem;
  }
  .hero-badge {
    font-size: 0.6rem;
    padding: 0.27rem 0.75rem;
  }
}

@media (min-width: 769px) {
  .header-nav {
    flex-wrap: wrap;
    max-width: 60%;
    justify-content: center;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .hero-inner {
    gap: 2.5rem;
  }
  .hero-visual {
    max-width: 420px;
  }
}

/* Print styles */
@media print {
  .cursor-glow,
  .ambient-layer,
  .grain,
  .hero-mesh,
  .hero-orbs,
  .hero-particles,
  .hero-scroll,
  .back-to-top,
  .section-divider,
  .partners-ambient-layer,
  .nav-toggle,
  .nav-overlay,
  .modal {
    display: none !important;
  }
  header {
    position: static;
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
  .hero {
    min-height: auto;
    padding: 2rem;
    background: var(--cobalt-abyss);
  }
  .hero-image__img {
    animation: none;
  }
  .section {
    padding: 2rem 1rem;
  }
  .card {
    break-inside: avoid;
    animation: none;
  }
  .partners-track {
    animation: none;
  }
  .footer {
    background: var(--abyss);
  }
}

/* ===== UTILITY ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--cobalt), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== STAT CARD ICON GLOW (deduplicate) ===== */
.stat-card__icon {
  position: relative;
  isolation: isolate;
}
.stat-card__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: var(--cobalt);
  filter: blur(12px);
  opacity: 0.6;
  transition: all 0.3s ease;
  z-index: -1;
}
.stat-card:hover .stat-card__icon::before {
  filter: blur(20px);
  opacity: 0.9;
}
