:root {
  --bg: #020205;
  --bg-soft: #07070d;
  --surface: rgba(13, 13, 22, 0.76);
  --surface-strong: rgba(17, 17, 28, 0.92);
  --surface-light: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.19);
  --text: #fbfaff;
  --muted: #c8c2d1;
  --soft: #938c9f;
  --pink: #ff2f9d;
  --red: #ff465f;
  --purple: #895cff;
  --blue: #2588ff;
  --cyan: #56dcff;
  --green: #64e6aa;
  --shell: 1180px;
  --radius: 26px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(137, 92, 255, 0.06), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  color: #fff;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}

h2 span,
h1 span {
  background: linear-gradient(100deg, #ff7587 0%, #ff3fa8 30%, #a873ff 63%, #55a7ff 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
}

::selection {
  background: rgba(137, 92, 255, 0.42);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 106px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
}

.section-heading p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
}

.centered {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #e7dcff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "✦";
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(86, 220, 255, 0.52);
}

.hero-starfield {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.96;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(2, 2, 5, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 15px rgba(137, 92, 255, 0.48))
    drop-shadow(0 0 24px rgba(37, 136, 255, 0.2));
}

.brand-name {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: #d9d3e1;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  border-color: transparent;
  background: linear-gradient(105deg, var(--red) 0%, var(--pink) 28%, var(--purple) 64%, var(--blue) 100%);
  box-shadow:
    0 16px 42px rgba(137, 92, 255, 0.28),
    0 7px 24px rgba(255, 47, 157, 0.15);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow:
    0 21px 56px rgba(137, 92, 255, 0.4),
    0 9px 30px rgba(255, 47, 157, 0.22);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 13px;
}

.button--large {
  min-height: 58px;
  padding: 16px 28px;
  font-size: 16px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  padding: 132px 0 84px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 40%, rgba(65, 49, 120, 0.15), transparent 30%),
    radial-gradient(circle at 50% 70%, rgba(22, 48, 92, 0.07), transparent 44%),
    linear-gradient(180deg, #020207 0%, #050611 50%, #020205 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0 38%, rgba(2, 2, 7, 0.16) 65%, rgba(2, 2, 7, 0.76) 100%),
    linear-gradient(180deg, rgba(2, 2, 7, 0.08), transparent 34%, rgba(2, 2, 5, 0.36) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 0;
  left: 6%;
  z-index: 5;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--red), var(--pink), var(--purple), var(--blue), transparent);
  box-shadow:
    0 0 18px rgba(255,47,157,.18),
    0 0 30px rgba(137,92,255,.28),
    0 0 44px rgba(37,136,255,.13);
}

.hero-shell {
  position: relative;
  z-index: 4;
}

.hero-copy {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(58px, 7.65vw, 106px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.064em;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.72),
    0 18px 72px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
  display: block;
  max-width: 1060px;
  margin: 16px auto 0;
  background: linear-gradient(100deg, #ff7390 0%, #ff3ea7 28%, #bb78ff 61%, #68b8ff 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.78em;
  line-height: 1;
  letter-spacing: -0.056em;
  text-shadow: none;
  filter:
    saturate(1.12)
    drop-shadow(0 5px 18px rgba(255, 47, 157, 0.22))
    drop-shadow(0 10px 34px rgba(68, 132, 255, 0.18));
}

.hero-lead {
  max-width: 790px;
  margin: 0 auto 30px;
  color: #ddd7e4;
  text-shadow: 0 2px 14px rgba(0,0,0,.76);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8e2ed;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--cyan);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 24px;
  color: #aaa3b3;
  font-size: 13px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
}

.trust-row span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 0 8px rgba(137, 92, 255, 0.6);
}

.hero-cosmos {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 2;
  width: min(1180px, 96vw);
  height: min(760px, 76vw);
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--cosmos-x, 0px)), calc(-50% + var(--cosmos-y, 0px) + var(--cosmos-scroll, 0px)), 0);
  transition: transform 0.14s ease-out;
  will-change: transform;
}

