/* ═══════════════════════════════════════════
   LDV INNOVATIONS — MODERN REDESIGN
   Blue-Black Aesthetic with Premium Animations
   ═══════════════════════════════════════════ */

:root {
  --bg0: #050914;
  --bg1: #060c1a;
  --ink: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.08);
  --blue: #2aa6ff;
  --blue2: #5be3ff;
  --blue3: #1f59ff;
  --purple: #7b61ff;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 30px 100px rgba(0, 0, 0, 0.6);
  --glow: 0 0 40px rgba(42, 166, 255, 0.15);
  --radius: 18px;
  --radius2: 28px;
  --container: 1440px;

  /* Animation timings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
  --duration-slower: 800ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--ink);
  background: radial-gradient(1200px 800px at 15% 10%, rgba(42, 166, 255, 0.12), transparent 60%),
    radial-gradient(900px 700px at 85% 20%, rgba(31, 89, 255, 0.1), transparent 55%),
    radial-gradient(900px 700px at 70% 90%, rgba(91, 227, 255, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

/* ═══════════════════════════════════════════
   SCROLL PROGRESS INDICATOR
   ═══════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue3), var(--blue), var(--blue2), var(--purple));
  background-size: 300% 100%;
  animation: gradientShift 4s ease infinite;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px rgba(42, 166, 255, 0.6);
  transition: width 50ms linear;
  will-change: width;
}

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

/* ═══════════════════════════════════════════
   SKIP LINK
   ═══════════════════════════════════════════ */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 9999;
  background: #0b1430;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 12px;
}
.skip-link:focus {
  left: 10px;
}

/* ═══════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════ */

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ═══════════════════════════════════════════
   ANIMATED BACKGROUND
   ═══════════════════════════════════════════ */

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.bg__grid {
  position: absolute;
  inset: -2px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.12;
  mask-image: radial-gradient(700px 500px at 40% 10%, black, transparent 70%);
}
.bg__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.7;
  transform: translate3d(0, 0, 0);
  animation: floaty 12s ease-in-out infinite;
}
.bg__glow--a {
  left: -140px;
  top: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(42, 166, 255, 0.7), rgba(42, 166, 255, 0));
}
.bg__glow--b {
  right: -200px;
  top: 80px;
  background: radial-gradient(circle at 30% 30%, rgba(31, 89, 255, 0.7), rgba(31, 89, 255, 0));
  animation-delay: -4s;
}
.bg__glow--c {
  left: 55%;
  bottom: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(91, 227, 255, 0.6), rgba(91, 227, 255, 0));
  animation-delay: -7s;
}
.bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

@keyframes floaty {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

/* ═══════════════════════════════════════════
   GLASS CARD
   ═══════════════════════════════════════════ */

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

/* ═══════════════════════════════════════════
   TOPBAR / NAVIGATION
   ═══════════════════════════════════════════ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}
.topbar.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 9, 20, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 14px;
}

/* Brand with magnetic hover */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease, transform 300ms var(--ease-out-expo);
  will-change: transform;
}
.brand:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  transform: scale(1.02);
}
.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 400ms var(--ease-out-expo);
}
.brand:hover .brand__logo {
  transform: rotate(-8deg) scale(1.05);
}
.brand__name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Desktop nav with animated underline */
.nav {
  display: none;
  align-items: center;
  gap: 18px;
}
.nav__link {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: color 200ms ease, background 200ms ease, transform 200ms var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.nav__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(92deg, var(--blue2), var(--blue));
  transform: translateX(-50%);
  transition: width 300ms var(--ease-out-expo);
  box-shadow: 0 0 8px rgba(42, 166, 255, 0.4);
}
.nav__link:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}
.nav__link:hover::before {
  width: 60%;
}
.nav__link--active {
  color: var(--ink);
}
.nav__link--active::before {
  width: 60%;
}

