:root {
  --bg: #0b0d10;
  --panel: #0e1116;
  --text: #d6d9df;
  --muted: #9aa0a6;
  --primary: #247cff;
  --button-glow: rgba(36, 124, 255, 0.35);
  --glow: 0 8px 24px -8px rgba(36, 124, 255, 0.35);
}
html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  height: 100%;
}
img {
  max-width: 100%;
}

/* NAVBAR */
.navbar {
  backdrop-filter: saturate(140%) blur(6px);
  background: linear-gradient(
    180deg,
    rgba(14, 17, 22, 0.6),
    rgba(14, 17, 22, 0.2) 70%,
    rgba(14, 17, 22, 0)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.navbar.is-scrolled {
  background: rgba(14, 17, 22, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.navbar-brand {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 0.55rem;
  letter-spacing: 0.3px;
  opacity: 1;
  transform: translateY(6px);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0, 1), opacity 0.8s ease;
}
.brand-logo {
  animation: logoPulse 4.8s ease-in-out infinite;
  background: radial-gradient(circle at 35% 35%, #39a0ff 0 45%, transparent 46%),
    radial-gradient(circle at 70% 65%, #1e63ff 0 45%, transparent 46%), #0f1b34;
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(36, 124, 255, 0.25) inset,
    0 8px 20px -8px rgba(0, 0, 0, 0.6);
  height: 28px;
  width: 28px;
}
@keyframes logoPulse {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(36, 124, 255, 0.25) inset,
      0 8px 20px -8px rgba(0, 0, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 0 2px rgba(36, 124, 255, 0.45) inset,
      0 14px 28px -8px rgba(36, 124, 255, 0.25);
  }
}

/* Attractive Nav Hover */
.navbar-nav {
  position: relative;
}
.nav-ink {
  background: linear-gradient(90deg, #39a0ff, #7bc6ff 45%, #247cff);
  border-radius: 2px;
  bottom: 6px;
  box-shadow: 0 0 18px rgba(36, 124, 255, 0.35);
  height: 2px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: left 0.34s cubic-bezier(0.2, 0.7, 0, 1),
    width 0.34s cubic-bezier(0.2, 0.7, 0, 1), opacity 0.2s;
  width: 0;
}
.nav-link {
  color: #cfd3d8 !important;
  opacity: 0.85;
  padding: 0.65rem 0.4rem;
  position: relative;
  transition: opacity 0.22s ease, transform 0.22s ease, text-shadow 0.22s ease;
}
.nav-link:hover {
  opacity: 1;
  text-shadow: 0 0 18px rgba(58, 160, 255, 0.25);
  transform: translateY(-1px);
}
.nav-link::after {
  background: linear-gradient(90deg, #2a84ff, #39a0ff);
  border-radius: 2px;
  bottom: 6px;
  content: "";
  height: 2px;
  left: 12%;
  opacity: 0.9;
  position: absolute;
  right: 12%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
}

/* Buttons */
.btn-cta,
.btn-primary {
  --btn-shadow: var(--glow);
  border-radius: 14px;
  box-shadow: var(--btn-shadow);
  isolation: isolate;
  overflow: hidden;
  padding: 0.65rem 1.05rem;
  position: relative;
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.22s,
    filter 0.22s, background 0.22s, border-color 0.22s;
}
.btn-primary {
  background: linear-gradient(135deg, #2a84ff, #1d6dff 45%, #3aa0ff 100%);
  border-color: #2a84ff;
}
.btn-cta:hover,
.btn-primary:hover {
  box-shadow: 0 16px 36px -10px var(--button-glow);
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.btn-cta::after,
.btn-primary::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 45%,
    transparent 60%
  );
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}
.btn-cta:hover::after,
.btn-primary:hover::after {
  transform: translateX(130%);
}
.btn-cta:active,
.btn-primary:active {
  box-shadow: 0 6px 18px -6px var(--button-glow);
  transform: translateY(0);
  transition-duration: 0.08s;
}

/* HERO (animated background layers) */
.hero {
  background: radial-gradient(
    1200px 1200px at 50% 45%,
    #0f151f,
    var(--panel) 45%,
    var(--bg) 75%
  );
  isolation: isolate;
  overflow: hidden;
  position: relative;
  padding: 10rem 0;
}
.hero-pad {
  padding-bottom: clamp(4rem, 10vw, 8rem);
  padding-top: clamp(4rem, 8vw, 7rem);
  position: relative;
  z-index: 5;
}

/* dotted grid – faster drift (12s) */
.hero::before {
  animation: gridDrift 12s linear infinite;
  background-image: radial-gradient(
    rgba(36, 124, 255, 0.2) 1px,
    transparent 1.2px
  );
  background-position: center 20%;
  background-size: 26px 26px;
  content: "";
  inset: 0;
  -webkit-mask-image: radial-gradient(
    closest-side,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0) 75%
  );
  mask-image: radial-gradient(
    closest-side,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0) 75%
  );
  opacity: 0.35;
  position: absolute;
  z-index: 1;
}
@keyframes gridDrift {
  0% {
    background-position: 50% 20%;
  }
  100% {
    background-position: 60% 30%;
  }
}

/* rotating conic beam – faster (12s) */
.hero::after {
  animation: beamSpin 12s linear infinite;
  background: conic-gradient(
    from 0deg,
    transparent 0 65%,
    rgba(36, 124, 255, 0.12) 70%,
    transparent 75% 100%
  );
  content: "";
  filter: blur(50px);
  inset: -40%;
  position: absolute;
  z-index: 0;
}
@keyframes beamSpin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* AURORA BLOBS – faster */
.aurora {
  filter: blur(50px) saturate(120%);
  inset: -10%;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.aurora span {
  animation: drift 16s ease-in-out infinite;
  aspect-ratio: 1/1;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(90, 170, 255, 0.45),
    rgba(36, 124, 255, 0.18) 45%,
    transparent 70%
  );
  border-radius: 50%;
  max-width: 680px;
  opacity: 0.28;
  position: absolute;
  width: 40vw;
}
.aurora .a1 {
  animation-duration: 12s;
  left: -8%;
  top: -8%;
}
.aurora .a2 {
  animation-duration: 14s;
  bottom: -12%;
  right: -4%;
}
.aurora .a3 {
  animation-duration: 16s;
  max-width: 520px;
  opacity: 0.22;
  right: 20%;
  top: 10%;
  width: 32vw;
}
@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(2%, -3%) scale(1.06) rotate(10deg);
  }
}

/* ORBS – faster float (6–7s) */
.orb {
  animation: floaty 8s ease-in-out infinite;
  aspect-ratio: 1/1;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(58, 160, 255, 0.65),
    rgba(36, 124, 255, 0.18) 40%,
    rgba(36, 124, 255, 0.08) 60%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(6px) saturate(120%);
  opacity: 0.28;
  position: absolute;
  transform: translateZ(0);
  width: clamp(220px, 24vw, 360px);
  will-change: transform;
  z-index: 3;
}
.orb.orb-1 {
  animation-duration: 6s;
  left: -60px;
  top: -60px;
}
.orb.orb-2 {
  animation-duration: 7s;
  bottom: -80px;
  right: -40px;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-18px) translateX(8px);
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0, 1);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 {
  transition-delay: 0.08s;
}
.reveal.delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 991.98px) {
  .navbar {
    background: rgba(14, 17, 22, 0.9);
  }
  .orb {
    opacity: 0.22;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Scoped to this section */
.vision-section {
  background: radial-gradient(
      1400px 900px at 70% 20%,
      rgba(36, 124, 255, 0.06),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
}
.vision-card {
  background: linear-gradient(180deg, #181b21, #12151a);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* LEFT: Illustration panel */
.vision-art {
  background: #1a1e25;
  border-bottom-left-radius: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-top-left-radius: 18px;
  isolation: isolate;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}
/* dotted grid drift */
.vision-art::before {
  animation: visionDots 12s linear infinite;
  background-image: radial-gradient(
    rgba(36, 124, 255, 0.24) 1.1px,
    transparent 1.3px
  );
  background-size: 20px 20px;
  content: "";
  inset: 0;
  opacity: 0.35;
  position: absolute;
  transform: translateZ(0);
  z-index: 0;
}
@keyframes visionDots {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 40px;
  }
}

/* soft pulse glow ring */
.vision-glow {
  animation: ring 3.6s ease-in-out infinite;
  background: radial-gradient(
    circle,
    rgba(60, 140, 255, 0.28),
    rgba(60, 140, 255, 0) 60%
  );
  border-radius: 50%;
  filter: blur(18px);
  height: 420px;
  inset: auto;
  left: -120px;
  pointer-events: none;
  position: absolute;
  top: -120px;
  width: 420px;
  z-index: 0;
}
@keyframes ring {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.12);
  }
}

.vision-illustration {
  animation: bob 3.8s ease-in-out infinite;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.55));
  position: relative;
  width: 100%;
  z-index: 1;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* RIGHT: content */
.vision-title {
  font-weight: 600;
  letter-spacing: 0.2px;
}
.vision-muted {
  color: var(--muted);
}

/* Index badge with pulse + sheen */
.vision-index {
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  box-shadow: inset 0 -6px 20px rgba(0, 0, 0, 0.25);
  color: #dfe7ff;
  display: flex;
  flex: 0 0 48px;
  font-weight: 600;
  height: 48px;
  isolation: isolate;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 48px;
}
.vision-index::before {
  animation: pulseGlow 2.6s ease-in-out infinite;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(58, 160, 255, 0.35),
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -2px;
  opacity: 0.18;
  position: absolute;
}
.vision-index::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 70%
  );
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.d-flex:hover .vision-index::after {
  transform: translateX(130%);
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.08);
  }
}

