:root {
  color-scheme: light;
  --ink: #05060a;
  --muted: #4f5666;
  --soft: #f6fbff;
  --white: #ffffff;
  --blue: #2f75ff;
  --cyan: #24d4ee;
  --violet: #7a55ff;
  --pink: #f75fa3;
  --coral: #ff675f;
  --lemon: #ffd35a;
  --mint: #51e2c1;
  --green: #40ce75;
  --shadow: 0 24px 80px rgba(39, 77, 145, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --edge: rgba(255, 255, 255, 0.88);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --scroll: 0;
  --scroll-px: 0px;
  --wave-shift: 0px;
  --mouse-x: 0;
  --mouse-y: 0;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  background: #ffffff;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 4%, rgba(36, 212, 238, 0.15), transparent 26rem),
    radial-gradient(circle at 18% 36%, rgba(122, 85, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8fdff 46%, #ffffff 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(36, 212, 238, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 85, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 78%, transparent);
}

.ambient-ribbons {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient-ribbons svg {
  width: 100%;
  height: 100%;
}

.ambient-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 18 26;
  stroke-dashoffset: calc(var(--scroll) * -720);
  opacity: 0.34;
  filter: drop-shadow(0 18px 32px rgba(47, 117, 255, 0.12));
  animation: ambientDash 18s linear infinite;
}

.line-cyan {
  stroke: var(--cyan);
}

.line-pink {
  stroke: var(--pink);
}

.line-violet {
  stroke: var(--violet);
}

.line-mint {
  stroke: var(--mint);
}

.liquid-streams {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.stream {
  position: absolute;
  left: -22vw;
  width: 144vw;
  height: clamp(88px, 13vw, 188px);
  opacity: 0.38;
  background:
    linear-gradient(90deg, rgba(36, 212, 238, 0), rgba(36, 212, 238, 0.42), rgba(247, 95, 163, 0.34), rgba(255, 211, 90, 0.22), rgba(36, 212, 238, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 12px, transparent 12px 38px);
  clip-path: polygon(0 48%, 9% 28%, 20% 41%, 32% 18%, 45% 34%, 58% 17%, 72% 36%, 86% 23%, 100% 42%, 100% 68%, 86% 84%, 72% 66%, 58% 89%, 44% 70%, 31% 90%, 18% 70%, 8% 82%, 0 64%);
  filter: saturate(1.1);
  transform: translate3d(calc(var(--scroll) * -92px), 0, 0) rotate(var(--stream-angle));
  animation: streamFlow var(--stream-speed) var(--ease) infinite alternate;
}

.stream-one {
  top: 13%;
  --stream-angle: -7deg;
  --stream-angle-to: -2deg;
  --stream-speed: 12s;
}

.stream-two {
  top: 49%;
  opacity: 0.28;
  --stream-angle: 6deg;
  --stream-angle-to: 1deg;
  --stream-speed: 15s;
  animation-delay: -5s;
}

.stream-three {
  top: 78%;
  opacity: 0.31;
  --stream-angle: -4deg;
  --stream-angle-to: 3deg;
  --stream-speed: 18s;
  animation-delay: -9s;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: calc(var(--scroll) * 100%);
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--coral), var(--lemon));
  box-shadow: 0 0 24px rgba(36, 212, 238, 0.44);
  transform-origin: left;
}

.motion-glow {
  position: fixed;
  left: var(--pointer-x);
  top: var(--pointer-y);
  z-index: -1;
  width: 34vw;
  min-width: 280px;
  aspect-ratio: 1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(36, 212, 238, 0.22), transparent 58%),
    radial-gradient(circle at 70% 35%, rgba(247, 95, 163, 0.18), transparent 42%);
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.72;
  transform: translate(-50%, -50%) scale(calc(0.86 + var(--scroll) * 0.28));
  transition:
    left 360ms var(--ease),
    top 360ms var(--ease);
}

.particle-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.particle-field span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  background: var(--c);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(36, 212, 238, 0.08);
  opacity: 0.44;
  animation: particleDrift var(--d) var(--ease) infinite alternate;
}

.particle-field span:nth-child(1) { --x: 8%; --y: 22%; --s: 9px; --d: 6s; --c: var(--cyan); }
.particle-field span:nth-child(2) { --x: 18%; --y: 68%; --s: 12px; --d: 7s; --c: var(--pink); }
.particle-field span:nth-child(3) { --x: 32%; --y: 14%; --s: 7px; --d: 8s; --c: var(--lemon); }
.particle-field span:nth-child(4) { --x: 48%; --y: 78%; --s: 10px; --d: 6.5s; --c: var(--violet); }
.particle-field span:nth-child(5) { --x: 62%; --y: 28%; --s: 8px; --d: 7.5s; --c: var(--coral); }
.particle-field span:nth-child(6) { --x: 77%; --y: 62%; --s: 13px; --d: 8.5s; --c: var(--mint); }
.particle-field span:nth-child(7) { --x: 91%; --y: 18%; --s: 7px; --d: 6.8s; --c: var(--blue); }
.particle-field span:nth-child(8) { --x: 84%; --y: 86%; --s: 11px; --d: 9s; --c: var(--pink); }
.particle-field span:nth-child(9) { --x: 12%; --y: 88%; --s: 7px; --d: 7.8s; --c: var(--mint); }
.particle-field span:nth-child(10) { --x: 55%; --y: 8%; --s: 10px; --d: 6.2s; --c: var(--cyan); }
.particle-field span:nth-child(11) { --x: 71%; --y: 44%; --s: 6px; --d: 8.2s; --c: var(--lemon); }
.particle-field span:nth-child(12) { --x: 39%; --y: 54%; --s: 9px; --d: 7.2s; --c: var(--coral); }
.particle-field span:nth-child(13) { --x: 96%; --y: 48%; --s: 8px; --d: 7.9s; --c: var(--violet); }
.particle-field span:nth-child(14) { --x: 4%; --y: 44%; --s: 11px; --d: 8.7s; --c: var(--blue); }

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(1120px, calc(100% - 40px));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transform: translate3d(-50%, calc(var(--scroll) * -16px), 0);
}