/* Mobile menu */
.menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  transition: border-color 200ms ease, background 200ms ease, transform 300ms var(--ease-out-expo);
}
.menu-btn:hover {
  border-color: rgba(42, 166, 255, 0.3);
  transform: scale(1.05);
}
.menu-btn__bar {
  height: 2px;
  width: 18px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  transition: transform 300ms var(--ease-out-expo), opacity 200ms ease;
}
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease-out-expo);
  border-bottom: 1px solid transparent;
}
.mobile-nav.is-open {
  grid-template-rows: 1fr;
  border-bottom-color: var(--line);
  background: rgba(5, 9, 20, 0.85);
  backdrop-filter: blur(20px);
}
.mobile-nav__inner {
  overflow: hidden;
  padding: 0 0 16px;
  display: grid;
  gap: 10px;
}
.mobile-nav__link {
  display: block;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  transition: color 200ms ease, border-color 200ms ease, transform 300ms var(--ease-out-expo);
}
.mobile-nav__link:hover {
  color: var(--ink);
  border-color: rgba(42, 166, 255, 0.2);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  transition: transform 200ms var(--ease-out-expo), background 200ms ease, border-color 200ms ease, box-shadow 300ms ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

/* Ripple effect */
.btn[data-ripple]::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}
.btn[data-ripple]:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 166, 255, 0.35);
}
.btn:active {
  transform: translateY(0px);
}
.btn--primary {
  border-color: rgba(42, 166, 255, 0.35);
  background: radial-gradient(120% 200% at 50% 0%, rgba(91, 227, 255, 0.35), rgba(42, 166, 255, 0.15) 45%, rgba(42, 166, 255, 0.08));
  box-shadow: 0 18px 60px rgba(42, 166, 255, 0.18);
  animation: btnGlow 3s ease-in-out infinite alternate;
}
.btn--primary:hover {
  box-shadow: 0 22px 70px rgba(42, 166, 255, 0.3);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
}
.btn--block {
  width: 100%;
}
.btn--sm {
  padding: 10px 14px;
  font-size: 14px;
}

@keyframes btnGlow {
  0% { box-shadow: 0 18px 60px rgba(42, 166, 255, 0.18); }
  100% { box-shadow: 0 18px 80px rgba(42, 166, 255, 0.28); }
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  padding: 84px 0 64px;
  position: relative;
  overflow: hidden;
}

/* Particle canvas */
.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
  margin-inline: auto 0; /* override container centering — push to right */
}
.hero__copy {
  max-width: 680px;
}

