/* Zalali Landing — Premium */
:root {
  --bg: #07070B;
  --bg-elevated: #0E0E14;
  --text: #F4F4F8;
  --text-muted: #8E8E9C;
  --green: #0D7A5F;
  --green-light: #1AD4A0;
  --purple: #6B4CE6;
  --purple-light: #9B7FFF;
  --gold: #C9A962;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.12);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --radius: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html.lenis, html.lenis body { height: auto; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
::selection { background: rgba(107, 76, 230, 0.35); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

@media (pointer: coarse), (max-width: 1024px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
}

.noise {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.05;
  background-image: url('../assets/textures/noise.png');
  animation: grain 0.5s steps(2) infinite;
}
@keyframes grain { 50% { transform: translate(-2%, -2%); } }

.cursor {
  position: fixed; width: 8px; height: 8px; border-radius: 50%; pointer-events: none; z-index: 10000;
  background: linear-gradient(135deg, var(--green), var(--purple));
  transform: translate(-50%, -50%); mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px; border-radius: 50%; pointer-events: none; z-index: 9999;
  border: 1px solid rgba(255,255,255,0.2); transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor--hover { width: 14px; height: 14px; }
.cursor-ring--hover { width: 52px; height: 52px; border-color: var(--purple); }

/* Preloader / Splash */
.preloader {
  position: fixed; inset: 0; z-index: 10001;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  overflow: hidden;
}
.preloader__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.preloader__orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0;
  animation: splashOrb 8s ease-in-out infinite;
}
.preloader__orb--green {
  width: 420px; height: 420px;
  background: rgba(26,212,160,0.22);
  top: 15%; left: 10%;
}
.preloader__orb--purple {
  width: 380px; height: 380px;
  background: rgba(107,76,230,0.2);
  bottom: 10%; right: 8%;
  animation-delay: -4s;
}
@keyframes splashOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.08); }
}
.preloader__grid {
  position: absolute; inset: 0; opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 75%);
}
.preloader__panel {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 2.75rem 2rem;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 120px rgba(26,212,160,0.08);
  min-width: min(92vw, 360px);
}
.preloader__ring {
  position: relative;
  width: 88px; height: 88px;
  margin-bottom: 0.25rem;
}
.preloader__ring-svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.preloader__ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 3;
}
.preloader__ring-progress {
  fill: none;
  stroke: url(#splashGradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
}
.preloader__mark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--green-light), var(--purple-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.preloader:not(.preloader--exit) .preloader__mark {
  animation: splashMark 2.4s ease-in-out infinite;
}
@keyframes splashMark {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}
.preloader__logo {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  overflow: hidden;
}
.preloader__logo .char { display: inline-block; }
.preloader__tagline {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,244,248,0.45);
}
.preloader__apps {
  display: flex; align-items: center; gap: 0.65rem;
  margin-top: 0.25rem;
}
.preloader__app {
  width: 36px; height: 36px; border-radius: 11px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  opacity: 0;
  transform: scale(0.6) translateY(12px);
}
.preloader__status {
  display: flex; align-items: center; gap: 1rem;
  width: 100%; margin-top: 0.5rem;
}
.preloader__bar {
  position: relative; flex: 1;
  height: 4px; border-radius: 100px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.preloader__progress {
  position: relative; z-index: 1;
  width: 0; height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-light), var(--purple-light));
}
.preloader__progress-glow {
  position: absolute; top: 50%; left: 0; z-index: 2;
  width: 48px; height: 24px; margin-top: -12px; margin-left: -24px;
  background: radial-gradient(circle, rgba(26,212,160,0.9), transparent 70%);
  filter: blur(8px);
  opacity: 0;
  pointer-events: none;
}
.preloader__percent {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(244,244,248,0.55);
  min-width: 2.5rem; text-align: right;
}
.preloader__curtain {
  position: absolute; inset: 0; z-index: 2;
  background: var(--bg);
  transform: scaleY(0);
  transform-origin: top center;
  pointer-events: none;
}
.preloader--exit .preloader__panel {
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .preloader__orb { animation: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
}
.hero__ambient { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__ambient-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.45) contrast(1.1) brightness(0.55);
  transform: scale(1.08);
}
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(26,212,160,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(107,76,230,0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(7,7,11,0.5) 0%, rgba(7,7,11,0.88) 60%, rgba(7,7,11,0.98) 100%);
}
.hero__blobs {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__blobs canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  filter: blur(72px) saturate(1.4);
  opacity: 0.85;
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .hero__blobs canvas { filter: blur(48px) saturate(1.3); opacity: 0.65; }
}
.hero__grid {
  position: relative; z-index: 3;
  display: grid; gap: 3rem; align-items: center;
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 0.95fr 1.05fr; gap: 3.5rem; align-items: center; }
}
.hero__copy { max-width: 540px; position: relative; z-index: 3; }
.hero__brands {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hero__brands img {
  width: 32px; height: 32px; border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.35s var(--ease-out-expo);
}
.hero__brands img:nth-child(2) { transform: translateY(4px); }
.hero__brands img:nth-child(3) { transform: translateY(8px); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 6.5rem);
  font-weight: 800; line-height: 0.92; margin-bottom: 1.5rem;
  letter-spacing: -0.045em;
  color: #fff;
}
.hero__title .split-text { display: inline-block; }
.hero__title .char { display: inline-block; }
.hero__lead {
  font-size: clamp(1rem, 1.9vw, 1.15rem); color: rgba(244,244,248,0.68);
  line-height: 1.75; margin-bottom: 2rem; max-width: 460px;
}
.hero__lead strong {
  color: rgba(255,255,255,0.92); font-weight: 600;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 2.5rem; }