.hero-cosmos::before,
.hero-cosmos::after,
.hero-cosmos__bloom,
.hero-cosmos__mist,
.hero-cosmos__light,
.hero-cosmos__flare {
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-cosmos::before {
  content: "";
  top: 23%;
  left: 50%;
  width: 72%;
  height: 46%;
  transform: translateX(-50%) rotate(-7deg);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.30) 0%, rgba(244,231,255,.19) 8%, rgba(165,113,255,.16) 21%, rgba(57,133,255,.09) 39%, transparent 66%);
  filter: blur(26px);
  opacity: 0.88;
  animation: hero-core-drift 9s ease-in-out infinite alternate;
}

.hero-cosmos::after {
  content: "";
  top: 32%;
  left: 50%;
  width: 76%;
  height: 24%;
  transform: translateX(-50%) rotate(4deg);
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,47,157,.05) 13%,
      rgba(255,80,177,.17) 31%,
      rgba(255,255,255,.23) 50%,
      rgba(89,149,255,.17) 70%,
      rgba(37,136,255,.05) 87%,
      transparent 100%);
  filter: blur(30px);
  opacity: 0.76;
  animation: hero-band-drift 12s ease-in-out infinite alternate;
}

.hero-cosmos__bloom {
  top: 22%;
  width: 44%;
  height: 48%;
  filter: blur(72px);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.hero-cosmos__bloom--pink {
  left: 21%;
  border-radius: 34% 66% 58% 42% / 49% 36% 64% 51%;
  background:
    radial-gradient(ellipse at 62% 52%, rgba(255,47,157,.42), rgba(255,47,157,.14) 34%, transparent 72%);
  animation: hero-nebula-pink 10.5s ease-in-out infinite alternate;
}

.hero-cosmos__bloom--purple {
  top: 17%;
  left: 50%;
  width: 58%;
  height: 58%;
  border-radius: 58% 42% 36% 64% / 46% 60% 40% 54%;
  background:
    radial-gradient(ellipse at center, rgba(137,92,255,.54), rgba(137,92,255,.20) 34%, transparent 72%);
  transform: translateX(-50%);
  opacity: 0.78;
  animation: hero-nebula-purple 12.5s ease-in-out infinite alternate;
}

.hero-cosmos__bloom--blue {
  right: 20%;
  border-radius: 64% 36% 42% 58% / 38% 61% 39% 62%;
  background:
    radial-gradient(ellipse at 38% 50%, rgba(37,136,255,.43), rgba(37,136,255,.14) 35%, transparent 72%);
  animation: hero-nebula-blue 11.5s ease-in-out infinite alternate;
}

.hero-cosmos__mist {
  left: 50%;
  width: 80%;
  height: 18%;
  border-radius: 42% 58% 52% 48% / 57% 43% 57% 43%;
  filter: blur(26px);
  mix-blend-mode: screen;
}

.hero-cosmos__mist--one {
  top: 28%;
  background:
    linear-gradient(96deg, transparent 2%, rgba(255,47,157,.06) 16%, rgba(255,133,205,.13) 32%, rgba(255,255,255,.19) 51%, rgba(109,164,255,.13) 70%, rgba(37,136,255,.06) 84%, transparent 98%);
  transform: translateX(-50%) rotate(-8deg);
  opacity: 0.74;
  animation: hero-mist-one 8.5s ease-in-out infinite alternate;
}

.hero-cosmos__mist--two {
  top: 43%;
  width: 68%;
  height: 13%;
  background:
    linear-gradient(91deg, transparent 3%, rgba(37,136,255,.07) 20%, rgba(137,92,255,.14) 40%, rgba(255,255,255,.13) 53%, rgba(255,47,157,.10) 75%, transparent 97%);
  transform: translateX(-50%) rotate(7deg);
  opacity: 0.62;
  animation: hero-mist-two 10s ease-in-out infinite alternate;
}

.hero-cosmos__light {
  top: 35%;
  left: 50%;
  width: 62%;
  height: 32%;
  transform: translate(-50%, -50%) rotate(-3deg);
  border-radius: 44% 56% 61% 39% / 52% 42% 58% 48%;
  background:
    radial-gradient(ellipse at 51% 48%,
      rgba(255,255,255,.82) 0%,
      rgba(255,255,255,.34) 7%,
      rgba(231,214,255,.23) 17%,
      rgba(145,101,255,.15) 31%,
      rgba(65,137,255,.08) 46%,
      transparent 70%);
  filter: blur(34px);
  mix-blend-mode: screen;
  opacity: 0.84;
  animation: hero-light-flow 7.5s ease-in-out infinite alternate;
}

.hero-cosmos__flare {
  top: 35%;
  left: 50%;
  width: 54%;
  height: 3px;
  transform: translate(-50%, -50%) rotate(-2deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), rgba(255,255,255,.36), rgba(255,255,255,.05), transparent);
  filter: blur(4px);
  opacity: 0.46;
  mix-blend-mode: screen;
  animation: hero-flare-shift 6.8s ease-in-out infinite alternate;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 5;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  transform: translateX(-50%);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.recognition {
  background:
    radial-gradient(circle at 82% 45%, rgba(137, 92, 255, 0.09), transparent 28%),
    linear-gradient(180deg, var(--bg), #05050b 50%, var(--bg));
}

.recognition-grid,
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(54px, 8vw, 100px);
  align-items: center;
}

.section-copy {
  max-width: 590px;
}

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

.section-copy p {
  margin-bottom: 15px;
  font-size: 17px;
}

.section-copy .large-copy {
  margin-bottom: 22px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.idea-field {
  position: relative;
  min-height: 570px;
}

.idea-field::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 92, 255, 0.08), transparent 68%);
}

