:root {
  --bg: #030405;
  --panel: #121315;
  --panel-soft: #181a1d;
  --text: #f4f2ec;
  --muted: #9b9a94;
  --line: rgba(255, 255, 255, .12);
  --gold: #d8b46a;
  --blue: #3b82ff;
  --green: #8be7b7;
  --max: 1180px;
  --display: "Archivo", sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(216, 180, 106, .13), transparent 34rem),
    radial-gradient(circle at 85% 38%, rgba(59, 130, 255, .09), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  animation: pageFade .55s ease both;
}

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

ul {
  list-style: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 12%, #000 0, transparent 78%);
  animation: grainDrift 9s steps(8) infinite;
}

.cursor-light {
  position: fixed;
  inset: auto auto 12% 50%;
  z-index: 0;
  width: min(720px, 90vw);
  height: 320px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 68%);
  filter: blur(36px);
  opacity: .45;
  pointer-events: none;
  transition: opacity .4s ease;
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 17, 18, .76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 80px rgba(0, 0, 0, .35);
  animation: navDrop .8s cubic-bezier(.2,.8,.2,1) .12s both;
  transition: min-height .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-nav.is-scrolled {
  min-height: 58px;
  background: rgba(10, 11, 12, .9);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 18px 70px rgba(0,0,0,.48);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  isolation: isolate;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand-mark::before {
  inset: 1px;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(244,242,236,.2), transparent 42%),
    radial-gradient(circle at 50% 52%, rgba(216,180,106,.2), transparent 68%);
  filter: blur(2px);
  opacity: .82;
  animation: logoHalo 3.8s ease-in-out infinite;
}

.brand-mark::after {
  inset: 5px;
  z-index: -1;
  border: 1px solid rgba(216,180,106,.58);
  border-radius: 50%;
  box-shadow: inset 0 0 18px rgba(244,242,236,.08), 0 0 22px rgba(216,180,106,.12);
  animation: logoRingAppear 1.15s cubic-bezier(.16,1,.3,1) .28s both;
}

.brand-mark img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,.55))
    drop-shadow(0 0 12px rgba(216,180,106,.18));
  animation: logoMarkAppear .9s cubic-bezier(.16,1,.3,1) .18s both;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.footer-links a {
  position: relative;
  transition: color .25s ease;
}

.nav-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform .28s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.nav-cta::before,
.btn::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 48%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transition: left .55s ease;
}

.nav-cta:hover::before,
.btn:hover::before {
  left: 110%;
}

.nav-cta {
  justify-self: end;
  padding: 13px 19px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--text);
  font-size: 13px;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 24px;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-top: 130px;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
}

.hero-title-stage {
  position: relative;
  isolation: isolate;
}

.hero-title-stage h1 {
  position: relative;
  z-index: 2;
}

.identity-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  margin-bottom: 0;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #d8d4c8;
  font-size: 15px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.pill-orb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 5%, transparent 6%),
    conic-gradient(from 70deg, var(--gold), rgba(255,255,255,.2), var(--blue), var(--green), var(--gold));
  box-shadow: 0 0 26px rgba(216,180,106,.22);
  animation: orbSpin 5.5s linear infinite, orbBreathe 2.8s ease-in-out infinite;
}