/* Animated divider sweep */
.vision-divider {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  height: 1px;
  overflow: hidden;
  position: relative;
}
.vision-divider::after {
  background: linear-gradient(
    90deg,
    rgba(58, 160, 255, 0.9),
    rgba(58, 160, 255, 0)
  );
  content: "";
  inset: 0 0 0 auto;
  position: absolute;
  transition: width 0.9s ease 0.05s;
  width: 0%;
}
.vision-divider.reveal.show::after {
  width: 100%;
}

/* reveal (fallback if your global .reveal is absent) */
.vision-section .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}
.vision-section .reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .vision-art {
    border-radius: 18px 18px 0 0;
    border-right: none;
    min-height: 320px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vision-art::before,
  .vision-glow,
  .vision-illustration,
  .vision-index::before,
  .vision-index::after,
  .vision-divider::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Scoped to this section only */
.process-intro {
  background: var(--bg);
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
}
/* subtle dark grid like the reference */
.process-intro::before {
  animation: gridSlide 12s linear infinite;
  background: linear-gradient(transparent 31px, rgba(255, 255, 255, 0.035) 32px)
      0 0 / 100% 32px,
    linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.035) 32px) 0
      0 / 32px 100%;
  content: "";
  inset: 0;
  -webkit-mask-image: radial-gradient(
    1200px 600px at 50% 20%,
    #000 55%,
    transparent 75%
  );
  mask-image: radial-gradient(
    1200px 600px at 50% 20%,
    #000 55%,
    transparent 75%
  );
  opacity: 0.35;
  position: absolute;
  z-index: 0;
}
@keyframes gridSlide {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 32px, 32px 0;
  }
}