.idea-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 1px solid rgba(137, 92, 255, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(137, 92, 255, 0.18), rgba(37, 136, 255, 0.06) 52%, rgba(5, 5, 12, 0.88) 72%);
  box-shadow:
    0 0 30px rgba(137, 92, 255, 0.18),
    0 0 80px rgba(37, 136, 255, 0.1),
    inset 0 0 32px rgba(255, 47, 157, 0.07);
  text-align: center;
  transform: translate(-50%, -50%);
}

.idea-core::before {
  content: "";
  position: absolute;
  inset: -58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 22% 30%, rgba(255,255,255,.9) 0 1px, transparent 1.8px),
    radial-gradient(circle at 76% 24%, rgba(174,204,255,.9) 0 1px, transparent 1.8px),
    radial-gradient(circle at 84% 72%, rgba(255,176,226,.8) 0 1px, transparent 1.8px),
    radial-gradient(circle at 30% 82%, rgba(255,255,255,.7) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(137,92,255,.14), transparent 66%);
  filter: blur(.1px) drop-shadow(0 0 8px rgba(137,92,255,.25));
  animation: twinkle-cluster 5s ease-in-out infinite alternate;
}

.idea-core::after {
  content: "";
  position: absolute;
  inset: -34px;
  border-radius: 46% 54% 58% 42%;
  background: radial-gradient(ellipse at center, rgba(86,220,255,.08), rgba(137,92,255,.1) 44%, transparent 72%);
  filter: blur(15px);
  animation: galaxy-breathe 7s ease-in-out infinite alternate-reverse;
}

.idea-core__label {
  max-width: 120px;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.idea-fragment {
  position: absolute;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(14, 14, 23, 0.88);
  color: #ddd7e4;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: fragment-float 5s ease-in-out infinite alternate;
}

.idea-fragment--1 { top: 7%; left: 10%; animation-delay: -0.5s; }
.idea-fragment--2 { top: 17%; right: 4%; animation-delay: -1.8s; }
.idea-fragment--3 { top: 44%; left: 0; animation-delay: -3s; }
.idea-fragment--4 { top: 55%; right: 2%; animation-delay: -2.4s; }
.idea-fragment--5 { bottom: 11%; left: 14%; animation-delay: -1.1s; }
.idea-fragment--6 { right: 15%; bottom: 2%; animation-delay: -3.8s; }

.idea-field.is-organized .idea-fragment--1 { transform: translate(105px, 92px); }
.idea-field.is-organized .idea-fragment--2 { transform: translate(-92px, 76px); }
.idea-field.is-organized .idea-fragment--3 { transform: translate(92px, 3px); }
.idea-field.is-organized .idea-fragment--4 { transform: translate(-84px, -18px); }
.idea-field.is-organized .idea-fragment--5 { transform: translate(100px, -85px); }
.idea-field.is-organized .idea-fragment--6 { transform: translate(-78px, -106px); }

.question {
  overflow: hidden;
  padding: 150px 0;
}

.question::before,
.question::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(137, 92, 255, 0.28), transparent);
}