h1,
.section-title,
.cta h2 {
  font-family: var(--display);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

h1 {
  max-width: 1240px;
  margin: 0 auto;
  font-size: clamp(4rem, 7.4vw, 8rem);
}

.hero-title-long {
  font-size: min(4.3rem, 5.4vw);
  line-height: .94;
}

.hero-word-line {
  display: flex;
  justify-content: center;
  gap: .12em;
  overflow: visible;
}

.hero-word {
  display: inline-block;
  overflow: hidden;
  padding: .06em .075em .1em;
  margin: -.06em -.075em -.1em;
}

.hero-word > span {
  display: inline-block;
  transform: translateY(112%) rotate(1.5deg);
  filter: blur(14px);
  opacity: 0;
  animation: heroWordReveal .95s cubic-bezier(.16, 1, .3, 1) var(--word-delay) both;
  will-change: transform, filter, opacity;
}

.hero-copy {
  max-width: 820px;
  margin: 30px auto 0;
  color: #c6c2b8;
  font-size: clamp(.98rem, 1.35vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.btn-primary {
  border-color: #f6ead3;
  background: #f6ead3;
  color: #0c0c0c;
}

.btn-ghost {
  background: rgba(255,255,255,.045);
  color: var(--text);
}

.trust-line {
  margin-top: 22px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.hero-after {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  animation: heroAfterReveal .78s cubic-bezier(.16, 1, .3, 1) var(--after-delay) both;
}

.signal-field {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(1180px, 100%);
  height: 116%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(5px, 1vw, 16px);
  transform: translate(-50%, -50%);
  opacity: .14;
  perspective: 800px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.signal-field span {
  flex: 0 0 clamp(5px, .52vw, 10px);
  height: clamp(58px, 8vw, 138px);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 28px rgba(255,255,255,.18);
  transform-origin: center;
  animation: pulse 1.75s ease-in-out infinite;
}

.signal-field span:nth-child(2n) { height: clamp(82px, 11vw, 188px); animation-delay: .2s; }
.signal-field span:nth-child(3n) { height: clamp(46px, 6vw, 104px); animation-delay: .45s; }
.signal-field span:nth-child(4n) { animation-delay: .7s; }
.signal-field span:nth-child(5n) { height: clamp(96px, 13vw, 220px); animation-delay: .92s; }
.signal-field span:nth-child(7n) { height: clamp(68px, 9vw, 156px); animation-delay: 1.1s; }

@keyframes pulse {
  0%, 100% { transform: scaleY(.48) translateZ(0); opacity: .22; }
  50% { transform: scaleY(1.15) translateZ(40px); opacity: .95; }
}

.hero-orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 47%;
  width: min(960px, 92vw);
  aspect-ratio: 1 / .44;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  animation: orbitDrift 16s linear infinite;
}

.orbit-two {
  width: min(760px, 82vw);
  border-color: rgba(216,180,106,.1);
  animation-duration: 21s;
  animation-direction: reverse;
}

.orbit-three {
  width: min(1120px, 110vw);
  top: 52%;
  border-color: rgba(59,130,255,.07);
  animation-duration: 28s;
}

.float-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 28px rgba(216,180,106,.8);
  animation: floatDot 6s ease-in-out infinite;
}

.dot-one { left: 18%; top: 38%; }
.dot-two { right: 22%; top: 31%; animation-delay: 1.1s; background: var(--blue); box-shadow: 0 0 28px rgba(59,130,255,.72); }
.dot-three { left: 72%; top: 67%; animation-delay: 2.1s; background: var(--green); box-shadow: 0 0 28px rgba(139,231,183,.72); }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: heroRise .75s ease 1.35s both;
}

.scroll-cue span {
  width: 36px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  animation: scrollCue 1.6s ease-in-out infinite;
}

.logo-band {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 32px 0;
  border-block: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 64px;
  color: rgba(255,255,255,.52);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  animation: ticker 26s linear infinite;
}

.logo-track span {
  animation: logoPulse 4.8s ease-in-out infinite;
}

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

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

.what-section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 24px 120px;
  overflow: clip;
  background:
    radial-gradient(circle at 84% 16%, rgba(84, 190, 238, .11), transparent 28rem),
    radial-gradient(circle at 14% 24%, rgba(242, 136, 74, .1), transparent 24rem),
    #0A0A0C;
}

.what-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at 50% 18%, #000, transparent 72%);
  opacity: .72;
}

.what-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.what-head {
  max-width: 880px;
  margin-bottom: 72px;
}

.what-head .section-title {
  width: 100%;
  max-width: var(--max);
  font-size: min(3.55rem, 5.5vw);
  line-height: .94;
}

.what-section-title span {
  display: block;
  white-space: nowrap;
}

.what-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.what-list {
  min-width: 0;
}

.what-item {
  min-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: .35;
  transition: opacity .55s ease, transform .75s cubic-bezier(.16,1,.3,1);
}

.what-item.is-active {
  opacity: 1;
}

.what-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--item-accent);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.what-meta span:first-child {
  color: rgba(244, 242, 236, .7);
}

.what-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding-bottom: 24px;
  color: var(--text);
  font-family: "Space Grotesk", var(--display);
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.045em;
  text-transform: uppercase;
  transition: color .55s ease;
}

.what-item.is-active .what-title {
  color: var(--item-accent);
}

.what-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--item-accent), rgba(244,242,236,.95));
  transition: width .7s cubic-bezier(.16,1,.3,1);
}

.what-item.is-active .what-title::after {
  width: 96px;
}

.what-desc {
  max-width: 470px;
  margin-top: 22px;
  color: rgba(244, 242, 236, .78);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.what-visual {
  min-width: 0;
}

.what-visual-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
}

.what-image-shell {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background: #111215;
  box-shadow: 0 34px 120px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.09);
}

.what-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), transparent 28%, rgba(0,0,0,.82)),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.18), transparent 26rem);
}

.what-image {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  opacity: 0;
  transform: scale(1.07);
  transition:
    opacity .8s ease,
    transform 1.4s cubic-bezier(.16,1,.3,1);
}

.what-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.what-image::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.22), transparent 14rem),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 26px);
  opacity: .75;
  animation: whatImageDrift 9s ease-in-out infinite alternate;
}