/* Hero title lines — staggered reveal */
.hero__title {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.7px;
  max-width: 780px;
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}
.hero.is-visible .hero__title-line:nth-child(1) {
  animation: lineReveal 700ms var(--ease-out-expo) 300ms forwards;
}
.hero.is-visible .hero__title-line:nth-child(2) {
  animation: lineReveal 700ms var(--ease-out-expo) 500ms forwards;
}
.hero.is-visible .hero__title-line:nth-child(3) {
  animation: lineReveal 700ms var(--ease-out-expo) 700ms forwards;
}

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated gradient text */
.accent {
  background: linear-gradient(92deg, var(--blue2), var(--blue), #b8f0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent--animated {
  background-size: 200% auto;
  animation: gradientText 4s linear infinite;
}

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

/* Hero copy stagger */
.hero .eyebrow,
.hero .hero__subtitle,
.hero .hero__cta,
.hero .hero__meta {
  opacity: 0;
  transform: translateY(16px);
}
.hero.is-visible .eyebrow  { animation: fadeUp 500ms var(--ease-out-expo) 100ms forwards; }
.hero.is-visible .hero__title { /* handled by line reveals */ }
.hero.is-visible .hero__subtitle { animation: fadeUp 500ms var(--ease-out-expo) 900ms forwards; }
.hero.is-visible .hero__cta   { animation: fadeUp 500ms var(--ease-out-expo) 1100ms forwards; }
.hero.is-visible .hero__meta  { animation: fadeUp 500ms var(--ease-out-expo) 1300ms forwards; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow pills with shimmer */
.eyebrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
  border-radius: 999px;
  border: 1px solid rgba(42, 166, 255, 0.28);
  background: rgba(42, 166, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 20px rgba(42, 166, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.pill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: pillShimmer 3s ease-in-out infinite;
}
.pill--soft {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}
.pill--soft::after {
  animation-delay: -1.5s;
}

@keyframes pillShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero__subtitle {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 58ch;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}

/* Meta cards with hover glow */
.hero__meta {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 480px) {
  .hero__meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.meta {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 12px;
  transition: border-color 200ms ease, background 200ms ease, transform 300ms var(--ease-out-expo), box-shadow 300ms ease;
  will-change: transform;
}
.meta:hover {
  border-color: rgba(42, 166, 255, 0.3);
  background: rgba(42, 166, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 166, 255, 0.1);
}
.meta__k {
  font-weight: 800;
  font-size: 13px;
}
.meta__v {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

/* Hero card with 3D tilt */
.hero__card {
  position: relative;
  min-height: 340px;
}
.hero__card .card,
.hero__card .orbit {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}
.hero.is-visible .hero__card .card,
.hero.is-visible .hero__card .orbit {
  animation: cardIn 800ms var(--ease-out-expo) 600ms forwards;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.card {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  transition: transform 100ms linear;
  will-change: transform;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 260px at 30% 0%, rgba(91, 227, 255, 0.22), transparent 60%),
    radial-gradient(600px 260px at 80% 10%, rgba(42, 166, 255, 0.18), transparent 60%),
    radial-gradient(700px 320px at 50% 120%, rgba(31, 89, 255, 0.16), transparent 60%);
  pointer-events: none;
}

/* Card shine on hover */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}
.card:hover::after {
  opacity: 1;
}

.card__top {
  position: relative;
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: 0.9;
}
.dot--r { background: #ff4d4d; }
.dot--y { background: #ffcc00; }
.dot--g { background: #33d17a; }
.card__body {
  position: relative;
  padding: 18px 18px 18px;
}
.card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  font-size: 12px;
}
.card__headline {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
}
.card__lines {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 300ms ease;
}
.card:hover .line:nth-child(1) { background: rgba(42, 166, 255, 0.15); }
.card:hover .line:nth-child(2) { background: rgba(91, 227, 255, 0.12); }
.card:hover .line:nth-child(3) { background: rgba(31, 89, 255, 0.15); }
.card:hover .line:nth-child(4) { background: rgba(42, 166, 255, 0.12); }

.w-75 { width: 75%; }
.w-55 { width: 55%; }
.w-85 { width: 85%; }
.w-65 { width: 65%; }

.card__stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 12px;
  transition: border-color 200ms ease, transform 300ms var(--ease-out-expo);
}
.card:hover .stat {
  border-color: rgba(42, 166, 255, 0.2);
  transform: translateY(-2px);
}
.stat__n {
  font-weight: 950;
  font-size: 18px;
}
.stat__l {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

/* Orbit rings */
.orbit {
  position: absolute;
  inset: -14px;
  pointer-events: none;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.5));
}
.orbit__ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  mask-image: radial-gradient(220px 220px at 70% 30%, black, transparent 70%);
  animation: spin 18s linear infinite;
}
.orbit__ring--a {
  inset: 28px;
  border-color: rgba(42, 166, 255, 0.3);
  animation-duration: 22s;
}
.orbit__ring--b {
  inset: 54px;
  border-color: rgba(91, 227, 255, 0.22);
  animation-duration: 30s;
  animation-direction: reverse;
}
.orbit__ring--c {
  inset: 84px;
  border-color: rgba(255, 255, 255, 0.15);
  animation-duration: 38s;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */

.section {
  padding: 96px 0;
}
.section--tight {
  padding: 80px 0;
}
#about .split {
  display: flex;
  justify-content: center;
  text-align: center;
}
#about .split__a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about .section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about .section__subtitle {
  max-width: none;
  width: 100%;
}
.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  position: relative;
}
.section__head::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(92deg, var(--blue2), var(--blue), var(--blue3));
  margin-top: 4px;
  box-shadow: 0 0 12px rgba(42, 166, 255, 0.3);
  transition: width 800ms var(--ease-out-expo);
}
.reveal.is-visible .section__head::after {
  width: 60px;
}
.section__title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.4px;
}
.section__subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

/* ═══════════════════════════════════════════
   SERVICE TILES — 3D Tilt Cards
   ═══════════════════════════════════════════ */

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.tile {
  grid-column: span 12;
  padding: 22px 20px;
  transition: transform 300ms var(--ease-out-expo), box-shadow 300ms ease, border-color 300ms ease;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  overflow: hidden;
}

/* Tile hover glow effect */
.tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(42, 166, 255, 0.15), transparent 50%, rgba(91, 227, 255, 0.1));
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: -1;
}
.tile:hover::before {
  opacity: 1;
}
.tile:hover {
  border-color: rgba(42, 166, 255, 0.3);
  box-shadow: var(--shadow), var(--glow);
}