.process-intro .lead {
  color: var(--muted);
  max-width: 980px;
}

/* headline treatment */
.process-title {
  letter-spacing: 0.2px;
  line-height: 1.06;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}
.process-title .accent {
  display: block;
  opacity: 0.9;
}

/* spacing helpers */
.py-lg-6 {
  padding-bottom: 6rem !important;
  padding-top: 6rem !important;
}

@media (max-width: 991.98px) {
  .process-title {
    font-size: clamp(2rem, 5.8vw, 3rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .process-intro::before {
    animation: none !important;
  }
}

/* scoped to this section only */
.features-section {
  background: radial-gradient(
      1200px 800px at 80% -10%,
      rgba(36, 124, 255, 0.06),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  position: relative;
  padding-bottom: 5rem;
}
.feature-card {
  background: linear-gradient(180deg, #1a1e25, #12161b);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.65);
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  padding: 1.6rem;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s,
    border-color 0.35s, background 0.35s;
}
.feature-card:hover {
  background: linear-gradient(180deg, #1c2129, #131820);
  border-color: rgba(58, 160, 255, 0.25);
  box-shadow: 0 34px 80px -36px rgba(36, 124, 255, 0.35);
  transform: translateY(-6px);
}
/* subtle shine on hover */
.feature-card::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.8s ease;
}
.feature-card:hover::after {
  transform: translateX(130%);
}

/* decorative dotted layer */
.feature-dots {
  animation: fdots 10s linear infinite;
  background-image: radial-gradient(
    rgba(140, 170, 210, 0.45) 1px,
    transparent 1.2px
  );
  background-size: 18px 18px;
  inset: 0;
  -webkit-mask-image: radial-gradient(
    600px 320px at 30% 20%,
    #000 55%,
    transparent 75%
  );
  mask-image: radial-gradient(
    600px 320px at 30% 20%,
    #000 55%,
    transparent 75%
  );
  opacity: 0.18;
  position: absolute;
  z-index: 0;
}
@keyframes fdots {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 36px 36px;
  }
}

/* icon bubble */
.feature-icon {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.25);
  display: grid;
  height: 56px;
  margin-bottom: 1rem;
  place-items: center;
  width: 56px;
  z-index: 1;
}
.feature-icon svg {
  height: 28px;
  width: 28px;
}

.feature-title {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.feature-text {
  color: var(--muted);
}

/* small stat chip used in analytics card */
.stat-chip {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.25);
  color: #e9f0ff;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
}

/* keep cards equal height */
.h-100 {
  height: 100% !important;
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .feature-card::after {
    transition: none !important;
  }
  .feature-dots {
    animation: none !important;
  }
}

/* Scoped to this section */
.why-section {
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  position: relative;
}
.why-wrap {
  background: linear-gradient(180deg, #181b21, #12151a);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* LEFT column */
.why-copy {
  background: radial-gradient(
      1200px 800px at 0% -10%,
      rgba(36, 124, 255, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.75rem);
}
.why-title {
  letter-spacing: 0.2px;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

.why-item {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s;
}
.why-item:hover {
  transform: translateX(4px);
}

.why-num {
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.25);
  color: #e9f0ff;
  display: flex;
  flex: 0 0 42px;
  font-weight: 700;
  height: 42px;
  isolation: isolate;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 42px;
}
/* subtle glow pulse + sheen */
.why-num::before {
  animation: pulseGlow 2.6s ease-in-out infinite;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(58, 160, 255, 0.35),
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -2px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.why-item:hover .why-num::before {
  opacity: 0.5;
}
.why-num::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 70%
  );
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.why-item:hover .why-num::after {
  transform: translateX(130%);
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.08);
  }
}

.why-item .h6 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.why-muted {
  color: var(--muted);
}

.why-divider {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  height: 1px;
  margin: 1.25rem 0 1.35rem;
  overflow: hidden;
  position: relative;
}
/* animated sweep when revealed */
.why-divider::after {
  background: linear-gradient(
    90deg,
    rgba(58, 160, 255, 0.9),
    rgba(58, 160, 255, 0)
  );
  content: "";
  inset: 0 0 0 auto;
  position: absolute;
  transition: width 0.9s ease 0.05s;
  width: 0%;
}
.why-divider.reveal.show::after {
  width: 100%;
}

/* RIGHT column art */
.why-art {
  background: #1a1e25;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 420px;
  overflow: hidden;
  position: relative;
}
/* drifting dotted field */
.why-art::before {
  animation: whyDots 8s linear infinite;
  background-image: radial-gradient(
    rgba(36, 124, 255, 0.24) 1.1px,
    transparent 1.3px
  );
  background-size: 20px 20px;
  content: "";
  inset: 0;
  opacity: 0.35;
  position: absolute;
  z-index: 0;
}
@keyframes whyDots {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 40px;
  }
}

/* big link glyph + soft pulse ring */
.link-glyph {
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  z-index: 1;
}
.link-glyph svg {
  animation: bob 3.8s ease-in-out infinite;
  filter: drop-shadow(0 24px 50px rgba(36, 124, 255, 0.18));
  height: auto;
  width: min(52vw, 520px);
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(-6px);
  }
}
.glyph-pulse {
  animation: ring 3.6s ease-in-out infinite;
  background: radial-gradient(
    circle,
    rgba(36, 124, 255, 0.18),
    rgba(36, 124, 255, 0) 60%
  );
  border-radius: 50%;
  filter: blur(22px);
  height: 420px;
  pointer-events: none;
  position: absolute;
  width: 420px;
  z-index: 0;
}
@keyframes ring {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.12);
  }
}

