@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../assets/fonts/geist-400.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("../assets/fonts/geist-600.woff2") format("woff2");
}

:root {
  --background: 260 87% 3%;
  --foreground: 40 6% 95%;
  --hero-sub: 40 6% 82%;
  --light-bg: 40 10% 97%;
  --light-fg: 260 40% 8%;
  --light-muted: 260 10% 40%;
  --accent-indigo: #6366f1;
  --accent-purple: #a855f7;
  --accent-amber: #fcd34d;
  --accent-cyan: #22d3ee;
  --font-body: "Geist Sans", system-ui, sans-serif;
  --font-display: "General Sans", "Geist Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* Liquid glass */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out), transform 0.25s var(--ease-out),
    opacity 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out),
    filter 0.3s var(--ease-out);
}

.btn--hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.2), 0 12px 40px rgba(99, 102, 241, 0.25);
}

.btn--primary:hover {
  opacity: 1;
  filter: brightness(1.08);
  box-shadow: 0 12px 32px rgba(18, 16, 26, 0.25);
}

.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

.btn--hero-secondary {
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: hsl(var(--foreground));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn--cta {
  padding: 24px 29px;
  margin-top: 25px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.btn--primary {
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  background: #12101a;
  color: #f7f5f0;
  font-weight: 560;
}

.btn--primary:hover {
  opacity: 0.88;
}

.btn--ghost {
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-weight: 500;
  color: #12101a;
}

.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.hero__blur {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 984px;
  height: 527px;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  background: #030712;
  filter: blur(82px);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar__logo img {
  height: 32px;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 450;
  color: hsl(var(--foreground) / 0.9);
  border-radius: 0.5rem;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.nav-item:hover {
  color: hsl(var(--foreground));
  background: rgba(255, 255, 255, 0.05);
}

.nav-item__chevron {
  opacity: 0.7;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
}

.navbar__menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: hsl(var(--foreground));
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}

.navbar__menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.navbar__menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.navbar__divider {
  height: 1px;
  margin-top: 3px;
  margin-inline: 2rem;
  background: linear-gradient(
    to right,
    transparent,
    hsl(var(--foreground) / 0.2),
    transparent
  );
}

/* Hero center */
.hero__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 18vw, 220px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.024em;
}

.hero__headline-plain {
  color: hsl(var(--foreground));
}

.hero__headline-gradient {
  background-image: linear-gradient(to left, #6366f1, #22d3ee, #a855f7, #fcd34d);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: grad-shift 6s ease-in-out infinite;
}

.hero__subtitle {
  color: hsl(var(--hero-sub));
  font-size: 1.125rem;
  line-height: 2rem;
  max-width: 28rem;
  margin-top: 9px;
  opacity: 0.8;
}

/* Marquee */
.hero__marquee {
  padding-bottom: 2.5rem;
  width: 100%;
}

.marquee {
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee__label {
  flex-shrink: 0;
  color: hsl(var(--foreground) / 0.5);
  font-size: 0.875rem;
  line-height: 1.45;
}

.marquee__track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.marquee__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ========== MAXIMALIST SECTIONS (post-hero) ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn--block {
  width: 100%;
}

/* Ticker */
.ticker-band {
  overflow: hidden;
  background: #0c0a12;
  color: #f5f2ea;
  border-block: 1px solid rgba(252, 211, 77, 0.35);
  padding: 0.85rem 0;
}

.ticker-band__track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-band__dot {
  color: #fcd34d;
  opacity: 0.85;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Shared maximalist section chrome */
.mx.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
}

.mx--light {
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      rgba(18, 16, 26, 0.035) 31px,
      rgba(18, 16, 26, 0.035) 32px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 31px,
      rgba(18, 16, 26, 0.035) 31px,
      rgba(18, 16, 26, 0.035) 32px
    ),
    linear-gradient(180deg, #f4f1ea 0%, #ebe6dc 100%);
  color: #12101a;
}

.mx--cream {
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(252, 211, 77, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 100%, rgba(99, 102, 241, 0.08), transparent 50%),
    #f8f4eb;
  color: #12101a;
}

.mx--ink {
  background:
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(168, 85, 247, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(252, 211, 77, 0.1), transparent 45%),
    #08060f;
  color: #f5f2ea;
}

.mx--diagonal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 18px,
    rgba(255, 255, 255, 0.025) 18px,
    rgba(255, 255, 255, 0.025) 19px
  );
  pointer-events: none;
}

.mx__watermark {
  position: absolute;
  top: 8%;
  right: -2%;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(18, 16, 26, 0.045);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.mx--ink .mx__watermark {
  color: rgba(245, 242, 234, 0.04);
}

.mx__inner {
  position: relative;
  z-index: 1;
  max-width: 78rem;
  margin-inline: auto;
}

.mx__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(18, 16, 26, 0.12);
}

.mx__top--on-dark {
  border-bottom-color: rgba(245, 242, 234, 0.14);
}

.mx__eyebrow,
.mx__eyebrow-right {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mx__eyebrow--light {
  color: rgba(245, 242, 234, 0.7);
  margin-bottom: 0.75rem;
}

.mx__top-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mx__top-meta span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(18, 16, 26, 0.2);
  background: rgba(255, 255, 255, 0.45);
}

.mx__header--split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mx__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.mx__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, #6366f1, #a855f7 50%, #c2410c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mx__title--on-dark {
  color: #f5f2ea;
}

.mx__title--huge {
  font-size: clamp(3rem, 9vw, 6.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mx__grad {
  background: linear-gradient(to left, #6366f1, #a855f7, #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mx__lede {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(18, 16, 26, 0.62);
  max-width: 28rem;
}

.mx__lede--on-dark {
  color: rgba(245, 242, 234, 0.72);
  max-width: 32rem;
  margin-inline: auto;
}

.mx__link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.15rem;
  transition: opacity 0.2s;
}

.mx__link:hover {
  opacity: 0.65;
}

/* Features mosaic */
.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.feature-tile {
  grid-column: span 4;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 16, 26, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 18px 40px rgba(18, 16, 26, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

.feature-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 20px 40px rgba(99, 102, 241, 0.12);
}

.feature-tile--xl {
  grid-column: span 8;
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.12), transparent 50%),
    #fff;
  min-height: 100%;
}

.feature-tile--accent {
  background: linear-gradient(160deg, #161225 0%, #0c0a14 100%);
  color: #f5f2ea;
  border-color: rgba(34, 211, 238, 0.25);
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.12);
}

.feature-tile__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  opacity: 0.45;
  margin-bottom: 1rem;
}

.feature-tile h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 560;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}

