:root {
  --bg: #050307;
  --bg-soft: #09060e;
  --surface: #0d0913;
  --surface-raised: #120c1b;
  --surface-bright: #181023;
  --ink: #fbf9ff;
  --muted: #a59db2;
  --muted-strong: #c8c1d3;
  --violet: #a855f7;
  --violet-bright: #c084fc;
  --violet-deep: #6d28d9;
  --indigo: #7c3aed;
  --cyan: #67e8f9;
  --green: #86efac;
  --orange: #fb7a21;
  --line: rgba(209, 188, 255, 0.13);
  --line-strong: rgba(209, 188, 255, 0.24);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-height: 78px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(139, 92, 246, 0.18), transparent 30%),
    radial-gradient(circle at 91% 13%, rgba(88, 28, 135, 0.18), transparent 28%),
    linear-gradient(180deg, #050307 0%, #060309 55%, #040206 100%);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

::selection {
  color: #fff;
  background: rgba(168, 85, 247, 0.65);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050307;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #050307;
  border-radius: 999px;
  background: #40324f;
}

::-webkit-scrollbar-thumb:hover {
  background: #705488;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 12px;
  color: #fff;
  background: var(--violet-deep);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(5, 3, 7, 0.78);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px) saturate(125%);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 40px), var(--container));
  min-height: var(--header-height);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.36));
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  letter-spacing: 0.17em;
  font-size: 0.82rem;
  font-weight: 760;
}

.brand-subtitle {
  color: #80768d;
  letter-spacing: 0.28em;
  font-size: 0.54rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-link {
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  color: #aaa2b4;
  font-size: 0.86rem;
  font-weight: 600;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 1px;
  content: "";
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--violet-bright), transparent);
  transition: transform 220ms var(--ease);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 720;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  border-color: rgba(216, 180, 254, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 40%),
    linear-gradient(135deg, #a855f7 0%, #6d28d9 100%);
  box-shadow:
    0 12px 35px rgba(109, 40, 217, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.24);
}

.button-primary:hover {
  box-shadow:
    0 18px 48px rgba(109, 40, 217, 0.4),
    inset 0 1px rgba(255, 255, 255, 0.24);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(192, 132, 252, 0.45);
  background: rgba(168, 85, 247, 0.09);
}

.button-compact {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 0.82rem;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

main {
  min-height: 70vh;
}

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

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

.section-tight {
  padding: 86px 0;
}

.section-line::before {
  position: absolute;
  top: 0;
  right: max(20px, calc((100% - var(--container)) / 2));
  left: max(20px, calc((100% - var(--container)) / 2));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.section-glow::after {
  position: absolute;
  z-index: -1;
  top: 12%;
  left: 50%;
  width: 70%;
  height: 65%;
  content: "";
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.09);
  filter: blur(130px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
  color: #c7a8ed;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.71rem;
  font-weight: 760;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--violet), transparent);
}

.display-title {
  max-width: 880px;
  margin-bottom: 22px;
  letter-spacing: -0.052em;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 760;
  line-height: 0.94;
}

.section-title {
  max-width: 820px;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 730;
  line-height: 1.02;
}

.section-title-small {
  max-width: 760px;
  margin-bottom: 18px;
  letter-spacing: -0.035em;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 720;
  line-height: 1.05;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, #fff 2%, #ead8ff 35%, #b16df3 70%, #7c3aed 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.section-lead {
  max-width: 720px;
  color: var(--muted-strong);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.section-header {
  display: flex;
  margin-bottom: 54px;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-header > div:first-child {
  max-width: 820px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dec4ff;
  font-size: 0.9rem;
  font-weight: 680;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translate(3px, -3px);
}

.hero {
  position: relative;
  display: flex;
  min-height: 960px;
  padding: calc(var(--header-height) + 74px) 0 90px;
  overflow: hidden;
  align-items: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(197, 163, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 163, 255, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 83%);
}

.hero::after {
  position: absolute;
  top: -10%;
  left: -15%;
  width: 65vw;
  height: 65vw;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 67%);
  filter: blur(25px);
}

.hero-cursor-glow {
  position: absolute;
  z-index: 0;
  width: 460px;
  height: 460px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.42), transparent 68%);
  filter: blur(18px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: 36px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 34px 0;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 12px 8px 9px;
  border: 1px solid rgba(194, 157, 255, 0.18);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  color: #c7bed0;
  background: rgba(12, 8, 18, 0.65);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  font-size: 0.77rem;
  font-weight: 650;
  backdrop-filter: blur(14px);
}

.hero-kicker-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(134, 239, 172, 0.65);
}

.hero-kicker-dot::after {
  position: absolute;
  inset: -4px;
  content: "";
  border: 1px solid rgba(134, 239, 172, 0.32);
  border-radius: inherit;
  animation: status-pulse 2s ease-out infinite;
}

.hero-title {
  max-width: 760px;
  margin-bottom: 26px;
  letter-spacing: -0.066em;
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 780;
  line-height: 0.82;
}

.hero-title .line-one {
  display: block;
  color: #fff;
}

.hero-title .line-two {
  position: relative;
  display: block;
  width: fit-content;
  color: transparent;
  background: linear-gradient(100deg, #f4e8ff 0%, #c084fc 42%, #7c3aed 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 22px 0 rgba(72, 22, 105, 0.18), -13px 0 rgba(103, 232, 249, 0.06);
}

.hero-title .line-two::after {
  position: absolute;
  right: 1%;
  bottom: 2px;
  left: 1%;
  height: 2px;
  content: "";
  transform: scaleX(0.72);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, #a855f7 15%, #67e8f9 62%, transparent);
  filter: blur(0.4px);
}

.hero-description {
  max-width: 650px;
  margin-bottom: 34px;
  color: #b7aebf;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.8;
}

.hero-description strong {
  color: #eee8f4;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #817988;
  font-size: 0.76rem;
  font-weight: 620;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: #866aa2;
}

.hero-stage {
  position: relative;
  min-height: 650px;
  isolation: isolate;
}

.signal-sphere {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(35vw, 510px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(199, 168, 237, 0.17);
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 30%, rgba(236, 214, 255, 0.18), transparent 15%),
    radial-gradient(circle at 45% 42%, rgba(168, 85, 247, 0.16), transparent 38%),
    radial-gradient(circle at 60% 64%, rgba(76, 29, 149, 0.3), transparent 48%),
    rgba(12, 7, 18, 0.76);
  box-shadow:
    inset -30px -30px 70px rgba(0, 0, 0, 0.7),
    inset 20px 15px 60px rgba(192, 132, 252, 0.08),
    0 0 120px rgba(124, 58, 237, 0.16);
  overflow: hidden;
}

.signal-sphere::before,
.signal-sphere::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.signal-sphere::before {
  inset: 7%;
  border: 1px dashed rgba(196, 181, 253, 0.19);
  animation: orbit-spin 24s linear infinite;
}

.signal-sphere::after {
  top: 16%;
  right: 16%;
  bottom: 16%;
  left: 16%;
  border: 1px solid rgba(103, 232, 249, 0.12);
  transform: rotateX(64deg);
  box-shadow: 0 0 30px rgba(103, 232, 249, 0.06);
}

.signal-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(196, 181, 253, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 181, 253, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, #000 15%, transparent 71%);
  transform: perspective(600px) rotateX(62deg) scale(1.6) translateY(8%);
  animation: grid-drift 12s linear infinite;
}

.signal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 145px;
  height: 145px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(237, 213, 255, 0.22);
  border-radius: 38px;
  place-items: center;
  background: rgba(9, 5, 14, 0.76);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(168, 85, 247, 0.12);
  backdrop-filter: blur(16px);
}

.signal-core img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(168, 85, 247, 0.38));
}

.signal-core::after {
  position: absolute;
  inset: -16px;
  content: "";
  border: 1px solid rgba(168, 85, 247, 0.16);
  border-radius: 48px;
  animation: core-pulse 3.5s ease-in-out infinite;
}

.signal-scan {
  position: absolute;
  z-index: 3;
  top: -12%;
  left: 0;
  width: 100%;
  height: 22%;
  opacity: 0.55;
  background: linear-gradient(to bottom, transparent, rgba(192, 132, 252, 0.11), rgba(103, 232, 249, 0.12), transparent);
  filter: blur(2px);
  animation: scan 5.8s linear infinite;
}

.orbit-ring {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(43vw, 620px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-12deg);
  border: 1px solid rgba(192, 132, 252, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.06);
}

.orbit-ring::before {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 11px;
  height: 11px;
  content: "";
  border-radius: 50%;
  background: #d8b4fe;
  box-shadow: 0 0 22px #a855f7;
}

.float-card {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  padding: 16px 17px;
  border: 1px solid rgba(214, 182, 255, 0.14);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(20, 13, 29, 0.84), rgba(8, 5, 12, 0.78));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px) saturate(130%);
  animation: float 7s ease-in-out infinite;
}

.float-card-top {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #82788d;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 720;
}

.float-card-value {
  color: #eee6f8;
  font-size: 1rem;
  font-weight: 700;
}

.float-card-sub {
  margin-top: 2px;
  color: #8f8698;
  font-size: 0.72rem;
}

.float-card-a {
  top: 12%;
  right: -1%;
}

.float-card-b {
  bottom: 14%;
  left: -4%;
  animation-delay: -2.4s;
}

.float-card-c {
  right: 3%;
  bottom: 8%;
  min-width: 168px;
  animation-delay: -4.3s;
}

.signal-bars {
  display: flex;
  height: 18px;
  align-items: end;
  gap: 3px;
}

.signal-bars i {
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to top, var(--indigo), var(--cyan));
  animation: bar 1.2s ease-in-out infinite alternate;
}

.signal-bars i:nth-child(1) { height: 28%; }
.signal-bars i:nth-child(2) { height: 52%; animation-delay: -0.3s; }
.signal-bars i:nth-child(3) { height: 78%; animation-delay: -0.6s; }
.signal-bars i:nth-child(4) { height: 100%; animation-delay: -0.9s; }

.partner-chip {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 9px;
  border: 1px solid rgba(251, 122, 33, 0.18);
  border-radius: 9px;
  align-items: center;
  gap: 7px;
  color: #ffc09a;
  background: rgba(251, 122, 33, 0.07);
  font-size: 0.66rem;
  font-weight: 650;
}

.partner-chip::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 12px rgba(251, 122, 33, 0.75);
}