.what-image-ai {
  background:
    radial-gradient(circle at 32% 26%, rgba(242, 136, 74, .72), transparent 16rem),
    radial-gradient(circle at 72% 70%, rgba(244, 242, 236, .16), transparent 17rem),
    linear-gradient(135deg, #31170e, #0f1012 62%);
}

.what-image-video {
  background:
    radial-gradient(circle at 68% 30%, rgba(84, 190, 238, .74), transparent 16rem),
    radial-gradient(circle at 30% 74%, rgba(255,255,255,.18), transparent 16rem),
    linear-gradient(135deg, #081924, #0f1012 62%);
}

.what-image-social {
  background:
    radial-gradient(circle at 36% 32%, rgba(84, 190, 238, .5), transparent 14rem),
    radial-gradient(circle at 78% 68%, rgba(242, 136, 74, .26), transparent 15rem),
    linear-gradient(145deg, #111827, #0d0d11 64%);
}

.what-image-build {
  background:
    radial-gradient(circle at 50% 32%, rgba(244, 242, 236, .28), transparent 18rem),
    radial-gradient(circle at 70% 72%, rgba(216, 180, 106, .24), transparent 17rem),
    linear-gradient(145deg, #1a1917, #09090b 64%);
}

.image-pill,
.what-image figcaption {
  position: relative;
  z-index: 6;
}

.image-pill {
  align-self: flex-start;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(10,10,12,.48);
  backdrop-filter: blur(12px);
  color: rgba(244,242,236,.9);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.what-image figcaption {
  max-width: 380px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

@keyframes whatImageDrift {
  from { transform: translate3d(-2%, -1%, 0) rotate(-2deg); }
  to { transform: translate3d(2%, 2%, 0) rotate(2deg); }
}

.wave-card-stack {
  position: relative;
  padding-bottom: 48vh;
}

.wave-service-card {
  position: sticky;
  top: 96px;
  z-index: var(--i);
  min-height: min(720px, 72vh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.06), transparent 20rem),
    linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.022)),
    #141516;
  box-shadow: 0 38px 130px rgba(0,0,0,.48);
  transform-origin: top center;
  transition: transform .7s cubic-bezier(.16,1,.3,1), box-shadow .7s ease;
}

.wave-service-card + .wave-service-card {
  margin-top: -32vh;
}

.wave-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 46px 150px rgba(0,0,0,.58), 0 0 80px color-mix(in srgb, var(--accent), transparent 82%);
}

.wave-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 64px);
}

.wave-rule {
  width: 46px;
  height: 2px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255,255,255,.9));
  transform-origin: left;
  animation: waveRule 2.4s ease-in-out infinite;
}

.wave-kicker {
  margin-bottom: 14px;
  color: var(--accent);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.wave-copy h3 {
  max-width: 430px;
  color: #fff;
  font-family: "Space Grotesk", var(--display);
  font-size: clamp(1.75rem, 2.45vw, 2.55rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.wave-copy p:not(.wave-kicker) {
  max-width: 410px;
  margin-top: 22px;
  color: rgba(244,242,236,.68);
  font-size: clamp(.92rem, 1vw, 1.05rem);
}

.wave-copy a {
  margin-top: 28px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(244,242,236,.86);
  font-size: 13px;
  font-weight: 800;
  transition: background .28s ease, color .28s ease, transform .28s ease;
}

.wave-copy a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
  color: #fff;
}

.wave-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  isolation: isolate;
}

.wave-image::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -2;
  background: var(--wave-bg);
  transform: scale(1.04);
  animation: waveImageFloat 7s ease-in-out infinite alternate;
}

.wave-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,10,12,.34), transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,.1), transparent 36%, rgba(0,0,0,.58));
}

.wave-ai .wave-image {
  --wave-bg:
    radial-gradient(circle at 70% 28%, rgba(242,136,74,.72), transparent 17rem),
    radial-gradient(circle at 30% 72%, rgba(255,255,255,.2), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, #32170d, #0f1012 68%);
}

.wave-video .wave-image {
  --wave-bg:
    radial-gradient(circle at 62% 30%, rgba(84,190,238,.75), transparent 17rem),
    radial-gradient(circle at 38% 72%, rgba(255,255,255,.16), transparent 16rem),
    repeating-linear-gradient(0deg, rgba(255,255,255,.1) 0 1px, transparent 1px 21px),
    linear-gradient(135deg, #071b27, #0e1014 68%);
}

.wave-social .wave-image {
  --wave-bg:
    radial-gradient(circle at 34% 34%, rgba(84,190,238,.48), transparent 15rem),
    radial-gradient(circle at 76% 66%, rgba(242,136,74,.32), transparent 16rem),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, #101827, #0d0d11 70%);
}

.wave-build .wave-image {
  --wave-bg:
    radial-gradient(circle at 52% 30%, rgba(244,242,236,.28), transparent 18rem),
    radial-gradient(circle at 72% 72%, rgba(216,180,106,.28), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 26px),
    linear-gradient(135deg, #1b1a17, #09090b 70%);
}

.wave-image strong {
  max-width: 340px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.55vw, 2.75rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.03em;
  text-transform: uppercase;
  text-shadow: 0 12px 44px rgba(0,0,0,.5);
}

@keyframes waveImageFloat {
  from { transform: scale(1.04) translate3d(-1.5%, -1%, 0); }
  to { transform: scale(1.12) translate3d(1.5%, 1%, 0); }
}

@keyframes waveRule {
  0%, 100% { transform: scaleX(.62); opacity: .72; }
  50% { transform: scaleX(1); opacity: 1; }
}

.service-swap {
  position: relative;
  min-height: 150vh;
  margin-top: 48px;
  outline: none;
}

.swap-sticky {
  position: sticky;
  top: 96px;
  height: min(720px, calc(100vh - 128px));
  perspective: 1200px;
}

.swap-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, .78fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.08), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    #131416;
  box-shadow: 0 42px 150px rgba(0,0,0,.5);
  transform-origin: center;
  transition:
    opacity .7s ease,
    transform .85s cubic-bezier(.16,1,.3,1),
    filter .7s ease,
    box-shadow .7s ease;
}

.swap-card-ai {
  z-index: 3;
  --accent: #F2884A;
}

.swap-card-ice {
  z-index: 2;
  --accent: #54BEEE;
  opacity: .22;
  filter: blur(7px);
  transform: translate3d(34px, 34px, -120px) rotate(3deg) scale(.94);
}

.service-swap.is-ice-active .swap-card-ai,
.service-swap:has(.swap-card-ice:focus-within) .swap-card-ai {
  opacity: .1;
  filter: blur(7px);
  transform: translate3d(-32px, 30px, -140px) rotate(-4deg) scale(.92);
}

.service-swap.is-ice-active .swap-card-ice,
.service-swap:has(.swap-card-ice:focus-within) .swap-card-ice {
  z-index: 4;
  opacity: 1;
  filter: blur(0);
  transform: none;
  box-shadow: 0 48px 160px rgba(0,0,0,.58), 0 0 90px rgba(84,190,238,.1);
}

.swap-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(38px, 5.6vw, 76px);
}