.question::after {
  width: 70%;
  height: 1px;
  top: auto;
  bottom: 0;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(137, 92, 255, 0.22), transparent);
}

.question-shell {
  position: relative;
  text-align: center;
}

.advice-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 62px;
}

.advice-list span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: #817a89;
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 70, 95, 0.45);
}

.question-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: #d9d0e3;
  font-size: 15px;
  font-weight: 800;
}

.question h2 {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.02;
}

.question-light {
  position: absolute;
  top: 58%;
  left: 50%;
  width: min(720px, 90vw);
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(137, 92, 255, 0.24), rgba(37, 136, 255, 0.08) 42%, transparent 72%);
  filter: blur(30px);
  transform: translate(-50%, -50%);
  animation: portal-breathe 5s ease-in-out infinite alternate;
}

.difference {
  background:
    radial-gradient(circle at 75% 45%, rgba(137, 92, 255, 0.09), transparent 30%),
    linear-gradient(180deg, var(--bg), #05050b, var(--bg));
}

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

.difference-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.difference-card__label {
  margin-bottom: 20px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.difference-card h3 {
  max-width: 470px;
  font-size: clamp(30px, 3.8vw, 50px);
}

.difference-card--quiet {
  filter: saturate(0.45);
}

.difference-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.difference-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.difference-lines span:nth-child(2) { width: 84%; }
.difference-lines span:nth-child(3) { width: 69%; }
.difference-lines span:nth-child(4) { width: 77%; }

.difference-card--nexus {
  border-color: rgba(137, 92, 255, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 136, 255, 0.13), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(255, 47, 157, 0.08), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
    rgba(11, 11, 19, 0.92);
}

.difference-card__glow {
  position: absolute;
  inset: -35%;
  z-index: -1;
  background: conic-gradient(from 0deg, transparent, rgba(137, 92, 255, 0.25), transparent 34%, rgba(37, 136, 255, 0.18), transparent 72%);
  animation: spin 20s linear infinite;
}

.foundation-pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.foundation-pills span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(137, 92, 255, 0.07);
  color: #e7e0ed;
  font-size: 12px;
  font-weight: 750;
}

.difference-outcome {
  max-width: 980px;
  margin: 50px auto 0;
  text-align: center;
}

.difference-outcome > p {
  color: #fff;
  font-size: 21px;
  font-weight: 850;
}

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

.outcome-grid span {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: #d9d3e0;
  font-size: 14px;
  font-weight: 750;
}

.stages {
  overflow: hidden;
}

.stage-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 8px;
}

.stage-line {
  display: none;
}

.stage-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue), var(--cyan));
  box-shadow: 0 0 16px rgba(137, 92, 255, 0.6);
  transition: width 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stage-path.is-active .stage-line span {
  width: 100%;
}

.stage-card {
  position: relative;
  z-index: 2;
  min-height: 250px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(137, 92, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
    rgba(10, 10, 17, 0.9);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.stage-number {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 24px;
  font-weight: 900;
}

.stage-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(137, 92, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,47,157,.14), rgba(137,92,255,.2), rgba(37,136,255,.12));
  color: #fff;
  font-size: 21px;
  box-shadow: 0 0 24px rgba(137, 92, 255, 0.16);
}

.stage-card h3 {
  font-size: 20px;
}

.stage-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.centered-cta {
  margin-top: 40px;
  text-align: center;
}