/* Section-scoped reveal fallback (uses your global .reveal/.show if present) */
.why-section .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}
.why-section .reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .why-art {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 320px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .why-art::before,
  .link-glyph svg,
  .glyph-pulse,
  .why-num::before,
  .why-num::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Scoped to this section */
.process-steps {
  background: radial-gradient(
      1200px 800px at 80% -10%,
      rgba(36, 124, 255, 0.06),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
}
/* soft moving grid backdrop */
.process-steps::before {
  animation: psGrid 10s linear infinite;
  background: linear-gradient(transparent 31px, rgba(255, 255, 255, 0.035) 32px)
      0 0 / 100% 32px,
    linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.035) 32px) 0
      0 / 32px 100%;
  content: "";
  inset: 0;
  -webkit-mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  opacity: 0.25;
  position: absolute;
  z-index: 0;
}
@keyframes psGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 32px, 32px 0;
  }
}

.process-steps .lead {
  color: var(--muted);
}

/* headline */
.process-title {
  letter-spacing: 0.2px;
  line-height: 1.06;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

/* cards */
.step-card {
  background: linear-gradient(180deg, #1a1e25, #12161b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.65);
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  padding: 1.6rem 1.6rem 1.5rem 1.6rem;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s,
    border-color 0.35s, background 0.35s;
  z-index: 1;
}
/* animated border glow */
.step-card::before {
  background: radial-gradient(
      240px 120px at -10% 0%,
      rgba(36, 124, 255, 0.22),
      transparent 60%
    ),
    radial-gradient(
      200px 140px at 110% 120%,
      rgba(58, 160, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  border-radius: inherit;
  content: "";
  filter: blur(0px);
  inset: -1px;
  opacity: 0.55;
  position: absolute;
  transition: opacity 0.35s ease;
  z-index: 0;
}
/* shine sweep */
.step-card::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.8s ease;
  z-index: 1;
}
.step-card:hover {
  background: linear-gradient(180deg, #1c2129, #131820);
  border-color: rgba(58, 160, 255, 0.25);
  box-shadow: 0 34px 80px -36px rgba(36, 124, 255, 0.35);
  transform: translateY(-6px) !important;
}
.step-card:hover::after {
  transform: translateX(130%);
}

.step-badge {
  align-items: center;
  animation: popIn 0.7s cubic-bezier(0.2, 0.7, 0, 1) both;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.25);
  color: #e9f0ff;
  display: flex;
  font-weight: 700;
  height: 56px;
  isolation: isolate;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  width: 56px;
  z-index: 2;
}
/* staggered badge pop by data-step */
.step-badge[data-step="1"] {
  animation-delay: 0.05s;
}
.step-badge[data-step="2"] {
  animation-delay: 0.15s;
}
.step-badge[data-step="3"] {
  animation-delay: 0.25s;
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* pulse ring + sheen on hover */
.step-badge::before {
  animation: pulseGlow 2.4s ease-in-out infinite;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(58, 160, 255, 0.35),
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -6px;
  opacity: 0.18;
  position: absolute;
}
.step-badge::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.step-card:hover .step-badge::after {
  transform: translateX(130%);
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.1);
  }
}

.step-title {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.step-text {
  color: var(--muted);
}

/* reveal fallback (works with your global IO too) */
.process-steps .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}
.process-steps .reveal.show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .process-steps::before,
  .step-card,
  .step-card::after,
  .step-badge,
  .step-badge::before,
  .step-badge::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Scoped to this section only */
.benefits-section {
  background: radial-gradient(
      1200px 800px at 20% -10%,
      rgba(36, 124, 255, 0.06),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
}
/* subtle moving grid */
.benefits-section::before {
  animation: bGrid 10s linear infinite;
  background: linear-gradient(transparent 31px, rgba(255, 255, 255, 0.035) 32px)
      0 0 / 100% 32px,
    linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.035) 32px) 0
      0 / 32px 100%;
  content: "";
  inset: 0;
  -webkit-mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  opacity: 0.22;
  position: absolute;
  z-index: 0;
}
@keyframes bGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 32px, 32px 0;
  }
}

