:root {
  --bg: #08090d;
  --bg-soft: #0d0f15;
  --surface: rgba(255,255,255,.045);
  --line: rgba(255,255,255,.1);
  --line-strong: rgba(255,255,255,.18);
  --text: #f3f3f0;
  --muted: #a7a9b0;
  --muted-2: #72757e;
  --accent: #ddff75;
  --shell: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { color: #090b0f; background: var(--accent); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  color: #050609;
  background: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

#motion-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .68;
}
#motion-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
.light-field {
  position: fixed;
  z-index: -4;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background:
    linear-gradient(112deg, transparent 0 44%, rgba(221,255,117,.07) 44.1%, transparent 44.25%),
    linear-gradient(68deg, transparent 0 64%, rgba(131,155,255,.08) 64.1%, transparent 64.25%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,.025) 120px, transparent 121px),
    repeating-linear-gradient(0deg, transparent 0 119px, rgba(255,255,255,.02) 120px, transparent 121px);
}

.site-header {
  position: relative;
  z-index: 30;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  overflow: hidden;
}
.brand-mark i {
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(221,255,117,.55);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-22deg);
}
.brand-mark b { font: 600 13px/1 "Manrope", sans-serif; letter-spacing: -.05em; }
.brand-name { font: 600 14px/1 "Manrope", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.brand-name em { color: var(--muted); font-style: normal; font-weight: 400; }
.site-header nav { display: flex; align-items: center; gap: 30px; font-size: 13px; color: var(--muted); }
.site-header nav a { transition: color .25s ease; }
.site-header nav a:focus-visible, .button:focus-visible, .asset-card:focus-visible, .text-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.site-header nav a:hover { color: #fff; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; }
.nav-cta:hover { border-color: var(--line-strong); }

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100vh - 92px);
  padding: clamp(90px, 12vw, 150px) 0 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow, .section-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 24px; height: 1px; margin: 0 12px 3px 0; background: var(--accent); }