.stats-strip {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.stats-grid {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(145deg, rgba(17, 11, 25, 0.92), rgba(8, 5, 12, 0.86));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.stat {
  position: relative;
  min-height: 150px;
  padding: 30px;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: transform 360ms var(--ease);
}

.stat:hover::before {
  transform: scaleX(1);
}

.stat-value {
  margin-bottom: 5px;
  letter-spacing: -0.04em;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  font-weight: 760;
  line-height: 1;
}

.stat-label {
  max-width: 190px;
  color: #92899b;
  font-size: 0.78rem;
  line-height: 1.5;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.sticky-copy {
  position: sticky;
  top: 130px;
}

.mission-copy {
  color: #b8b0c0;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.9;
}

.mission-copy strong {
  color: #fff;
  font-weight: 620;
}

.definition-card {
  position: relative;
  margin-top: 36px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.definition-card::before {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 70%;
  height: 180%;
  content: "";
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
}

.definition-word {
  position: relative;
  margin-bottom: 6px;
  letter-spacing: -0.035em;
  font-size: 1.45rem;
  font-weight: 720;
}

.definition-phonetic {
  position: relative;
  margin-bottom: 15px;
  color: #8f8499;
  font-size: 0.77rem;
}

.definition-card p {
  position: relative;
  color: #c3b9cc;
  font-size: 0.91rem;
}

.principles-list {
  display: grid;
  gap: 14px;
}

.principle {
  display: grid;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: 56px 1fr;
  gap: 18px;
  background: linear-gradient(145deg, rgba(18, 12, 27, 0.72), rgba(9, 6, 13, 0.72));
  transition:
    transform 260ms var(--ease),
    border-color 220ms ease,
    background-color 220ms ease;
}

.principle:hover {
  transform: translateX(5px);
  border-color: rgba(192, 132, 252, 0.3);
  background: linear-gradient(145deg, rgba(26, 15, 40, 0.82), rgba(9, 6, 13, 0.72));
}

.principle-index {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(192, 132, 252, 0.18);
  border-radius: 15px;
  place-items: center;
  color: #cfaaff;
  background: rgba(168, 85, 247, 0.08);
  font-size: 0.72rem;
  font-weight: 750;
}

.principle h3 {
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  font-size: 1.12rem;
}

.principle p {
  color: #998fa3;
  font-size: 0.88rem;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 350px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  background: linear-gradient(160deg, rgba(20, 13, 29, 0.84), rgba(8, 5, 12, 0.84));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition:
    transform 280ms var(--ease),
    border-color 220ms ease,
    box-shadow 280ms ease;
}

.service-card::before {
  position: absolute;
  top: -25%;
  right: -30%;
  width: 230px;
  height: 230px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.16), transparent 68%);
  transition: transform 450ms var(--ease);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(192, 132, 252, 0.29);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.04);
}

.service-card:hover::before {
  transform: scale(1.25);
}

.service-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: auto;
  border: 1px solid rgba(205, 174, 255, 0.17);
  border-radius: 17px;
  place-items: center;
  color: #d7b8ff;
  background: rgba(168, 85, 247, 0.08);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: #4d4255;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  font-weight: 750;
}

.service-card h3 {
  position: relative;
  margin: 56px 0 12px;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.service-card p {
  position: relative;
  color: #9e94a8;
  font-size: 0.9rem;
  line-height: 1.75;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.project-card {
  position: relative;
  display: flex;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 28px;
  grid-column: span 4;
  flex-direction: column;
  background: #0b0710;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition:
    transform 300ms var(--ease),
    border-color 220ms ease,
    box-shadow 300ms ease;
}

.project-card.project-wide {
  grid-column: span 8;
}

.project-card:hover {
  transform: translateY(-7px);
  border-color: rgba(192, 132, 252, 0.3);
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.04);
}

.project-art {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  isolation: isolate;
}

.project-wide .project-art {
  min-height: 330px;
}

.project-art::before,
.project-art::after {
  position: absolute;
  content: "";
}

.project-art::before {
  inset: 0;
  opacity: 0.72;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  transform: perspective(520px) rotateX(58deg) scale(1.5) translateY(20%);
}

.project-art::after {
  right: -12%;
  bottom: -35%;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 20px rgba(255, 255, 255, 0.025),
    0 0 0 50px rgba(255, 255, 255, 0.018),
    0 0 90px rgba(255, 255, 255, 0.08);
}

.project-art-mine {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 206, 84, 0.26), transparent 20%),
    linear-gradient(135deg, #5a3312, #34200d 45%, #0f1719);
}

.project-art-poison {
  background:
    radial-gradient(circle at 30% 25%, rgba(120, 255, 194, 0.28), transparent 21%),
    linear-gradient(135deg, #123e36, #0e201e 48%, #1a0d2a);
}

.project-art-fishing {
  background:
    radial-gradient(circle at 67% 20%, rgba(126, 230, 255, 0.25), transparent 22%),
    linear-gradient(135deg, #0c3d5a, #0a253c 49%, #08111d);
}

.project-art-chesters {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 173, 92, 0.25), transparent 20%),
    linear-gradient(135deg, #5d1c13, #35110d 45%, #21120b);
}

.project-art-gym {
  background:
    radial-gradient(circle at 70% 18%, rgba(175, 118, 255, 0.28), transparent 21%),
    linear-gradient(135deg, #251149, #100c24 48%, #07141f);
}

.project-art-atlas {
  background:
    radial-gradient(circle at 32% 20%, rgba(134, 239, 172, 0.25), transparent 20%),
    linear-gradient(135deg, #19452d, #10281c 48%, #0b1013);
}

.project-art-midas {
  background:
    radial-gradient(circle at 72% 22%, rgba(251, 191, 36, 0.22), transparent 20%),
    linear-gradient(135deg, #4a3510, #2a220f 48%, #101312);
}

.project-art-title {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  max-width: 75%;
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: -0.055em;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 820;
  line-height: 0.86;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
}

.project-card:not(.project-wide) .project-art-title {
  font-size: clamp(1.7rem, 3vw, 2.9rem);
}

.project-art-code {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.18em;
  font-size: 0.58rem;
  font-weight: 720;
}

.project-orb {
  position: absolute;
  z-index: 1;
  right: 9%;
  bottom: 4%;
  width: 32%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.25), 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: rotate(18deg);
  backdrop-filter: blur(10px);
  transition: transform 420ms var(--ease);
}

.project-card:hover .project-orb {
  transform: rotate(30deg) scale(1.08);
}

.project-content {
  display: flex;
  padding: 24px 26px 26px;
  flex: 1;
  flex-direction: column;
}

.project-meta {
  display: flex;
  margin-bottom: 13px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.tag {
  display: inline-flex;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  color: #aea3b8;
  background: rgba(255, 255, 255, 0.025);
  letter-spacing: 0.04em;
  font-size: 0.62rem;
  font-weight: 720;
}

.tag-live::before,
.tag-development::before {
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  content: "";
}

.tag-live::before {
  background: var(--green);
  box-shadow: 0 0 8px rgba(134, 239, 172, 0.55);
}

.tag-development::before {
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.45);
}

.project-content h3 {
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  font-size: 1.27rem;
}

.project-content p {
  margin-bottom: 24px;
  color: #978e9f;
  font-size: 0.85rem;
  line-height: 1.7;
}

.project-footer {
  display: flex;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-result {
  display: grid;
  gap: 2px;
}

.project-result strong {
  color: #e8def2;
  font-size: 0.86rem;
}

.project-result span {
  color: #736b79;
  font-size: 0.65rem;
}

.project-open {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  place-items: center;
  color: #d9c3f4;
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.project-open svg {
  width: 17px;
  height: 17px;
}

.project-card:hover .project-open {
  transform: translate(2px, -2px);
  background: rgba(168, 85, 247, 0.1);
}

.founder-panel {
  position: relative;
  display: grid;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: clamp(34px, 6vw, 80px);
  background:
    radial-gradient(circle at 15% 0%, rgba(168, 85, 247, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(17, 11, 25, 0.94), rgba(8, 5, 12, 0.92));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.founder-image {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(222, 196, 255, 0.16);
  border-radius: 26px;
  background: #100a17;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 700ms var(--ease), filter 400ms ease;
}

.founder-panel:hover .founder-image img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.03);
}

.founder-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(5, 3, 7, 0.92), transparent 42%),
    linear-gradient(120deg, rgba(124, 58, 237, 0.12), transparent 50%);
}

.founder-image-label {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.founder-image-label strong {
  display: block;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.founder-image-label span {
  color: #aaa0b4;
  font-size: 0.72rem;
}

.founder-id {
  color: #745e84;
  letter-spacing: 0.16em;
  font-size: 0.58rem;
  font-weight: 760;
}

.founder-copy {
  display: flex;
  padding: 18px 0;
  justify-content: center;
  flex-direction: column;
}

.founder-copy .section-title-small {
  max-width: 640px;
}

.founder-copy > p {
  max-width: 670px;
  color: #aaa1b3;
  font-size: 1rem;
  line-height: 1.85;
}

.founder-copy > p + p {
  margin-top: 4px;
}

.founder-points {
  display: grid;
  margin: 28px 0 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.founder-point {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.founder-point strong {
  display: block;
  margin-bottom: 3px;
  color: #e3d7ed;
  font-size: 0.85rem;
}

.founder-point span {
  color: #807786;
  font-size: 0.69rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-link {
  display: inline-flex;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  align-items: center;
  gap: 8px;
  color: #b9afc2;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.74rem;
  font-weight: 650;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(192, 132, 252, 0.32);
  color: #fff;
}

.social-link svg {
  width: 15px;
  height: 15px;
}

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

.team-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18, 12, 27, 0.88), rgba(8, 5, 12, 0.88));
  overflow: hidden;
  transition:
    transform 280ms var(--ease),
    border-color 220ms ease,
    box-shadow 280ms ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 132, 252, 0.3);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.team-photo {
  position: relative;
  aspect-ratio: 1.28;
  background: #0c0811;
  overflow: hidden;
}

.team-photo.portrait {
  aspect-ratio: 1.05;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.83) brightness(0.78) contrast(1.08);
  transition:
    transform 550ms var(--ease),
    filter 320ms ease;
}

.team-photo.portrait img {
  object-position: center 17%;
}

.team-card:hover .team-photo img {
  transform: scale(1.035);
  filter: saturate(1) brightness(0.9) contrast(1.05);
}

.team-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(8, 5, 12, 0.95), transparent 54%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), transparent 45%);
}

.team-code {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(5, 3, 7, 0.58);
  letter-spacing: 0.12em;
  font-size: 0.54rem;
  font-weight: 720;
  backdrop-filter: blur(8px);
}

.team-content {
  padding: 22px;
}

.team-role {
  margin-bottom: 7px;
  color: #b88aee;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.61rem;
  font-weight: 750;
}

.team-content h3 {
  margin-bottom: 5px;
  letter-spacing: -0.03em;
  font-size: 1.18rem;
}

.team-handle {
  margin-bottom: 14px;
  color: #746c7b;
  font-size: 0.72rem;
}

.team-content p {
  color: #958c9d;
  font-size: 0.82rem;
  line-height: 1.65;
}

.team-card[data-hidden="true"],
.project-card[data-hidden="true"] {
  display: none;
}

.filter-bar {
  display: flex;
  margin-bottom: 32px;
  padding: 6px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  flex-wrap: wrap;
  gap: 4px;
  background: rgba(255, 255, 255, 0.025);
}

.filter-button {
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  color: #8f8697;
  background: transparent;
  font-size: 0.73rem;
  font-weight: 680;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  background: rgba(168, 85, 247, 0.12);
}

.partner-panel {
  position: relative;
  display: grid;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(251, 122, 33, 0.18);
  border-radius: var(--radius-lg);
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  background:
    radial-gradient(circle at 10% 50%, rgba(251, 122, 33, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(24, 12, 12, 0.88), rgba(8, 6, 10, 0.94));
  overflow: hidden;
}

.partner-visual {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
}

.partner-visual::before,
.partner-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(251, 122, 33, 0.13);
  border-radius: 50%;
}

.partner-visual::before {
  width: 280px;
  height: 280px;
  animation: orbit-spin 28s linear infinite;
}

.partner-visual::after {
  width: 210px;
  height: 210px;
  border-style: dashed;
  animation: orbit-spin 20s linear infinite reverse;
}

.partner-monogram {
  position: relative;
  z-index: 2;
  display: grid;
  width: 144px;
  height: 144px;
  border: 1px solid rgba(255, 177, 128, 0.22);
  border-radius: 36px;
  place-items: center;
  background: linear-gradient(145deg, rgba(251, 122, 33, 0.2), rgba(90, 31, 8, 0.14));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.12);
  color: #ffb581;
  letter-spacing: -0.08em;
  font-size: 2.3rem;
  font-weight: 850;
}