.benefits-title {
  letter-spacing: 0.2px;
  line-height: 1.06;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

/* Cards */
.benefit-card {
  background: linear-gradient(180deg, #1a1e25, #12161b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.65);
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  padding: 1.6rem 1.6rem 1.5rem 1.6rem;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s,
    border-color 0.35s, background 0.35s;
  z-index: 1;
}
.benefit-card:hover {
  background: linear-gradient(180deg, #1c2129, #131820);
  border-color: rgba(58, 160, 255, 0.25);
  box-shadow: 0 34px 80px -36px rgba(36, 124, 255, 0.35);
  transform: translateY(-6px) !important;
}
/* shine sweep */
.benefit-card::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.8s ease;
  z-index: 1;
}
.benefit-card:hover::after {
  transform: translateX(130%);
}

/* Icon bubble + animated ring */
.icon-bubble {
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.25);
  color: #e9f0ff;
  display: flex;
  height: 56px;
  isolation: isolate;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  width: 56px;
  z-index: 2;
}
.icon-bubble svg {
  height: 26px;
  width: 26px;
}
.icon-bubble::before {
  animation: pulseGlow 2.6s ease-in-out infinite;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(58, 160, 255, 0.28),
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -10px;
  position: absolute;
  z-index: -1;
}
.icon-bubble::after {
  animation: ringSpin 6s linear infinite;
  background: conic-gradient(
    from 0deg,
    rgba(58, 160, 255, 0.25),
    transparent 40%,
    rgba(58, 160, 255, 0.25)
  );
  border-radius: inherit;
  content: "";
  filter: blur(10px);
  inset: -1px;
  mix-blend-mode: screen;
  opacity: 0.5;
  position: absolute;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.1);
  }
}
@keyframes ringSpin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.benefit-title {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.benefit-text {
  color: var(--muted);
}

/* Reveal fallback (works with your global IO too) */
.benefits-section .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}
.benefits-section .reveal.show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .benefits-section::before,
  .benefit-card,
  .benefit-card::after,
  .icon-bubble::before,
  .icon-bubble::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Scoped to this section only */
.testimonials-section {
  background: radial-gradient(
      1200px 800px at 50% -10%,
      rgba(36, 124, 255, 0.06),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
}
/* soft moving grid */
.testimonials-section::before {
  animation: tGrid 10s linear infinite;
  background: linear-gradient(transparent 31px, rgba(255, 255, 255, 0.035) 32px)
      0 0 / 100% 32px,
    linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.035) 32px) 0
      0 / 32px 100%;
  content: "";
  inset: 0;
  -webkit-mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  opacity: 0.22;
  position: absolute;
  z-index: 0;
}
@keyframes tGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 32px, 32px 0;
  }
}