.profile {
  background:
    radial-gradient(circle at 78% 50%, rgba(37, 136, 255, 0.09), transparent 29%),
    linear-gradient(180deg, var(--bg), #05050b 52%, var(--bg));
}

.not-list {
  display: grid;
  gap: 7px;
  margin-bottom: 30px;
}

.not-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.not-list span::before {
  content: "×";
  color: #ff7187;
  font-size: 17px;
}

.profile-visual {
  position: relative;
  min-width: 0;
}

.profile-aura {
  position: absolute;
  inset: 7% -5% 10%;
  background:
    radial-gradient(circle at 54% 42%, rgba(137, 92, 255, 0.28), transparent 48%),
    radial-gradient(circle at 68% 54%, rgba(37, 136, 255, 0.13), transparent 54%);
  filter: blur(38px);
  pointer-events: none;
}

.profile-experience {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    #05050b;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.56),
    0 0 68px rgba(137, 92, 255, 0.14);
  isolation: isolate;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.profile-experience::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  z-index: 5;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--purple), var(--blue), transparent);
  box-shadow: 0 0 28px rgba(137, 92, 255, 0.48);
}

.profile-experience__stars {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 7% 15%, rgba(255,255,255,.86) 0 1px, transparent 1.7px),
    radial-gradient(circle at 18% 38%, rgba(197,215,255,.75) 0 1px, transparent 1.7px),
    radial-gradient(circle at 29% 12%, rgba(255,255,255,.62) 0 1px, transparent 1.6px),
    radial-gradient(circle at 42% 28%, rgba(255,205,239,.78) 0 1px, transparent 1.7px),
    radial-gradient(circle at 56% 10%, rgba(255,255,255,.74) 0 1px, transparent 1.7px),
    radial-gradient(circle at 72% 34%, rgba(185,214,255,.84) 0 1px, transparent 1.7px),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.68) 0 1px, transparent 1.7px),
    radial-gradient(circle at 12% 76%, rgba(255,255,255,.72) 0 1px, transparent 1.7px),
    radial-gradient(circle at 35% 86%, rgba(210,198,255,.76) 0 1px, transparent 1.7px),
    radial-gradient(circle at 64% 78%, rgba(255,255,255,.66) 0 1px, transparent 1.7px),
    radial-gradient(circle at 90% 82%, rgba(190,225,255,.8) 0 1px, transparent 1.7px);
  animation: profile-stars-twinkle 5.2s ease-in-out infinite alternate;
}

.profile-experience__glow {
  position: absolute;
  z-index: -1;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.3;
  pointer-events: none;
}

.profile-experience__glow--pink {
  top: 4%;
  left: -18%;
  background: rgba(255, 47, 157, 0.48);
  animation: profile-glow-pink 3.4s ease-in-out infinite alternate;
}

.profile-experience__glow--purple {
  top: 8%;
  left: 20%;
  background: rgba(137, 92, 255, 0.54);
  animation: profile-glow-purple 2.7s ease-in-out infinite alternate-reverse;
}

.profile-experience__glow--blue {
  top: 22%;
  right: -22%;
  background: rgba(37, 136, 255, 0.4);
  animation: profile-glow-blue 3.1s ease-in-out infinite alternate;
}

.profile-experience__header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 6, 12, 0.66);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.profile-experience__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.profile-experience__brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.profile-experience__status {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(100, 230, 170, 0.28);
  border-radius: 999px;
  background: rgba(100, 230, 170, 0.08);
  color: #d1f8e5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-experience__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 448px;
  padding: 42px 38px 38px;
  text-align: center;
}

.profile-experience__eyebrow {
  margin: 0 0 15px;
  color: #d7cee4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-experience__passion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.28em;
  max-width: 610px;
  margin: 0 auto 20px;
  background: linear-gradient(100deg, #ff7187 0%, #ff3fa8 28%, #a873ff 64%, #55a7ff 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(33px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-shadow: none;
}

.profile-experience__passion span {
  position: relative;
  display: inline-block;
}

.profile-experience__passion span::after {
  content: "✦";
  position: absolute;
  top: -0.24em;
  right: -0.18em;
  color: #fff;
  font-size: 0.24em;
  -webkit-text-fill-color: #fff;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.92));
  animation: profile-letter-glint 4.6s var(--glint-delay) ease-in-out infinite;
}

.profile-experience__summary {
  max-width: 560px;
  margin: 0 auto 30px;
  color: #d6d0db;
  font-size: 15px;
  line-height: 1.65;
}

.profile-experience__signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  text-align: left;
}