.feature-tile p {
  line-height: 1.55;
  opacity: 0.72;
  font-size: 0.98rem;
}

.feature-tile ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.feature-tile ul li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(18, 16, 26, 0.18);
}

.feature-tile__stat {
  margin-top: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.feature-tile__stat strong {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: #fcd34d;
}

.feature-tile__stat span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* Process */
.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(245, 242, 234, 0.16);
}

.process-step {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(245, 242, 234, 0.12);
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  transition: background 0.3s;
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.05);
}

.process-step__index {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fcd34d, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 560;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.process-step p {
  color: rgba(245, 242, 234, 0.68);
  line-height: 1.55;
  font-size: 0.95rem;
}

.process-step__tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fcd34d;
  border: 1px solid rgba(252, 211, 77, 0.4);
  padding: 0.35rem 0.55rem;
}

/* Three overlay max */
.section--three {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #05010f;
}

.three-root {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.three-root canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.three-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 40rem;
  pointer-events: none;
}

.three-overlay--max .mx__title {
  margin-bottom: 0.85rem;
}

.three-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.three-chips li {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(245, 242, 234, 0.8);
  backdrop-filter: blur(6px);
}

/* Solutions */
.solution-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.solution-panel {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(18, 16, 26, 0.12);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(18, 16, 26, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
}

.solution-panel:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 28px 60px rgba(99, 102, 241, 0.12);
}