.testimonials-title {
  letter-spacing: 0.2px;
  line-height: 1.06;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

/* Cards */
.testimonial-card {
  background: linear-gradient(180deg, #1a1e25, #12161b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.65);
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  padding: 1.1rem 1.25rem;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s,
    border-color 0.35s, background 0.35s;
  z-index: 1;
}
.testimonial-card:hover {
  background: linear-gradient(180deg, #1c2129, #131820);
  border-color: rgba(58, 160, 255, 0.25);
  box-shadow: 0 34px 80px -36px rgba(36, 124, 255, 0.35);
  transform: translateY(-6px) !important;
}
/* shine sweep */
.testimonial-card::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.8s ease;
  z-index: 1;
}
.testimonial-card:hover::after {
  transform: translateX(130%);
}

/* Header (avatar + name/role) */
.t-head {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.t-avatar {
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  flex: 0 0 44px;
  height: 44px;
  overflow: hidden;
  position: relative;
  width: 44px;
}
.t-avatar img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
/* animated ring */
.t-avatar::after {
  animation: ringSpin 6s linear infinite;
  background: conic-gradient(
    from 0deg,
    rgba(58, 160, 255, 0.4),
    transparent 40%,
    rgba(58, 160, 255, 0.4)
  );
  border-radius: inherit;
  content: "";
  filter: blur(8px);
  inset: -3px;
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
}
@keyframes ringSpin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.t-name {
  font-weight: 700;
}
.t-role {
  color: var(--muted);
  font-size: 0.9rem;
}

.t-quote {
  color: #d1d6de;
}
.t-muted {
  color: var(--muted);
}

/* Reveal fallback (works with your global IO too) */
.testimonials-section .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}
.testimonials-section .reveal.show {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.delay-4 {
  transition-delay: 0.32s;
}
.delay-5 {
  transition-delay: 0.4s;
}
.delay-6 {
  transition-delay: 0.48s;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-section::before,
  .testimonial-card,
  .testimonial-card::after,
  .t-avatar::after {
    animation: none !important;
    transition: none !important;
  }
}

.prototype-section {
  background: #0c0c0c;
}

/* Scoped to this section only */
.insights-section {
  background: radial-gradient(
      1200px 800px at 60% -10%,
      rgba(36, 124, 255, 0.06),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
}
/* soft moving grid behind */
.insights-section::before {
  animation: ibGrid 10s linear infinite;
  background: linear-gradient(transparent 31px, rgba(255, 255, 255, 0.035) 32px)
      0 0 / 100% 32px,
    linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.035) 32px) 0
      0 / 32px 100%;
  content: "";
  inset: 0;
  -webkit-mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  opacity: 0.22;
  position: absolute;
  z-index: 0;
}
@keyframes ibGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 32px, 32px 0;
  }
}

.insights-title {
  letter-spacing: 0.2px;
  line-height: 1.06;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

.article-card {
  background: linear-gradient(180deg, #25292f, #191d22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s,
    border-color 0.35s, background 0.35s;
  z-index: 1;
}
.article-card:hover {
  background: linear-gradient(180deg, #2a2f36, #1a1f26);
  border-color: rgba(58, 160, 255, 0.25);
  box-shadow: 0 34px 80px -36px rgba(36, 124, 255, 0.35);
  transform: translateY(-6px);
}
/* shine sweep */
.article-card::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  z-index: 1;
}
.article-card:hover::after {
  transform: translateX(130%);
}

/* media area */
.article-media {
  aspect-ratio: 16 / 9;
  background: radial-gradient(
    800px 500px at 20% -10%,
    rgba(36, 124, 255, 0.15),
    transparent 60%
  );
  overflow: hidden;
  position: relative;
}
.article-media::before {
  animation: lines 7s linear infinite;
  background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.045) 0 1px,
      transparent 1px 6px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.045) 0 1px,
      transparent 1px 6px
    );
  content: "";
  inset: 0;
  opacity: 0.25;
  position: absolute;
  transform: translateZ(0);
  z-index: 0;
}
@keyframes lines {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 120px 0, 0 120px;
  }
}

.article-body {
  padding: 1.25rem 1.35rem 1.35rem 1.35rem;
}

.article-title {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.article-text {
  color: var(--muted);
}

/* SVG animations (apply to any SVG inside .article-media) */
.insight-figure .arrow {
  animation: arrowBob 2.2s ease-in-out infinite;
  filter: drop-shadow(0 6px 10px rgba(36, 124, 255, 0.35));
  transform-origin: center;
}
@keyframes arrowBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.insight-figure .pulse {
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.insight-figure .bar-anim {
  animation: growBar 2.6s ease-in-out infinite;
  transform-origin: left center;
}
.insight-figure .bar-anim.delay {
  animation-delay: 0.6s;
}
@keyframes growBar {
  0% {
    transform: scaleX(0.6);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0.6);
  }
}

.insight-figure .gauge-arc {
  stroke-dasharray: 220;
  stroke-dashoffset: 140;
  animation: gauge 3.2s ease-in-out infinite;
}
.insight-figure .gauge-arc.alt {
  stroke-dasharray: 220;
  stroke-dashoffset: 176;
  animation-delay: 0.4s;
}
@keyframes gauge {
  0% {
    stroke-dashoffset: 176;
  }
  50% {
    stroke-dashoffset: 120;
  }
  100% {
    stroke-dashoffset: 176;
  }
}

/* reveal fallback (works with your global IO too) */
.insights-section .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}
.insights-section .reveal.show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .insights-section::before,
  .article-card,
  .article-card::after,
  .article-media::before,
  .insight-figure .arrow,
  .insight-figure .pulse,
  .insight-figure .bar-anim,
  .insight-figure .gauge-arc {
    animation: none !important;
    transition: none !important;
  }
}