.profile-experience__signals div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(7, 7, 13, 0.54);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.profile-experience__signals span {
  display: block;
  margin-bottom: 6px;
  color: #a9a0b2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-experience__signals strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.45;
}

.profile-live-caption {
  margin: 14px 0 0;
  color: #9d95a7;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.journey {
  overflow: hidden;
}

.journey-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.journey-step {
  position: relative;
  min-height: 235px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.journey-step--active {
  border-color: rgba(137, 92, 255, 0.32);
  background:
    radial-gradient(circle at 50% 0%, rgba(137, 92, 255, 0.17), transparent 37%),
    rgba(13, 13, 22, 0.88);
  box-shadow: 0 0 36px rgba(137, 92, 255, 0.1);
}

.journey-step__number {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 28px;
  font-weight: 900;
}

.journey-step h3 {
  font-size: 20px;
}

.journey-step p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.55;
}

.journey-step__status {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 9px;
  border: 1px solid rgba(100, 230, 170, 0.25);
  border-radius: 999px;
  background: rgba(100, 230, 170, 0.06);
  color: #c9f5df;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journey-arrow {
  color: rgba(137, 92, 255, 0.46);
  font-size: 23px;
}

.inside {
  background:
    radial-gradient(circle at 50% 50%, rgba(137, 92, 255, 0.07), transparent 42%),
    linear-gradient(180deg, var(--bg), #05050b, var(--bg));
}

.platform-showcase {
  position: relative;
  aspect-ratio: 2321 / 949;
  min-height: 0;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #05050a;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.48),
    0 0 54px rgba(137, 92, 255, 0.1);
}

.platform-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--purple), var(--blue), transparent);
}

.platform-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.platform-showcase:hover img {
  transform: scale(1.018);
  filter: brightness(1.04);
}

.platform-showcase__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,2,5,.04) 0%, rgba(2,2,5,.03) 52%, rgba(2,2,5,.92) 100%),
    linear-gradient(90deg, rgba(2,2,5,.22), transparent 32%, transparent 68%, rgba(2,2,5,.2));
}

.platform-showcase figcaption {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.platform-showcase figcaption span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(137, 92, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 8, 14, 0.74);
  color: #eee8f5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.platform-showcase figcaption strong {
  max-width: 720px;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
  text-align: right;
  text-shadow: 0 4px 24px rgba(0,0,0,.86);
}

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

.platform-card {
  position: relative;
  min-height: 205px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(137, 92, 255, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.025);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(137, 92, 255, 0.3);
  background:
    radial-gradient(circle at 100% 0%, rgba(137, 92, 255, 0.15), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.inside-statement {
  max-width: 820px;
  margin: 34px auto 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}


.final-cta {
  display: grid;
  min-height: 690px;
  overflow: hidden;
  place-items: center;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 52%, rgba(137, 92, 255, 0.13), transparent 34%);
}

.final-portal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(820px, 104vw);
  aspect-ratio: 1.35;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 25% 42%, rgba(255,255,255,.85) 0 1px, transparent 1.8px),
    radial-gradient(circle at 72% 31%, rgba(183,210,255,.8) 0 1px, transparent 1.8px),
    radial-gradient(circle at 78% 71%, rgba(255,187,231,.72) 0 1px, transparent 1.8px),
    radial-gradient(ellipse at center, rgba(137,92,255,.18), rgba(37,136,255,.07) 38%, transparent 70%);
  background-size: auto, auto, auto, auto;
  filter: blur(.1px) drop-shadow(0 0 38px rgba(137,92,255,.14));
  animation: galaxy-breathe 7s ease-in-out infinite alternate;
}