.hero__stats {
  list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  padding: 0; border: none; background: none;
}
.hero__stats li {
  font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em;
}
.hero__stats li span,
.hero__stat-infinity {
  display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 800;
  background: linear-gradient(135deg, var(--text), var(--green-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em; text-transform: none; line-height: 1.2;
}
.hero__stat-infinity {
  background: linear-gradient(135deg, var(--purple-light), var(--green-light));
  -webkit-background-clip: text; background-clip: text;
}

/* Hero bento — product tiles */
.hero__bento {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.875rem;
  min-height: 420px;
  transform-style: preserve-3d;
  perspective: 1200px;
}
@media (max-width: 959px) {
  .hero__bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: unset;
  }
}
.hero-tile {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  min-height: 160px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s, border-color 0.35s;
}
.hero-tile--featured {
  grid-row: span 2;
  min-height: 100%;
}
@media (max-width: 959px) {
  .hero-tile--featured { grid-row: span 1; min-height: 220px; }
  .hero-tile { min-height: 140px; }
}
.hero-tile__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.hero-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,11,0.1) 0%, rgba(7,7,11,0.55) 45%, rgba(7,7,11,0.92) 100%);
  transition: opacity 0.4s;
}
.hero-tile__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
  z-index: 1;
}
.hero-tile--featured .hero-tile__content { padding: 1.5rem; }
.hero-tile__logo {
  border-radius: 12px;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 0 2px rgba(255,255,255,0.1);
}
.hero-tile__tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent, #1AD4A0); margin-bottom: 0.25rem;
}
.hero-tile__tag--purple { color: #9B7FFF; }
.hero-tile__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.1;
}
.hero-tile--featured .hero-tile__name { font-size: 1.65rem; }
.hero-tile__desc {
  font-size: 0.8rem; color: rgba(244,244,248,0.65); margin-top: 0.35rem;
}
.hero-tile__arrow {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  opacity: 0; transform: translate(-4px, 4px);
  transition: opacity 0.35s, transform 0.35s, background 0.35s;
}
.hero-tile:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent, #1AD4A0) 40%, transparent);
  box-shadow: 0 28px 64px rgba(0,0,0,0.5), 0 0 40px color-mix(in srgb, var(--accent, #1AD4A0) 15%, transparent);
}
.hero-tile:hover .hero-tile__bg { transform: scale(1.06); }
.hero-tile:hover .hero-tile__overlay { opacity: 0.85; }
.hero-tile:hover .hero-tile__arrow { opacity: 1; transform: translate(0, 0); }
.hero-tile[data-accent="#1AD4A0"] { --accent: #1AD4A0; }
.hero-tile[data-accent="#9B7FFF"] { --accent: #9B7FFF; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll svg { opacity: 0.6; animation: bounce 2s ease infinite; }
@keyframes bounce { 50% { transform: translateY(5px); } }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(5rem, 10vw, 7rem) 0; overflow: hidden; }
.section > .container { position: relative; z-index: 2; }

/* Section FX — ambient 3D + parallax backgrounds */
.section-fx {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.section-fx__img {
  position: absolute; inset: -15% 0;
  width: 100%; height: 130%; object-fit: cover;
  opacity: 0.12;
  filter: saturate(0.4) brightness(0.5);
  will-change: transform;
}
.section-fx__canvas {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  filter: blur(64px) saturate(1.3);
  opacity: 0.55;
}
.section-fx--subtle .section-fx__canvas { opacity: 0.35; filter: blur(80px); }
.section-fx__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(26,212,160,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 80% 70%, rgba(107,76,230,0.08) 0%, transparent 50%);
}
.section-fx__orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: sectionOrb 10s ease-in-out infinite;
}
.section-fx__orb--green {
  width: 380px; height: 380px;
  background: rgba(26,212,160,0.12);
  top: 10%; left: -5%;
}
.section-fx__orb--purple {
  width: 340px; height: 340px;
  background: rgba(107,76,230,0.1);
  bottom: 5%; right: -5%;
  animation-delay: -5s;
}
@keyframes sectionOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

.section__header { margin-bottom: 3rem; }
.section__header--center { text-align: center; max-width: 640px; margin-inline: auto; }
.section__header--center .section__line { margin-inline: auto; }
.section__label {
  display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 0.75rem;
}
.section__title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; line-height: 1.15;
}
.section__subtitle { color: var(--text-muted); margin-top: 0.75rem; }
.section__line { width: 0; height: 2px; margin-top: 1.5rem; background: linear-gradient(90deg, var(--green), var(--purple)); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.85rem; font-weight: 600; font-size: 0.9rem;
  border-radius: 100px; border: none; transition: box-shadow 0.35s, transform 0.35s var(--ease-out-expo);
  letter-spacing: 0.01em;
}
.btn--primary {
  background: linear-gradient(135deg, #0D7A5F 0%, #0A634D 50%, #085242 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(13, 122, 95, 0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(13, 122, 95, 0.55), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn--shine { position: relative; overflow: hidden; }
.btn--shine::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn--shine:hover::after { transform: translateX(100%); }
.btn--ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--glass-highlight);
  transform: translateY(-2px);
}
.btn--purple { background: linear-gradient(135deg, var(--purple), #5A3AD4); box-shadow: 0 4px 24px rgba(107, 76, 230, 0.4); }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--green-light), var(--purple-light), var(--green-light));
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift { 50% { background-position: 100% center; } }

/* Marquee */
.marquee {
  position: relative;
  padding: 1.5rem 0; background: var(--bg-elevated);
  border-block: 1px solid var(--glass-border); overflow: hidden;
}
.marquee::before,
.marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-elevated), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-elevated), transparent); }
.marquee__track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 35s linear infinite;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.12em;
}
.marquee__track span:nth-child(odd) {
  color: transparent;
  background: linear-gradient(90deg, var(--green-light), var(--purple-light));
  -webkit-background-clip: text; background-clip: text;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* About */
.about { background: var(--bg-elevated); border-block: 1px solid var(--glass-border); }
.about__grid {
  display: grid; gap: 3rem; align-items: start;
}
@media (min-width: 900px) { .about__grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }
.about__lead {
  font-size: 1.1rem; line-height: 1.75; color: rgba(244,244,248,0.82);
  margin: 1.25rem 0 1rem;
}
.about__text {
  color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem;
}
.about__text strong { color: var(--text); font-weight: 600; }
.about__points {
  list-style: none; display: grid; gap: 0.75rem;
}
.about__points li {
  position: relative; padding-left: 1.25rem;
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.6;
}
.about__points li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-light);
}
.about__cards { display: grid; gap: 1rem; }
.about-card {
  padding: 1.5rem; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: border-color 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
}
.about-card:hover { border-color: rgba(26,212,160,0.25); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.about-card--purple:hover { border-color: rgba(155,127,255,0.3); }
.about-card__num {
  display: block; font-family: var(--font-display); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.12em; color: var(--green-light); margin-bottom: 0.5rem;
}
.about-card--purple .about-card__num { color: var(--purple-light); }
.about-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.5rem; }
.about-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* 3D scene helper */
.scene-3d { perspective: 1200px; perspective-origin: center center; }