.swap-copy h3 {
  max-width: 560px;
  color: #fff;
  font-family: "Space Grotesk", var(--display);
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.swap-copy p:not(.wave-kicker) {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(244,242,236,.72);
  font-size: clamp(.96rem, 1.08vw, 1.08rem);
}

.swap-points {
  display: grid;
  gap: 10px;
  width: min(100%, 540px);
  margin-top: 26px;
}

.swap-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(244,242,236,.82);
  font-size: .96rem;
  font-weight: 700;
}

.swap-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent), transparent 35%);
}

.swap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.swap-tags span,
.swap-copy a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(244,242,236,.84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.swap-tags span {
  padding: 0 13px;
}

.swap-copy a {
  margin-top: 34px;
  padding: 0 16px;
  color: #fff;
  transition: transform .28s ease, background .28s ease;
}

.swap-copy a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
}

.swap-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4.2vw, 52px);
  background:
    radial-gradient(circle at 50% 28%, color-mix(in srgb, var(--accent), transparent 42%), transparent 20rem),
    radial-gradient(circle at 48% 52%, rgba(255,255,255,.06), transparent 24rem);
}

.swap-card-ai .swap-media::before {
  display: none;
}

.swap-card-ai .swap-media {
  padding: 0;
}

.swap-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 40%, rgba(0,0,0,.12));
}

.swap-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}

.service-swap.is-ice-active .swap-card-ice .swap-media img,
.service-swap:has(.swap-card-ice:focus-within) .swap-card-ice .swap-media img,
.service-swap:not(.is-ice-active) .swap-card-ai .swap-media img {
  transform: scale(1.08);
}

.swap-media-logo {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 62px);
}

.swap-media .brand-stage {
  width: min(330px, 100%);
}

.swap-media .youai-photo-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.swap-media .youai-photo-stage::before,
.swap-media .youai-photo-stage::after {
  display: none;
}

.swap-media .youai-photo-stage .youai-book-image {
  object-fit: cover;
  object-position: 50% 48%;
  opacity: .94;
  transform: scale(1.005);
  filter: saturate(.86) contrast(.96) brightness(.9);
  -webkit-mask-image: none;
  mask-image: none;
}

.service-swap:not(.is-ice-active) .swap-card-ai .swap-media .youai-book-image {
  transform: scale(1.02);
}

.service-swap::before {
  content: "scroll down / up";
  position: absolute;
  right: 20px;
  top: -44px;
  color: rgba(244,242,236,.46);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-title {
  max-width: 920px;
  font-size: clamp(2.6rem, 6vw, 6.4rem);
}

.os-title {
  width: 100%;
  max-width: var(--max);
  overflow: hidden;
  font-size: min(3.55rem, 4.25vw);
  line-height: .94;
}

.os-title span {
  display: block;
  white-space: nowrap;
  transform: translateY(110%) rotate(1.5deg);
  opacity: 0;
}

.os-title.in span {
  animation: osLineReveal .95s cubic-bezier(.16,1,.3,1) both;
}

.os-title.in span:nth-child(2) {
  animation-delay: .14s;
}

.os-support {
  max-width: 850px;
  margin-top: 26px;
  color: rgba(244,242,236,.72);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.company-card,
.model-card,
.testimonial-strip {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 24px 90px rgba(0,0,0,.22);
}

.company-card {
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
  will-change: transform;
}

.company-card::after,
.model-card::after,
.testimonial-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  pointer-events: none;
  transition: transform .7s ease;
}

.company-card:hover,
.company-card.is-tilting {
  border-color: rgba(216,180,106,.42);
  box-shadow: 0 34px 110px rgba(0,0,0,.36), 0 0 70px rgba(216,180,106,.08);
}

.company-card:hover::after,
.model-card:hover::after,
.testimonial-strip:hover::after {
  transform: translateX(130%) skewX(-18deg);
}

.company-visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(238,139,183,.2), transparent 25rem),
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.07), transparent 15rem),
    linear-gradient(135deg, rgba(238,139,183,.07), rgba(255,255,255,.02));
}