.site-header::before {
  position: absolute;
  inset: -12px -16px;
  z-index: -1;
  content: "";
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 18px 70px rgba(43, 73, 132, 0.08);
  opacity: calc(0.55 + var(--scroll) * 1.4);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 0.9;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(47, 117, 255, 0.22));
  transform: rotate(-4deg);
  animation: brandPulse 5s var(--ease) infinite alternate;
}

.brand span {
  display: inline-block;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.1vw, 32px);
  font-size: 0.84rem;
  font-weight: 650;
  color: rgba(5, 6, 10, 0.78);
}

.nav-links a,
.site-footer nav a {
  position: relative;
  transition: color 220ms var(--ease);
}

.nav-links a::after,
.site-footer nav a::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}

.nav-links a:hover::after,
.site-footer nav a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--ink);
}

.button {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease),
    background 280ms var(--ease);
  overflow: hidden;
}

.button::before {
  position: absolute;
  inset: 3px;
  content: "";
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.36), transparent 68%);
  border-radius: inherit;
  transform: translateX(-120%);
  transition: transform 640ms var(--ease);
}

.button svg {
  position: relative;
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 280ms var(--ease);
}

.button span {
  position: relative;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, #0a0d18 0%, #16203d 100%);
  box-shadow:
    0 18px 40px rgba(5, 6, 10, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.button-dark:hover {
  box-shadow:
    0 24px 54px rgba(5, 6, 10, 0.28),
    0 0 0 1px rgba(36, 212, 238, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(47, 117, 255, 0.12);
  backdrop-filter: blur(18px);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 54px rgba(47, 117, 255, 0.18);
}

.button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(36, 212, 238, 0.42),
    0 18px 40px rgba(5, 6, 10, 0.2);
}

.button:active {
  transform: translateY(-1px) scale(0.99);
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(36, 212, 238, 0.55);
  outline-offset: 3px;
  border-radius: 12px;
}

.vanta-form input:focus-visible,
.vanta-form select:focus-visible,
.vanta-form textarea:focus-visible {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.section-frame {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  scroll-margin-top: 112px;
}

.hero {
  display: grid;
  min-height: 92svh;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: clamp(22px, 3.3vw, 52px);
  padding: 116px 0 82px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
  transform: translate3d(0, calc(var(--scroll) * -38px), 0);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 720px;
  color: transparent;
  background: linear-gradient(110deg, #05060a 0%, #1746de 26%, #7a55ff 48%, #f75fa3 68%, #05060a 92%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(3.1rem, 5.8vw, 5.05rem);
  font-weight: 950;
  line-height: 0.94;
  animation: textGradient 12s linear infinite;
}

h2 {
  position: relative;
  width: fit-content;
  font-size: clamp(2.3rem, 4.3vw, 4.55rem);
  font-weight: 920;
  line-height: 0.98;
}

h2::after {
  display: block;
  width: 74px;
  height: 9px;
  margin-top: 16px;
  content: "";
  background:
    radial-gradient(circle at 8px 4px, var(--cyan) 0 4px, transparent 5px),
    radial-gradient(circle at 24px 4px, var(--violet) 0 4px, transparent 5px),
    radial-gradient(circle at 40px 4px, var(--pink) 0 4px, transparent 5px),
    radial-gradient(circle at 56px 4px, var(--cyan) 0 4px, transparent 5px);
  background-size: 64px 9px;
  border-radius: 999px;
  animation: shimmerDots 3.8s linear infinite;
}

.hero-copy p,
.section-copy p {
  max-width: 600px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.micro-line {
  position: relative;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: #4b5365;
  font-size: 0.95rem;
  font-weight: 650;
}

.micro-line::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 128px;
  height: 7px;
  content: "";
  background: repeating-radial-gradient(circle at 8px 3px, var(--cyan) 0 3px, transparent 4px 16px);
  border-radius: 999px;
  animation: shimmerDots 4s linear infinite;
}

.hero-art {
  position: relative;
  z-index: 2;
  min-height: 470px;
  perspective: 1200px;
  transform:
    translate3d(
      calc(var(--mouse-x) * 18px),
      calc(var(--mouse-y) * 18px + var(--scroll) * 24px),
      0
    );
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: min(58vw, 650px);
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 34px 64px rgba(47, 117, 255, 0.18));
  animation: logoDrift 7.5s var(--ease) infinite alternate;
  will-change: transform, filter;
}

.hero-art::before,
.hero-art::after,
.application-orb::before,
.application-orb::after {
  position: absolute;
  left: 50%;
  z-index: 0;
  width: min(58vw, 560px);
  height: 78px;
  content: "";
  background:
    linear-gradient(90deg, rgba(36, 212, 238, 0), rgba(36, 212, 238, 0.45), rgba(247, 95, 163, 0.34), rgba(255, 211, 90, 0)),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 255, 255, 0.36) 22px 26px);
  clip-path: polygon(0 44%, 14% 22%, 29% 48%, 43% 16%, 56% 42%, 72% 20%, 88% 46%, 100% 30%, 100% 70%, 84% 86%, 70% 62%, 55% 88%, 41% 66%, 28% 90%, 12% 66%, 0 78%);
  opacity: 0.56;
  transform: translateX(-50%) rotate(-13deg);
  animation: heroRibbon 8s var(--ease) infinite alternate;
}

.hero-art::before,
.application-orb::before {
  top: 10%;
}

.hero-art::after,
.application-orb::after {
  bottom: 12%;
  opacity: 0.42;
  transform: translateX(-50%) rotate(15deg);
  animation-delay: -3.8s;
}

.v-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(40vw, 370px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(calc(var(--mouse-y) * -9deg)) rotateY(calc(var(--mouse-x) * 9deg));
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 60px rgba(68, 98, 207, 0.2));
}

.v-mark::before,
.v-mark::after {
  position: absolute;
  content: "";
  clip-path: polygon(4% 4%, 29% 4%, 50% 65%, 71% 4%, 96% 4%, 61% 94%, 39% 94%);
}

.v-mark::before {
  inset: 8%;
  background: linear-gradient(145deg, var(--cyan), var(--blue) 34%, var(--violet) 54%, var(--pink) 74%, var(--coral));
  border-radius: 28px;
  box-shadow: inset 0 -24px 42px rgba(5, 6, 10, 0.12);
  animation: vantaPulse 7s var(--ease) infinite alternate;
}

.v-mark::after {
  display: none;
}

.v-mark span {
  display: none;
}