.final-portal::before,
.final-portal::after,
.final-portal span {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-portal::before {
  width: 78%;
  height: 48%;
  background: conic-gradient(from 190deg, transparent 0 18%, rgba(86,220,255,.18) 25%, rgba(137,92,255,.25) 36%, rgba(255,47,157,.12) 44%, transparent 56% 100%);
  mask: radial-gradient(ellipse, transparent 0 58%, #000 60% 64%, transparent 66%);
  -webkit-mask: radial-gradient(ellipse, transparent 0 58%, #000 60% 64%, transparent 66%);
  animation: galaxy-drift 28s linear infinite;
}

.final-portal::after {
  width: 55%;
  height: 34%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.1), rgba(137,92,255,.16) 38%, transparent 72%);
  filter: blur(12px);
}

.final-portal span {
  width: 26%;
  height: 18%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.16), rgba(137,92,255,.18) 36%, transparent 74%);
  filter: blur(5px);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.final-cta h2 {
  margin-bottom: 27px;
  font-size: clamp(48px, 7vw, 82px);
}

.final-lines {
  display: grid;
  gap: 7px;
  margin-bottom: 24px;
  color: #c8c1d0;
  font-size: 17px;
  font-weight: 750;
}

.final-cta__content > p {
  margin-bottom: 30px;
  color: #fff;
  font-size: 22px;
  font-weight: 850;
}