.company-visual::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    conic-gradient(from 0deg, transparent, rgba(255,255,255,.1), transparent 32%),
    radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(255,255,255,.065) 39% 39.5%, transparent 40%);
  animation: visualSweep 12s linear infinite;
  opacity: .85;
}

.media-visual {
  background:
    radial-gradient(circle at 50% 42%, rgba(84,190,238,.23), transparent 25rem),
    radial-gradient(circle at 72% 18%, rgba(84,190,238,.12), transparent 14rem),
    linear-gradient(135deg, rgba(84,190,238,.065), rgba(255,255,255,.02));
}

.brand-stage {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  aspect-ratio: 1.45 / 1;
  overflow: visible;
  border: 0;
  border-radius: 26px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 42px);
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, var(--brand-glow), transparent 62%),
    radial-gradient(circle at 50% 52%, rgba(255,255,255,.07), transparent 56%);
  box-shadow:
    0 0 82px color-mix(in srgb, var(--brand-glow-strong), transparent 66%);
  transform: translateZ(42px);
  animation: panelFloat 5.4s ease-in-out infinite, brandPulse 4.8s ease-in-out infinite;
}

.brand-stage::before,
.brand-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand-stage::before {
  inset: 12%;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  animation: ringSpin 18s linear infinite;
}

.brand-stage::after {
  inset: -8%;
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.1) 48%, transparent 58%),
    radial-gradient(circle at 50% 50%, transparent 0 52%, rgba(255,255,255,.05) 53% 53.6%, transparent 54%);
  transform: translateX(-35%);
  animation: brandSweep 6s cubic-bezier(.16,1,.3,1) infinite;
}

.brand-stage img {
  position: relative;
  z-index: 3;
  width: min(82%, 310px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.48));
}

.brand-stage .youai-book-image {
  width: min(88%, 360px);
  max-height: 100%;
  object-fit: contain;
  border-radius: 24px;
  filter:
    drop-shadow(0 24px 46px rgba(0,0,0,.34))
    drop-shadow(0 0 34px rgba(255,131,174,.16));
}

.youai-photo-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transform: none;
  animation: none;
}

.youai-photo-stage::before {
  inset: -14%;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 46% 45%, rgba(255,131,174,.22), transparent 22rem),
    radial-gradient(circle at 78% 58%, rgba(84,190,238,.12), transparent 18rem);
  animation: brandPulse 5.8s ease-in-out infinite;
}

.youai-photo-stage::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,12,.24), transparent 22%, transparent 74%, rgba(10,10,12,.34)),
    linear-gradient(180deg, rgba(10,10,12,.16), transparent 28%, rgba(10,10,12,.24));
  transform: none;
  animation: none;
}

.youai-photo-stage .youai-book-image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
  opacity: .9;
  filter:
    saturate(.82)
    contrast(.96)
    brightness(.92)
    drop-shadow(0 24px 50px rgba(0,0,0,.28));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.youai-stage {
  --brand-glow: rgba(255,131,174,.2);
  --brand-glow-strong: rgba(255,131,174,.72);
}

.ice-stage {
  --brand-glow: rgba(84,190,238,.2);
  --brand-glow-strong: rgba(84,190,238,.72);
}

.ice-stage img {
  width: min(82%, 330px);
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 22px rgba(84,190,238,.2))
    drop-shadow(0 24px 40px rgba(0,0,0,.32));
}

.swap-media .ice-stage img {
  width: min(74%, 280px);
}