.solution-panel--invert {
  background: linear-gradient(165deg, #1a1630, #0c0a14);
  color: #f5f2ea;
  border-color: rgba(168, 85, 247, 0.35);
}

.solution-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid currentColor;
}

.solution-panel__head h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 560;
  letter-spacing: -0.03em;
}

.solution-panel__head span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  opacity: 0.25;
  letter-spacing: -0.04em;
}

.solution-panel > p {
  line-height: 1.55;
  opacity: 0.72;
  margin-bottom: 1.5rem;
}

.solution-panel ul {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.solution-panel ul li {
  font-size: 0.9rem;
  padding-left: 1rem;
  position: relative;
  opacity: 0.85;
}

.solution-panel ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #c2410c;
}

.solution-panel--invert ul li::before {
  color: #fcd34d;
}

/* Reviews */
.reviews-score {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.reviews-score strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: -0.04em;
}

.reviews-score span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.mx--reviews .mx__title {
  margin-bottom: 2.5rem;
}

/* Word-by-word headline reveal */
.word-reveal {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
}

.word-reveal__line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28em 0.35em;
}

.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out),
    filter 0.55s var(--ease-out);
}

.word-reveal .word.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.word-reveal .word--accent em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, #6366f1, #22d3ee 45%, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.word-reveal .word.is-shown.word--accent {
  text-shadow: 0 0 28px rgba(34, 211, 238, 0.25);
}

.review-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.review {
  grid-column: span 4;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 16, 26, 0.1);
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 16px 40px rgba(18, 16, 26, 0.05);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
}

.review:nth-child(even) {
  transform: none;
}

.review--lg {
  grid-column: span 8;
  grid-row: span 2;
  transform: none;
  background:
    linear-gradient(160deg, rgba(34, 211, 238, 0.12), transparent 45%),
    #fff;
  border-color: rgba(99, 102, 241, 0.2);
}

.review--wide {
  grid-column: span 8;
  transform: none;
}

.review--stamp {
  background: linear-gradient(165deg, #1a1630, #0c0a14);
  color: #f5f2ea;
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 24px 50px rgba(34, 211, 238, 0.15);
}

.review:hover {
  box-shadow: 0 24px 50px rgba(99, 102, 241, 0.14);
}

.review p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.review--lg p {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.review footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.85rem;
}

.review cite {
  font-style: normal;
  font-weight: 650;
}

.review footer span {
  opacity: 0.55;
}

/* Awards */
.awards-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 3rem;
}

.award-seal {
  aspect-ratio: 1;
  border: 2px solid rgba(245, 242, 234, 0.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 60%);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.award-seal:hover {
  transform: scale(1.05) rotate(-3deg);
  border-color: #fcd34d;
}

.award-seal--gold {
  border-color: #fcd34d;
  box-shadow: inset 0 0 40px rgba(252, 211, 77, 0.15);
}

.award-seal--amber {
  background: #fcd34d;
  color: #12101a;
  border-color: #fcd34d;
}

.award-seal span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.award-seal strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: -0.02em;
  margin: 0.25rem 0;
}

.award-seal small {
  font-size: 0.65rem;
  opacity: 0.6;
}

.press-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(245, 242, 234, 0.14);
  padding-top: 1.75rem;
}

.press-strip p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: rgba(245, 242, 234, 0.78);
}

.press-strip em {
  color: #fcd34d;
  font-style: normal;
  font-weight: 600;
}

/* Plans */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.plan-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 16, 26, 0.1);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 28rem;
  box-shadow: 0 18px 40px rgba(18, 16, 26, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

.plan-card--featured {
  background: linear-gradient(165deg, #1a1630, #0b0914);
  color: #f5f2ea;
  margin-top: -12px;
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 30px 70px rgba(99, 102, 241, 0.28);
}

.plan-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  color: #0b0914;
  padding: 0.4rem 0.65rem;
  border-radius: 9999px;
}

.plan-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 560;
}

.plan-card__price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.plan-card__price span {
  font-size: 1rem;
  opacity: 0.55;
}