/* Tile icon with bounce */
.tile__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 400ms var(--ease-out-expo);
  will-change: transform;
}
.tile:hover .tile__icon {
  transform: scale(1.15) translateY(-4px);
}
.tile__title {
  margin: 0 0 8px;
  font-size: 19px;
  letter-spacing: -0.2px;
  position: relative;
  display: inline-block;
}
.tile__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(92deg, var(--blue2), var(--blue));
  border-radius: 2px;
  transition: width 400ms var(--ease-out-expo);
}
.tile:hover .tile__title::after {
  width: 100%;
}
.tile__text {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}
.tile__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   APPROACH SECTION — STEPS
   ═══════════════════════════════════════════ */

.split {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.steps {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(42, 166, 255, 0.35), rgba(91, 227, 255, 0.2), rgba(42, 166, 255, 0.35));
  border-radius: 2px;
  z-index: 0;
}
.step {
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: start;
  position: relative;
  z-index: 1;
  transition: transform 300ms var(--ease-out-expo), border-color 300ms ease, box-shadow 300ms ease;
}
.step:hover {
  transform: translateX(6px);
  border-color: rgba(42, 166, 255, 0.25);
  box-shadow: var(--glow);
}
.step__n {
  font-weight: 950;
  font-size: 14px;
  color: rgba(91, 227, 255, 0.95);
  background: rgba(42, 166, 255, 0.08);
  border: 1px solid rgba(42, 166, 255, 0.25);
  border-radius: 14px;
  display: grid;
  place-items: center;
  height: 42px;
  box-shadow: 0 0 20px rgba(42, 166, 255, 0.12);
  transition: transform 300ms var(--ease-out-expo), background 200ms ease, box-shadow 300ms ease;
}
.step:hover .step__n {
  transform: scale(1.1) rotate(-3deg);
  background: rgba(42, 166, 255, 0.15);
  box-shadow: 0 0 25px rgba(42, 166, 255, 0.25);
}
.step__t {
  font-weight: 900;
}
.step__d {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.aside {
  padding: 22px 20px;
  position: sticky;
  top: 90px;
}
.aside__title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.check li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  transition: transform 200ms var(--ease-out-expo);
}
.check li:hover {
  transform: translateX(4px);
}
.check li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid rgba(42, 166, 255, 0.3);
  background: radial-gradient(circle at 35% 30%, rgba(91, 227, 255, 0.35), rgba(42, 166, 255, 0.12));
  box-shadow: 0 10px 30px rgba(42, 166, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6.5L4.5 9L10 3' stroke='rgba(91,227,255,0.9)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 300ms var(--ease-out-expo);
}
.check li:hover::before {
  transform: scale(1.15);
}
.aside__cta {
  margin-top: 14px;
}
.hint {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   CAPABILITIES / BADGES
   ═══════════════════════════════════════════ */

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 13px;
  cursor: default;
  transition: transform 200ms var(--ease-out-expo), border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 300ms ease;
  will-change: transform;
}
.badge:hover {
  border-color: rgba(42, 166, 255, 0.35);
  background: rgba(42, 166, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 25px rgba(42, 166, 255, 0.15);
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}
.contact__copy {
  text-align: center;
}
.contact__grid {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.info {
  padding: 18px 16px;
  transition: border-color 200ms ease, background 200ms ease, transform 300ms var(--ease-out-expo), box-shadow 300ms ease;
}
.info:hover {
  border-color: rgba(42, 166, 255, 0.3);
  background: rgba(42, 166, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 166, 255, 0.1);
}
.info__k {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
  font-size: 12px;
}
.info__v {
  margin-top: 6px;
  font-weight: 800;
}
.info__v a {
  color: rgba(255, 255, 255, 0.86);
}
.fineprint {
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.6;
  max-width: 56ch;
}

/* Social buttons */
.contact__socials {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius2);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 200ms ease, background 200ms ease, transform 300ms var(--ease-out-expo), box-shadow 300ms ease;
}
.social-btn__icon path {
  fill: currentColor;
}
.social-btn--whatsapp {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.2);
}
.social-btn--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}
.social-btn--facebook {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.2);
}
.social-btn--facebook:hover {
  border-color: rgba(24, 119, 242, 0.5);
  background: rgba(24, 119, 242, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.15);
}

