#hero,
#hero *,
#hero *::before,
#hero *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #00c4b3;
  --teal-2: #00e5d2;
  --teal-dark: #009b8d;
  --teal-glow: rgba(0, 196, 179, 0.18);
  --teal-glow-strong: rgba(0, 196, 179, 0.4);
  --bg: #050c0b;
  --bg-2: #071210;
  --ink-soft: rgba(0, 0, 0, 0.55);
  --ink-muted: rgba(255, 255, 255, 0.28);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(0, 196, 179, 0.15);
  --card-border-hover: rgba(0, 196, 179, 0.45);
  --green: #22c55e;
  --amber: #fbbf24;
  --font-head: "DM Sans", sans-serif;
  /* --font-head: "Sora", sans-serif; */
  --font-body: "DM Sans", sans-serif;
}

/* Override styles.css scroll-behavior: smooth — it conflicts with
   scroll-linked animations (Motion library) causing stutter/hitching.
   Smooth anchor scrolling is handled via JS scrollIntoView(). */
html {
  scroll-behavior: auto !important;
}

/* ─── CUSTOM CURSOR ─── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  transition:
    width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.3s ease,
    opacity 0.3s ease;
  mix-blend-mode: difference;
}
#cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  transition:
    width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.3s ease,
    background-color 0.3s ease;
  mix-blend-mode: difference;
}
#cursor.hovered {
  width: 0px;
  height: 0px;
  opacity: 0;
}
#cursor-trail.hovered {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 196, 179, 0.25);
}

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

/* ─── ANIMATED GRID ─── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.grid-bg svg {
  width: 100%;
  height: 100%;
  opacity: 0.07;
}

/* ─── AURORA BLOBS ─── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.15;
  animation: blob-drift 25s ease-in-out infinite alternate;
  will-change: transform;
}
.blob-1 {
  width: 700px;
  height: 700px;
  background: var(--teal);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: #007a6e;
  bottom: -100px;
  left: -100px;
  animation-delay: -6s;
}
.blob-3 {
  width: 400px;
  height: 400px;
  background: #00e5d2;
  top: 40%;
  left: 40%;
  animation-delay: -12s;
}
@keyframes blob-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(40px, 60px, 0) scale(1.08);
  }
  66% {
    transform: translate3d(-30px, 40px, 0) scale(0.92);
  }
  100% {
    transform: translate3d(20px, -30px, 0) scale(1.04);
  }
}

/* ─── HERO ─── */
#hero .hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 48px;
  padding: 72px 64px 0 60px;
  overflow: hidden;
  background: transparent;
}

/* ─── LEFT COLUMN ─── */
#hero .hero-left {
  position: relative;
  z-index: 2;
}

/* Animated badge */
#hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 196, 179, 0.08);
  border: 1px solid rgba(0, 196, 179, 0.2);
  border-radius: 100px;
  padding: 7px 16px 7px 8px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.6s ease 0.2s forwards;
  cursor: default;
  transition:
    border-color 0.3s,
    background 0.3s;
}
#hero .badge:hover {
  border-color: rgba(0, 196, 179, 0.5);
  background: rgba(0, 196, 179, 0.14);
}
#hero .badge-avatars {
  display: flex;
}
#hero .badge-avatars span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin-left: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: black;
}
#hero .badge-avatars span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}
#hero .badge-avatars span:nth-child(2) {
  background: linear-gradient(135deg, #4ecdc4, #44cf6c);
}
#hero .badge-avatars span:nth-child(3) {
  background: linear-gradient(135deg, #45b7d1, #6c63ff);
}
#hero .badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}
#hero .badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-2);
  letter-spacing: -0.01em;
}

/* Headline */
#hero .hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: black;
  margin-bottom: 24px;
}
#hero .hero-headline .line {
  display: block;
  overflow: hidden;
  height: auto;
  width: 100%;
  background-color: transparent;
}
#hero .hero-headline .line::after,
#hero .hero-headline .line::before {
  display: none;
}
#hero .hero-headline .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
#hero .hero-headline .line:nth-child(1) .line-inner {
  animation-delay: 0.3s;
}
#hero .hero-headline .line:nth-child(2) .line-inner {
  animation-delay: 0.45s;
}
#hero .hero-headline .line:nth-child(3) .line-inner {
  animation-delay: 0.6s;
}

#hero .teal-word {
  background: linear-gradient(135deg, var(--teal-2) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
#hero .teal-word::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-2), var(--teal));
  border-radius: 2px;
  opacity: 0.4;
}

@keyframes slide-up {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero .hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 450px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 0.7s ease 0.8s forwards;
}

/* pill features */
#hero .feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up 0.7s ease 0.9s forwards;
}
#hero .pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(133, 133, 133, 0.1);
  border-radius: 100px;
  padding: 5px 12px 5px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: default;
  transition: all 0.25s ease;
}
#hero .pill:hover {
  background: rgba(0, 196, 179, 0.1);
  border-color: rgba(0, 196, 179, 0.4);
  color: var(--teal-2);
  transform: translateY(-2px);
}
#hero .pill-icon {
  font-size: 14px;
}