.partner-copy h2 {
  max-width: 650px;
}

.partner-copy p {
  max-width: 680px;
  color: #b2a5ab;
  line-height: 1.85;
}

.partner-label {
  color: #ffa466;
}

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

.cta-card {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(19, 12, 28, 0.92), rgba(8, 5, 12, 0.92));
  overflow: hidden;
  transition:
    transform 280ms var(--ease),
    border-color 220ms ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 132, 252, 0.3);
}

.cta-card::before {
  position: absolute;
  right: -20%;
  bottom: -45%;
  width: 70%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(192, 132, 252, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(168, 85, 247, 0.025), 0 0 0 60px rgba(168, 85, 247, 0.015);
}

.cta-card-client::before {
  border-color: rgba(103, 232, 249, 0.13);
  box-shadow: 0 0 0 30px rgba(103, 232, 249, 0.02), 0 0 0 60px rgba(103, 232, 249, 0.012);
}

.cta-number {
  display: inline-flex;
  margin-bottom: 72px;
  color: #6f6478;
  letter-spacing: 0.16em;
  font-size: 0.63rem;
  font-weight: 740;
}

.cta-card h3 {
  position: relative;
  max-width: 480px;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.cta-card p {
  position: relative;
  max-width: 520px;
  margin-bottom: 28px;
  color: #9e94a7;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 680px;
  padding: calc(var(--header-height) + 110px) 0 100px;
  align-items: end;
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(196, 181, 253, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 181, 253, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 95%);
}

.page-hero::after {
  position: absolute;
  top: -50%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  content: "";
  border: 1px solid rgba(192, 132, 252, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(168, 85, 247, 0.015), 0 0 0 160px rgba(168, 85, 247, 0.009);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .display-title {
  max-width: 980px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 60px;
}

.page-hero-note {
  justify-self: end;
  max-width: 420px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #988f9f;
  background: rgba(11, 7, 16, 0.72);
  font-size: 0.86rem;
  line-height: 1.75;
  backdrop-filter: blur(15px);
}

.page-hero-note strong {
  color: #ddd2e6;
}

.timeline {
  position: relative;
  display: grid;
  padding-left: 46px;
  gap: 14px;
}

.timeline::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 15px;
  width: 1px;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(192, 132, 252, 0.38) 10%, rgba(192, 132, 252, 0.15) 88%, transparent);
}

.timeline-item {
  position: relative;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.timeline-item::before {
  position: absolute;
  top: 33px;
  left: -39px;
  width: 15px;
  height: 15px;
  content: "";
  border: 4px solid #0a0610;
  border-radius: 50%;
  background: #b56bf5;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.55);
}

.timeline-year {
  margin-bottom: 6px;
  color: #c69afa;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  font-weight: 750;
}

.timeline-item h3 {
  margin-bottom: 6px;
  letter-spacing: -0.025em;
  font-size: 1.13rem;
}

.timeline-item p {
  color: #968d9e;
  font-size: 0.86rem;
}

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

.value-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(18, 12, 27, 0.8), rgba(8, 5, 12, 0.82));
}

.value-card-index {
  display: inline-flex;
  margin-bottom: 56px;
  color: #6f6479;
  letter-spacing: 0.14em;
  font-size: 0.61rem;
  font-weight: 760;
}

.value-card h3 {
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.value-card p {
  color: #978e9f;
  font-size: 0.86rem;
}

.capability-list {
  display: grid;
  gap: 12px;
}

.capability-item {
  display: grid;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.023);
  transition:
    transform 220ms var(--ease),
    border-color 180ms ease;
}

.capability-item:hover {
  transform: translateX(4px);
  border-color: rgba(192, 132, 252, 0.28);
}

.capability-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(192, 132, 252, 0.16);
  border-radius: 13px;
  place-items: center;
  color: #caa1fa;
  background: rgba(168, 85, 247, 0.07);
}

.capability-icon svg {
  width: 20px;
  height: 20px;
}

.capability-item h3 {
  margin: 0 0 3px;
  font-size: 0.98rem;
}

.capability-item p {
  color: #877e8e;
  font-size: 0.76rem;
}

.capability-code {
  color: #5f5667;
  letter-spacing: 0.12em;
  font-size: 0.57rem;
  font-weight: 730;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.process-step {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.process-step:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.process-step:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.process-number {
  margin-bottom: 74px;
  color: #765988;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  font-weight: 760;
}

.process-step h3 {
  margin-bottom: 10px;
  letter-spacing: -0.025em;
  font-size: 1.2rem;
}

.process-step p {
  color: #918797;
  font-size: 0.82rem;
}

.process-step::after {
  position: absolute;
  top: 48px;
  right: -4px;
  z-index: 2;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #b66ff6;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
}

.process-step:last-child::after {
  display: none;
}

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

.engagement-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(18, 12, 27, 0.8), rgba(8, 5, 12, 0.82));
}

.engagement-card h3 {
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
}

.engagement-card p {
  color: #968c9d;
  font-size: 0.84rem;
}

.engagement-card ul {
  display: grid;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  gap: 9px;
  list-style: none;
}

.engagement-card li {
  position: relative;
  padding-left: 16px;
  color: #b4aabd;
  font-size: 0.78rem;
}

.engagement-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--violet);
}

.application-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.38fr) minmax(0, 0.62fr);
  align-items: start;
  gap: 30px;
}

.application-sidebar {
  position: sticky;
  top: 112px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 11, 25, 0.9), rgba(8, 5, 12, 0.9));
}

.application-tabs {
  display: grid;
  gap: 8px;
}

.application-tab {
  display: grid;
  width: 100%;
  min-height: 92px;
  padding: 17px;
  border: 1px solid transparent;
  border-radius: 15px;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  text-align: left;
  color: #938a9a;
  background: transparent;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.application-tab:hover,
.application-tab.is-active {
  border-color: rgba(192, 132, 252, 0.2);
  color: #fff;
  background: rgba(168, 85, 247, 0.08);
}

.application-tab-icon {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  place-items: center;
}

.application-tab-icon svg {
  width: 19px;
  height: 19px;
}

.application-tab strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.86rem;
}

.application-tab span {
  color: #746c7b;
  font-size: 0.68rem;
}

.application-delivery {
  display: grid;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 16px;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12), rgba(255, 255, 255, 0.018));
}

.application-delivery-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(192, 132, 252, 0.24);
  border-radius: 11px;
  place-items: center;
  color: #d9c1ff;
  background: rgba(168, 85, 247, 0.1);
}

.application-delivery-icon svg {
  width: 17px;
  height: 17px;
}

.application-delivery strong {
  display: block;
  margin-bottom: 5px;
  color: #f0e8f8;
  font-size: 0.77rem;
  line-height: 1.45;
}

.application-delivery p {
  margin: 0;
  color: #887e91;
  font-size: 0.7rem;
  line-height: 1.6;
}

.application-sidebar-note {
  margin-top: 22px;
  padding: 20px 18px 0;
  border-top: 1px solid var(--line);
  color: #807787;
  font-size: 0.73rem;
  line-height: 1.65;
}

.application-panel {
  display: none;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(17, 11, 25, 0.92), rgba(8, 5, 12, 0.92));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.application-panel.is-active {
  display: block;
  animation: panel-in 320ms var(--ease);
}

.form-header {
  margin-bottom: 34px;
}

.form-header h2 {
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.form-header p {
  max-width: 680px;
  color: #968d9e;
  font-size: 0.9rem;
}

.form-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.form-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.form-section-title {
  margin-bottom: 18px;
  color: #d8c9e6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 750;
}

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

.field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: #c7bdce;
  font-size: 0.75rem;
  font-weight: 650;
}

.field label span,
.field-label span {
  color: #716778;
  font-weight: 500;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(209, 188, 255, 0.15);
  border-radius: 13px;
  outline: 0;
  color: #f7f1fb;
  background: rgba(5, 3, 7, 0.62);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.input,
.select {
  min-height: 50px;
  padding: 0 14px;
}

.textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
  line-height: 1.65;
}

.input::placeholder,
.textarea::placeholder {
  color: #5e5664;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(192, 132, 252, 0.54);
  background: rgba(8, 5, 12, 0.8);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.08);
}

.select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #7d7186 50%), linear-gradient(135deg, #7d7186 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

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

.checkbox {
  position: relative;
  display: flex;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  color: #a49baa;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.76rem;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.checkbox:hover {
  border-color: rgba(192, 132, 252, 0.25);
  color: #d8cde1;
}

.checkbox input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--violet);
}

.consent {
  display: flex;
  margin: 24px 0;
  align-items: flex-start;
  gap: 10px;
  color: #8f8696;
  font-size: 0.73rem;
  line-height: 1.6;
}

.consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--violet);
}

.consent a {
  color: #c8a5ef;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-status {
  min-height: 22px;
  color: #9e94a7;
  font-size: 0.77rem;
}

.form-status.is-error {
  color: #fca5a5;
}

.form-status.is-success {
  color: #86efac;
}