.form {
  width: 100%;
  padding: 32px 28px;
  border-radius: var(--radius2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.field__l {
  font-weight: 800;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}
.field__i {
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.14);
  color: rgba(255, 255, 255, 0.9);
  outline: none;
  font-size: 15px;
  transition: border-color 200ms ease, box-shadow 300ms ease, background 200ms ease, transform 200ms var(--ease-out-expo);
}
.field__i:focus {
  border-color: rgba(42, 166, 255, 0.38);
  box-shadow: 0 0 0 4px rgba(42, 166, 255, 0.12), 0 0 30px rgba(42, 166, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}
.field__i::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.field__i--ta {
  resize: vertical;
  min-height: 120px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  padding: 56px 0 48px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}
.footer__inner {
  display: grid;
  gap: 18px;
  align-items: center;
}
.footer__brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform 400ms var(--ease-out-expo);
}
.footer__brand:hover img {
  transform: rotate(5deg) scale(1.05);
}
.footer__name {
  font-weight: 950;
}
.footer__tag {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 2px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 13px;
}
.footer__links a {
  transition: color 200ms ease, transform 200ms var(--ease-out-expo);
}
.footer__links a:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}
.footer__certification {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer__certification img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
}
.footer__certification div {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
}
.footer__copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

/* ═══════════════════════════════════════════
   DESKTOP RESPONSIVE
   ═══════════════════════════════════════════ */

@media (min-width: 820px) {
  .nav {
    display: inline-flex;
  }
  .menu-btn {
    display: none;
  }
  .mobile-nav {
    display: none;
  }

  .hero {
    padding: 112px 0 84px;
  }
  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 32px;
    align-items: center;
  }
  .hero__card {
    min-height: 540px;
  }

  .tile {
    grid-column: span 6;
  }

  .split {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
    gap: 22px;
  }

  .contact {
    max-width: 680px;
    gap: 28px;
  }

  .footer__inner {
    grid-template-columns: 1fr auto auto;
    justify-content: space-between;
  }

  .section {
    padding: 120px 0;
  }
  .section--tight {
    padding: 100px 0;
  }
}

/* ═══════════════════════════════════════════
   2K / QHD RESPONSIVE (min-width: 1440px)
   ~1.2× scaling over desktop baseline
   ═══════════════════════════════════════════ */

@media (min-width: 1440px) {
  .topbar__inner {
    padding: 20px 0;
  }

  .brand__logo {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding: 128px 0 96px;
  }
  .hero__grid {
    gap: 40px;
  }
  .hero__card {
    min-height: 648px;
  }
  .hero__subtitle {
    font-size: 18px;
  }

  .meta__k {
    font-size: 14px;
  }
  .meta__v {
    font-size: 13px;
  }

  .card__body {
    padding: 22px 22px 22px;
  }
  .card__headline {
    font-size: 26px;
  }
  .stat__n {
    font-size: 20px;
  }
  .stat__l {
    font-size: 13px;
  }

  .section {
    padding: 144px 0;
  }
  .section--tight {
    padding: 120px 0;
  }
  .section__title {
    font-size: clamp(30px, 3.8vw, 44px);
  }

  .cards {
    gap: 16px;
  }
  .tile {
    padding: 26px 24px;
  }
  .tile__title {
    font-size: 22px;
  }
  .tile__text {
    font-size: 16px;
  }
  .tile__list {
    font-size: 15px;
  }
  .tile__icon-img {
    width: 56px;
    height: 56px;
  }

  .tile--with-image .tile__img {
    height: 216px;
  }

  .aside {
    padding: 26px 24px;
  }
  .aside__title {
    font-size: 20px;
  }

  .contact__grid {
    gap: 14px;
  }
  .contact__socials {
    gap: 14px;
  }
  .social-btn {
    padding: 16px 26px;
    font-size: 15px;
  }
  .info {
    padding: 22px 20px;
  }
  .form {
    padding: 30px 28px;
  }
  .field__i {
    font-size: 16px;
    padding: 16px 18px;
  }

  .footer {
    padding: 68px 0 56px;
  }
  .footer__brand img {
    width: 44px;
    height: 44px;
  }

  .section__img {
    height: 312px;
  }
}

/* ═══════════════════════════════════════════
   4K / UHD RESPONSIVE (min-width: 2560px)
   ~1.5× scaling over desktop baseline
   ═══════════════════════════════════════════ */