/* Scoped to this section only */
.faq-section {
  background: radial-gradient(
      1200px 800px at 40% -10%,
      rgba(36, 124, 255, 0.06),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
}
/* subtle moving grid */
.faq-section::before {
  animation: faqGrid 10s linear infinite;
  background: linear-gradient(transparent 31px, rgba(255, 255, 255, 0.035) 32px)
      0 0 / 100% 32px,
    linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.035) 32px) 0
      0 / 32px 100%;
  content: "";
  inset: 0;
  -webkit-mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  opacity: 0.22;
  position: absolute;
  z-index: 0;
}
@keyframes faqGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 32px, 32px 0;
  }
}

.faq-title {
  letter-spacing: 0.2px;
  line-height: 1.06;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

/* Accordion cards */
.faq-accordion .accordion-item {
  background: transparent;
  border: 0;
  margin-bottom: 1rem;
}
.faq-card {
  background: linear-gradient(180deg, #1a1e25, #12161b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.65);
  isolation: isolate;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s,
    border-color 0.35s, background 0.35s;
  z-index: 1;
}
.faq-card:hover {
  background: linear-gradient(180deg, #1c2129, #131820);
  border-color: rgba(58, 160, 255, 0.25);
  box-shadow: 0 34px 80px -36px rgba(36, 124, 255, 0.35);
  transform: translateY(-4px);
}
.faq-card::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.8s ease;
  z-index: 1;
}
.faq-card:hover::after {
  transform: translateX(130%);
}

/* Header row */
.faq-button {
  align-items: center;
  background: none;
  border: 0;
  color: var(--text);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  text-align: left;
  width: 100%;
}
.faq-question {
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Toggle bubble + plus/minus */
.faq-icon {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.25);
  flex: 0 0 42px;
  height: 42px;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease;
  width: 42px;
}
.faq-icon::before,
.faq-icon::after {
  background: #fff;
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
}
/* vertical bar (only visible when collapsed = plus) */
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.2s ease;
}
.faq-button:not(.collapsed) .faq-icon::after {
  opacity: 0;
} /* minus */
.faq-button:hover .faq-icon {
  transform: scale(1.05);
}

/* body text */
.accordion-body {
  animation: fadeIn 0.35s ease both;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  padding: 0 1.25rem 1.25rem 1.25rem;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* reveal fallback (also works with your global observer) */
.faq-section .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}
.faq-section .reveal.show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .faq-section::before,
  .faq-card::after {
    animation: none !important;
  }
  .faq-card,
  .faq-button,
  .accordion-body {
    transition: none !important;
  }
}

/* Scoped to this section only */
.contact-section {
  background: radial-gradient(
      1400px 900px at 75% -10%,
      rgba(36, 124, 255, 0.06),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
}
/* subtle moving grid */
.contact-section::before {
  animation: cGrid 10s linear infinite;
  background: linear-gradient(transparent 31px, rgba(255, 255, 255, 0.035) 32px)
      0 0 / 100% 32px,
    linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.035) 32px) 0
      0 / 32px 100%;
  content: "";
  inset: 0;
  -webkit-mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  opacity: 0.22;
  position: absolute;
  z-index: 0;
}
@keyframes cGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 32px, 32px 0;
  }
}

.contact-heading {
  letter-spacing: 0.2px;
  line-height: 1.06;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}
.contact-sub {
  color: #bfc6cf;
  opacity: 0.85;
}

/* Rating */
.rating {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  margin: 1.25rem 0 0 0;
  padding: 0;
}
.star {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
  height: 30px;
  padding: 0;
  place-items: center;
  transition: transform 0.18s ease;
  width: 30px;
}
.star:hover {
  transform: translateY(-2px) scale(1.06);
}
.star svg {
  height: 22px;
  width: 22px;
}
.star .fill {
  fill: #ffd34d;
} /* active color */
.star .line {
  stroke: #ffd34d;
} /* border */
.star.inactive .fill {
  fill: #3a3f47;
} /* inactive */
.star.inactive .line {
  stroke: #808995;
}