#hero .cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fade-up 0.7s ease 1s forwards;
}
#hero .btn-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, white 0%, #e8fffe 100%);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.3s;
  letter-spacing: -0.01em;
}
#hero .btn-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-2) 0%, var(--teal) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
#hero .btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 196, 179, 0.4);
}
#hero .btn-dark:hover::before {
  opacity: 1;
}
#hero .btn-dark:hover .btn-text,
#hero .btn-dark:hover .arrow-box {
  color: black;
}
#hero .btn-text,
#hero .arrow-box {
  position: relative;
  z-index: 1;
}
#hero .arrow-box {
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.25s;
}
#hero .btn-dark:hover .arrow-box {
  transform: translate(3px, -3px);
}
#hero .btn-dark:active {
  transform: scale(0.97);
}

#hero .btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
#hero .btn-outline:hover {
  border-color: var(--teal);
  background: rgba(0, 196, 179, 0.08);
  color: black;
  transform: translateY(-2px);
}

/* Stats row */
#hero .stats-row {
  display: flex;
  gap: 0;
  opacity: 0;
  animation: fade-up 0.7s ease 1.1s forwards;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
}
#hero .stat-item {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  margin-right: 28px;
  cursor: default;
  transition: transform 0.3s;
}
#hero .stat-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
#hero .stat-item:hover {
  transform: translateY(-3px);
}
#hero .stat-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
#hero .stat-number .suffix {
  font-size: 22px;
  font-weight: 700;
}
#hero .stat-label {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 5px;
  line-height: 1.4;
}

/* ─── RIGHT — DASHBOARD ─── */
#hero .hero-right {
  position: relative;
  z-index: 2;
  perspective: 1200px;
  opacity: 0;
  animation: fade-up 0.9s ease 0.5s forwards;
}

#hero .dashboard-scene {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.08s ease-out;
}

/* glow ring behind dashboard */
#hero .dashboard-scene::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(
    ellipse,
    rgba(0, 196, 179, 0.12) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: scene-glow 6s ease-in-out infinite alternate;
}
@keyframes scene-glow {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

#hero .dashboard-main {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: 20px;
  border: 1px solid rgb(223 223 223 / 20%);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition:
    box-shadow 0.4s,
    border-color 0.4s;
}
#hero .dashboard-main:hover {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border-color: rgba(0, 196, 179, 0.35);
}

/* Header bar */
#hero .db-header {
  background: rgb(255 255 255 / 13%);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(163 163 163 / 57%);
}
#hero .db-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
#hero .db-logo-sm {
  width: 78px;
  height: 28px;
  /* background: linear-gradient(135deg, var(--teal-2), var(--teal-dark)); */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .db-logo-sm svg {
  width: 16px;
  height: 16px;
  fill: white;
}
#hero .db-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: black;
}
#hero .db-badge {
  font-size: 11px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 2px 8px;
  border: 1px solid rgb(0 0 0 / 8%);
}
#hero .db-dots {
  display: flex;
  gap: 6px;
}
#hero .db-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
#hero .db-dots span:nth-child(1) {
  background: #ff5f56;
}
#hero .db-dots span:nth-child(2) {
  background: #ffbd2e;
}
#hero .db-dots span:nth-child(3) {
  background: #27c93f;
}

/* DB Body */
#hero .db-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: rgb(241 241 241 / 15%);
}

/* KPI Cards */
#hero .kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
#hero .kpi-card {
  background: rgb(255 255 255);
  border-radius: 11px;
  padding: 10px 12px;
  border: 1px solid rgb(0 196 179 / 25%);
  cursor: default;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s,
    border-color 0.25s,
    background 0.25s;
}
#hero .kpi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 196, 179, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
#hero .kpi-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-2), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#hero .kpi-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 196, 179, 0.15);
  border-color: rgba(0, 196, 179, 0.35);
  background: rgba(0, 196, 179, 0.06);
}
#hero .kpi-card:hover::before {
  opacity: 1;
}
#hero .kpi-card:hover::after {
  transform: scaleX(1);
}
#hero .kpi-label {
  font-size: 9px;
  font-weight: 600;
  color: rgb(14 14 14 / 35%);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
#hero .kpi-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: black;
  letter-spacing: -0.02em;
}
#hero .kpi-change {
  font-size: 9px;
  font-weight: 600;
  color: var(--green);
  margin-top: 2px;
}
#hero .kpi-sparkline {
  height: 22px;
  margin-top: 6px;
}

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

#hero .chart-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 11px;
  padding: 12px;
  border: 1px solid rgba(0, 196, 179, 0.1);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
#hero .chart-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 196, 179, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
#hero .chart-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(0, 196, 179, 0.12);
  border-color: rgba(0, 196, 179, 0.3);
}
#hero .chart-card:hover::before {
  opacity: 1;
}