.form-submit[disabled] {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

.turnstile-slot {
  min-height: 0;
  margin-bottom: 18px;
}

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

.legal-copy {
  max-width: 820px;
  color: #aaa1b2;
}

.legal-copy h2 {
  margin-top: 52px;
  margin-bottom: 13px;
  color: #f1eaf7;
  letter-spacing: -0.03em;
  font-size: 1.6rem;
}

.legal-copy h3 {
  margin-top: 30px;
  margin-bottom: 9px;
  color: #e4dbe9;
  font-size: 1.08rem;
}

.legal-copy p,
.legal-copy li {
  font-size: 0.91rem;
  line-height: 1.85;
}

.legal-copy a {
  color: #c69afa;
}

.legal-copy ul {
  padding-left: 20px;
}

.notice {
  margin: 26px 0;
  padding: 20px;
  border: 1px solid rgba(192, 132, 252, 0.17);
  border-radius: 15px;
  color: #bcb2c4;
  background: rgba(168, 85, 247, 0.06);
  font-size: 0.84rem;
}

.site-footer {
  position: relative;
  padding: 78px 0 30px;
  border-top: 1px solid var(--line);
  background: #050307;
}

.footer-top {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 0.75fr;
  gap: 50px;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 24px;
  color: #817889;
  font-size: 0.82rem;
}

.footer-heading {
  margin-bottom: 17px;
  color: #c7becd;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 750;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  width: fit-content;
  color: #82798a;
  font-size: 0.78rem;
  transition: color 160ms ease;
}

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

.footer-bottom {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #615969;
  font-size: 0.68rem;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 10px rgba(134, 239, 172, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

@keyframes status-pulse {
  0% { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 32px, 32px 0; }
}

@keyframes core-pulse {
  0%, 100% { transform: scale(0.96); opacity: 0.35; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

@keyframes scan {
  from { transform: translateY(-20%); }
  to { transform: translateY(590%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-13px) rotate(0.6deg); }
}

@keyframes bar {
  to { height: 35%; opacity: 0.55; }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 0;
  }

  .nav-link {
    padding-right: 9px;
    padding-left: 9px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.8fr;
  }

  .float-card-a {
    right: 0;
  }

  .float-card-b {
    left: 0;
  }

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

  .service-card {
    min-height: 320px;
  }

  .project-card {
    grid-column: span 6;
  }

  .project-card.project-wide {
    grid-column: span 6;
  }

  .project-wide .project-art {
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .nav-actions > .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    background: rgba(5, 3, 7, 0.96);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition:
      max-height 300ms var(--ease),
      opacity 180ms ease,
      padding 300ms var(--ease),
      visibility 180ms ease;
    backdrop-filter: blur(20px);
  }

  .site-header.is-open .nav-links {
    max-height: 500px;
    padding-top: 16px;
    padding-bottom: 22px;
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 13px 14px;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 82px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .signal-sphere {
    width: min(68vw, 500px);
  }

  .orbit-ring {
    width: min(82vw, 610px);
  }

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

  .stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .split-layout,
  .founder-panel,
  .partner-panel,
  .page-hero-grid,
  .application-shell {
    grid-template-columns: 1fr;
  }

  .sticky-copy,
  .application-sidebar {
    position: static;
  }

  .founder-image {
    min-height: 650px;
  }

  .founder-image img {
    object-position: center 12%;
  }

  .partner-visual {
    min-height: 250px;
  }

  .page-hero {
    min-height: 620px;
  }

  .page-hero-note {
    justify-self: start;
  }

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

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .process-step::after {
    display: none;
  }

  .application-sidebar {
    padding: 8px;
  }

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

  .application-delivery {
  display: grid;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 16px;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12), rgba(255, 255, 255, 0.018));
}

.application-delivery-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(192, 132, 252, 0.24);
  border-radius: 11px;
  place-items: center;
  color: #d9c1ff;
  background: rgba(168, 85, 247, 0.1);
}

.application-delivery-icon svg {
  width: 17px;
  height: 17px;
}

.application-delivery strong {
  display: block;
  margin-bottom: 5px;
  color: #f0e8f8;
  font-size: 0.77rem;
  line-height: 1.45;
}

.application-delivery p {
  margin: 0;
  color: #887e91;
  font-size: 0.7rem;
  line-height: 1.6;
}

.application-sidebar-note {
    display: none;
  }
}

@media (max-width: 680px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 86px 0;
  }

  .section-tight {
    padding: 70px 0;
  }

  .brand-name {
    font-size: 0.74rem;
  }

  .brand-subtitle {
    font-size: 0.48rem;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-title {
    font-size: clamp(3.7rem, 19vw, 6rem);
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-stage {
    min-height: 460px;
  }

  .signal-sphere {
    width: min(82vw, 430px);
  }

  .orbit-ring {
    width: min(96vw, 520px);
  }

  .signal-core {
    width: 112px;
    height: 112px;
    border-radius: 30px;
  }

  .signal-core img {
    width: 72px;
    height: 72px;
  }

  .float-card {
    min-width: 150px;
    padding: 12px 13px;
  }

  .float-card-a {
    top: 6%;
  }

  .float-card-b {
    bottom: 10%;
  }

  .float-card-c {
    display: none;
  }

  .stats-grid {
    border-radius: 24px;
  }

  .stat {
    min-height: 130px;
    padding: 22px;
  }

  .section-header {
    margin-bottom: 38px;
    align-items: start;
    flex-direction: column;
  }

  .card-grid,
  .team-grid,
  .values-grid,
  .engagement-grid,
  .cta-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
  }

  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.project-wide {
    min-height: 500px;
    grid-column: auto;
  }

  .project-art,
  .project-wide .project-art {
    min-height: 285px;
  }

  .founder-panel {
    padding: 18px;
    border-radius: 26px;
  }

  .founder-image {
    min-height: 540px;
  }

  .founder-points {
    grid-template-columns: 1fr;
  }

  .partner-panel {
    padding: 26px 20px;
    border-radius: 26px;
  }

  .partner-monogram {
    width: 122px;
    height: 122px;
  }

  .page-hero {
    min-height: 560px;
    padding-top: calc(var(--header-height) + 90px);
  }

  .timeline {
    padding-left: 32px;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-item::before {
    left: -31px;
  }

  .capability-item {
    grid-template-columns: 40px 1fr;
  }

  .capability-code {
    display: none;
  }

  .process-step {
    min-height: 240px;
  }

  .process-number {
    margin-bottom: 45px;
  }

  .application-tabs {
    grid-template-columns: 1fr;
  }

  .application-tab {
    min-height: 75px;
  }

  .application-panel {
    padding: 24px 18px;
    border-radius: 24px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-submit {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .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.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

  .hero-cursor-glow {
    display: none;
  }
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(134, 239, 172, 0.68);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b9efca;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 760;
}

.product-feature {
  display: grid;
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  background:
    radial-gradient(circle at 10% 5%, rgba(168, 85, 247, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(17, 11, 25, 0.96), rgba(8, 5, 12, 0.95));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.product-feature-large {
  min-height: 690px;
}

.product-feature-art {
  min-height: 100%;
  border-right: 1px solid var(--line);
}

.product-feature .project-art-title {
  top: 48px;
  left: 48px;
  font-size: clamp(4rem, 8vw, 7.8rem);
}

.product-feature .project-art-code {
  right: 38px;
  bottom: 34px;
}

.product-feature .project-orb {
  right: 6%;
  bottom: 8%;
  width: 35%;
}

.product-art-badge {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 28px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(5, 3, 7, 0.48);
  letter-spacing: 0.13em;
  font-size: 0.57rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.product-feature-copy {
  display: flex;
  padding: clamp(34px, 5vw, 70px);
  justify-content: center;
  flex-direction: column;
}

.product-feature-copy h3 {
  margin-bottom: 18px;
  letter-spacing: -0.055em;
  font-size: clamp(2.25rem, 4.5vw, 4.4rem);
  line-height: 0.95;
}

.product-feature-copy > p {
  max-width: 600px;
  margin-bottom: 28px;
  color: #aea4b7;
  font-size: 1rem;
  line-height: 1.85;
}

.product-feature-facts {
  display: grid;
  margin: 4px 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-feature-facts > div {
  display: grid;
  min-width: 0;
  padding: 18px 16px 18px 0;
  gap: 4px;
}

.product-feature-facts > div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.product-feature-facts strong {
  color: #7f7488;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.58rem;
}

.product-feature-facts span {
  color: #e6deeb;
  font-size: 0.75rem;
  line-height: 1.45;
}

.production-board {
  margin-top: 20px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(145deg, rgba(14, 9, 21, 0.94), rgba(7, 4, 10, 0.96));
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.production-board-header {
  display: flex;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.production-board-header h3 {
  margin: 5px 0 0;
  letter-spacing: -0.04em;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.production-rows {
  display: grid;
  gap: 7px;
}

.production-row {
  display: grid;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(209, 188, 255, 0.09);
  border-radius: 13px;
  grid-template-columns: 45px minmax(190px, 1fr) minmax(180px, 0.7fr) 22px;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.018);
  transition:
    transform 220ms var(--ease),
    border-color 180ms ease,
    background-color 180ms ease;
}

.production-row:hover {
  transform: translateX(4px);
  border-color: rgba(192, 132, 252, 0.22);
  background: rgba(168, 85, 247, 0.04);
}

.production-index {
  color: #62586b;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  font-weight: 760;
}

.production-row strong {
  min-width: 0;
  color: #e7dfee;
  font-size: 0.86rem;
}

.production-row > span:nth-child(3) {
  color: #887e90;
  font-size: 0.72rem;
  text-align: right;
}

.production-pulse {
  width: 8px;
  height: 8px;
  justify-self: end;
  border: 1px solid rgba(192, 132, 252, 0.5);
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.18);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.22);
}

.production-pulse.is-live {
  border-color: rgba(134, 239, 172, 0.72);
  background: var(--green);
  box-shadow: 0 0 13px rgba(134, 239, 172, 0.55);
}

.production-count-note {
  display: grid;
  min-width: min(100%, 340px);
  gap: 8px;
}

.production-count-note strong {
  letter-spacing: -0.05em;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.production-count-note > span:last-child {
  color: #756b7d;
  font-size: 0.7rem;
}

.project-open.static-icon {
  pointer-events: none;
}

.project-art-extraction {
  background:
    radial-gradient(circle at 68% 20%, rgba(103, 232, 249, 0.22), transparent 22%),
    linear-gradient(135deg, #0a2d3a, #0a151e 48%, #14101e);
}

.project-art-driving,
.project-art-vehicle {
  background:
    radial-gradient(circle at 28% 22%, rgba(148, 163, 184, 0.24), transparent 20%),
    linear-gradient(135deg, #293241, #131923 46%, #080b10);
}

.project-art-confidential,
.project-art-private {
  background:
    radial-gradient(circle at 68% 20%, rgba(192, 132, 252, 0.2), transparent 22%),
    linear-gradient(135deg, #24152f, #100b18 48%, #07050a);
}

.project-art-ability {
  background:
    radial-gradient(circle at 30% 20%, rgba(248, 113, 113, 0.22), transparent 22%),
    linear-gradient(135deg, #441821, #1f0c16 48%, #0b0710);
}

.contribution-card[data-hidden="true"] {
  display: none;
}

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

.relationship-card {
  display: grid;
  min-height: 330px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  background: linear-gradient(145deg, rgba(17, 11, 25, 0.92), rgba(8, 5, 12, 0.93));
  overflow: hidden;
}

.relationship-card-unbox {
  border-color: rgba(251, 122, 33, 0.16);
  background:
    radial-gradient(circle at 5% 50%, rgba(251, 122, 33, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(25, 12, 12, 0.9), rgba(8, 5, 10, 0.95));
}

.relationship-mark {
  display: grid;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(251, 122, 33, 0.22);
  border-radius: 32px;
  place-items: center;
  color: #ffb27e;
  background: rgba(251, 122, 33, 0.08);
  letter-spacing: -0.06em;
  font-size: 2rem;
  font-weight: 840;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.relationship-mark-private {
  border-color: rgba(192, 132, 252, 0.22);
  color: #d9b5ff;
  background: rgba(168, 85, 247, 0.08);
}

.relationship-card h3 {
  margin-bottom: 10px;
  letter-spacing: -0.04em;
  font-size: 1.65rem;
}

.relationship-card p {
  margin-bottom: 22px;
  color: #9e95a6;
  line-height: 1.75;
}

.founder-hero {
  position: relative;
  min-height: 820px;
  padding: calc(var(--header-height) + 74px) 0 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.founder-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 38%, rgba(168, 85, 247, 0.2), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.founder-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.founder-hero-copy .display-title {
  margin: 14px 0 26px;
}

.founder-hero-lead {
  max-width: 700px;
  color: #b6adc0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
}

.credential-row {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 10px;
}

.credential-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #8d8395;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.66rem;
  font-weight: 650;
}

.founder-hero-card {
  position: relative;
  min-height: 680px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #0b0710;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.founder-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.04);
}

.founder-hero-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(5, 3, 7, 0.95), transparent 48%),
    linear-gradient(130deg, rgba(124, 58, 237, 0.12), transparent 52%);
}

.founder-hero-card-overlay {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(5, 3, 7, 0.6);
  backdrop-filter: blur(14px);
}

.founder-hero-card-overlay > div:first-child {
  display: grid;
  gap: 3px;
}

.founder-hero-card-overlay strong {
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.founder-hero-card-overlay > div:first-child span {
  color: #887c92;
  letter-spacing: 0.12em;
  font-size: 0.56rem;
  font-weight: 720;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.achievement-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(17, 11, 25, 0.88), rgba(8, 5, 12, 0.9));
  transition:
    transform 260ms var(--ease),
    border-color 180ms ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 132, 252, 0.28);
}

.achievement-number {
  display: inline-flex;
  min-height: 42px;
  margin-bottom: 62px;
  padding: 0 11px;
  border: 1px solid rgba(192, 132, 252, 0.18);
  border-radius: 11px;
  align-items: center;
  color: #d1aaff;
  background: rgba(168, 85, 247, 0.07);
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 800;
}

.achievement-card h3 {
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  font-size: 1.18rem;
}

.achievement-card p {
  color: #948a9d;
  font-size: 0.82rem;
  line-height: 1.68;
}

.event-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #08050c;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.event-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.03) brightness(0.8);
}

.event-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(5, 3, 7, 0.96), transparent 65%),
    linear-gradient(115deg, rgba(124, 58, 237, 0.16), transparent 48%);
}

.event-media figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 60px);
  bottom: clamp(24px, 5vw, 52px);
  left: clamp(24px, 5vw, 60px);
  max-width: 760px;
}

.event-media figcaption > span {
  display: block;
  margin-bottom: 9px;
  color: #cda6ff;
  letter-spacing: 0.16em;
  font-size: 0.59rem;
  font-weight: 760;
}

.event-media figcaption strong {
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.045em;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
}

.event-media figcaption p {
  max-width: 700px;
  color: #b2a7bb;
  font-size: 0.9rem;
  line-height: 1.75;
}

.team-event-media,
.event-media-company {
  min-height: 560px;
}

.team-event-media img,
.event-media-company img {
  min-height: 560px;
}

.founder-capability-list {
  display: grid;
  gap: 12px;
}

.social-callout {
  display: flex;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(145deg, rgba(17, 11, 25, 0.9), rgba(8, 5, 12, 0.92));
}

.social-callout p {
  max-width: 620px;
  color: #9c929f;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.operations-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(18, 12, 27, 0.88), rgba(8, 5, 12, 0.88));
}

.operations-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 80px;
  border: 1px solid rgba(192, 132, 252, 0.18);
  border-radius: 15px;
  place-items: center;
  color: #d2aaff;
  background: rgba(168, 85, 247, 0.07);
}

.operations-card-icon svg {
  width: 22px;
  height: 22px;
}

.operations-card h3 {
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.operations-card p {
  color: #958b9e;
  font-size: 0.82rem;
  line-height: 1.7;
}

.founder-mini-panel {
  display: grid;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: stretch;
  background: linear-gradient(145deg, rgba(17, 11, 25, 0.94), rgba(8, 5, 12, 0.94));
  overflow: hidden;
}

.founder-mini-panel > div {
  display: flex;
  padding: clamp(34px, 6vw, 74px);
  justify-content: center;
  flex-direction: column;
}

.founder-mini-panel p {
  max-width: 650px;
  margin-bottom: 28px;
  color: #a79dab;
  font-size: 1rem;
  line-height: 1.8;
}

.founder-mini-panel img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.05);
  border-left: 1px solid var(--line);
}

@media (max-width: 1120px) {
  .product-feature {
    grid-template-columns: 1fr 0.9fr;
  }

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

  .experience-relationship-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .product-feature,
  .founder-hero-grid,
  .founder-mini-panel {
    grid-template-columns: 1fr;
  }

  .product-feature-art {
    min-height: 590px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .founder-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 90px);
  }

  .founder-hero-card {
    width: min(100%, 620px);
    justify-self: center;
  }

  .founder-mini-panel img {
    max-height: 720px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .social-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .product-feature {
    min-height: auto;
    border-radius: 24px;
  }

  .product-feature-art {
    min-height: 470px;
  }

  .product-feature .project-art-title {
    top: 34px;
    left: 26px;
    font-size: clamp(3.5rem, 20vw, 5.7rem);
  }

  .product-art-badge {
    top: 18px;
    right: 18px;
  }

  .product-feature-copy {
    padding: 28px 24px 32px;
  }

  .product-feature-facts {
    grid-template-columns: 1fr;
  }

  .product-feature-facts > div,
  .product-feature-facts > div + div {
    padding: 13px 0;
    border-left: 0;
  }

  .product-feature-facts > div + div {
    border-top: 1px solid var(--line);
  }

  .production-board-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .production-row {
    padding: 14px 15px;
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 9px;
  }

  .production-row > span:nth-child(3) {
    grid-column: 2 / 4;
    text-align: left;
  }

  .production-pulse {
    grid-column: 3;
    grid-row: 1;
  }

  .relationship-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .relationship-mark {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    font-size: 1.45rem;
  }

  .founder-hero-card,
  .founder-hero-card img {
    min-height: 560px;
  }

  .founder-hero-card-overlay {
    align-items: flex-start;
    flex-direction: column;
  }

  .achievement-grid,
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .achievement-card,
  .operations-card {
    min-height: 250px;
  }

  .achievement-number,
  .operations-card-icon {
    margin-bottom: 48px;
  }

  .event-media,
  .event-media img,
  .team-event-media,
  .team-event-media img,
  .event-media-company,
  .event-media-company img {
    min-height: 500px;
  }

  .event-media img {
    object-position: 58% center;
  }

  .event-media figcaption strong {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .founder-mini-panel img {
    min-height: 540px;
  }
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(134, 239, 172, 0.72);
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 0.58; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

.project-art-image {
  min-height: 330px;
  background: #09050f;
}

.project-art-image::before {
  z-index: 2;
  inset: 0;
  opacity: 1;
  transform: none;
  background: linear-gradient(to top, rgba(5, 3, 7, 0.7), transparent 45%);
}

.project-art-image::after {
  display: none;
}

.project-art-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 360ms ease;
}

.product-image-card:hover .project-art-image img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}

.project-art-image .project-art-code {
  z-index: 3;
}

.feature-product {
  display: grid;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  background:
    radial-gradient(circle at 12% 0%, rgba(168, 85, 247, 0.13), transparent 32%),
    linear-gradient(145deg, rgba(17, 11, 25, 0.95), rgba(7, 4, 11, 0.94));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
}

.feature-product-media {
  min-height: 560px;
  border: 1px solid rgba(214, 189, 255, 0.15);
  border-radius: 25px;
  overflow: hidden;
  background: #0b0711;
}

.feature-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-product-copy {
  display: flex;
  padding: clamp(18px, 3vw, 34px) 0;
  flex-direction: column;
  justify-content: center;
}

.feature-product-copy .project-meta {
  margin-bottom: 32px;
}

.feature-product-copy .section-title-small {
  margin: 8px 0 8px;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
}

.feature-product-copy > p {
  color: #a79dac;
}

.feature-product-copy .feature-lead {
  margin-bottom: 14px;
  color: #f1eaf7;
  font-size: 1.22rem;
  font-weight: 660;
}

.feature-product-facts {
  display: grid;
  margin: 28px 0 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-product-facts div {
  display: grid;
  gap: 4px;
}

.feature-product-facts strong {
  color: #f2eaf8;
  font-size: 0.82rem;
}

.feature-product-facts span {
  color: #786f80;
  font-size: 0.68rem;
}

.feature-product-copy .button {
  align-self: flex-start;
}

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

.pipeline-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(19, 12, 29, 0.86), rgba(7, 4, 11, 0.92));
  overflow: hidden;
  transition: transform 260ms var(--ease), border-color 220ms ease, box-shadow 260ms ease;
}

.pipeline-card::before {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(168, 85, 247, 0.14), transparent 68%);
}

.pipeline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 132, 252, 0.3);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.34);
}

.pipeline-card-public {
  border-color: rgba(192, 132, 252, 0.24);
  background:
    radial-gradient(circle at 85% 8%, rgba(168, 85, 247, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(29, 15, 48, 0.9), rgba(8, 5, 12, 0.94));
}

.pipeline-top,
.pipeline-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #756c7d;
  letter-spacing: 0.11em;
  font-size: 0.59rem;
  font-weight: 760;
  text-transform: uppercase;
}

.pipeline-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a99ab4;
}