.plan-card__desc {
  opacity: 0.65;
  line-height: 1.5;
  font-size: 0.95rem;
}

.plan-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.5rem 0 1rem;
  flex: 1;
}

.plan-card ul li {
  font-size: 0.9rem;
  padding-left: 1.1rem;
  position: relative;
}

.plan-card ul li::before {
  content: "■";
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  top: 0.35rem;
  color: #c2410c;
}

.plan-card--featured ul li::before {
  color: #fcd34d;
}

.plan-card .btn {
  margin-top: auto;
}

.plan-card--featured .btn--primary {
  background: #fcd34d;
  color: #12101a;
}

.plan-card--featured .btn--ghost,
.plan-card .btn--ghost {
  border-color: currentColor;
  color: inherit;
}

/* Social */
.social-handles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.social-handles a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.social-handles a:hover {
  opacity: 1;
  border-bottom-color: #fcd34d;
}

.mx--social .mx__title {
  margin-bottom: 2rem;
}

.social-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(9rem, auto);
  gap: 0.85rem;
}

.social-post {
  grid-column: span 4;
  padding: 1.5rem;
  border: 1px solid rgba(245, 242, 234, 0.18);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background 0.25s, transform 0.25s;
}

.social-post:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.social-post--tall {
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.25), rgba(255, 255, 255, 0.03));
}

.social-post--wide {
  grid-column: span 8;
}

.social-post__platform {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fcd34d;
}

.social-post p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  line-height: 1.4;
  flex: 1;
}

.social-post time {
  font-size: 0.75rem;
  opacity: 0.45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Learning */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.learn-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem;
  min-height: 16rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 16, 26, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 16px 36px rgba(18, 16, 26, 0.05);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
}

.learn-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 24px 48px rgba(99, 102, 241, 0.14);
}

.learn-card--dark {
  background: linear-gradient(165deg, #1a1630, #0c0a14);
  color: #f5f2ea;
  border-color: rgba(168, 85, 247, 0.3);
}

.learn-card--dark:hover {
  box-shadow: 0 24px 48px rgba(168, 85, 247, 0.25);
}

.learn-card span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
}