/* Card */
.contact-card {
  backdrop-filter: saturate(115%);
  background: linear-gradient(180deg, #1a1e25, #12161b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 28px 64px -30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s,
    border-color 0.35s, background 0.35s;
  z-index: 1;
}
.contact-card:hover {
  background: linear-gradient(180deg, #1c2129, #141820);
  border-color: rgba(58, 160, 255, 0.25);
  box-shadow: 0 36px 88px -36px rgba(36, 124, 255, 0.35);
  transform: translateY(-4px);
}
.contact-card::before {
  background: radial-gradient(
      260px 160px at -10% -10%,
      rgba(36, 124, 255, 0.22),
      transparent 60%
    ),
    radial-gradient(
      220px 160px at 110% 120%,
      rgba(58, 160, 255, 0.18),
      transparent 60%
    );
  border-radius: inherit;
  content: "";
  inset: -1px;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
/* shine sweep */
.contact-card::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  z-index: 1;
}
.contact-card:hover::after {
  transform: translateX(130%);
}

/* Inputs */
.contact-form .form-label {
  color: #dfe5ee;
  font-weight: 600;
}
.contact-form .form-control {
  background: #12161c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #e8edf6;
  padding: 0.85rem 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form .form-control::placeholder {
  color: #8f96a1;
}
.contact-form .form-control:focus {
  background: #0f141a;
  border-color: rgba(36, 124, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(36, 124, 255, 0.22),
    0 14px 36px -12px rgba(36, 124, 255, 0.28);
  outline: 0;
}
.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-check-input {
  background: #0f1319;
  border-color: rgba(255, 255, 255, 0.2);
}
.contact-form .form-check-input:checked {
  background: linear-gradient(135deg, #2a84ff, #1d6dff);
  border-color: #2a84ff;
  box-shadow: 0 0 0 3px rgba(36, 124, 255, 0.22);
}

.contact-submit {
  border-radius: 14px;
  box-shadow: 0 14px 28px -12px rgba(36, 124, 255, 0.35);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-submit:hover {
  box-shadow: 0 24px 48px -18px rgba(36, 124, 255, 0.4);
  transform: translateY(-2px);
}
.contact-submit::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.contact-submit:hover::after {
  transform: translateX(130%);
}

/* reveal fallback (works with your global observer too) */
.contact-section .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}
.contact-section .reveal.show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .contact-section::before,
  .contact-card::after {
    animation: none !important;
  }
  .contact-card,
  .contact-submit {
    transition: none !important;
  }
}

/* Scoped to this footer only */
.site-footer {
  background: radial-gradient(
      1400px 900px at 15% -10%,
      rgba(36, 124, 255, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, #0e1217, #0b0d10);
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
  padding-top: 3rem;
}

/* drifting soft grid */
.site-footer::before {
  animation: fGrid 10s linear infinite;
  background: linear-gradient(transparent 31px, rgba(255, 255, 255, 0.035) 32px)
      0 0 / 100% 32px,
    linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.035) 32px) 0
      0 / 32px 100%;
  content: "";
  inset: 0;
  -webkit-mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  mask-image: radial-gradient(
    1400px 700px at 50% 0%,
    #000 55%,
    transparent 75%
  );
  opacity: 0.18;
  position: absolute;
  z-index: 0;
}

@keyframes fGrid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 32px, 32px 0;
  }
}

.footer-brand svg {
  display: block;
  height: 34px;
  width: auto;
}

.footer-text {
  color: var(--muted);
}

/* Newsletter */
.newsletter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-input {
  background: #12161c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #e8edf6 !important;
  flex: 1 1 320px;
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-input::placeholder {
  color: #8f96a1;
}

.footer-input:focus {
  background: #0f141a;
  border-color: rgba(36, 124, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(36, 124, 255, 0.22),
    0 14px 36px -12px rgba(36, 124, 255, 0.28);
  outline: 0;
}

.footer-submit {
  border-radius: 14px;
  box-shadow: 0 14px 28px -12px rgba(36, 124, 255, 0.35);
  font-weight: 600;
  overflow: hidden;
  padding: 0.9rem 1.4rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-submit:hover {
  box-shadow: 0 24px 48px -18px rgba(36, 124, 255, 0.4);
  transform: translateY(-2px);
}

.footer-submit::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  border-radius: inherit;
  content: "";
  inset: -1px;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.footer-submit:hover::after {
  transform: translateX(130%);
}

/* link column */
.footer-nav .nav-link {
  color: #cfd3d8;
  font-size: 16px;
  opacity: 0.85;
  padding: 0.2rem 0;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s;
}

.footer-nav .nav-link:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* divider */
.footer-line {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  height: 1px;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  overflow: hidden;
  position: relative;
}

.footer-line::after {
  background: #2c2c2c;
  content: "";
  inset: 0 0 0 auto;
  position: absolute;
  transition: width 0.9s ease 0.05s;
  width: 0%;
}

.footer-line.reveal.show::after {
  width: 100%;
}

.footer-nav .nav-link::after {
  bottom: 0px;
  left: 0;
}

.copyright {
  color: #a9b0ba;
}

/* reveal fallback (works with global IO if you already use it) */
.site-footer .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}

.site-footer .reveal.show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer::before,
  .footer-submit::after {
    animation: none !important;
  }

  .footer-submit,
  .footer-input,
  .footer-nav .nav-link {
    transition: none !important;
  }
}