.pipeline-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(134, 239, 172, 0.65);
}

.pipeline-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 2px;
  letter-spacing: -0.04em;
  font-size: 1.65rem;
}

.pipeline-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  color: #867d8e;
  font-size: 0.8rem;
}

.pipeline-progress {
  position: relative;
  z-index: 1;
  height: 5px;
  margin-bottom: 19px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.pipeline-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet-deep), var(--violet-bright));
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.44);
}

.pipeline-bottom {
  letter-spacing: 0.03em;
  font-size: 0.62rem;
  text-transform: none;
}

.pipeline-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d2baf0;
}

.pipeline-bottom svg {
  width: 14px;
  height: 14px;
}

.pipeline-note {
  display: grid;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  color: #958b9e;
  background: rgba(255, 255, 255, 0.022);
  font-size: 0.84rem;
}

.pipeline-note > span {
  color: #ddd0e8;
  font-weight: 700;
}

.pipeline-note p {
  margin: 0;
}

.project-art-pizza {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 148, 72, 0.29), transparent 20%),
    linear-gradient(135deg, #5c1f14, #30100c 48%, #17100d);
}

.project-art-vehicle {
  background:
    radial-gradient(circle at 72% 20%, rgba(112, 181, 255, 0.26), transparent 22%),
    linear-gradient(135deg, #102b4a, #0a1829 47%, #080a0f);
}

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

.experience-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(19, 12, 29, 0.8), rgba(7, 4, 11, 0.88));
}