.learn-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.learn-card p {
  opacity: 0.65;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-top: auto;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-perks {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-perks li {
  font-weight: 550;
  padding-left: 1.25rem;
  position: relative;
}

.contact-perks li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #c2410c;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 560;
}

.contact-direct a {
  border-bottom: 2px solid rgba(18, 16, 26, 0.2);
  width: fit-content;
  transition: border-color 0.2s;
}

.contact-direct a:hover {
  border-color: #12101a;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(18, 16, 26, 0.1);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(18, 16, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row input,
.form-row select,
.form-row textarea,
.footer-newsletter input {
  font: inherit;
  color: inherit;
  background: #f8f4eb;
  border: 1.5px solid rgba(18, 16, 26, 0.12);
  padding: 0.85rem 0.95rem;
  border-radius: 0.85rem;
  width: 100%;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-row label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.footer-newsletter input:focus {
  outline: 2px solid #22d3ee;
  outline-offset: 1px;
  border-color: #12101a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15);
}

.form-note {
  font-size: 0.875rem;
  min-height: 1.25rem;
  color: #166534;
}

.form-note--footer {
  color: rgba(245, 242, 234, 0.7);
  margin-top: 0.5rem;
}

/* ========== FOOTER ========== */
.site-footer {
  position: relative;
  background: #05010f;
  color: #f5f2ea;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 3.5rem) 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__glow {
  position: absolute;
  width: 40rem;
  height: 20rem;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.25), transparent 70%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 78rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__tagline {
  margin: 1.25rem 0 1.5rem;
  max-width: 22rem;
  line-height: 1.55;
  color: rgba(245, 242, 234, 0.62);
  font-size: 0.98rem;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-newsletter input {
  flex: 1;
  min-width: 12rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f5f2ea;
}

.footer-newsletter input::placeholder {
  color: rgba(245, 242, 234, 0.4);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.site-footer__cols h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fcd34d;
}

.site-footer__cols ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__cols a {
  font-size: 0.92rem;
  color: rgba(245, 242, 234, 0.7);
  transition: color 0.2s;
}

.site-footer__cols a:hover {
  color: #fff;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  max-width: 78rem;
  margin: 1.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 242, 234, 0.5);
}

.site-footer__demo {
  text-align: center;
  max-width: 28rem;
  line-height: 1.5;
  color: rgba(245, 242, 234, 0.62);
}

.site-footer__demo a {
  color: #22d3ee;
  border-bottom: 1px solid rgba(34, 211, 238, 0.4);
  transition: border-color 0.2s, color 0.2s;
}

.site-footer__demo a:hover {
  color: #a5f3fc;
  border-bottom-color: #a5f3fc;
}

.site-footer__legal {
  display: flex;
  gap: 1.25rem;
}

.site-footer__legal a:hover {
  color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .feature-tile,
  .feature-tile--xl {
    grid-column: span 6;
  }

  .process-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: none;
  }

  .process-step:nth-child(1),
  .process-step:nth-child(2) {
    border-bottom: 1px solid rgba(245, 242, 234, 0.12);
  }

  .awards-wall {
    grid-template-columns: repeat(3, 1fr);
  }

  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.85rem 1rem;
    gap: 0.5rem;
  }

  .navbar__logo img {
    height: 28px;
    width: auto;
  }

  .navbar__divider {
    margin-inline: 1rem;
  }

  .navbar__menu-toggle {
    display: flex;
  }

  .navbar__nav {
    position: absolute;
    top: 4.25rem;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.75rem;
    background: hsl(var(--background) / 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    z-index: 30;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    max-height: min(70vh, 28rem);
    overflow-y: auto;
  }

  .navbar__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item {
    justify-content: flex-start;
    padding: 0.9rem 1rem;
    min-height: 44px;
  }

  .hero__center {
    padding: 1.25rem 1rem 1.5rem;
  }

  .hero__headline {
    font-size: clamp(3.25rem, 18vw, 5.5rem);
    line-height: 0.98;
  }

  .hero__marquee {
    padding-bottom: 1.5rem;
  }

  .marquee {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-inline: 1rem;
  }

  .marquee__track-wrap {
    width: 100%;
  }

  .marquee__group {
    gap: 2.5rem;
    padding-right: 2.5rem;
  }

  .hero__blur {
    width: min(984px, 160vw);
    height: min(420px, 45vh);
  }

  .mx.section {
    padding: 3.5rem 1.15rem;
  }

  .mx__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .mx__title--huge {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .mx__watermark {
    font-size: clamp(4rem, 22vw, 8rem);
    top: 4%;
    right: -8%;
    opacity: 0.5;
  }

  .mx__header--split,
  .solution-stack,
  .plan-grid,
  .contact-layout,
  .site-footer__inner,
  .press-strip {
    grid-template-columns: 1fr;
  }

  .plan-card--featured {
    margin-top: 0;
  }

  .review,
  .review--lg,
  .review--wide,
  .social-post,
  .social-post--wide,
  .social-post--tall,
  .feature-tile,
  .feature-tile--xl {
    grid-column: span 12;
    grid-row: auto;
    transform: none;
  }

  .feature-mosaic {
    gap: 0.75rem;
  }

  .audio-toggle {
    right: 0.85rem;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    padding: 0.55rem 0.8rem;
  }

  .audio-toggle__text {
    display: none;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .word-reveal__line {
    gap: 0.2em 0.28em;
  }
}

@media (max-width: 600px) {
  .navbar__actions .btn--sm {
    display: none;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 20rem;
  }

  .hero__subtitle br {
    display: none;
  }

  .btn--cta {
    width: 100%;
    max-width: 20rem;
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
  }

  .process-rail,
  .awards-wall,
  .learn-grid,
  .form-row--half,
  .site-footer__cols {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(245, 242, 234, 0.12);
    min-height: 0;
    padding: 1.5rem 1.15rem;
  }

  .award-seal {
    aspect-ratio: auto;
    border-radius: 1rem;
    min-height: 7rem;
  }

  .site-footer {
    padding: 3rem 1.15rem calc(5rem + env(safe-area-inset-bottom));
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .footer-newsletter {
    flex-direction: column;
  }

  .footer-newsletter .btn {
    width: 100%;
  }

  .loader-label {
    font-size: 0.65rem;
    top: calc(50% + 52px);
  }

  .section--three {
    min-height: 85vh;
  }

  .three-overlay {
    padding: 1.25rem;
  }
}

html.is-loading,
html.is-loading body {
  overflow: hidden;
  height: 100%;
}

.site--veiled {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  filter: blur(12px);
}

html.is-ready .site {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: site-settle 0.9s var(--ease-out) both;
}

@keyframes site-settle {
  from {
    opacity: 0.92;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* ========== LOADER ========== */
.zeon-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #03010a;
  display: grid;
  place-items: center;
  transition: opacity 0.35s var(--ease-out);
}

.zeon-loader.loader--done {
  opacity: 0;
  pointer-events: none;
}

.zeon-loader__stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.loader-morph {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #22d3ee 45%, #a855f7 100%);
  box-shadow:
    0 0 40px rgba(34, 211, 238, 0.35),
    0 0 80px rgba(99, 102, 241, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  will-change: width, height, border-radius, opacity, transform;
  transform: translate(-50%, -50%);
}

.loader-label {
  position: absolute;
  top: calc(50% + 64px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.55);
  white-space: nowrap;
  transition: opacity 0.3s;
}

.loader-iris {
  position: absolute;
  inset: 0;
  background: #03010a;
  opacity: 0;
  pointer-events: none;
  clip-path: circle(150% at 50% 50%);
  will-change: clip-path;
}

.loader-iris.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Audio toggle */
.audio-toggle {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.95rem;
  border-radius: 9999px;
  background: rgba(8, 6, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 242, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s, border-color 0.3s, background 0.3s;
}

html.is-ready .audio-toggle {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.audio-toggle:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(18, 16, 30, 0.9);
}

.audio-toggle__icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 242, 234, 0.35);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4);
  transition: background 0.3s, box-shadow 0.3s;
}

.audio-toggle.is-on .audio-toggle__icon {
  background: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
  animation: audio-pulse 2.2s ease-in-out infinite;
}

@keyframes audio-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15); }
  50% { box-shadow: 0 0 0 7px rgba(34, 211, 238, 0.08); }
}

/* Continuous approach loops disabled */
.approach-alive {
  animation: none !important;
}

/* Gradient box appear effect */
.gradient-box {
  --gb-delay: 0ms;
  position: relative;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: blur(6px) saturate(0.7);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    filter 0.7s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s;
  transition-delay: var(--gb-delay);
  overflow: hidden;
}

.gradient-box::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(99, 102, 241, 0.22) 35%,
    rgba(34, 211, 238, 0.28) 50%,
    rgba(168, 85, 247, 0.22) 65%,
    transparent 80%
  );
  opacity: 0;
  transform: translateX(-45%) rotate(8deg);
  pointer-events: none;
  transition: opacity 0.5s, transform 1.1s var(--ease-out);
  z-index: 0;
}