.v-mark.mini {
  position: relative;
  top: auto;
  left: auto;
  width: 72px;
  transform: none;
  filter: none;
}

.v-mark.mini::before {
  inset: 5%;
  border-radius: 12px;
}

.v-mark.mini::after {
  inset: 18% 23% 22%;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  border: 2px solid rgba(55, 114, 255, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle));
  animation: orbitSpin 16s linear infinite;
}

.orbit::after {
  position: absolute;
  top: 14%;
  left: 72%;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 0 0 9px rgba(255, 103, 95, 0.12);
}

.orbit-one {
  width: min(62vw, 560px);
  height: 180px;
  --angle: -8deg;
}

.orbit-two {
  width: min(52vw, 470px);
  height: 132px;
  --angle: 23deg;
  animation-duration: 21s;
  animation-direction: reverse;
  border-color: rgba(122, 85, 255, 0.42);
}

.orbit-three {
  width: min(58vw, 520px);
  height: 220px;
  --angle: -41deg;
  animation-duration: 27s;
  border-color: rgba(36, 212, 238, 0.34);
}

.float-bubble {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(55, 114, 255, 0.18);
  animation: bubbleFloat 5s var(--ease) infinite alternate;
}

.float-bubble::after {
  position: absolute;
  inset: 8px 12px auto auto;
  width: 16px;
  height: 16px;
  content: "";
  background: rgba(255, 255, 255, 0.44);
  border-radius: 50%;
}

.float-bubble svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bubble-chat {
  top: 19%;
  right: 7%;
  background: linear-gradient(145deg, var(--cyan), var(--blue));
}

.bubble-heart {
  top: 39%;
  right: 0;
  width: 62px;
  height: 62px;
  background: linear-gradient(145deg, var(--pink), var(--coral));
  animation-delay: -1.4s;
}

.bubble-play {
  right: 31%;
  bottom: 24%;
  width: 62px;
  height: 62px;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(122, 85, 255, 0.55);
  backdrop-filter: blur(10px);
  animation-delay: -2s;
}