.experience-card > span {
  display: block;
  margin-bottom: 72px;
  color: #7c7185;
  letter-spacing: 0.14em;
  font-size: 0.61rem;
  font-weight: 760;
}

.experience-card h3 {
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.experience-card p {
  color: #988f9f;
  font-size: 0.86rem;
}

.client-placeholder {
  display: grid;
  margin-top: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: 0.8fr 1.2fr auto;
  align-items: center;
  gap: 34px;
  background:
    radial-gradient(circle at 0% 50%, rgba(168, 85, 247, 0.11), transparent 32%),
    rgba(255, 255, 255, 0.023);
}

.client-placeholder h3 {
  margin: 8px 0 0;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.client-placeholder p {
  color: #93899b;
  font-size: 0.84rem;
}

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

.achievement-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.11), transparent 38%),
    linear-gradient(150deg, rgba(18, 11, 28, 0.84), rgba(7, 4, 11, 0.9));
}

.achievement-number {
  display: block;
  margin-bottom: 82px;
  color: #d2b0fb;
  letter-spacing: -0.06em;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 820;
  line-height: 0.9;
}

.achievement-card h3 {
  margin-bottom: 9px;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
}

.achievement-card p {
  color: #958b9d;
  font-size: 0.85rem;
}

.event-feature {
  display: grid;
  padding: clamp(18px, 2.5vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 18% 0%, rgba(168, 85, 247, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(17, 11, 25, 0.95), rgba(7, 4, 11, 0.94));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
}

.event-image {
  min-height: 520px;
  border: 1px solid rgba(213, 188, 255, 0.14);
  border-radius: 25px;
  overflow: hidden;
  background: #09060e;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.04) brightness(0.88);
}

.event-copy {
  display: flex;
  padding: 32px 0;
  flex-direction: column;
  justify-content: center;
}

.event-copy p {
  color: #9e94a7;
}

.team-section-heading {
  display: flex;
  margin-bottom: 34px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.team-section-heading > span {
  color: #a56fe8;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 760;
  text-transform: uppercase;
}

.team-section-heading h2 {
  max-width: 720px;
  margin: 0;
  text-align: right;
  letter-spacing: -0.04em;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

@media (max-width: 1000px) {
  .feature-product,
  .event-feature {
    grid-template-columns: 1fr;
  }

  .feature-product-media,
  .event-image {
    min-height: 500px;
  }

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

  .client-placeholder {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .client-placeholder .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .project-art-image,
  .project-art-image img {
    min-height: 280px;
  }

  .feature-product {
    padding: 14px;
    border-radius: 25px;
  }

  .feature-product-media,
  .event-image {
    min-height: 330px;
  }

  .feature-product-copy {
    padding: 18px 8px 12px;
  }

  .feature-product-copy .section-title-small {
    font-size: 3.2rem;
  }

  .feature-product-facts {
    grid-template-columns: 1fr;
  }

  .pipeline-grid,
  .experience-grid,
  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-card,
  .achievement-card {
    min-height: 280px;
  }

  .pipeline-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .event-feature {
    padding: 14px;
    border-radius: 25px;
  }

  .event-copy {
    padding: 18px 8px 12px;
  }

  .team-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .team-section-heading h2 {
    text-align: left;
  }
}

.home-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  gap: 18px;
  align-items: stretch;
}

.flagship-product {
  position: relative;
  display: grid;
  min-height: 640px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-rows: minmax(360px, 1fr) auto;
  background: linear-gradient(145deg, rgba(21, 12, 32, 0.94), rgba(7, 4, 11, 0.96));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition:
    transform 320ms var(--ease),
    border-color 220ms ease,
    box-shadow 320ms ease;
}

.flagship-product:hover {
  transform: translateY(-7px);
  border-color: rgba(192, 132, 252, 0.34);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.05);
}

.flagship-visual,
.product-case-visual {
  position: relative;
  min-height: 390px;
  background:
    radial-gradient(circle at 74% 28%, rgba(133, 72, 255, 0.42), transparent 24%),
    radial-gradient(circle at 27% 76%, rgba(63, 20, 105, 0.36), transparent 28%),
    linear-gradient(135deg, #1c0c34 0%, #0b0716 50%, #06040b 100%);
  isolation: isolate;
  overflow: hidden;
}

.flagship-visual::before,
.product-case-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.flagship-visual::after,
.product-case-visual::after {
  position: absolute;
  z-index: 0;
  right: -13%;
  bottom: -55%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(211, 173, 255, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 34px rgba(168, 85, 247, 0.025),
    0 0 0 82px rgba(168, 85, 247, 0.018),
    0 0 110px rgba(168, 85, 247, 0.16);
}

.flagship-grid,
.product-case-grid {
  position: absolute;
  z-index: 0;
  inset: -25% -10% 0;
  opacity: 0.38;
  background:
    repeating-linear-gradient(112deg, transparent 0 58px, rgba(191, 143, 255, 0.08) 59px 60px),
    repeating-linear-gradient(22deg, transparent 0 95px, rgba(255, 255, 255, 0.025) 96px 97px);
  transform: perspective(780px) rotateX(54deg) translateY(18%);
}

.gym-mark,
.product-case-wordmark {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  line-height: 0.8;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.62);
}

.gym-mark span,
.product-case-wordmark span {
  letter-spacing: 0.03em;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  font-weight: 900;
}

.gym-mark strong,
.product-case-wordmark strong {
  color: #bd8cff;
  letter-spacing: -0.08em;
  font-size: clamp(4.4rem, 9vw, 9.3rem);
  font-weight: 920;
  text-shadow: 0 0 45px rgba(168, 85, 247, 0.35), 0 18px 55px rgba(0, 0, 0, 0.7);
}

.gym-plate {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: clamp(88px, 13vw, 170px);
  aspect-ratio: 1;
  border: clamp(14px, 2vw, 26px) solid rgba(243, 236, 255, 0.88);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 8px rgba(82, 38, 130, 0.48),
    0 18px 70px rgba(0, 0, 0, 0.52),
    0 0 40px rgba(168, 85, 247, 0.22);
  transform: translateY(-50%);
}

.gym-plate::before,
.gym-plate::after {
  position: absolute;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  background: linear-gradient(90deg, #d9d0e2, #fff, #a39aac);
}

.gym-plate::before {
  right: 50%;
  width: clamp(88px, 11vw, 150px);
  height: 14px;
}

.gym-plate::after {
  left: 50%;
  width: clamp(88px, 11vw, 150px);
  height: 14px;
}

.gym-plate-left {
  left: 3%;
}

.gym-plate-right {
  right: 3%;
}

.flagship-scan {
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  height: 1px;
  opacity: 0.6;
  background: linear-gradient(90deg, transparent, #c084fc 30%, #fff 50%, #c084fc 70%, transparent);
  box-shadow: 0 0 18px rgba(192, 132, 252, 0.75);
  animation: flagship-scan 6s linear infinite;
}

.flagship-code,
.product-case-status {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 20px;
  padding: 8px 10px;
  border: 1px solid rgba(225, 202, 255, 0.16);
  border-radius: 9px;
  color: rgba(245, 237, 255, 0.62);
  background: rgba(5, 3, 7, 0.58);
  letter-spacing: 0.16em;
  font-size: 0.56rem;
  font-weight: 780;
  backdrop-filter: blur(12px);
}

.flagship-content {
  padding: clamp(25px, 4vw, 40px);
}

.flagship-content h3 {
  margin-bottom: 12px;
  letter-spacing: -0.055em;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
}

.flagship-content p {
  max-width: 760px;
  margin-bottom: 28px;
  color: #a59bad;
  line-height: 1.8;
}

.flagship-footer {
  display: flex;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.flagship-footer > span:first-child {
  display: grid;
  gap: 3px;
}

.flagship-footer strong {
  font-size: 0.9rem;
}

.flagship-footer small {
  color: #736a7b;
  font-size: 0.66rem;
}

.slate-console {
  position: relative;
  min-height: 640px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 0%, rgba(168, 85, 247, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(18, 12, 27, 0.94), rgba(7, 4, 11, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.slate-console::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 24px;
}

.slate-console-head {
  position: relative;
  display: flex;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #817789;
  letter-spacing: 0.14em;
  font-size: 0.58rem;
  font-weight: 800;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a7e7ba;
}

.live-dot::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 11px rgba(134, 239, 172, 0.75);
}

.slate-total {
  position: relative;
  display: grid;
  padding: 31px 0 25px;
  gap: 3px;
}

.slate-total strong {
  letter-spacing: -0.08em;
  font-size: clamp(4.8rem, 8vw, 7.5rem);
  line-height: 0.86;
}

.slate-total span {
  color: #8d8396;
  font-size: 0.8rem;
}

.slate-breakdown {
  position: relative;
  display: grid;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.018);
  overflow: hidden;
}

.slate-breakdown div {
  display: flex;
  min-height: 54px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.slate-breakdown div:last-child {
  border-bottom: 0;
}

.slate-breakdown span {
  color: #7d7485;
  font-size: 0.69rem;
}

.slate-breakdown strong {
  color: #dcd1e7;
  font-size: 0.75rem;
}

.slate-list {
  position: relative;
  display: grid;
  gap: 7px;
}

.slate-row {
  display: grid;
  min-height: 48px;
  padding: 0 11px;
  border: 1px solid rgba(209, 188, 255, 0.09);
  border-radius: 11px;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.016);
}

.slate-row.is-public {
  border-color: rgba(192, 132, 252, 0.2);
  background: rgba(168, 85, 247, 0.07);
}

.slate-row > span {
  color: #665b70;
  font-size: 0.59rem;
}

.slate-row strong {
  color: #bfb3c9;
  font-size: 0.7rem;
}

.slate-row em {
  color: #6f6677;
  font-size: 0.58rem;
  font-style: normal;
}

.event-preview,
.industry-story {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  background: linear-gradient(145deg, rgba(17, 11, 25, 0.94), rgba(7, 4, 11, 0.95));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.event-preview-image,
.industry-story-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.event-preview-image img,
.industry-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04) brightness(0.82);
  transition: transform 750ms var(--ease), filter 400ms ease;
}

.event-preview:hover img,
.industry-story:hover img {
  transform: scale(1.025);
  filter: saturate(1.03) contrast(1.03) brightness(0.89);
}

.event-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 3, 7, 0.86), transparent 48%),
    linear-gradient(110deg, rgba(105, 42, 170, 0.13), transparent 55%);
}

.event-photo-code {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(5, 3, 7, 0.58);
  letter-spacing: 0.14em;
  font-size: 0.56rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.event-preview-copy,
.industry-story-copy {
  display: flex;
  padding: clamp(35px, 5vw, 62px);
  justify-content: center;
  flex-direction: column;
}

.event-preview-copy p,
.industry-story-copy p {
  color: #a79dac;
  line-height: 1.82;
}

.achievement-chips {
  display: flex;
  margin: 18px 0 27px;
  flex-wrap: wrap;
  gap: 8px;
}

.achievement-chips span {
  display: inline-flex;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  color: #a99eb2;
  background: rgba(255, 255, 255, 0.022);
  letter-spacing: 0.04em;
  font-size: 0.62rem;
  font-weight: 700;
}

.leadership-preview {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-page-hero::before {
  background:
    radial-gradient(circle at 82% 30%, rgba(168, 85, 247, 0.2), transparent 25%),
    linear-gradient(115deg, transparent 0 63%, rgba(192, 132, 252, 0.06) 64% 65%, transparent 66%);
}

.production-metrics {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(145deg, rgba(17, 11, 25, 0.88), rgba(8, 5, 12, 0.9));
  overflow: hidden;
}

.production-metrics div {
  display: grid;
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid var(--line);
  align-content: end;
  gap: 7px;
}

.production-metrics div:last-child {
  border-right: 0;
}

.production-metrics strong {
  letter-spacing: -0.06em;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
}

.production-metrics span {
  color: #827889;
  font-size: 0.72rem;
}

.product-case {
  display: grid;
  min-height: 690px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  background: linear-gradient(145deg, rgba(17, 11, 25, 0.94), rgba(7, 4, 11, 0.96));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.product-case-visual {
  min-height: 690px;
}

.product-case-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-case-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.7);
}

.product-case-content {
  display: flex;
  padding: clamp(34px, 5vw, 60px);
  justify-content: center;
  flex-direction: column;
}

.product-case-content h2 {
  margin-bottom: 16px;
  letter-spacing: -0.05em;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.product-case-content > p {
  color: #a49aa9;
  line-height: 1.8;
}

.product-feature-list {
  display: grid;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.product-feature-list div {
  display: grid;
  min-height: 73px;
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
  align-content: center;
  gap: 2px;
}

.product-feature-list div:last-child {
  border-bottom: 0;
}

.product-feature-list strong {
  color: #dcd1e7;
  font-size: 0.78rem;
}

.product-feature-list span {
  color: #817789;
  font-size: 0.68rem;
}

.product-credit {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-credit > span {
  display: grid;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  gap: 2px;
  background: rgba(255, 255, 255, 0.02);
}

.product-credit small {
  color: #746a7d;
  font-size: 0.58rem;
}

.product-credit strong {
  overflow: hidden;
  color: #cfc3d8;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.confidential-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 0%, rgba(168, 85, 247, 0.1), transparent 34%),
    linear-gradient(155deg, rgba(18, 12, 27, 0.88), rgba(7, 4, 11, 0.92));
  overflow: hidden;
  transition: transform 280ms var(--ease), border-color 220ms ease;
}

.confidential-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 132, 252, 0.28);
}

.confidential-card::after {
  position: absolute;
  right: -55px;
  bottom: -85px;
  width: 190px;
  height: 190px;
  border: 1px dashed rgba(192, 132, 252, 0.13);
  border-radius: 50%;
  content: "";
}

.confidential-index {
  color: #74667e;
  letter-spacing: 0.16em;
  font-size: 0.59rem;
  font-weight: 800;
}

.confidential-signal {
  display: flex;
  height: 72px;
  margin: 35px 0 28px;
  align-items: end;
  gap: 8px;
}

.confidential-signal i {
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(168, 85, 247, 0.26), #c084fc);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
  animation: confidential-signal 1.8s ease-in-out infinite alternate;
}

.confidential-signal i:nth-child(1) {
  height: 36%;
}

.confidential-signal i:nth-child(2) {
  height: 72%;
  animation-delay: 140ms;
}

.confidential-signal i:nth-child(3) {
  height: 52%;
  animation-delay: 280ms;
}

.confidential-card h3 {
  margin-bottom: 6px;
  letter-spacing: -0.035em;
  font-size: 1.25rem;
}

.confidential-card p {
  color: #817789;
  font-size: 0.72rem;
}

.confidential-activity {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.confidential-activity span {
  height: 3px;
  border-radius: 999px;
  background: rgba(192, 132, 252, 0.18);
}

.confidential-activity span:nth-child(-n + 2) {
  background: rgba(192, 132, 252, 0.58);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.25);
}

.confidential-card-open {
  display: flex;
  justify-content: end;
  flex-direction: column;
  background:
    radial-gradient(circle at 25% 10%, rgba(168, 85, 247, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(27, 15, 42, 0.94), rgba(8, 5, 12, 0.94));
}

.confidential-card-open .service-icon {
  margin: 32px 0 26px;
}

.contribution-hero::before {
  background:
    radial-gradient(circle at 78% 32%, rgba(53, 212, 155, 0.12), transparent 24%),
    radial-gradient(circle at 66% 14%, rgba(168, 85, 247, 0.14), transparent 27%);
}

.contribution-feature {
  display: grid;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  background: linear-gradient(145deg, rgba(13, 24, 23, 0.94), rgba(8, 5, 12, 0.96));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: transform 300ms var(--ease), border-color 220ms ease;
}

.contribution-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 255, 188, 0.24);
}

.poison-visual {
  position: relative;
  min-height: 560px;
  background:
    radial-gradient(circle at 22% 18%, rgba(111, 255, 183, 0.34), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(168, 85, 247, 0.3), transparent 28%),
    linear-gradient(135deg, #0d3a31 0%, #0a1b1a 47%, #160920 100%);
  overflow: hidden;
}

.poison-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(600px) rotateX(58deg) scale(1.4) translateY(22%);
}

.poison-bottle {
  position: absolute;
  z-index: 2;
  bottom: 17%;
  width: 19%;
  height: 47%;
  border: 2px solid rgba(228, 255, 243, 0.55);
  border-radius: 28% 28% 18% 18% / 19% 19% 12% 12%;
  background:
    linear-gradient(to top, rgba(43, 255, 150, 0.58) 0 58%, rgba(205, 255, 233, 0.07) 59%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.12), 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 45px rgba(44, 255, 157, 0.16);
  transform-origin: bottom center;
}

.poison-bottle::before {
  position: absolute;
  top: -24%;
  left: 31%;
  width: 38%;
  height: 30%;
  border: 2px solid rgba(228, 255, 243, 0.5);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
  background: rgba(255, 255, 255, 0.07);
}

.poison-bottle::after {
  position: absolute;
  top: 22%;
  right: 13%;
  left: 13%;
  height: 25%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  content: "ABR";
  color: rgba(255, 255, 255, 0.7);
  background: rgba(5, 3, 7, 0.33);
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 3.4;
}

.poison-bottle-one {
  left: 18%;
  transform: rotate(-9deg) scale(0.86);
}

.poison-bottle-two {
  z-index: 3;
  left: 41%;
  transform: scale(1.05);
}

.poison-bottle-three {
  right: 17%;
  background:
    linear-gradient(to top, rgba(179, 77, 255, 0.6) 0 58%, rgba(205, 255, 233, 0.07) 59%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.015));
  transform: rotate(8deg) scale(0.9);
}

.poison-bubbles {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(120, 255, 194, 0.54) 0 4px, transparent 5px),
    radial-gradient(circle at 32% 19%, rgba(120, 255, 194, 0.3) 0 8px, transparent 9px),
    radial-gradient(circle at 58% 15%, rgba(192, 132, 252, 0.38) 0 5px, transparent 6px),
    radial-gradient(circle at 76% 34%, rgba(192, 132, 252, 0.35) 0 10px, transparent 11px),
    radial-gradient(circle at 83% 18%, rgba(120, 255, 194, 0.3) 0 4px, transparent 5px);
  animation: bubbles-drift 5s ease-in-out infinite alternate;
}

.contribution-feature-copy {
  display: flex;
  padding: clamp(34px, 5vw, 58px);
  justify-content: center;
  flex-direction: column;
}

.contribution-feature-copy h3 {
  margin-bottom: 14px;
  letter-spacing: -0.055em;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
}

.contribution-feature-copy p {
  color: #a4a0aa;
  line-height: 1.82;
}

.contribution-metric {
  display: grid;
  margin: 29px 0;
  padding: 22px;
  border: 1px solid rgba(105, 255, 190, 0.15);
  border-radius: 17px;
  gap: 4px;
  background: rgba(67, 255, 167, 0.035);
}

.contribution-metric strong {
  color: #c4ffe1;
  letter-spacing: -0.06em;
  font-size: 3rem;
  line-height: 1;
}

.contribution-metric span {
  color: #78a58d;
  font-size: 0.7rem;
}

.contribution-grid .project-card {
  grid-column: span 4;
}

.project-art-vehicle {
  background:
    radial-gradient(circle at 72% 26%, rgba(132, 190, 255, 0.28), transparent 20%),
    linear-gradient(135deg, #132941, #0d1828 48%, #080b11);
}

.project-art-shooter {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 108, 108, 0.24), transparent 21%),
    linear-gradient(135deg, #381017, #171018 49%, #080a0f);
}

.project-art-arena {
  background:
    radial-gradient(circle at 72% 20%, rgba(209, 124, 255, 0.28), transparent 22%),
    linear-gradient(135deg, #301348, #171029 49%, #090812);
}

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

.client-card {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  justify-content: end;
  flex-direction: column;
  background:
    radial-gradient(circle at 80% 0%, rgba(168, 85, 247, 0.1), transparent 35%),
    linear-gradient(150deg, rgba(18, 12, 27, 0.9), rgba(7, 4, 11, 0.94));
  overflow: hidden;
  transition: transform 280ms var(--ease), border-color 220ms ease;
}

.client-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 132, 252, 0.28);
}