.hero h1 {
  max-width: 900px;
  margin: 26px 0 34px;
  font: 500 clamp(64px, 9.4vw, 128px)/.88 "Manrope", sans-serif;
  letter-spacing: -.072em;
}
.hero h1 span { color: var(--accent); }
.hero-copy {
  max-width: 630px;
  margin: 0;
  color: #b9bac0;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 999px;
  font: 600 13px/1 "Manrope", sans-serif;
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}
.button span { margin-left: 18px; font-size: 18px; font-weight: 400; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #0b0c10; background: var(--accent); }
.button-primary:hover { background: #e8ffa0; }
.button-ghost { color: var(--muted); border: 1px solid var(--line); }
.button-ghost:hover { color: #fff; border-color: var(--line-strong); }

.hero-orbit {
  position: absolute;
  z-index: -1;
  right: max(-8vw, -100px);
  top: 50%;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  transform: translateY(-48%);
  opacity: .54;
}
.orbit { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit-a { animation: orbit-a 18s linear infinite; }
.orbit-a::after, .orbit-b::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(221,255,117,.8);
}
.orbit-a::after { top: 13%; left: 18%; }
.orbit-b { inset: 16%; border-style: dashed; animation: orbit-b 27s linear infinite; }
.orbit-b::after { right: -4px; top: 50%; background: #908cff; box-shadow: 0 0 24px #706cff; }
.orbit-center {
  position: absolute;
  inset: 35%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.16), rgba(255,255,255,.02) 60%);
  box-shadow: inset 0 0 60px rgba(221,255,117,.05), 0 0 100px rgba(92,110,255,.08);
}
.orbit-center span { font: 600 11px/1 "Manrope", sans-serif; letter-spacing: .22em; color: rgba(255,255,255,.58); }
@keyframes orbit-a { to { transform: rotate(360deg); } }
@keyframes orbit-b { to { transform: rotate(-360deg); } }

.portfolio { padding: 120px 0 150px; }
.portfolio-group + .portfolio-group { margin-top: 92px; }
.group-label { margin: 0 0 22px 32.2%; color: var(--accent); font: 600 11px/1 "Manrope", sans-serif; letter-spacing: .17em; text-transform: uppercase; }
.section-heading { display: grid; grid-template-columns: 1fr 2.1fr; align-items: end; margin-bottom: 56px; }
.section-heading p { margin: 0; color: var(--muted-2); font: 600 11px/1 "Manrope", sans-serif; letter-spacing: .17em; text-transform: uppercase; }
.section-heading h2, .principles h2, .closing h2 {
  margin: 0;
  font: 500 clamp(42px, 5.3vw, 70px)/1.02 "Manrope", sans-serif;
  letter-spacing: -.055em;
}
.asset-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.single-grid { grid-template-columns: minmax(0, 1fr); }
.asset-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 520px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(14,16,22,.78);
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  transform: perspective(1200px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  transform-style: preserve-3d;
  transition: border-color .4s ease, transform .5s var(--ease), background .4s ease;
}
.asset-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(440px circle at var(--mx) var(--my), rgba(255,255,255,.105), transparent 43%);
  transition: opacity .4s ease;
}
.asset-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.06), transparent 40%);
  pointer-events: none;
}
.asset-card:hover { border-color: rgba(255,255,255,.23); background: rgba(17,19,27,.92); }
.asset-card:hover::before { opacity: 1; }
.asset-card > * { position: relative; z-index: 2; }
.card-glow { position: absolute; z-index: 0; width: 300px; height: 300px; right: -130px; bottom: -140px; border-radius: 50%; filter: blur(70px); opacity: .17; }
.card-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; color: var(--muted-2); font: 600 10px/1 "Manrope", sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.asset-index { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.asset-arrow { font-size: 18px; color: var(--muted); transition: transform .4s var(--ease), color .3s ease; }
.asset-card:hover .asset-arrow { color: #fff; transform: translate(3px,-3px); }
.card-copy h3 { margin: 0 0 15px; font: 600 clamp(30px, 3.2vw, 48px)/1 "Manrope", sans-serif; letter-spacing: -.045em; }
.card-copy p { max-width: 470px; min-height: 56px; margin: 0 0 24px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.card-copy small { color: var(--muted-2); font: 500 11px/1 "Manrope", sans-serif; letter-spacing: .09em; }

.asset-symbol { position: relative; align-self: center; width: 210px; height: 210px; transition: transform .65s var(--ease); }
.asset-card:hover .asset-symbol { transform: scale(1.035) translateY(-4px); }
.asset-art { position: relative; width: 100%; height: 235px; margin: 24px 0 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: #0b0d12; transform: translateZ(0); }
.asset-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,13,.02), rgba(8,9,13,.26)); pointer-events: none; }
.asset-art img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s var(--ease), filter .5s ease; }
.asset-card:hover .asset-art img { transform: scale(1.045); filter: saturate(1.08); }
.asset-art + .asset-symbol { display: none; }
.asset-vraison .card-glow { background: #7457ff; }
.symbol-vraison { display: grid; place-items: center; transform: rotate(-8deg); }
.symbol-vraison span { position: absolute; width: 116px; height: 116px; border: 1px solid rgba(175,156,255,.55); border-radius: 28% 72% 48% 52% / 53% 35% 65% 47%; animation: morph 9s ease-in-out infinite alternate; }
.symbol-vraison span:nth-child(2) { width: 82px; height: 82px; border-color: rgba(120,232,255,.55); animation-delay: -3s; transform: rotate(40deg); }
.symbol-vraison span:nth-child(3) { width: 12px; height: 12px; border: 0; border-radius: 50%; background: #bdadff; box-shadow: 0 0 44px 12px rgba(124,97,255,.35); animation: pulse 4s ease-in-out infinite; }
@keyframes morph { to { border-radius: 62% 38% 67% 33% / 37% 64% 36% 63%; transform: rotate(70deg) scale(1.08); } }
@keyframes pulse { 50% { transform: scale(1.35); opacity: .75; } }

.asset-halfopen .card-glow { background: #ff5d84; }
.symbol-heart { display: grid; place-items: center; }
.symbol-heart svg { width: 160px; filter: drop-shadow(0 0 28px rgba(255,91,128,.2)); }
.symbol-heart path:first-child { fill: rgba(255,83,123,.08); stroke: #ef6e90; stroke-width: 1.4; }
.symbol-heart path:last-child { fill: none; stroke: rgba(255,255,255,.3); stroke-width: 1; stroke-dasharray: 2 5; }

.asset-petey .card-glow { background: #f5b63c; }
.symbol-petey { width: 195px; height: 205px; }
.symbol-petey .face { position: absolute; left: 50%; top: 55px; width: 116px; height: 126px; border: 1px solid rgba(244,184,65,.72); border-radius: 42% 42% 49% 49%; transform: translateX(-50%); background: rgba(246,185,63,.035); }
.symbol-petey .helmet { position: absolute; z-index: 2; left: 50%; top: 23px; width: 144px; height: 75px; transform: translateX(-50%); border: 1px solid rgba(255,208,93,.8); border-bottom: 0; border-radius: 75px 75px 18px 18px; }
.symbol-petey .helmet::after { content: ""; position: absolute; left: -13px; bottom: -10px; width: 168px; height: 20px; border: 1px solid rgba(255,208,93,.8); border-radius: 999px; background: rgba(250,185,56,.06); }
.symbol-petey .eye { position: absolute; z-index: 3; top: 108px; width: 7px; height: 7px; border-radius: 50%; background: #f4c45e; box-shadow: 0 0 15px rgba(244,196,94,.45); }
.symbol-petey .eye-left { left: 73px; }
.symbol-petey .eye-right { right: 73px; }

.asset-soaura .card-glow { background: #bd54ff; }
.asset-laforge .card-glow { background: #4b9cff; }
.symbol-laforge { display: grid; place-items: center; }
.symbol-laforge span { position: absolute; width: 132px; height: 132px; border: 1px solid rgba(91,180,255,.65); transform: rotate(45deg); }
.symbol-laforge span:nth-child(2) { width: 92px; height: 92px; border-color: rgba(221,255,117,.65); transform: rotate(0); }
.symbol-laforge span:nth-child(3) { width: 10px; height: 10px; border: 0; background: #75c7ff; box-shadow: 0 0 36px 12px rgba(75,156,255,.45); transform: rotate(45deg); }
.asset-gifted .card-glow { background: #d3a55a; }
.symbol-gifted { display: grid; place-items: center; color: #e8c47e; font: 400 86px/1 "Manrope", sans-serif; text-shadow: 0 0 30px rgba(232,196,126,.4); }
.symbol-soaura { display: grid; place-items: center; }
.aura-ring { position: absolute; width: 160px; height: 160px; border-radius: 50%; background: conic-gradient(from 220deg, #ffaf3d, #ff557d, #bb52ff, #4a77ff, #49e3ff, #ffaf3d); -webkit-mask: radial-gradient(circle, transparent 57%, #000 59%); mask: radial-gradient(circle, transparent 57%, #000 59%); opacity: .85; filter: drop-shadow(0 0 24px rgba(123,83,255,.26)); animation: aura-spin 15s linear infinite; }
.symbol-soaura svg { position: relative; z-index: 2; width: 128px; overflow: visible; }
.symbol-soaura path { fill: none; stroke: rgba(255,255,255,.87); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes aura-spin { to { transform: rotate(360deg); } }

.asset-wide { grid-column: 1 / -1; min-height: 355px; }
.asset-personal .card-glow { right: 12%; bottom: -180px; background: #7fd4b0; }
.founder-line { display: flex; align-items: center; gap: 14px; width: 100%; margin: 45px 0; color: rgba(255,255,255,.13); font: 600 clamp(18px, 3vw, 36px)/1 "Manrope", sans-serif; letter-spacing: .03em; white-space: nowrap; }
.founder-line i { flex: 1; height: 1px; min-width: 35px; background: linear-gradient(90deg, transparent, rgba(127,212,176,.5), transparent); }
.founder-copy { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.founder-copy p { min-height: auto; margin-bottom: 0; }

.principles { padding: 130px 0 155px; border-top: 1px solid rgba(255,255,255,.07); }
.about { padding: 130px 0 110px; border-top: 1px solid rgba(255,255,255,.07); }
.about-copy { max-width: 690px; margin: 0 0 0 32.2%; color: #b9bac0; font-size: clamp(18px, 2vw, 24px); line-height: 1.55; }
.principles-intro { display: grid; grid-template-columns: 1fr 2.1fr; margin-bottom: 80px; }
.principles-intro h2 { max-width: 780px; }
.principle-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-left: 32.2%; }
.principle-list article { padding-top: 18px; border-top: 1px solid var(--line); }
.principle-list span { color: var(--accent); font: 600 10px/1 "Manrope", sans-serif; }
.principle-list h3 { margin: 42px 0 13px; font: 600 18px/1.2 "Manrope", sans-serif; }
.principle-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.closing {
  min-height: 420px;
  margin-bottom: 22px;
  padding: 72px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(221,255,117,.1), transparent 26rem),
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  overflow: hidden;
}
.closing p { margin: 0 0 14px; color: var(--muted); }
.closing h2 { max-width: 700px; }
.closing .button { flex: 0 0 auto; }
.founder { padding: 120px 0 150px; border-top: 1px solid rgba(255,255,255,.07); }
.founder-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); align-items: center; gap: clamp(48px, 8vw, 110px); }
.founder-portrait { width: min(100%, 360px); margin: 0; justify-self: end; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-soft); }
.founder-portrait img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.founder h2 { margin: 28px 0 22px; font: 500 clamp(54px, 8vw, 108px)/.92 "Manrope", sans-serif; letter-spacing: -.07em; }
.founder-description { max-width: 620px; margin: 0 0 32px; color: #b9bac0; font-size: 18px; line-height: 1.65; }
.text-link { display: inline-flex; gap: 20px; color: var(--accent); font: 600 13px/1 "Manrope", sans-serif; }
.text-link span { font-size: 18px; }
.not-found-content { min-height: 100vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.not-found h1 { margin: 28px 0 42px; font: 500 clamp(54px, 9vw, 116px)/.92 "Manrope", sans-serif; letter-spacing: -.07em; }
.not-found h1 span { color: var(--accent); }

.site-footer {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: var(--muted-2);
  font-size: 11px;
}
.site-footer p:nth-child(2) { letter-spacing: .1em; text-transform: uppercase; }
.site-footer p:last-child { justify-self: end; }
.brand-footer { color: var(--text); }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--delay, 0) * 100ms); }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }
[data-delay="1"] { --delay: 1; }
[data-delay="2"] { --delay: 2; }
[data-delay="3"] { --delay: 3; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .hero { padding-top: 90px; }
  .hero h1 { font-size: clamp(58px, 14vw, 98px); }
  .hero-orbit { width: 70vw; right: -28vw; top: 42%; opacity: .35; }
  .section-heading, .principles-intro { grid-template-columns: 1fr; gap: 22px; }
  .group-label, .about-copy { margin-left: 0; }
  .asset-grid { grid-template-columns: 1fr; }
  .asset-wide { grid-column: auto; }
  .principle-list { margin-left: 0; grid-template-columns: 1fr; gap: 35px; }
  .principle-list h3 { margin-top: 25px; }
  .closing { padding: 44px; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 38px 0; }
  .site-footer p:nth-child(2) { display: none; }
}

@media (max-width: 620px) {
  .site-header { height: 76px; }
  .brand-name em { display: none; }
  .site-header nav > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 13px; }
  .hero { min-height: calc(100svh - 76px); padding: 72px 0 62px; }
  .hero h1 { margin: 22px 0 26px; font-size: clamp(51px, 16vw, 76px); letter-spacing: -.068em; }
  .hero-copy { max-width: 94%; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-orbit { width: 90vw; right: -48vw; top: 36%; }
  .portfolio { padding: 90px 0 105px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .principles h2, .closing h2 { font-size: clamp(38px, 11vw, 52px); }
  .asset-card { min-height: 470px; padding: 20px; border-radius: 18px; }
  .asset-art { height: 210px; margin: 18px 0 24px; }
  .asset-symbol { width: 180px; height: 180px; }
  .asset-type { letter-spacing: .08em; }
  .card-copy h3 { font-size: 34px; }
  .asset-wide { min-height: 470px; }
  .founder-line { flex-wrap: wrap; white-space: normal; font-size: 21px; line-height: 1.3; }
  .founder-line i { min-width: 50px; }
  .founder-copy { align-items: flex-start; flex-direction: column; gap: 20px; }
  .founder-layout { grid-template-columns: 1fr; gap: 54px; }
  .founder-portrait { width: min(100%, 360px); justify-self: start; }
  .about, .principles, .founder { padding: 100px 0; }
  .principles-intro { margin-bottom: 60px; }
  .closing { min-height: 460px; margin-inline: 16px; width: auto; padding: 28px; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; }
  .site-footer p:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  #motion-canvas { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}