@media (min-width: 2560px) {
  .topbar__inner {
    padding: 24px 0;
  }

  .brand__logo {
    width: 52px;
    height: 52px;
  }

  .nav__link {
    font-size: 16px;
    padding: 12px 14px;
  }
  .btn--sm {
    padding: 12px 16px;
    font-size: 16px;
  }

  .hero {
    padding: 144px 0 112px;
  }
  .hero__grid {
    gap: 48px;
  }
  .hero__card {
    min-height: 810px;
  }
  .hero__title {
    font-size: clamp(48px, 5.5vw, 78px);
  }
  .hero__subtitle {
    font-size: 20px;
  }
  .hero__cta {
    gap: 16px;
  }

  .eyebrow {
    gap: 14px;
  }
  .pill {
    padding: 9px 14px;
    font-size: 14px;
  }

  .hero__meta {
    gap: 16px;
  }
  .meta {
    padding: 18px 16px;
  }
  .meta__k {
    font-size: 16px;
  }
  .meta__v {
    font-size: 14px;
  }

  .card__body {
    padding: 26px 26px 26px;
  }
  .card__headline {
    font-size: 30px;
  }
  .card__lines {
    gap: 14px;
  }
  .line {
    height: 12px;
  }
  .card__stats {
    gap: 14px;
  }
  .stat {
    padding: 16px;
  }
  .stat__n {
    font-size: 24px;
  }
  .stat__l {
    font-size: 14px;
  }

  .section {
    padding: 180px 0;
  }
  .section--tight {
    padding: 144px 0;
  }
  .section__head {
    gap: 14px;
    margin-bottom: 36px;
  }
  .section__title {
    font-size: clamp(36px, 4.2vw, 52px);
  }
  .section__subtitle {
    font-size: 18px;
  }

  .cards {
    gap: 20px;
  }
  .tile {
    padding: 32px 28px;
  }
  .tile__icon {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .tile__title {
    font-size: 26px;
  }
  .tile__text {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .tile__list {
    font-size: 17px;
    line-height: 1.9;
  }
  .tile__icon-img {
    width: 64px;
    height: 64px;
  }

  .tile--with-image .tile__img {
    height: 264px;
  }

  .split {
    gap: 28px;
  }
  .steps {
    gap: 16px;
    margin-top: 28px;
  }
  .step {
    padding: 18px 18px;
    gap: 14px;
  }
  .step__n {
    font-size: 16px;
    height: 50px;
  }
  .step__t {
    font-size: 17px;
  }
  .step__d {
    font-size: 16px;
  }

  .aside {
    padding: 32px 28px;
  }
  .aside__title {
    font-size: 22px;
  }
  .check {
    gap: 14px;
  }
  .check li {
    gap: 14px;
    font-size: 16px;
  }
  .check li::before {
    width: 24px;
    height: 24px;
  }
  .hint {
    font-size: 14px;
  }

  .badges {
    gap: 14px;
    margin-top: 24px;
  }
  .badge {
    padding: 12px 18px;
    font-size: 15px;
  }

  .contact {
    max-width: 760px;
    gap: 28px;
  }
  .contact__grid {
    margin-top: 24px;
    gap: 18px;
  }
  .contact__socials {
    margin-top: 24px;
    gap: 16px;
  }
  .social-btn {
    padding: 18px 30px;
    font-size: 16px;
  }
  .info {
    padding: 26px 24px;
  }
  .info__k {
    font-size: 14px;
  }
  .info__v {
    margin-top: 8px;
    font-size: 16px;
  }
  .fineprint {
    font-size: 14px;
  }

  .form {
    padding: 36px 32px;
  }
  .field {
    gap: 10px;
    margin-bottom: 16px;
  }
  .field__l {
    font-size: 15px;
  }
  .field__i {
    font-size: 18px;
    padding: 18px 20px;
  }
  .field__i--ta {
    min-height: 150px;
  }

  .btn {
    padding: 14px 20px;
  }

  .footer {
    padding: 84px 0 72px;
  }
  .footer__inner {
    gap: 24px;
  }
  .footer__brand {
    gap: 16px;
  }
  .footer__brand img {
    width: 50px;
    height: 50px;
  }
  .footer__name {
    font-size: 18px;
  }
  .footer__tag {
    font-size: 14px;
  }
  .footer__links {
    gap: 16px;
    font-size: 15px;
  }
  .footer__copy {
    font-size: 14px;
  }

  .section__img {
    height: 390px;
  }

  .orbit {
    inset: -20px;
  }
}

/* ═══════════════════════════════════════════
   SCROLL-TRIGGERED REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease-out-expo), transform 700ms var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children — tiles */
.reveal.is-visible .tile {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  animation: tileIn 600ms var(--ease-out-expo) forwards;
}
.reveal.is-visible .tile:nth-child(1) { animation-delay: 100ms; }
.reveal.is-visible .tile:nth-child(2) { animation-delay: 200ms; }
.reveal.is-visible .tile:nth-child(3) { animation-delay: 300ms; }
.reveal.is-visible .tile:nth-child(4) { animation-delay: 400ms; }

@keyframes tileIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Staggered children — badges */
.reveal.is-visible .badge {
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  animation: badgeIn 500ms var(--ease-out-expo) forwards;
}
.reveal.is-visible .badge:nth-child(1)  { animation-delay: 60ms; }
.reveal.is-visible .badge:nth-child(2)  { animation-delay: 100ms; }
.reveal.is-visible .badge:nth-child(3)  { animation-delay: 140ms; }
.reveal.is-visible .badge:nth-child(4)  { animation-delay: 180ms; }
.reveal.is-visible .badge:nth-child(5)  { animation-delay: 220ms; }
.reveal.is-visible .badge:nth-child(6)  { animation-delay: 260ms; }
.reveal.is-visible .badge:nth-child(7)  { animation-delay: 300ms; }
.reveal.is-visible .badge:nth-child(8)  { animation-delay: 340ms; }
.reveal.is-visible .badge:nth-child(9)  { animation-delay: 380ms; }
.reveal.is-visible .badge:nth-child(10) { animation-delay: 420ms; }

@keyframes badgeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Staggered children — steps */
.reveal.is-visible .step {
  opacity: 0;
  transform: translateX(-20px);
  animation: stepIn 500ms var(--ease-out-expo) forwards;
}
.reveal.is-visible .step:nth-child(1) { animation-delay: 100ms; }
.reveal.is-visible .step:nth-child(2) { animation-delay: 200ms; }
.reveal.is-visible .step:nth-child(3) { animation-delay: 300ms; }
.reveal.is-visible .step:nth-child(4) { animation-delay: 400ms; }

@keyframes stepIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ═══════════════════════════════════════════
   HERO BACKGROUND IMAGE
   ═══════════════════════════════════════════ */

.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-img__inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.25) saturate(0.6);
}