.client-card::before {
  position: absolute;
  top: 27px;
  right: 28px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(192, 132, 252, 0.13);
  border-radius: 28px;
  content: "";
  transform: rotate(20deg);
}

.client-card-unbox {
  border-color: rgba(251, 122, 33, 0.18);
  background:
    radial-gradient(circle at 78% 0%, rgba(251, 122, 33, 0.18), transparent 37%),
    linear-gradient(150deg, rgba(31, 15, 15, 0.92), rgba(7, 4, 10, 0.94));
}

.client-kind {
  margin-bottom: 12px;
  color: #8e8297;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.59rem;
  font-weight: 780;
}

.client-card strong {
  margin-bottom: 13px;
  letter-spacing: -0.045em;
  font-size: 1.8rem;
}

.client-card p {
  color: #958c9d;
  font-size: 0.82rem;
  line-height: 1.72;
}

.client-status {
  width: fit-content;
  margin-top: 22px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #736a7b;
  font-size: 0.62rem;
}

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

.achievement-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(168, 85, 247, 0.1), transparent 34%),
    linear-gradient(150deg, rgba(18, 12, 27, 0.9), rgba(7, 4, 11, 0.94));
  overflow: hidden;
}

.achievement-card:not(.achievement-card-photo) {
  display: flex;
  justify-content: end;
  flex-direction: column;
}