#hero .funnel-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 11px;
  padding: 12px;
  border: 1px solid rgba(0, 196, 179, 0.1);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: default;
}
#hero .funnel-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(0, 196, 179, 0.1);
}

#hero .chart-title {
  font-size: 10px;
  font-weight: 600;
  color: rgba(19, 19, 19, 0.45);
  margin-bottom: 4px;
}
#hero .chart-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--teal-2);
  letter-spacing: -0.02em;
}
#hero .chart-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 7px;
}
#hero .chart-area {
  height: 56px;
}

#hero .funnel-title {
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 7px;
}
#hero .funnel-item {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
#hero .funnel-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
#hero .funnel-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-2), var(--teal));
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
#hero .funnel-label {
  font-size: 8px;
  color: rgba(0, 0, 0, 0.35);
  min-width: 58px;
}
#hero .funnel-num {
  font-size: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  min-width: 28px;
  text-align: right;
}

/* Bottom row */
#hero .bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
}
#hero .small-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 11px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 196, 179, 0.1);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s,
    border-color 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
#hero .small-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
#hero .small-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 196, 179, 0.12);
  border-color: rgba(0, 196, 179, 0.3);
}
#hero .small-card:hover::after {
  opacity: 1;
}
#hero .small-card-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(36, 36, 36, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}

/* ─── FLOATING CARDS ─── */
#hero .float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 196, 179, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.07) inset;
  z-index: 10;
  min-width: 160px;
  border: 1px solid rgba(0, 196, 179, 0.18);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s,
    border-color 0.3s;
  cursor: default;
}
#hero .float-card:hover {
  transform: scale(1.06) translateY(-4px) !important;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 196, 179, 0.25),
    0 0 0 1px rgba(0, 196, 179, 0.4);
  border-color: rgba(0, 196, 179, 0.45);
}

#hero .float-conversion {
  top: -36px;
  right: -24px;
  animation: float-a 4s ease-in-out infinite;
}
#hero .float-rto {
  bottom: 16px;
  left: -44px;
  animation: float-b 5s ease-in-out infinite;
}
#hero .float-order {
  top: 45%;
  right: -48px;
  animation: float-c 4.5s ease-in-out infinite;
}

@keyframes float-a {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}
@keyframes float-b {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(-1deg);
  }
}
@keyframes float-c {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(0.5deg);
  }
}

#hero .float-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
#hero .float-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
#hero .float-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
}
#hero .float-val.up {
  color: var(--green);
}
#hero .float-val.teal {
  color: var(--teal-2);
}
#hero .float-sub {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.35);
  margin-top: 2px;
}

/* Dashed connector lines */
#hero .connector-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}
#hero .dash-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.5;
  stroke-dasharray: 5 5;
  opacity: 0.3;
  animation: dash-flow 2s linear infinite;
}
@keyframes dash-flow {
  0% {
    stroke-dashoffset: 30;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* ─── SCAN LINE EFFECT ─── */
#hero .scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 196, 179, 0.3),
    transparent
  );
  pointer-events: none;
  z-index: 5;
  animation: scan 6s linear infinite;
}
@keyframes scan {
  0% {
    top: 0;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ─── LIVE NOTIFICATION POP ─── */
#hero .live-notif {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  opacity: 0;
  transition:
    opacity 0.4s,
    transform 0.4s;
  z-index: 20;
  backdrop-filter: blur(12px);
}
#hero .live-notif.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
#hero .live-notif-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* ─── STATS STRIP ─── */
#hero .stats-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-top: 1px solid rgba(0, 196, 179, 0.1);
  background: rgba(0, 196, 179, 0.02);
  backdrop-filter: blur(10px);
}
#hero .stats-strip-label {
  padding: 36px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
}
#hero .stats-strip-label > div {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: black;
  line-height: 1.4;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#hero .strip-accent {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-2), var(--teal));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
#hero .strip-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: translateX(-100%);
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

#hero .stat-big {
  padding: 36px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  cursor: default;
  transition: background 0.3s;
}
#hero .stat-big:last-child {
  border-right: none;
}
#hero .stat-big:hover {
  background: rgba(0, 196, 179, 0.04);
}
#hero .stat-big-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 44px;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
#hero .stat-big-label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 160px;
}

/* ─── MAGNETIC EFFECT ─── */
#hero .magnetic {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── GLOW PARTICLES ─── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

  pointer-events: none;
  opacity: 0.4;
} */
.main-section {
  background: rgb(255, 251, 251);
}
.counting-box{
  grid-column: 1 / -1;
}

/* ─── ANIMATION SECTION 01 — Scroll Performance Overrides ─── */
.animation-section01 {
  contain: layout style;
  isolation: isolate;
}

.animation-section01 .content {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.animation-section01 .scaler img {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: center center;
  /* Prevent sub-pixel rendering jitter */
  image-rendering: auto;
}

.animation-section01 .grid > .layer {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.animation-section01 .grid img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}