/* ═══════════════════════════════════════════
   CARD WITH IMAGE
   ═══════════════════════════════════════════ */

.card--with-image .card__img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius2) var(--radius2) 0 0;
}
.card--with-image .card__img__inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card--with-image .card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(5, 9, 20, 0.7));
  pointer-events: none;
}
.card--with-image .card__top {
  border-radius: 0;
}

/* ═══════════════════════════════════════════
   TILE ICON IMAGES
   ═══════════════════════════════════════════ */

.tile__icon-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 400ms var(--ease-out-expo), border-color 200ms ease;
  will-change: transform;
}
.tile:hover .tile__icon-img {
  transform: scale(1.12) translateY(-4px);
  border-color: rgba(42, 166, 255, 0.35);
}

/* ═══════════════════════════════════════════
   TILES WITH IMAGES
   ═══════════════════════════════════════════ */

.tile--with-image .tile__img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius2) var(--radius2) 0 0;
}
.tile--with-image .tile__img__inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 600ms var(--ease-out-expo);
}
.tile--with-image:hover .tile__img__inner {
  transform: scale(1.05);
}
.tile--with-image .tile__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(5, 9, 20, 0.7));
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   SECTION IMAGE
   ═══════════════════════════════════════════ */

.section__img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
}
.section__img__inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(5, 9, 20, 0.5));
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .bg__glow,
  .orbit__ring {
    animation: none !important;
  }
  .accent--animated {
    animation: none !important;
  }
  .pill::after {
    animation: none !important;
  }
  .btn--primary {
    animation: none !important;
  }
  .scroll-progress__bar {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal .tile,
  .reveal .badge,
  .reveal .step,
  .hero .eyebrow,
  .hero .hero__title,
  .hero .hero__subtitle,
  .hero .hero__cta,
  .hero .hero__meta,
  .hero .hero__title-line,
  .hero__card .card,
  .hero__card .orbit {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .section__head::after {
    width: 60px;
  }
}