.achievement-number {
  position: absolute;
  top: 28px;
  left: 29px;
  color: rgba(210, 174, 255, 0.72);
  letter-spacing: -0.06em;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 880;
  line-height: 1;
}

.achievement-card h3 {
  margin-bottom: 10px;
  letter-spacing: -0.035em;
  font-size: 1.25rem;
}

.achievement-card p {
  color: #918796;
  font-size: 0.8rem;
  line-height: 1.7;
}

.achievement-card-photo {
  min-height: 520px;
  padding: 0;
  grid-column: span 2;
}

.achievement-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.93) brightness(0.82);
}

.achievement-card-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(5, 3, 7, 0.96), rgba(5, 3, 7, 0.06) 64%);
}

.achievement-photo-copy {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.achievement-photo-copy > span {
  color: #c097f0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.59rem;
  font-weight: 760;
}

.achievement-photo-copy h3 {
  margin: 7px 0 7px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.achievement-photo-copy p {
  max-width: 660px;
  margin: 0;
  color: #bbb2c1;
}

.industry-story {
  grid-template-columns: minmax(0, 1.22fr) minmax(380px, 0.78fr);
}

.industry-story-image {
  min-height: 650px;
}

.team-grid-leadership {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.team-card-open {
  border-style: dashed;
}

.team-photo-open {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.16), transparent 34%),
    linear-gradient(145deg, #130b1d, #08050c);
}

.team-photo-open img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  opacity: 0.25;
  filter: drop-shadow(0 0 35px rgba(168, 85, 247, 0.45));
}

.team-card:hover .team-photo-open img {
  transform: scale(1.04) rotate(3deg);
  opacity: 0.4;
}

@keyframes flagship-scan {
  from { transform: translateY(-25px); }
  to { transform: translateY(470px); }
}

@keyframes confidential-signal {
  to { transform: scaleY(0.56); opacity: 0.5; }
}

@keyframes bubbles-drift {
  to { transform: translateY(-18px) scale(1.02); opacity: 0.72; }
}

@media (max-width: 1120px) {
  .home-product-layout,
  .product-case,
  .contribution-feature,
  .event-preview,
  .industry-story {
    grid-template-columns: 1fr;
  }

  .slate-console {
    min-height: auto;
  }

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

  .product-case-visual,
  .event-preview-image,
  .industry-story-image {
    min-height: 560px;
  }

  .confidential-grid,
  .client-wall,
  .achievement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .achievement-card-photo {
    grid-column: span 2;
  }

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

@media (max-width: 900px) {
  .production-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .production-metrics div:nth-child(2) {
    border-right: 0;
  }

  .production-metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-case-visual,
  .event-preview-image,
  .industry-story-image,
  .poison-visual {
    min-height: 500px;
  }

  .product-case-content,
  .contribution-feature-copy {
    padding: 40px;
  }

  .contribution-grid .project-card {
    grid-column: span 6;
  }
}

@media (max-width: 680px) {
  .flagship-product {
    min-height: auto;
    grid-template-rows: 330px auto;
  }

  .flagship-visual,
  .product-case-visual,
  .event-preview-image,
  .industry-story-image,
  .poison-visual {
    min-height: 360px;
  }

  .gym-mark span,
  .product-case-wordmark span {
    font-size: 3rem;
  }

  .gym-mark strong,
  .product-case-wordmark strong {
    font-size: 4rem;
  }

  .gym-plate {
    width: 82px;
    border-width: 12px;
  }

  .gym-plate::before,
  .gym-plate::after {
    width: 70px;
    height: 10px;
  }

  .gym-plate-left {
    left: -22px;
  }

  .gym-plate-right {
    right: -22px;
  }

  .flagship-footer {
    align-items: flex-start;
  }

  .slate-console {
    padding: 20px;
  }

  .slate-list {
    grid-template-columns: 1fr;
  }

  .event-preview-copy,
  .industry-story-copy,
  .product-case-content,
  .contribution-feature-copy {
    padding: 30px 22px;
  }

  .production-metrics,
  .confidential-grid,
  .client-wall,
  .achievement-grid,
  .team-grid-leadership,
  .team-grid-design,
  .leadership-preview {
    grid-template-columns: 1fr;
  }

  .production-metrics div,
  .production-metrics div:nth-child(2) {
    min-height: 115px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .production-metrics div:last-child {
    border-bottom: 0;
  }

  .product-case {
    min-height: auto;
  }

  .product-credit {
    grid-template-columns: 1fr;
  }

  .confidential-card {
    min-height: 280px;
  }

  .contribution-feature {
    min-height: auto;
  }

  .contribution-grid .project-card {
    grid-column: auto;
  }

  .achievement-card-photo {
    min-height: 420px;
    grid-column: auto;
  }

  .achievement-photo-copy {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .team-grid-design {
    grid-template-columns: 1fr;
  }
}

/* Team profiles and expanded studio roster */
.team-card-link,
.team-card-button {
  width: 100%;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.team-card-link:focus-visible,
.team-card-button:focus-visible {
  outline: 2px solid rgba(205, 166, 255, 0.9);
  outline-offset: 4px;
}

.team-learn {
  display: flex;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #c9b1e6;
  letter-spacing: 0.02em;
  font-size: 0.69rem;
  font-weight: 720;
}

.team-learn svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.team-card:hover .team-learn svg {
  transform: translateX(4px);
}

.leadership-preview {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.leadership-preview .team-content {
  padding: 20px;
}

.leadership-preview .team-content p {
  font-size: 0.76rem;
}

.team-grid-leadership {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.team-grid-craft {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-group-heading {
  display: flex;
  margin: 40px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.team-group-heading span {
  color: #9b72cc;
  letter-spacing: 0.16em;
  font-size: 0.59rem;
  font-weight: 760;
}

.team-group-heading strong {
  color: #8f8597;
  font-size: 0.74rem;
  font-weight: 620;
}

.team-group-heading-secondary {
  margin-top: 64px;
}

.team-card[data-profile-slug="slaymen"] .team-photo img {
  object-position: center 38%;
}

.profile-dialog {
  width: min(1020px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: 0;
  border: 1px solid rgba(192, 132, 252, 0.25);
  border-radius: 28px;
  color: var(--text);
  background: #09060d;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.74), 0 0 90px rgba(124, 58, 237, 0.12);
  overflow: hidden;
}

.profile-dialog::backdrop {
  background: rgba(2, 1, 4, 0.8);
  backdrop-filter: blur(14px);
}

.profile-dialog[open] {
  animation: profile-dialog-in 260ms var(--ease) both;
}

.profile-dialog-shell {
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.profile-dialog-media {
  position: relative;
  min-height: 610px;
  background: #0b0710;
  overflow: hidden;
}

.profile-dialog-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05) brightness(0.84);
}

.profile-dialog-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(6, 3, 9, 0.98), transparent 55%),
    linear-gradient(130deg, rgba(124, 58, 237, 0.15), transparent 45%);
}

.profile-dialog-media-overlay {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  gap: 8px;
}

.profile-dialog-media-overlay span {
  color: #b291da;
  letter-spacing: 0.15em;
  font-size: 0.57rem;
  font-weight: 760;
}

.profile-dialog-media-overlay strong {
  letter-spacing: -0.04em;
  font-size: 2rem;
}

.profile-dialog-copy {
  display: flex;
  padding: clamp(38px, 5vw, 66px);
  justify-content: center;
  flex-direction: column;
}

.profile-dialog-copy h2 {
  margin: 12px 0 6px;
  letter-spacing: -0.055em;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
}

.profile-dialog-role {
  color: #c092f4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 780;
}

.profile-dialog-secondary {
  margin-top: 7px;
  color: #746b7b;
  font-size: 0.78rem;
}

.profile-dialog-copy > p {
  margin: 24px 0 28px;
  color: #aaa0b2;
  font-size: 0.94rem;
  line-height: 1.82;
}

.profile-focus {
  margin-bottom: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.profile-focus > span {
  display: block;
  margin-bottom: 12px;
  color: #817588;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.58rem;
  font-weight: 760;
}

.profile-focus ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  list-style: none;
}

.profile-focus li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #bcb2c4;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
}

.profile-dialog-close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  display: flex;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  align-items: center;
  gap: 7px;
  color: #d7cbe1;
  background: rgba(7, 4, 10, 0.7);
  font: inherit;
  font-size: 0.68rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.profile-dialog-close svg {
  width: 16px;
  height: 16px;
}

.project-card.project-half {
  grid-column: span 6;
}

.project-art-goalbound {
  background:
    radial-gradient(circle at 74% 22%, rgba(109, 210, 255, 0.32), transparent 21%),
    radial-gradient(circle at 20% 85%, rgba(100, 255, 173, 0.18), transparent 28%),
    linear-gradient(135deg, #0d3a5b, #0b2138 47%, #07111b);
}

.project-art-carry {
  background:
    radial-gradient(circle at 68% 20%, rgba(255, 128, 184, 0.3), transparent 20%),
    linear-gradient(135deg, #512044, #281225 49%, #120912);
}

.project-art-hug {
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 128, 208, 0.25), transparent 22%),
    linear-gradient(135deg, #4b1943, #28142c 50%, #100b16);
}

.project-art-freehug {
  background:
    radial-gradient(circle at 72% 20%, rgba(122, 205, 255, 0.26), transparent 22%),
    linear-gradient(135deg, #153f57, #102431 50%, #0b0d14);
}

.contribution-grid-full .project-card {
  min-height: 540px;
}

@keyframes profile-dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1240px) {
  .leadership-preview,
  .team-grid-leadership {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .leadership-preview,
  .team-grid-leadership,
  .team-grid-craft {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-dialog-shell {
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  }

  .profile-dialog-media,
  .profile-dialog-shell {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  .leadership-preview,
  .team-grid-leadership,
  .team-grid-craft {
    grid-template-columns: 1fr;
  }

  .team-group-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .project-card.project-half {
    grid-column: auto;
  }

  .profile-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100dvh - 18px);
    border-radius: 20px;
    overflow-y: auto;
  }

  .profile-dialog-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .profile-dialog-media {
    min-height: 380px;
  }

  .profile-dialog-copy {
    padding: 30px 22px 36px;
  }

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

  .profile-dialog-close span {
    display: none;
  }
}


/* Official mark visibility */
.brand-mark,
.signal-core img,
.profile-dialog-media img[src$="logo-mark.png"] {
  opacity: 1 !important;
  filter: brightness(0) invert(1) drop-shadow(0 0 22px rgba(168, 85, 247, 0.42)) !important;
}