.youai-logo {
  position: relative;
  z-index: 3;
  color: #eef2f7;
  font-family: "Space Grotesk", var(--display);
  font-size: clamp(2.65rem, 5.2vw, 5.5rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.065em;
  text-transform: lowercase;
  text-shadow: 0 0 32px rgba(255,131,174,.16);
}

.youai-logo span {
  color: #c21f3f;
  margin: 0 .02em;
}

.youai-stage p {
  position: relative;
  z-index: 3;
  margin-top: 14px;
  color: rgba(244,242,236,.62);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-particle {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border: 1px solid color-mix(in srgb, var(--brand-glow-strong), #fff 20%);
  border-radius: 2px;
  background: color-mix(in srgb, var(--brand-glow-strong), transparent 54%);
  box-shadow: 0 0 18px var(--brand-glow-strong);
  opacity: .68;
  animation: cubeStar 4.8s ease-in-out infinite;
}

.youai-stage .brand-particle {
  border-radius: 999px;
}

.p1 { left: 13%; top: 20%; animation-delay: -.2s; }
.p2 { right: 16%; top: 18%; animation-delay: -.9s; }
.p3 { left: 19%; bottom: 18%; animation-delay: -1.6s; }
.p4 { right: 21%; bottom: 20%; animation-delay: -2.4s; }
.p5 { left: 50%; top: 12%; animation-delay: -3s; }
.p6 { right: 9%; top: 50%; animation-delay: -3.7s; }

.ice-stage .p2,
.ice-stage .p5 {
  transform: rotate(45deg);
}

.ai-panel,
.media-frame {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 22px);
  transform: translateZ(42px);
  animation: panelFloat 4.8s ease-in-out infinite;
}

.ai-panel::after,
.media-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  opacity: .5;
  animation: scanLine 2.8s ease-in-out infinite;
}

.visual-ring {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  animation: ringSpin 15s linear infinite;
}

.visual-ring-small {
  width: 46%;
  animation-duration: 10s;
  animation-direction: reverse;
}

.ai-panel span,
.company-label,
.media-frame small,
.stat span,
.testimonial-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ai-panel strong,
.media-frame span {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
}

.company-body {
  padding: 32px;
}

.company-body h3,
.model-card h3 {
  margin: 8px 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}

.company-body p:not(.company-label),
.split-copy,
.model-card p,
.cta p {
  color: #c9c5ba;
  font-size: 1rem;
}

.company-body p:not(.company-label) {
  max-width: 460px;
  color: rgba(244,242,236,.72);
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
}

.company-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
  color: #dedad0;
}

.company-body li::before {
  display: none;
}

.company-body li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(244,242,236,.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.company-body a {
  color: #f6ead3;
  font-weight: 900;
}

.mantra-focus {
  position: relative;
  z-index: 2;
  min-height: 260vh;
  background: #030405;
}

.mantra-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.055), transparent 22rem),
    radial-gradient(circle at 50% 56%, rgba(216,180,106,.08), transparent 28rem);
  opacity: .75;
}

.mantra-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.mantra-focus-line {
  color: rgba(244,242,236,.08);
  font-family: "Space Grotesk", var(--display);
  font-size: clamp(1.28rem, 2.05vw, 2.05rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.045em;
  text-transform: uppercase;
  filter: blur(2px);
  transform: translateY(0) scale(.985);
  transition:
    color .65s ease,
    opacity .65s ease,
    filter .65s ease,
    transform .65s cubic-bezier(.16,1,.3,1);
}

.mantra-focus-line + .mantra-focus-line {
  margin-top: 8px;
}

.mantra-focus-line.is-active {
  color: #fff;
  filter: blur(0);
  transform: translateY(0) scale(1);
  text-shadow: 0 0 28px rgba(255,255,255,.08);
}

.mantra-steps {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mantra-steps span {
  display: block;
  height: 86vh;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 44px;
  align-items: end;
}

.model-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.model-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  isolation: isolate;
  transition: transform .35s ease, border-color .35s ease;
}

.model-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -34% 20%;
  z-index: -1;
  height: 68%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(216,180,106,.2), transparent 64%),
    radial-gradient(circle at 62% 34%, rgba(84,190,238,.14), transparent 48%);
  filter: blur(6px);
  opacity: .82;
  transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .35s ease;
}

.model-card h3 {
  max-width: 100%;
  margin-top: auto;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}

.model-card p {
  color: rgba(244,242,236,.66);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.model-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216,180,106,.35);
}

.model-card:hover::before {
  transform: scale(1.14) translateY(-10px);
  opacity: 1;
}

.model-card span {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(4.2rem, 6vw, 6.7rem);
  font-weight: 900;
  line-height: .8;
  opacity: .32;
}

.proof-header {
  display: grid;
  gap: 4px;
}

.proof-title {
  width: 100%;
  max-width: var(--max);
  font-size: min(3.05rem, 3.5vw);
  line-height: .96;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .proof-title {
    font-size: clamp(2rem, 9vw, 3.2rem);
    white-space: normal;
  }
}

.stat {
  min-height: 170px;
  padding: 24px;
  border-top: 1px solid var(--line);
  transform-origin: left center;
}

.stat strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(2.55rem, 3.8vw, 4rem);
  font-weight: 900;
  line-height: .9;
  font-variant-numeric: tabular-nums;
  transition: color .35s ease, text-shadow .35s ease, transform .35s ease;
}

.count-up {
  color: rgba(244,242,236,.82);
}

.count-up.is-counted {
  color: #fff;
  text-shadow: 0 0 34px rgba(216,180,106,.18);
  transform: translateY(-2px);
}

.testimonial-strip {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 34px;
  padding: clamp(28px, 5vw, 54px);
}

.testimonial-strip::before {
  content: "200M+";
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(12px, 3vw, 30px);
  color: rgba(255,255,255,.055);
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 900;
  line-height: .75;
  pointer-events: none;
}