.trust-row--centered {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030306;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  padding: 58px 0 42px;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 55px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-label {
  margin-bottom: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  color: #a9a2b0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #77717d;
  font-size: 11px;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stage-card:nth-of-type(2),
.platform-card:nth-child(2) { transition-delay: 0.08s; }
.stage-card:nth-of-type(3),
.platform-card:nth-child(3) { transition-delay: 0.16s; }
.stage-card:nth-of-type(4),
.platform-card:nth-child(4) { transition-delay: 0.24s; }
.stage-card:nth-of-type(5),
.platform-card:nth-child(5) { transition-delay: 0.32s; }
.platform-card:nth-child(6) { transition-delay: 0.4s; }

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes portal-breathe {
  from { opacity: 0.58; transform: translate(-50%, -50%) scale(0.96); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}























@keyframes twinkle-cluster {
  from { opacity: .48; transform: scale(.98); }
  to { opacity: .92; transform: scale(1.04); }
}



@keyframes hero-core-drift {
  from { transform: translateX(-53%) rotate(-9deg) scale(0.96); opacity: 0.66; }
  to { transform: translateX(-47%) rotate(-4deg) scale(1.07); opacity: 0.96; }
}

@keyframes hero-band-drift {
  from { transform: translateX(-54%) rotate(2deg) scaleX(0.94); opacity: 0.54; }
  to { transform: translateX(-46%) rotate(6deg) scaleX(1.07); opacity: 0.84; }
}

@keyframes hero-nebula-pink {
  from { transform: translate3d(-5%, -3%, 0) scale(0.92) rotate(-5deg); opacity: 0.42; }
  to { transform: translate3d(9%, 6%, 0) scale(1.10) rotate(3deg); opacity: 0.76; }
}

@keyframes hero-nebula-purple {
  from { transform: translate3d(-53%, -5%, 0) scale(0.94) rotate(2deg); opacity: 0.56; }
  to { transform: translate3d(-47%, 6%, 0) scale(1.09) rotate(-3deg); opacity: 0.86; }
}

@keyframes hero-nebula-blue {
  from { transform: translate3d(7%, 5%, 0) scale(1.08) rotate(4deg); opacity: 0.42; }
  to { transform: translate3d(-10%, -4%, 0) scale(0.93) rotate(-4deg); opacity: 0.74; }
}

@keyframes hero-mist-one {
  from { transform: translateX(-55%) rotate(-10deg) scaleX(0.92); opacity: 0.48; }
  to { transform: translateX(-45%) rotate(-5deg) scaleX(1.09); opacity: 0.84; }
}

@keyframes hero-mist-two {
  from { transform: translateX(-45%) rotate(9deg) scaleX(1.08); opacity: 0.40; }
  to { transform: translateX(-56%) rotate(4deg) scaleX(0.93); opacity: 0.74; }
}

@keyframes hero-light-flow {
  from { transform: translate(-53%, -52%) rotate(-5deg) scale(0.94); opacity: 0.62; }
  to { transform: translate(-47%, -48%) rotate(1deg) scale(1.08); opacity: 0.92; }
}

@keyframes hero-flare-shift {
  from { transform: translate(-55%, -50%) rotate(-3deg) scaleX(0.86); opacity: 0.28; }
  to { transform: translate(-45%, -50%) rotate(0deg) scaleX(1.08); opacity: 0.58; }
}

@keyframes profile-stars-twinkle {
  from { opacity: 0.34; filter: brightness(0.86); }
  to { opacity: 0.68; filter: brightness(1.14); }
}

@keyframes profile-glow-pink {
  from { transform: translate3d(-4%, -2%, 0) scale(0.92); opacity: 0.22; }
  to { transform: translate3d(9%, 8%, 0) scale(1.08); opacity: 0.38; }
}

@keyframes profile-glow-purple {
  from { transform: translate3d(6%, -5%, 0) scale(1.05); opacity: 0.25; }
  to { transform: translate3d(-7%, 8%, 0) scale(0.94); opacity: 0.43; }
}

@keyframes profile-glow-blue {
  from { transform: translate3d(3%, 7%, 0) scale(0.96); opacity: 0.2; }
  to { transform: translate3d(-10%, -4%, 0) scale(1.09); opacity: 0.36; }
}

@keyframes profile-letter-glint {
  0%, 74%, 100% { opacity: 0; transform: scale(0.55) rotate(0deg); }
  80% { opacity: 1; transform: scale(1.05) rotate(12deg); }
  86% { opacity: 0; transform: scale(0.7) rotate(22deg); }
}

@keyframes scroll-cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

@keyframes fragment-float {
  from { margin-top: -5px; }
  to { margin-top: 6px; }
}



@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.button) {
    font-size: 13px;
  }

  .stage-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 94px 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(7, 7, 13, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.54);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

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

  .site-nav > a:not(.button) {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav .button {
    margin-top: 12px;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .recognition-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: none;
  }

  .idea-field {
    min-height: 520px;
  }

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

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

  .stage-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .profile-experience {
    transform: none;
  }
}

@media (max-width: 650px) {
  .hero h1 {
    font-size: clamp(45px, 13.4vw, 64px);
    line-height: 0.98;
  }

  .hero h1 span {
    margin-top: 12px;
    font-size: 0.82em;
    line-height: 1.02;
  }


  .stage-path {
    grid-template-columns: 1fr;
  }
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .section {
    padding: 78px 0;
  }

  .header-shell {
    min-height: 70px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero {
    min-height: 920px;
    padding: 118px 0 92px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    gap: 17px;
  }

  .button--large {
    width: 100%;
  }

  .trust-row {
    display: grid;
    gap: 7px;
  }

  .trust-row span {
    justify-content: center;
  }

  .trust-row span:not(:last-child)::after {
    display: none;
  }

  .hero-cosmos {
    top: 43%;
    width: 132vw;
    height: 720px;
  }

  .hero-cosmos__light {
    width: 78%;
    height: 28%;
  }

  .idea-field {
    min-height: 460px;
    transform: scale(0.92);
  }

  .idea-fragment {
    font-size: 11px;
  }

  .question {
    padding: 110px 0;
  }

  .question h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .difference-card {
    min-height: 320px;
    padding: 25px;
  }

  .stage-path,
  .platform-grid,
  .journey-track {
    grid-template-columns: 1fr;
  }

  .platform-showcase figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-showcase figcaption strong {
    text-align: left;
  }

  .profile-experience__signals {
    grid-template-columns: 1fr;
  }

  .stage-card {
    min-height: 0;
  }

  .profile-card {
    padding: 20px;
    transform: none;
  }

  .profile-experience {
    min-height: 490px;
    border-radius: 20px;
  }

  .profile-experience__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-experience__body {
    min-height: 398px;
    padding: 32px 20px 26px;
  }

  .profile-card__header {
    align-items: flex-start;
  }

  .profile-split {
    grid-template-columns: 1fr;
  }

  .journey-step {
    min-height: 0;
  }

  .journey-step__number {
    margin-bottom: 26px;
  }

  .final-cta {
    min-height: 680px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