/* Showcases */
.showcases { padding-top: 2rem; }
.showcase {
  display: grid; gap: 3rem; align-items: center;
  max-width: var(--container); margin: 0 auto 5rem; padding-inline: 1rem;
}
@media (min-width: 900px) {
  .showcase { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .showcase--reverse .showcase__visual { order: 2; }
  .showcase--reverse .showcase__content { order: 1; }
}
.showcase__card-3d {
  position: relative; border-radius: var(--radius); overflow: hidden;
  transform-style: preserve-3d; transition: transform 0.1s linear;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--glass-border);
  will-change: transform;
}
.showcase__photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.showcase__card-overlay {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: 16px;
  background: rgba(10,10,15,0.75); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}
.showcase__card-overlay img { border-radius: 12px; }
.showcase__tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem; border-radius: 100px;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.showcase__tag--purple { color: var(--purple); }
.showcase__name { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.showcase__desc { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.6; }
.showcase__features { list-style: none; margin-bottom: 2rem; }
.showcase__features li {
  padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--text-muted);
}
.showcase__features li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-light);
}
.showcase--patiya .showcase__features li::before { background: var(--purple-light); }
.showcase__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.play-badge { transition: transform 0.3s; }
.play-badge:hover { transform: scale(1.05); }

/* Gallery bento */
.gallery__bento {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(130px, 1fr);
  max-width: 920px;
  margin-inline: auto;
}
.gallery__item--large { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
@media (min-width: 768px) {
  .gallery__bento {
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, minmax(150px, 1fr));
    grid-auto-rows: unset;
    max-width: 1000px;
  }
  .gallery__item--large { grid-column: 1 / 3; grid-row: 1 / 3; }
  .gallery__item:nth-child(2) { grid-column: 3; grid-row: 1; }
  .gallery__item:nth-child(3) { grid-column: 4; grid-row: 1; }
  .gallery__item:nth-child(4) { grid-column: 3 / 5; grid-row: 2; }
  .gallery__item:nth-child(5) { grid-column: 1 / 3; grid-row: 3; }
  .gallery__item:nth-child(6) { grid-column: 3 / 5; grid-row: 3; }
}
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 0;
  transform-style: preserve-3d; transition: transform 0.4s var(--ease-out-expo);
}
.gallery__item:hover { transform: scale(1.02) translateZ(20px); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 0.85rem 0.75rem;
  font-weight: 600; font-size: 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* Vision */
.vision {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(14,14,20,0.98) 50%, var(--bg) 100%);
}
.vision__grid {
  display: grid; gap: 3.5rem; align-items: center;
  position: relative; z-index: 2;
}
@media (min-width: 900px) { .vision__grid { grid-template-columns: 0.95fr 1.05fr; gap: 4.5rem; } }