.testimonial-strip p {
  position: relative;
  z-index: 2;
  max-width: none;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: min(2.55rem, 2.65vw);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.testimonial-quote span {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: nowrap;
}

.testimonial-strip > span {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .testimonial-strip {
    min-height: 260px;
  }

  .testimonial-strip p {
    font-size: clamp(1.45rem, 7vw, 2.4rem);
  }

  .testimonial-quote span {
    white-space: normal;
  }
}

.cta {
  max-width: none;
  min-height: 90vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 56%, rgba(216,180,106,.16), transparent 30%),
    linear-gradient(180deg, transparent 0 22%, rgba(255,255,255,.08) 46%, transparent 66%);
  filter: blur(2px);
  opacity: .9;
  animation: spotlightMove 5.4s ease-in-out infinite alternate;
}

.cta-inner {
  position: relative;
  width: 100%;
  max-width: var(--max);
  padding: 0 24px;
}

.cta h2 {
  font-size: min(3.7rem, 4.6vw);
  line-height: .94;
}

.cta-title span {
  display: block;
  white-space: nowrap;
}

.cta p {
  max-width: 820px;
  margin: 24px auto 0;
}

.cta .hero-actions {
  flex-wrap: wrap;
}

.btn-disabled {
  cursor: not-allowed;
  opacity: .55;
}

.footer {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 24px 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer .brand {
  color: var(--text);
}

.footer p {
  margin-top: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .model-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-card h3 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    overflow-wrap: normal;
  }
}

.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(52px) scale(.985);
  transition: opacity .85s ease, filter .85s ease, transform .95s cubic-bezier(.16,.84,.26,1);
}

.reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.reveal.in .company-body li,
.company-card.in .company-body li {
  animation: listPop .45s ease both;
}

.company-card.in .company-body li:nth-child(1) { animation-delay: .15s; }
.company-card.in .company-body li:nth-child(2) { animation-delay: .25s; }
.company-card.in .company-body li:nth-child(3) { animation-delay: .35s; }
.company-card.in .company-body li:nth-child(4) { animation-delay: .45s; }

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes grainDrift {
  0% { transform: translate(0,0); }
  100% { transform: translate(-72px, 72px); }
}