.gradient-box > * {
  position: relative;
  z-index: 1;
}

.gradient-box.is-appeared {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0) saturate(1);
}

.gradient-box.is-appeared:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(99, 102, 241, 0.12);
}

.gradient-box.is-appeared::after {
  opacity: 1;
  transform: translateX(45%) rotate(8deg);
  animation: gb-sheen 1.15s var(--ease-out) var(--gb-delay) both;
}

@keyframes gb-sheen {
  0% {
    opacity: 0.85;
    transform: translateX(-55%) rotate(8deg);
  }
  100% {
    opacity: 0;
    transform: translateX(60%) rotate(8deg);
  }
}

/* Calm hover — no heavy 3D tilt */
.feature-tile:hover,
.solution-panel:hover,
.plan-card:hover,
.learn-card:hover,
.review:hover,
.social-post:hover {
  transform: translateY(-3px);
}

.process-step:hover {
  transform: translateY(-2px);
}

.process-step:hover .process-step__index {
  transform: none;
  filter: none;
}

.award-seal:hover {
  transform: scale(1.03) rotate(0deg);
}

.three-chips li {
  animation: none;
}

.hero__headline-gradient {
  animation: none;
  background-size: 100% 100%;
}

.marquee__track {
  animation-duration: 36s;
}

.ticker-band__track {
  animation-duration: 48s;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-band__track,
  .marquee__track,
  .hero-anim,
  .reveal,
  .grad-shift,
  .approach-alive,
  .gradient-box,
  .gradient-box::after,
  .audio-toggle.is-on .audio-toggle__icon,
  .three-chips li {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .gradient-box {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .gradient-box.is-appeared::after {
    display: none;
  }

  .site--veiled {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* ========== MOTION SYSTEM ========== */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-rise 0.9s var(--ease-out) forwards;
}

.hero-anim--1 { animation-delay: 0.15s; }
.hero-anim--2 { animation-delay: 0.32s; }
.hero-anim--3 { animation-delay: 0.48s; }

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.navbar {
  animation: hero-rise 0.7s var(--ease-out) 0.05s both;
}

.hero__marquee {
  animation: hero-rise 0.8s var(--ease-out) 0.55s both;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav-item:hover::after {
  transform: scaleX(1);
}

.navbar__logo {
  transition: transform 0.35s var(--ease-out), filter 0.35s;
}

.navbar__logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.45));
}

.marquee__item {
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  opacity: 0.85;
}

.marquee__item:hover {
  transform: scale(1.06);
  opacity: 1;
}

.marquee__icon {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.marquee__item:hover .marquee__icon {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    filter 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.tilt {
  transform-style: preserve-3d;
}

.magnetic {
  transition: transform 0.2s var(--ease-out), background 0.3s, border-color 0.3s,
    box-shadow 0.3s, filter 0.3s;
}

.process-step {
  transition: background 0.35s, transform 0.35s var(--ease-out), border-color 0.35s;
}

.process-step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
}

.process-step__index {
  transition: transform 0.4s var(--ease-out), filter 0.4s;
}

.process-step:hover .process-step__index {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.45));
}