.vision__visual {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1200px;
}
.vision__ring {
  position: absolute; inset: -8%;
  border-radius: 50%;
  border: 1px solid rgba(26,212,160,0.15);
  animation: visionRing 8s linear infinite;
  pointer-events: none;
}
.vision__ring::before {
  content: '';
  position: absolute; inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(107,76,230,0.2);
  animation: visionRing 12s linear infinite reverse;
}
@keyframes visionRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.vision__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.1s linear;
}
.vision__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.vision__frame-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 45%, transparent 100%);
  pointer-events: none;
}
.vision__frame-border {
  position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(26,212,160,0.5), transparent 40%, rgba(155,127,255,0.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.vision__chips {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.vision__chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.7rem 0.4rem 0.45rem;
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
  background: rgba(7,7,11,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.vision__chip img { border-radius: 6px; }
.vision__chip--purple { border-color: rgba(155,127,255,0.25); }
.vision__media-glow {
  position: absolute; inset: -15%;
  background: radial-gradient(circle, rgba(107,76,230,0.22) 0%, rgba(26,212,160,0.08) 40%, transparent 70%);
  pointer-events: none; z-index: -1;
  animation: visionGlow 6s ease-in-out infinite;
}
@keyframes visionGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.vision__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.vision__headline-line { display: block; overflow: hidden; padding-bottom: 0.05em; }
.vision__headline-line--accent {
  background: linear-gradient(135deg, var(--green-light), var(--purple-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vision__quote {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500; line-height: 1.65;
  color: rgba(244,244,248,0.85);
  margin-bottom: 0.25rem;
}
.typewriter { color: var(--purple-light); border-right: 2px solid var(--purple); animation: blink 0.8s step-end infinite; }
.typewriter--done { border-right-color: transparent; animation: none; }
@keyframes blink { 50% { border-color: transparent; } }
.vision__body {
  margin-top: 1.5rem; display: grid; gap: 0.85rem;
}
.vision__body p { color: var(--text-muted); line-height: 1.75; font-size: 0.95rem; }
.vision__values {
  list-style: none; margin-top: 2rem;
  display: grid; gap: 0.75rem;
}
@media (min-width: 640px) { .vision__values { grid-template-columns: 1fr 1fr; } }
.vision__value {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out-expo);
}
.vision__value:hover {
  border-color: rgba(26,212,160,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 0 24px rgba(26,212,160,0.08);
  transform: translateY(-3px);
}
.vision__value-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13,122,95,0.25), rgba(107,76,230,0.15));
}
.vision__value-icon img { filter: invert(1); opacity: 0.9; }
.vision__value-copy { display: flex; flex-direction: column; gap: 0.2rem; }
.vision__value-copy strong {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700; color: var(--text);
}
.vision__value-copy span {
  font-size: 0.8rem; line-height: 1.5; color: var(--text-muted);
}

/* Steps */
.steps { background: var(--bg); }
.steps__grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps__grid { grid-template-columns: repeat(4, 1fr); }
}
.step-card {
  position: relative; padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.step-card:hover { border-color: rgba(26,212,160,0.2); box-shadow: 0 16px 40px rgba(0,0,0,0.28); }
.step-card__step {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 0.75rem;
}
.step-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* Compare table */
.compare { background: var(--bg-elevated); }
.compare__table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--glass);
}
.compare__table {
  width: 100%; min-width: 640px; border-collapse: collapse;
  font-size: 0.9rem;
}
.compare__table th,
.compare__table td {
  padding: 1rem 1.15rem; text-align: left;
  border-bottom: 1px solid var(--glass-border);
}
.compare__table thead th {
  font-family: var(--font-display); font-size: 0.95rem;
  background: rgba(255,255,255,0.03);
}
.compare__table tbody th {
  color: var(--text-muted); font-weight: 500; width: 28%;
}
.compare__table td { color: rgba(244,244,248,0.85); }
.compare__table tr:last-child th,
.compare__table tr:last-child td { border-bottom: none; }
.compare__table a { color: var(--green-light); text-decoration: underline; text-underline-offset: 3px; }
.compare__table a:hover { color: #fff; }
.compare__muted { color: var(--text-muted); }

/* Audience */
.audience__grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .audience__grid { grid-template-columns: repeat(4, 1fr); }
}
.audience-card {
  padding: 1.75rem; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.audience-card:hover {
  border-color: rgba(107,76,230,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}
.audience-card__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(13,122,95,0.2), rgba(13,122,95,0.05));
  margin-bottom: 1rem;
}
.audience-card__icon--purple {
  background: linear-gradient(135deg, rgba(107,76,230,0.25), rgba(107,76,230,0.08));
}
.audience-card__icon img { filter: invert(1); opacity: 0.85; }
.audience-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.5rem; }
.audience-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* Features */
.features { background: var(--bg-elevated); }
.features__grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features__grid { grid-template-columns: repeat(4, 1fr); }
}
.feature-card {
  padding: 2rem; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); transform-style: preserve-3d;
  transition: box-shadow 0.3s;
  will-change: transform;
}
.feature-card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.3), 0 0 40px rgba(26,212,160,0.08);
}
.feature-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(13,122,95,0.2), rgba(107,76,230,0.2));
  margin-bottom: 1.25rem;
}
.feature-card__icon img { filter: invert(1); opacity: 0.9; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Stats */
.stats__grid {
  display: grid; gap: 2rem; text-align: center;
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
}
.stat {
  padding: 2.5rem 1rem; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
}
.stat__icon-wrap { position: relative; width: 64px; height: 64px; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; }
.stat__icon { filter: invert(1); opacity: 0.8; position: relative; z-index: 1; }
.stat__orbit {
  position: absolute; inset: 0; border: 1px dashed rgba(107,76,230,0.3); border-radius: 50%;
  animation: orbit 6s linear infinite;
}
@keyframes orbit { to { transform: rotate(360deg); } }
.stat__number {
  display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--green-light), var(--purple-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { font-size: 0.9rem; color: var(--text-muted); }

/* Phones 3D */
.phones__stage {
  display: flex; justify-content: center; align-items: flex-end; gap: clamp(1rem, 4vw, 3rem);
  padding: 2rem 0; min-height: 420px;
}
.phone-3d { flex: 0 0 auto; transform-style: preserve-3d; }
.phone-3d--center { transform: translateY(-30px) scale(1.08); z-index: 2; }
.phone-3d__frame {
  width: clamp(140px, 22vw, 200px); aspect-ratio: 9/19;
  border-radius: 28px; overflow: hidden; position: relative;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
  transform-style: preserve-3d;
}
.phone-3d__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.phone-3d__screen {
  position: absolute; inset: 8px; border-radius: 22px;
  background: linear-gradient(160deg, rgba(13,122,95,0.9), rgba(10,10,15,0.95));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
}
.phone-3d__screen--purple { background: linear-gradient(160deg, rgba(107,76,230,0.9), rgba(10,10,15,0.95)); }
.phone-3d__screen img { width: 64px; height: 64px; border-radius: 16px; }
.phone-3d__screen span { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; }

/* Ecosystem */
.ecosystem__wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--glass-border); min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.ecosystem__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25;
}
.ecosystem__diagram { position: relative; z-index: 1; padding: 2rem; width: 100%; }
.ecosystem__svg { width: 100%; max-width: 600px; margin: 0 auto; display: block; }
.ecosystem__line { vector-effect: non-scaling-stroke; }
.ecosystem__node { cursor: pointer; }
.ecosystem__node image { pointer-events: none; }