.bubble-users {
  bottom: 26%;
  left: 4%;
  background: linear-gradient(145deg, #7895ff, var(--violet));
  animation-delay: -0.7s;
}

.hero-creators {
  position: relative;
  z-index: 4;
  display: flex;
  transform: none;
}

.avatar {
  width: 42px;
  height: 42px;
  margin-right: -9px;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(43, 73, 132, 0.13);
}

.avatar-blue {
  background:
    radial-gradient(circle at 50% 33%, #ffd7be 0 23%, transparent 24%),
    radial-gradient(circle at 50% 14%, #2f75ff 0 36%, transparent 37%),
    linear-gradient(145deg, #dff5ff, #9bbcff);
}

.avatar-pink {
  background:
    radial-gradient(circle at 50% 35%, #ffd8cc 0 24%, transparent 25%),
    radial-gradient(circle at 50% 15%, #ff74a7 0 37%, transparent 38%),
    linear-gradient(145deg, #ffe7f0, #ffb9cc);
}

.avatar-violet {
  background:
    radial-gradient(circle at 50% 34%, #f2cfba 0 24%, transparent 25%),
    radial-gradient(circle at 50% 16%, #7a55ff 0 37%, transparent 38%),
    linear-gradient(145deg, #eee9ff, #bab0ff);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 78px;
  z-index: 5;
  display: grid;
  width: 31px;
  height: 52px;
  place-items: start center;
  border: 2px solid rgba(5, 6, 10, 0.7);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 5px;
  height: 10px;
  margin-top: 9px;
  background: var(--ink);
  border-radius: 999px;
  animation: scrollDot 1.5s var(--ease) infinite;
}

.wave-layer {
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 100vw;
  pointer-events: none;
  transform: translateX(-50%);
}

.wave-layer svg {
  width: 100%;
  height: 100%;
}

.wave-hero {
  bottom: -18px;
  height: clamp(210px, 28vw, 370px);
}

.wave-layer path {
  transform-origin: center;
  animation: waveBreath 9s var(--ease) infinite alternate;
}

.wave-layer path:nth-child(2) {
  animation-duration: 12s;
  animation-delay: -3s;
}

.wave-layer path:nth-child(3) {
  animation-duration: 15s;
  animation-delay: -6s;
}

.wave-blue {
  fill: rgba(47, 117, 255, 0.45);
}

.wave-coral {
  fill: rgba(255, 95, 141, 0.33);
}

.wave-mint {
  fill: rgba(81, 226, 193, 0.24);
}

.motion-rail {
  position: relative;
  z-index: 12;
  width: 100%;
  overflow: hidden;
  padding: 24px 0 38px;
  margin-top: -10px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 15%, rgba(255, 255, 255, 0.9) 85%, transparent 100%),
    linear-gradient(90deg, rgba(36, 212, 238, 0.12), rgba(247, 95, 163, 0.12), rgba(255, 211, 90, 0.1));
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}

.motion-rail::before,
.motion-rail::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(36, 212, 238, 0.42), rgba(247, 95, 163, 0.42), transparent);
}

.motion-rail::before {
  top: 0;
}

.motion-rail::after {
  bottom: 0;
}

.rail-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: railMarquee 24s linear infinite;
  transform: translateZ(0);
}

.rail-track span {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 0 28px;
  color: #252b38;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 255, 0.95));
  border: 1px solid rgba(47, 117, 255, 0.12);
  border-radius: 999px;
  box-shadow:
    0 22px 56px rgba(47, 117, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 880;
  white-space: nowrap;
  backdrop-filter: blur(20px);
  animation: floatPill 5.2s var(--ease) infinite alternate;
}

.rail-track span:nth-child(2n) {
  animation-delay: -2.6s;
}

.rail-track span:nth-child(4n + 1) {
  color: var(--blue);
}

.rail-track span:nth-child(4n + 2) {
  color: var(--pink);
}

.rail-track span:nth-child(4n + 3) {
  color: var(--violet);
}

.rail-track span:nth-child(4n + 4) {
  color: #0ba783;
}

.vision-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  min-height: 620px;
  margin-top: -78px;
  padding: 24px 0 104px;
}

.creator-illustration {
  position: relative;
  min-height: 440px;
  border-radius: 36px;
  transform: translate3d(0, calc((var(--scroll) - 0.18) * 56px), 0);
}

.creator-illustration::before {
  position: absolute;
  inset: 10% 3% 8% 0;
  content: "";
  background:
    radial-gradient(circle at 26% 32%, rgba(47, 117, 255, 0.15), transparent 15%),
    radial-gradient(circle at 64% 25%, rgba(247, 95, 163, 0.15), transparent 17%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(223, 246, 255, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 42% 58% 50% 50% / 48% 42% 58% 52%;
  box-shadow: var(--shadow);
  animation: blobMorph 13s var(--ease) infinite alternate;
}

.creator {
  position: absolute;
  bottom: 16%;
  width: 196px;
  height: 260px;
}

.creator span {
  position: absolute;
  display: block;
}

.creator-one {
  left: 12%;
}

.creator-two {
  left: 42%;
  transform: scale(1.02);
}

.creator .body {
  left: 28px;
  bottom: 0;
  width: 135px;
  height: 146px;
  border-radius: 48px 48px 28px 28px;
  background: linear-gradient(145deg, #245ee5, #67b9ff);
}

.creator-two .body {
  background: linear-gradient(145deg, #ff8ab7, #a67dff);
}

.creator .face {
  top: 58px;
  left: 57px;
  width: 78px;
  height: 88px;
  background: #ffd5bf;
  border-radius: 42% 42% 50% 50%;
  box-shadow: inset 0 -9px rgba(255, 185, 164, 0.36);
}

.creator .hair {
  top: 30px;
  left: 38px;
  width: 120px;
  height: 98px;
  border-radius: 54% 46% 46% 54%;
  background: linear-gradient(145deg, #1346b5, #20b2ed);
  transform: rotate(-8deg);
}

.creator-two .hair {
  background: linear-gradient(145deg, #ff6ea7, #6755ff);
}

.creator-two .hair::before,
.creator-two .hair::after {
  position: absolute;
  top: -13px;
  width: 32px;
  height: 46px;
  content: "";
  background: inherit;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.creator-two .hair::before {
  left: 14px;
  transform: rotate(-12deg);
}

.creator-two .hair::after {
  right: 16px;
  transform: rotate(14deg);
}

.creator .screen {
  right: -12px;
  bottom: 20px;
  width: 132px;
  height: 86px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(73, 164, 255, 0.28);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(52, 95, 175, 0.14);
  backdrop-filter: blur(14px);
}

.message-card {
  position: absolute;
  width: 106px;
  height: 54px;
  border: 1px solid rgba(73, 164, 255, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 40px rgba(52, 95, 175, 0.1);
  animation: bubbleFloat 5.5s var(--ease) infinite alternate;
}

.card-one {
  top: 20%;
  left: 54%;
}

.card-two {
  top: 35%;
  left: 18%;
  width: 74px;
  animation-delay: -1.8s;
}

.card-three {
  right: 10%;
  bottom: 30%;
  width: 86px;
  animation-delay: -2.7s;
}

.section-copy {
  position: relative;
  z-index: 2;
}

.vision-note {
  display: flex;
  max-width: 520px;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: #2f3545;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.5;
}

.vision-note svg {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  padding: 12px;
  color: var(--blue);
  background: rgba(47, 117, 255, 0.08);
  border: 2px solid rgba(47, 117, 255, 0.24);
  border-radius: 50%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.management-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  padding: 72px 0 116px;
}

.management-copy p {
  max-width: 520px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.64;
}

.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 20px;
  isolation: isolate;
}

.flow-board::before {
  position: absolute;
  inset: 14% 8%;
  z-index: -1;
  content: "";
  border: 2px solid rgba(47, 117, 255, 0.22);
  border-radius: 48% 52% 46% 54% / 48% 44% 56% 52%;
  transform: rotate(calc(-5deg + var(--scroll) * 20deg));
  animation: blobMorph 12s var(--ease) infinite alternate;
}

.flow-board::after {
  position: absolute;
  inset: 25% -4%;
  z-index: -2;
  content: "";
  background: linear-gradient(90deg, rgba(36, 212, 238, 0.16), rgba(247, 95, 163, 0.16), rgba(255, 211, 90, 0.14));
  border-radius: 50%;
  filter: blur(5px);
  transform: translateX(calc((var(--scroll) - 0.3) * 90px)) rotate(-8deg);
}

.flow-step {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: end;
  gap: 12px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(64, 93, 168, 0.09);
  backdrop-filter: blur(18px);
  transform: translateY(28px) rotate(-1deg);
  opacity: 0;
  filter: blur(16px);
  overflow: hidden;
  transition:
    opacity 1100ms var(--ease),
    filter 1100ms var(--ease),
    transform 1100ms var(--ease),
    box-shadow 260ms var(--ease);
}

.flow-step::after,
.creator-card::after,
.application-card::after,
.application-side article::after,
.company-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.42) 46%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-110%);
  transition:
    opacity 280ms var(--ease),
    transform 760ms var(--ease);
}

.flow-step:nth-child(even) {
  transform: translateY(28px) rotate(1deg);
}

.flow-step::before {
  position: absolute;
  inset: auto -20% -46% -20%;
  height: 120px;
  content: "";
  background: linear-gradient(90deg, rgba(47, 117, 255, 0.22), rgba(36, 212, 238, 0.18), rgba(247, 95, 163, 0.18));
  border-radius: 50%;
  transform: translateX(calc((var(--scroll) - 0.4) * 80px));
}

.flow-step:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(122, 85, 255, 0.22), rgba(247, 95, 163, 0.2), rgba(255, 211, 90, 0.16));
}

.flow-step:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(247, 95, 163, 0.18), rgba(255, 103, 95, 0.18), rgba(81, 226, 193, 0.17));
}

.flow-step:nth-child(4)::before {
  background: linear-gradient(90deg, rgba(81, 226, 193, 0.2), rgba(36, 212, 238, 0.18), rgba(122, 85, 255, 0.17));
}

.flow-step.is-visible {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
  filter: blur(0);
}

.flow-step:hover {
  box-shadow: 0 28px 80px rgba(64, 93, 168, 0.15);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(-7px);
}

.flow-step:hover::after,
.creator-card:hover::after,
.application-card:hover::after,
.application-side article:hover::after,
.company-panel:hover::after {
  opacity: 1;
  transform: translateX(110%);
}

.flow-index {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(5, 6, 10, 0.16);
  font-size: 3.25rem;
  font-weight: 950;
  line-height: 1;
}

.flow-step h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 880;
  line-height: 1.05;
}

.flow-step p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 560;
  line-height: 1.48;
}

.offers-section {
  padding: 74px 0 124px;
}

.section-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 54px;
}

.section-heading.align-left {
  justify-content: flex-start;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(100px, 1fr));
  gap: 22px;
}

.icon-item {
  display: grid;
  min-height: 156px;
  justify-items: center;
  align-content: start;
  gap: 18px;
  text-align: center;
  transform: translateY(24px);
  opacity: 0;
  filter: blur(14px);
  transition:
    opacity 1050ms var(--ease),
    filter 1050ms var(--ease),
    transform 1050ms var(--ease);
}

.icon-item.is-visible,
.role-chip.is-visible,
.flow-step.is-visible {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.icon-item.is-visible:hover,
.role-chip.is-visible:hover,
.flow-step.is-visible:hover {
  transform:
    perspective(700px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(-8px);
}

.icon-item h3 {
  max-width: 150px;
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.28;
}

.icon-shell {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 34px;
  box-shadow: 0 22px 44px rgba(72, 105, 190, 0.13);
  animation: iconSway 4.5s var(--ease) infinite alternate;
}

.icon-shell svg {
  width: 43px;
  height: 43px;
  stroke: currentColor;
  stroke-width: 1.95;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blue {
  color: var(--blue);
  background: rgba(47, 117, 255, 0.12);
}

.violet {
  color: var(--violet);
  background: rgba(122, 85, 255, 0.11);
}

.pink {
  color: var(--pink);
  background: rgba(247, 95, 163, 0.12);
}

.coral {
  color: var(--coral);
  background: rgba(255, 103, 95, 0.11);
}

.lemon {
  color: #d89800;
  background: rgba(255, 211, 90, 0.2);
}

.mint {
  color: #11a981;
  background: rgba(81, 226, 193, 0.17);
}

.aqua {
  color: #0ba7c7;
  background: rgba(36, 212, 238, 0.15);
}

.roles-section {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 112px max(24px, calc((100vw - 1180px) / 2)) 136px;
  background:
    linear-gradient(174deg, rgba(122, 85, 255, 0.12), transparent 40%),
    linear-gradient(9deg, transparent 52%, rgba(255, 95, 141, 0.12) 52%),
    radial-gradient(circle at 86% 24%, rgba(255, 211, 90, 0.24), transparent 12rem);
  overflow: hidden;
}

.roles-section::before,
.roles-section::after {
  position: absolute;
  left: -5vw;
  width: 110vw;
  height: 160px;
  content: "";
  background: linear-gradient(90deg, rgba(47, 117, 255, 0.17), rgba(247, 95, 163, 0.2), rgba(122, 85, 255, 0.16));
  border-radius: 50%;
  filter: blur(2px);
  transform: rotate(-4deg);
  animation: waveSlide 14s var(--ease) infinite alternate;
}

.roles-section::before {
  top: 0;
}

.roles-section::after {
  right: -5vw;
  bottom: -70px;
  left: auto;
  background: linear-gradient(90deg, rgba(255, 103, 95, 0.18), rgba(81, 226, 193, 0.18), rgba(122, 85, 255, 0.14));
  transform: rotate(3deg);
  animation-delay: -5s;
}

.roles-section .section-heading {
  position: relative;
  z-index: 2;
}

.roles-river {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.role-chip {
  display: grid;
  min-height: 154px;
  place-items: center;
  gap: 14px;
  padding: 24px 18px;
  text-align: center;
  transform: translateY(26px);
  opacity: 0;
  filter: blur(14px);
  transition:
    opacity 1050ms var(--ease),
    filter 1050ms var(--ease),
    transform 1050ms var(--ease);
}

.role-chip svg {
  width: 66px;
  height: 66px;
  padding: 14px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(64, 85, 160, 0.1);
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.role-chip:nth-child(2) svg {
  color: var(--violet);
}

.role-chip:nth-child(3) svg {
  color: var(--pink);
}

.role-chip:nth-child(4) svg {
  color: var(--coral);
}

.role-chip:nth-child(5) svg {
  color: #11a981;
}

.role-chip:nth-child(6) svg {
  color: #0ba7c7;
}

.role-chip span {
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.22;
}

.goals-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  min-height: 720px;
  padding: 112px 0 130px;
}

.goal-list ul {
  display: grid;
  gap: 22px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.goal-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #252b38;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 680;
  line-height: 1.35;
}

.check {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.check::after {
  width: 9px;
  height: 5px;
  content: "";
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.check.blue,
.check.violet,
.check.aqua,
.check.lemon,
.check.green {
  background: transparent;
}

.check.green {
  color: var(--green);
}

.world-network {
  position: relative;
  min-height: 470px;
  transform: translate3d(0, calc((var(--scroll) - 0.64) * -62px), 0);
}

.map-dots,
.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-dots path:first-of-type {
  fill: rgba(222, 241, 255, 0.55);
}

.map-dots .continent {
  fill: url("#dot-grid");
}

.map-dots circle {
  fill: rgba(47, 117, 255, 0.25);
}

.network-lines {
  overflow: visible;
}

.network-lines path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  animation: dashFlow 15s linear infinite;
}

.network-lines path:nth-child(1) {
  stroke: rgba(47, 117, 255, 0.5);
}

.network-lines path:nth-child(2) {
  stroke: rgba(247, 95, 163, 0.55);
  animation-delay: -4s;
}

.network-lines path:nth-child(3) {
  stroke: rgba(36, 212, 238, 0.5);
  animation-delay: -8s;
}

.network-lines path:nth-child(4) {
  stroke: rgba(122, 85, 255, 0.48);
  animation-delay: -2s;
}

.network-lines path:nth-child(5) {
  stroke: rgba(81, 226, 193, 0.56);
  animation-delay: -6s;
}

.map-logo {
  position: absolute;
  top: 43%;
  left: 50%;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.node {
  position: absolute;
  width: 54px;
  height: 54px;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(76, 101, 170, 0.17);
  animation: nodePulse 3.6s var(--ease) infinite alternate;
}

.node-one {
  top: 21%;
  left: 21%;
  background: radial-gradient(circle at 50% 36%, #ffd8be 0 20%, transparent 21%), linear-gradient(145deg, #6ad7ff, #2f75ff);
}

.node-two {
  top: 18%;
  right: 19%;
  background: radial-gradient(circle at 50% 36%, #ffd8be 0 20%, transparent 21%), linear-gradient(145deg, #ff8ab7, #f75fa3);
  animation-delay: -1.1s;
}

.node-three {
  right: 8%;
  bottom: 32%;
  background: radial-gradient(circle at 50% 36%, #ffd8be 0 20%, transparent 21%), linear-gradient(145deg, #a67dff, #7a55ff);
  animation-delay: -1.8s;
}

.node-four {
  bottom: 18%;
  left: 31%;
  background: radial-gradient(circle at 50% 36%, #ffd8be 0 20%, transparent 21%), linear-gradient(145deg, #51e2c1, #24d4ee);
  animation-delay: -2.3s;
}

.node-five {
  top: 5%;
  left: 50%;
  background: radial-gradient(circle at 50% 36%, #ffd8be 0 20%, transparent 21%), linear-gradient(145deg, #ffd35a, #ff675f);
  animation-delay: -0.5s;
}

.creators-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  padding: 120px 0;
}

.section-intro {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.section-intro p,
.application-copy p,
.application-card p,
.application-side p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.68;
}

.creator-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.creator-card,
.application-card,
.application-side article,
.company-panel {
  position: relative;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 18px;
  box-shadow: 0 24px 76px rgba(52, 88, 160, 0.11);
  backdrop-filter: blur(20px);
  transition:
    transform 320ms var(--ease),
    box-shadow 320ms var(--ease),
    border-color 320ms var(--ease);
}

.creator-card:hover,
.application-card:hover,
.application-side article:hover,
.company-panel:hover {
  border-color: rgba(47, 117, 255, 0.24);
  box-shadow: 0 30px 90px rgba(52, 88, 160, 0.17);
  transform: translateY(-6px);
}

.creator-card {
  min-height: 285px;
  padding: 22px;
}

.creator-card::before,
.application-card::before,
.company-panel::before {
  position: absolute;
  inset: auto -18% -46% -18%;
  height: 72%;
  content: "";
  background:
    radial-gradient(circle at 15% 45%, rgba(36, 212, 238, 0.26), transparent 28%),
    radial-gradient(circle at 74% 36%, rgba(247, 95, 163, 0.23), transparent 32%),
    linear-gradient(110deg, rgba(81, 226, 193, 0.2), rgba(122, 85, 255, 0.14));
  border-radius: 50%;
  animation: softWave 9s var(--ease) infinite alternate;
}

.creator-card > *,
.application-card > *,
.company-panel > * {
  position: relative;
  z-index: 1;
}

.creator-avatar {
  width: 74px;
  height: 74px;
  margin-bottom: 48px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(47, 117, 255, 0.18);
}

.preview-one {
  background:
    radial-gradient(circle at 52% 36%, #ffd8be 0 18%, transparent 19%),
    linear-gradient(145deg, #24d4ee, #2f75ff);
}

.preview-two {
  background:
    radial-gradient(circle at 52% 36%, #ffd8be 0 18%, transparent 19%),
    linear-gradient(145deg, #ff8ab7, #f75fa3);
}

.preview-three {
  background:
    radial-gradient(circle at 52% 36%, #ffd8be 0 18%, transparent 19%),
    linear-gradient(145deg, #ffd35a, #51e2c1);
}

.creator-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.creator-card strong,
.application-side strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 900;
}

.creator-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.application-page main {
  overflow: hidden;
}

.application-hero {
  display: grid;
  min-height: 88svh;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(26px, 5vw, 76px);
  padding: 130px 0 88px;
}

.application-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.application-copy h1 {
  max-width: 780px;
}

.application-orb {
  position: relative;
  min-height: min(48vw, 500px);
  perspective: 1100px;
  transform: translate3d(0, calc(var(--section-phase, 0) * -18px), 0);
}

.application-orb .hero-logo {
  width: min(48vw, 560px);
}

.mini-brand-logo {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(47, 117, 255, 0.16));
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 22px;
  align-items: stretch;
  padding: 90px 0 70px;
}

.application-card {
  padding: clamp(28px, 4.5vw, 58px);
}

.application-card h2 {
  max-width: 640px;
}

.application-side {
  display: grid;
  gap: 16px;
}

.application-side article {
  min-height: 160px;
  padding: 24px;
}

.application-side article:nth-child(1) {
  background: rgba(239, 251, 255, 0.82);
}

.application-side article:nth-child(2) {
  background: rgba(255, 244, 250, 0.82);
}

.application-side article:nth-child(3) {
  background: rgba(246, 242, 255, 0.82);
}

.vanta-form {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vanta-form label {
  display: grid;
  gap: 10px;
  color: rgba(5, 6, 10, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms var(--ease);
}

.vanta-form label:focus-within {
  color: var(--ink);
}

.vanta-form .full {
  grid-column: 1 / -1;
}

.vanta-form input,
.vanta-form select,
.vanta-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 255, 0.86));
  border: 1px solid rgba(47, 117, 255, 0.18);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 1px 2px rgba(15, 32, 80, 0.04);
  font: inherit;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  outline: none;
  transition:
    border-color 220ms var(--ease),
    box-shadow 260ms var(--ease),
    background 260ms var(--ease),
    transform 220ms var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.vanta-form input::placeholder,
.vanta-form textarea::placeholder {
  color: rgba(5, 6, 10, 0.36);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

.vanta-form select {
  padding-right: 44px;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 255, 0.86)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23052' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 16px center;
  background-size: auto, 16px 16px;
  cursor: pointer;
}

.vanta-form textarea {
  min-height: 148px;
  padding: 16px 18px;
  resize: vertical;
  line-height: 1.5;
}

.vanta-form input:hover,
.vanta-form select:hover,
.vanta-form textarea:hover {
  border-color: rgba(47, 117, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 6px 18px rgba(47, 117, 255, 0.08);
}

.vanta-form input:focus,
.vanta-form select:focus,
.vanta-form textarea:focus {
  border-color: rgba(47, 117, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(252, 253, 255, 0.94));
  box-shadow:
    0 0 0 4px rgba(36, 212, 238, 0.18),
    0 10px 28px rgba(47, 117, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.vanta-form select:focus {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(252, 253, 255, 0.94)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23052' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}

.vanta-form input:user-invalid,
.vanta-form select:user-invalid,
.vanta-form textarea:user-invalid {
  border-color: rgba(247, 95, 95, 0.55);
  box-shadow:
    0 0 0 4px rgba(247, 95, 95, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.company-section {
  padding: 90px 0 80px;
}

.company-panel {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 52px);
}

.company-panel::before {
  top: -52%;
  bottom: auto;
  animation-duration: 11s;
}

.company-form {
  max-width: 820px;
}

.company-wave {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.company-wave span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 22px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.9));
  border: 1px solid rgba(47, 117, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(47, 117, 255, 0.16);
  font-size: 0.86rem;
  font-weight: 900;
  animation: floatPill 4.8s var(--ease) infinite alternate;
  backdrop-filter: blur(18px);
}

.company-wave span:nth-child(2) {
  color: var(--pink);
  animation-delay: -1.4s;
}

.company-wave span:nth-child(3) {
  color: var(--violet);
  animation-delay: -2.2s;
}

.company-wave span:nth-child(4) {
  color: #0ba783;
  animation-delay: -3s;
}

.creators-page-preview {
  padding-top: 80px;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: end;
  min-height: 640px;
  padding: 130px 0 120px;
}

.wave-final {
  inset: auto auto 0 50%;
  height: min(48vw, 470px);
  opacity: 0.96;
}

.final-copy,
.quote-card {
  position: relative;
  z-index: 3;
}

.final-copy h2 {
  max-width: 620px;
}

.final-copy h2::after {
  margin-bottom: 28px;
}

.quote-card {
  margin: 0;
  width: min(100%, 520px);
  min-height: 310px;
  padding: clamp(28px, 3.4vw, 46px);
  align-self: center;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32% 38% 34% 36% / 34% 30% 38% 32%;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: blobMorph 11s var(--ease) infinite alternate;
}

.quote-card svg {
  width: 54px;
  height: 54px;
  fill: rgba(47, 117, 255, 0.42);
}

.quote-card blockquote {
  margin: 16px 0 0;
  max-width: 390px;
  font-size: clamp(1.16rem, 1.75vw, 1.72rem);
  font-weight: 850;
  line-height: 1.28;
  overflow-wrap: break-word;
}

.site-footer {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 30px 0 38px;
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  transition:
    transform 260ms var(--ease),
    background 260ms var(--ease);
}

.socials a:hover {
  background: rgba(47, 117, 255, 0.08);
  transform: translateY(-2px);
}

.socials svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 48px));
  padding: 16px 20px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 6, 10, 0.94), rgba(31, 47, 91, 0.92)),
    linear-gradient(90deg, rgba(36, 212, 238, 0.32), rgba(247, 95, 163, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(5, 6, 10, 0.24);
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 22px, 0) scale(0.96);
  transition:
    opacity 320ms var(--ease),
    transform 320ms var(--ease);
}

.form-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal] {
  opacity: 0;
  filter: blur(22px);
  transform: translate3d(0, 96px, 0) scale(0.9);
  transform-origin: 50% 70%;
  transition:
    opacity 1280ms var(--ease),
    filter 1280ms var(--ease),
    transform 1280ms var(--ease),
    clip-path 1280ms var(--ease);
  will-change: opacity, filter, transform;
}

[data-reveal]:not(section) {
  clip-path: inset(18% 0 0 0 round 18px);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal].is-visible:not(section) {
  clip-path: inset(0 0 0 0 round 0);
}

[data-stagger] > * {
  opacity: 0;
  filter: blur(16px);
  transform: translate3d(0, 54px, 0) scale(0.94);
  transition:
    opacity 1060ms var(--ease),
    filter 1060ms var(--ease),
    transform 1060ms var(--ease),
    box-shadow 260ms var(--ease);
}

[data-stagger] > *.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.goal-list li {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(34px) scale(0.96);
  transition:
    opacity 950ms var(--ease),
    filter 950ms var(--ease),
    transform 950ms var(--ease);
}

.goal-list li.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@keyframes ambientDash {
  to {
    stroke-dashoffset: -420;
  }
}

@keyframes streamFlow {
  from {
    transform: translate3d(calc(var(--scroll) * -92px), -10px, 0) rotate(var(--stream-angle)) scaleX(0.98);
  }

  to {
    transform: translate3d(calc(var(--scroll) * -92px + 70px), 16px, 0) rotate(var(--stream-angle-to)) scaleX(1.04);
  }
}

@keyframes brandPulse {
  from {
    transform: rotate(-4deg) translateY(0) scale(1);
    filter: saturate(1);
  }

  to {
    transform: rotate(4deg) translateY(-2px) scale(1.04);
    filter: saturate(1.25);
  }
}

@keyframes logoDrift {
  from {
    transform: translate(-50%, -50%) rotate(-1.5deg) scale(0.98);
    filter: drop-shadow(0 30px 58px rgba(47, 117, 255, 0.16)) saturate(1);
  }

  to {
    transform: translate(-50%, calc(-50% - 12px)) rotate(1.5deg) scale(1.03);
    filter: drop-shadow(0 42px 72px rgba(247, 95, 163, 0.18)) saturate(1.15);
  }
}

@keyframes textGradient {
  to {
    background-position: 220% 0;
  }
}

@keyframes heroRibbon {
  from {
    transform: translateX(calc(-50% - 18px)) rotate(-13deg) scaleX(0.98);
  }

  to {
    transform: translateX(calc(-50% + 18px)) rotate(-8deg) scaleX(1.05);
  }
}

@keyframes vantaPulse {
  from {
    filter: hue-rotate(0deg) saturate(1);
  }

  to {
    filter: hue-rotate(18deg) saturate(1.18);
  }
}

@keyframes softWave {
  from {
    transform: translate3d(-3%, 0, 0) rotate(-2deg) scale(1);
  }

  to {
    transform: translate3d(3%, -7%, 0) rotate(2deg) scale(1.08);
  }
}

@keyframes floatPill {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

@keyframes orbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg));
  }
}

@keyframes bubbleFloat {
  from {
    transform: translate3d(0, -8px, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(0, 12px, 0) rotate(3deg);
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(22px);
    opacity: 0;
  }
}

@keyframes shimmerDots {
  to {
    background-position: 64px 0;
  }
}

@keyframes waveBreath {
  from {
    transform: translateX(calc(-18px + var(--wave-shift))) scaleY(0.96);
  }
  to {
    transform: translateX(calc(18px + var(--wave-shift))) scaleY(1.05);
  }
}

@keyframes blobMorph {
  from {
    border-radius: 32% 38% 34% 36% / 34% 30% 38% 32%;
    transform: translate3d(0, -4px, 0);
  }
  to {
    border-radius: 38% 32% 36% 34% / 30% 36% 32% 38%;
    transform: translate3d(0, 8px, 0);
  }
}

@keyframes iconSway {
  from {
    transform: translateY(0) rotate(-2deg);
  }
  to {
    transform: translateY(-9px) rotate(3deg);
  }
}

@keyframes waveSlide {
  from {
    transform: translateX(-2vw) rotate(-4deg);
  }
  to {
    transform: translateX(2vw) rotate(-1deg);
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes nodePulse {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-10px) scale(1.04);
  }
}

@keyframes particleDrift {
  from {
    transform: translate3d(-10px, -10px, 0) scale(0.82);
    filter: hue-rotate(0deg);
  }
  to {
    transform: translate3d(18px, 16px, 0) scale(1.08);
    filter: hue-rotate(24deg);
  }
}

@keyframes railMarquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.8rem;
  }

  .offer-grid {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }

  .management-section {
    grid-template-columns: 1fr;
  }

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

  .goals-section {
    grid-template-columns: 1fr;
  }

  .creators-section,
  .application-hero,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .creator-preview {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }

  .application-orb {
    order: -1;
    min-height: 360px;
  }

  .world-network {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr auto;
  }

  .site-header::before {
    inset: -10px -12px;
  }

  .nav-links {
    display: none;
  }

  .site-header .button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.82rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    padding: 120px 0 150px;
  }

  .hero-art {
    order: -1;
    min-height: 340px;
    margin-top: 20px;
  }

  .v-mark {
    width: min(72vw, 330px);
  }

  .hero-logo {
    width: min(94vw, 560px);
  }

  .orbit-one {
    width: min(88vw, 420px);
  }

  .orbit-two,
  .orbit-three {
    width: min(78vw, 360px);
  }

  .bubble-users {
    left: 2%;
  }

  .hero-creators {
    bottom: 18%;
  }

  .vision-section,
  .creators-section,
  .community-section {
    grid-template-columns: 1fr;
  }

  .creator-preview {
    grid-template-columns: 1fr;
  }

  .vision-section {
    padding-top: 40px;
  }

  .creator-illustration {
    min-height: 380px;
  }

  .creator {
    transform: scale(0.82);
    transform-origin: bottom left;
  }

  .creator-two {
    left: 40%;
    transform: scale(0.84);
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(128px, 1fr));
  }

  .flow-board {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .roles-section {
    padding-top: 86px;
  }

  .roles-river {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .socials {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 88px;
  }

  .section-frame,
  .site-footer {
    width: min(100% - 28px, 1180px);
    scroll-margin-top: 88px;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 3.18rem);
    line-height: 0.97;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

  .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.88rem;
  }

  .hero {
    gap: 8px;
    padding-top: 88px;
    padding-bottom: 74px;
  }

  .hero-art {
    min-height: 258px;
    margin-top: 0;
  }

  .v-mark {
    width: min(62vw, 252px);
  }

  .brand-logo {
    width: 46px;
    height: 42px;
  }

  .hero-logo {
    width: min(112vw, 430px);
  }

  .orbit-one {
    width: min(93vw, 350px);
    height: 118px;
  }

  .orbit-two {
    width: min(82vw, 310px);
    height: 96px;
  }

  .orbit-three {
    width: min(86vw, 330px);
    height: 145px;
  }

  .hero-copy p,
  .section-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .hero-creators {
    display: none;
  }

  .scroll-cue {
    bottom: 58px;
  }

  .float-bubble {
    width: 56px;
    height: 56px;
  }

  .float-bubble svg {
    width: 27px;
    height: 27px;
  }

  .bubble-chat {
    right: 4%;
  }

  .bubble-heart {
    right: 5%;
  }

  .offers-section,
  .management-section,
  .goals-section,
  .creators-section,
  .application-grid,
  .company-section,
  .community-section {
    padding-top: 82px;
    padding-bottom: 94px;
  }

  .offer-grid,
  .roles-river {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .flow-board {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flow-step {
    min-height: 168px;
    padding: 20px;
    border-radius: 22px;
  }

  .flow-index {
    top: 17px;
    left: 18px;
    font-size: 2.4rem;
  }

  .flow-step h3 {
    font-size: 1.12rem;
  }

  .flow-step p {
    font-size: 0.9rem;
  }

  .icon-shell {
    width: 72px;
    height: 72px;
    border-radius: 26px;
  }

  .icon-shell svg {
    width: 34px;
    height: 34px;
  }

  .icon-item h3,
  .role-chip span {
    font-size: 0.86rem;
  }

  .world-network {
    min-height: 320px;
    margin-inline: -26px;
  }

  .map-logo {
    width: 88px;
    height: 88px;
  }

  .mini-brand-logo {
    width: 64px;
    height: 64px;
  }

  .node {
    width: 42px;
    height: 42px;
  }

  .quote-card {
    border-radius: 30px;
    min-height: auto;
  }

  .application-hero {
    min-height: auto;
    padding: 112px 0 74px;
  }

  .application-orb {
    min-height: 260px;
  }

  .application-orb .hero-logo {
    width: min(112vw, 430px);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .application-card,
  .company-panel {
    padding: 24px;
  }

  .motion-rail {
    margin-top: -6px;
    padding: 16px 0 28px;
  }

  .rail-track {
    gap: 10px;
    animation-duration: 22s;
  }

  .rail-track span {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-copy,
  .hero-art,
  .hero-creators,
  .creator-illustration,
  .world-network,
  .site-header,
  .motion-glow,
  .liquid-streams .stream,
  .particle-field span,
  .rail-track {
    transform: none !important;
  }
}