@keyframes navDrop {
  from { opacity: 0; transform: translate(-50%, -18px) scale(.98); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@keyframes logoMarkAppear {
  from {
    opacity: 0;
    transform: scale(.82) rotate(-5deg);
    filter:
      blur(5px)
      drop-shadow(0 0 0 rgba(255,255,255,0))
      drop-shadow(0 0 0 rgba(216,180,106,0));
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter:
      blur(0)
      drop-shadow(0 0 2px rgba(255,255,255,.55))
      drop-shadow(0 0 12px rgba(216,180,106,.18));
  }
}

@keyframes logoRingAppear {
  from {
    opacity: 0;
    transform: scale(.62);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoHalo {
  0%, 100% { opacity: .52; transform: scale(.94); }
  50% { opacity: .9; transform: scale(1.04); }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroWordReveal {
  from {
    opacity: 0;
    transform: translateY(112%) rotate(1.5deg);
    filter: blur(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
    filter: blur(0);
  }
}

@keyframes heroAfterReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes osLineReveal {
  from {
    opacity: 0;
    transform: translateY(110%) rotate(1.5deg);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
    filter: blur(0);
  }
}

@keyframes orbSpin {
  to { filter: hue-rotate(360deg); }
}

@keyframes orbBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes orbitDrift {
  to { transform: translate(-50%, -50%) rotate(352deg); }
}

@keyframes floatDot {
  0%, 100% { transform: translateY(0) scale(1); opacity: .45; }
  50% { transform: translateY(-24px) scale(1.6); opacity: 1; }
}

@keyframes scrollCue {
  0%, 100% { transform: scaleX(.45); opacity: .4; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes logoPulse {
  0%, 100% { opacity: .42; }
  50% { opacity: .8; }
}

@keyframes visualSweep {
  to { transform: rotate(360deg); }
}

@keyframes panelFloat {
  0%, 100% { transform: translateZ(42px) translateY(0); }
  50% { transform: translateZ(42px) translateY(-10px); }
}

@keyframes scanLine {
  0%, 100% { top: 14%; opacity: 0; }
  20%, 75% { opacity: .55; }
  50% { top: 78%; opacity: .8; }
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

@keyframes brandPulse {
  0%, 100% {
    box-shadow:
      0 0 48px color-mix(in srgb, var(--brand-glow-strong), transparent 76%),
      0 18px 48px rgba(0,0,0,.18);
  }
  50% {
    box-shadow:
      0 0 88px color-mix(in srgb, var(--brand-glow-strong), transparent 62%),
      0 24px 58px rgba(0,0,0,.2);
  }
}

@keyframes brandSweep {
  0%, 42% { transform: translateX(-62%); opacity: 0; }
  55% { opacity: .8; }
  78%, 100% { transform: translateX(62%); opacity: 0; }
}

@keyframes cubeStar {
  0%, 100% {
    opacity: .28;
    transform: translate3d(0,0,0) rotate(0deg) scale(.75);
  }
  45% {
    opacity: .9;
    transform: translate3d(8px,-12px,0) rotate(45deg) scale(1);
  }
  72% {
    opacity: .52;
    transform: translate3d(-5px,8px,0) rotate(90deg) scale(.82);
  }
}

@keyframes listPop {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes spotlightMove {
  from { opacity: .65; transform: translateY(-16px) scale(1); }
  to { opacity: 1; transform: translateY(18px) scale(1.08); }
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(16,17,18,.96);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-cta {
    display: none;
  }

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

  .what-section {
    padding: 92px 20px 86px;
  }

  .what-head {
    margin-bottom: 36px;
  }

  .what-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .what-visual {
    order: -1;
    position: relative;
    z-index: 5;
  }

  .what-visual-sticky {
    position: sticky;
    top: 64px;
    height: auto;
    display: block;
  }

  .what-image-shell {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 24px;
  }

  .what-image {
    padding: 18px;
  }

  .what-image figcaption {
    max-width: 260px;
    font-size: clamp(1.45rem, 7vw, 2.3rem);
  }

  .what-list {
    display: grid;
    gap: 10px;
  }

  .what-item {
    min-height: auto;
    padding: 44px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .what-meta {
    gap: 12px;
    font-size: 10px;
  }

  .what-title {
    width: auto;
    font-size: clamp(2.1rem, 12vw, 3.1rem);
  }

  .wave-card-stack {
    padding-bottom: 18vh;
  }

  .wave-service-card {
    top: 86px;
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .wave-service-card + .wave-service-card {
    margin-top: -10vh;
  }

  .wave-copy {
    min-height: 52vh;
    padding: 32px 28px;
  }

  .wave-copy h3 {
    font-size: clamp(1.9rem, 8.2vw, 2.65rem);
  }

  .wave-copy p:not(.wave-kicker) {
    font-size: .96rem;
  }

  .wave-image {
    min-height: 300px;
    padding: 22px;
  }

  .wave-image strong {
    max-width: 280px;
    font-size: clamp(1.45rem, 6.5vw, 2.15rem);
  }

  .service-swap {
    min-height: auto;
    margin-top: 36px;
    perspective: none;
  }

  .swap-sticky {
    position: relative;
    top: auto;
    height: auto;
    display: grid;
    gap: 22px;
    perspective: none;
  }

  .service-swap::before {
    content: "tap links";
    top: -34px;
    right: 4px;
  }

  .swap-card,
  .swap-card-ice,
  .service-swap.is-ice-active .swap-card-ai,
  .service-swap:has(.swap-card-ice:focus-within) .swap-card-ai,
  .service-swap.is-ice-active .swap-card-ice,
  .service-swap:has(.swap-card-ice:focus-within) .swap-card-ice {
    position: relative;
    inset: auto;
    z-index: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .swap-copy {
    padding: 32px 28px;
  }

  .swap-copy h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .swap-media {
    min-height: 320px;
  }

  .section {
    padding: 88px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
    overflow: hidden;
  }

  .signal-field {
    top: 12%;
    gap: 10px;
  }

  .signal-field span {
    width: 7px;
    height: 58px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.3vw, 3rem);
    letter-spacing: -.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-word-line {
    flex-wrap: nowrap;
    gap: .1em;
    white-space: nowrap;
  }

  .hero-word {
    flex: 0 0 auto;
  }

  .hero-copy {
    font-size: .96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .btn {
    width: 100%;
  }

  .company-visual {
    min-height: 230px;
  }

  .brand-stage {
    width: min(330px, 100%);
    border-radius: 20px;
  }

  .youai-photo-stage {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .footer {
    flex-direction: column;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-word > span,
  .hero-after {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .what-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .what-title,
  .what-title::after,
  .what-image {
    transition: none;
  }

  .what-image,
  .what-image::before {
    animation: none;
  }

  .what-image.is-active {
    opacity: 1;
    transform: none;
  }

  .what-image:not(.is-active) {
    opacity: 0;
    transform: none;
  }

  .service-swap {
    min-height: auto;
  }

  .swap-sticky {
    position: relative;
    top: auto;
    height: auto;
    display: grid;
    gap: 24px;
    perspective: none;
  }

  .swap-card,
  .swap-card-ice,
  .service-swap.is-ice-active .swap-card-ai,
  .service-swap:has(.swap-card-ice:focus-within) .swap-card-ai,
  .service-swap.is-ice-active .swap-card-ice,
  .service-swap:has(.swap-card-ice:focus-within) .swap-card-ice {
    position: relative;
    inset: auto;
    z-index: auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .wave-card-stack {
    padding-bottom: 0;
  }

  .wave-service-card {
    position: relative;
    top: auto;
    margin-top: 24px;
    transform: none;
    transition: none;
  }

  .wave-service-card + .wave-service-card {
    margin-top: 24px;
  }

  .wave-image::before,
  .wave-rule {
    animation: none;
  }

  .mantra-focus {
    min-height: auto;
    padding: 120px 24px;
  }

  .mantra-sticky {
    position: relative;
    height: auto;
  }

  .mantra-focus-line {
    color: #fff;
    filter: none;
    transform: none;
    transition: none;
  }

  .mantra-steps {
    display: none;
  }
}

.footer-copy {
  width: 100%;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .02em;
}