/* Apps */
.apps { background: var(--bg-elevated); }
.apps__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .apps__grid { grid-template-columns: repeat(3, 1fr); } }
.apps__badge {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 2.5rem 1.5rem; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: box-shadow 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}
.apps__badge:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.35), 0 0 48px var(--glow, rgba(13,122,95,0.15));
}
.apps__badge-icon { border-radius: 14px; }
.apps__badge-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.apps__badge-desc {
  font-size: 0.82rem; color: var(--text-muted); text-align: center;
  line-height: 1.5; max-width: 220px;
}

/* FAQ */
.faq { border-top: 1px solid var(--glass-border); }
.faq__grid {
  display: grid; gap: 3rem;
}
@media (min-width: 900px) { .faq__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.faq__list { display: grid; gap: 0.75rem; }
.faq__item {
  border-radius: 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: rgba(26,212,160,0.25); }
.faq__item summary {
  padding: 1.15rem 1.25rem; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-size: 1.25rem; font-weight: 400; color: var(--green-light);
  transition: transform 0.3s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.7;
}

/* CTA */
.cta { position: relative; overflow: hidden; text-align: center; }
.cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.92) 100%);
}
.cta__inner { position: relative; z-index: 1; }
.cta__title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 0.75rem; }
.cta__text { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }
.cta__pills { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-pill {
  position: relative; overflow: hidden; padding: 0.875rem 2rem; border-radius: 100px;
  font-weight: 600; background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px); transition: transform 0.3s, border-color 0.3s;
}
.cta-pill:hover { border-color: var(--green); transform: translateY(-3px); }
.cta-pill--purple:hover { border-color: var(--purple); }
.cta-pill.shimmer::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.6s;
}
.cta-pill.shimmer:hover::after { transform: translateX(100%); }