.award-seal {
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.award-seal:hover {
  transform: scale(1.08) rotate(-4deg);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.2);
}

.social-post {
  border-radius: 1.15rem;
  transition: background 0.3s, transform 0.35s var(--ease-out), border-color 0.3s,
    box-shadow 0.35s;
}

.social-post:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.12);
}

.site-footer__cols a {
  position: relative;
  display: inline-block;
  transition: color 0.25s, transform 0.25s var(--ease-out);
}

.site-footer__cols a:hover {
  color: #fff;
  transform: translateX(4px);
}

.contact-direct a {
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}

.contact-direct a:hover {
  border-color: var(--accent-cyan);
  transform: translateX(3px);
}

.mx__link {
  transition: opacity 0.2s, letter-spacing 0.3s var(--ease-out);
}

.mx__link:hover {
  opacity: 0.75;
  letter-spacing: 0.08em;
}

.three-chips li {
  transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s;
  animation: chip-float 4s ease-in-out infinite;
}

.three-chips li:nth-child(2) { animation-delay: 0.4s; }
.three-chips li:nth-child(3) { animation-delay: 0.8s; }
.three-chips li:nth-child(4) { animation-delay: 1.2s; }

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

.feature-tile ul li {
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.feature-tile ul li:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
}

.plan-card--featured .btn--primary {
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  color: #0b0914;
}

.plan-card--featured .btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 32px rgba(34, 211, 238, 0.35);
}

.mx__grad {
  background: linear-gradient(to left, #6366f1, #22d3ee, #a855f7);
}

.mx__title em {
  background: linear-gradient(90deg, #6366f1, #22d3ee 45%, #a855f7);
}