/* Footer */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--glass-border); }
.footer__inner { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer__inner { grid-template-columns: 1fr 2fr; } }
.footer__logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer__tagline { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; }
.footer__about {
  color: var(--text-muted); font-size: 0.85rem; line-height: 1.65;
  margin-top: 1rem; max-width: 320px;
}
.footer__nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 2rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.footer__col a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s; width: fit-content; }
.footer__col a:hover { color: var(--text); }
.footer__copy { grid-column: 1 / -1; font-size: 0.8rem; color: var(--text-muted); opacity: 0.6; padding-top: 1.5rem; border-top: 1px solid var(--glass-border); }

/* Animation utilities */
.scatter-title .char { display: inline-block; }
body.is-animating .reveal-item,
body.is-animating .reveal-up { opacity: 0; transform: translateY(50px); }
body.is-animating .scatter-title:not(.is-revealed) { opacity: 0; }

/* Hero — hidden until GSAP entrance (prevents flash after preloader) */
body.is-animating .hero__title { opacity: 0; }
body.is-animating .hero .reveal-item { opacity: 0; transform: translateY(28px); }
body.is-animating .hero-tile { opacity: 0; transform: translateY(36px) scale(0.96); }
body.is-animating .hero__scroll { opacity: 0; transform: translateY(-12px); }
body.is-animating .hero__title .char { opacity: 0; transform: translateY(100%); filter: blur(6px); }

@media (max-width: 767px) {
  .phones__stage { flex-direction: column; align-items: center; min-height: auto; }
  .phone-3d--center { transform: none; }
  .showcase__actions { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .gradient-text { animation: none; }
  .vision__ring,
  .vision__ring::before,
  .vision__media-glow { animation: none; }
}
