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

:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-light: #ffffff;
  --text: #000000;
  --muted: rgba(0, 0, 0, 0.65);
  --primary: #000000;
  --border: rgba(0, 0, 0, 0.18);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  --hero-base: #a51605;
  --hero-dark: #7a0f02;
  --hero-glow: #ff6d3a;
  --hero-backdrop: #ffffff;
  --hero-bg: #ffffff;
  --hero-overlay: transparent;
  --hero-vignette: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0.24) 100%
  );
  --hero-grain: none;
  --grid-dot: rgba(0, 0, 0, 0.6);
  --people-bg: #ffffff;
  --people-fade: rgba(255, 255, 255, 1);
  --role-card-bg: #ffffff;
  --role-card-alt: #f2f3f5;
  --footer-bg: #000000;
  --footer-text: #ffffff;
  --footer-muted: rgba(255, 255, 255, 0.7);
  --footer-border: rgba(255, 255, 255, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #0b0b0b;
    --panel: #13161b;
    --panel-light: #1b1f26;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.75);
    --primary: #ffffff;
    --border: rgba(255, 255, 255, 0.2);
    --shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    --hero-backdrop: #050505;
    --hero-overlay: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.08) 40%,
      rgba(0, 0, 0, 0.2)
    );
    --hero-bg: radial-gradient(
      circle at 50% 30%,
      rgba(255, 255, 255, 0.08),
      rgba(0, 0, 0, 0.3) 55%
    );
    --hero-vignette: radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.6) 100%
    );
    --hero-grain: radial-gradient(
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px
      ),
      radial-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px);
    --grid-dot: rgba(255, 255, 255, 0.6);
    --people-bg: #0b0b0b;
    --people-fade: rgba(11, 11, 11, 1);
    --role-card-bg: #1b1f26;
    --role-card-alt: #171a20;
    --footer-bg: #ffffff;
    --footer-text: #000000;
    --footer-muted: rgba(0, 0, 0, 0.65);
    --footer-border: rgba(0, 0, 0, 0.1);
  }

}

@property --curtain-scale {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@property --curtain-shift {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

@property --curtain-lift {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

body {
  font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 10px;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #ffffff;
  display: block;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.menu-open .menu-toggle {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 20px;
  color: inherit;
  text-decoration: none;
  transform: none;
  line-height: 1;
}

.logo img {
  width: auto;
  height: 30px;
  object-fit: contain;
  display: block;
  transform: translateY(-4px);
  vertical-align: middle;
}


.logo span {
  line-height: 1;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--text);
  font-size: 14px;
  opacity: 0.9;
}

.nav a {
  display: inline-flex;
  justify-content: center;
  min-width: 110px;
  text-align: center;
  white-space: nowrap;
}

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

.btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-dark {
  background: var(--text);
  color: var(--bg);
  border-color: transparent;
}

.btn-light {
  background: #ffffff;
  color: #0b0b0b;
  border-color: transparent;
  padding: 12px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #ffffff;
  color: #0b0b0b;
  border-color: transparent;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
}

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

.nav-actions .btn {
  min-width: 120px;
  justify-content: center;
}

.lang-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 85%, transparent);
}

.lang-toggle .pill {
  padding: 6px 10px;
  font-size: 11px;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
}

.lang-toggle .pill.is-active {
  background: var(--text);
  color: var(--bg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 9;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.28s ease, transform 0.3s ease;
  pointer-events: none;
}

.mobile-menu-inner {
  width: min(560px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    160deg,
    rgba(165, 22, 5, 0.35),
    rgba(15, 16, 20, 0.95) 55%,
    rgba(10, 12, 15, 0.96)
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.mobile-menu-inner a {
  color: var(--text);
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, border 0.2s ease;
}

.mobile-menu-inner a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-actions {
  display: grid;
  gap: 12px;
}

.mobile-actions .lang-toggle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
}

.mobile-actions .lang-toggle .pill {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.mobile-actions .lang-toggle .pill.is-active {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-actions .btn {
  width: 100%;
  justify-content: center;
}

.mobile-menu .btn-dark {
  background: #ffffff;
  color: #0b0b0b;
  border-color: transparent;
}

.hero {
  padding: 0;
}

.hero-curtain {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(255, 255, 255, 0.08),
    rgba(0, 0, 0, 0.3) 55%
  );
  color: #ffffff;
}

.hero-curtain .site-header,
.hero-curtain .hero-content {
  pointer-events: auto;
}

.curtain-backdrop {
  position: absolute;
  inset: 0;
  background: #050505;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 20;
  width: min(760px, 90%);
  text-align: center;
  align-items: center;
  justify-items: center;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-curtain.reveal .hero-content {
  transform: translateX(-38%);
}


.hero-person {
  width: 60vw;
  height: auto;
  max-height: 90vh;
  position: absolute;
  left: 38%;
  transform: translateX(0);
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: normal;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-curtain.reveal .hero-person {
  opacity: 1;
}


.curtain {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  z-index: 2;
  pointer-events: none;
}

.curtain-bar {
  --curtain-scale: 1;
  --curtain-shift: 0px;
  --curtain-lift: 0px;
  background-image:
    linear-gradient(
      180deg,
      #ff7a52 0%,
      #ff4d2c 38%,
      #c7230d 70%,
      #8b1707 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.28) 18%,
      rgba(255, 255, 255, 0.2) 45%,
      rgba(255, 255, 255, 0.08) 55%,
      rgba(0, 0, 0, 0.35) 82%,
      rgba(0, 0, 0, 0.6) 100%
    );
  background-blend-mode: normal;
  filter: saturate(1.05) contrast(1.02);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  transform: translateY(calc(var(--curtain-shift) - var(--curtain-lift)))
    scaleX(var(--curtain-scale));
  box-shadow:
    inset 0 0 16px rgba(0, 0, 0, 0.35),
    inset -12px 0 18px rgba(0, 0, 0, 0.35),
    inset 10px 0 12px rgba(255, 255, 255, 0.05);
  animation:
    curtainWave 6s ease-in-out infinite,
    curtainDrift 5.5s ease-in-out infinite;
  animation-play-state: running;
}

.curtain-lift .curtain-bar {
  --curtain-lift: 0px;
}

.curtain-lift .curtain-bar:nth-child(13) {
  --curtain-lift: 10px;
}

.curtain-lift .curtain-bar:nth-child(14) {
  --curtain-lift: 30px;
}

.curtain-lift .curtain-bar:nth-child(15) {
  --curtain-lift: 55px;
}

.curtain-lift .curtain-bar:nth-child(16) {
  --curtain-lift: 85px;
}

.curtain-lift .curtain-bar:nth-child(17) {
  --curtain-lift: 120px;
}

.curtain-lift .curtain-bar:nth-child(18) {
  --curtain-lift: 160px;
}

.curtain-lift .curtain-bar:nth-child(19) {
  --curtain-lift: 210px;
}

.curtain-lift .curtain-bar:nth-child(20) {
  --curtain-lift: 240px;
}

.curtain-lift .curtain-bar:nth-child(21) {
  --curtain-lift: 230px;
}

.curtain-lift .curtain-bar:nth-child(22) {
  --curtain-lift: 200px;
}

.curtain-lift .curtain-bar:nth-child(23) {
  --curtain-lift: 150px;
}

.curtain-lift .curtain-bar:nth-child(24) {
  --curtain-lift: 100px;
}

.curtain-lift {
  background: #050505;
}

.curtain-bar:nth-child(3n) {
  animation-delay: -1.5s, -0.8s;
}

.curtain-bar:nth-child(4n) {
  animation-delay: -3s, -1.6s;
}

.curtain-bar:nth-child(5n) {
  animation-delay: -4.5s, -2.4s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.08) 40%,
    rgba(0, 0, 0, 0.2)
  );
  z-index: 2;
}

.spotlights {
  position: absolute;
  inset: -10% 0 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 1;
  transition: opacity 0.6s ease;
  transition: opacity 0.6s ease, transform 0.4s ease-in-out;
}

.spotlight {
  position: absolute;
  width: 65vw;
  height: 120vh;
  background: radial-gradient(
    ellipse at top,
    rgba(255, 255, 255, 0.9),
    rgba(255, 210, 160, 0.75) 25%,
    rgba(255, 120, 60, 0.45) 45%,
    rgba(255, 60, 20, 0.18) 65%,
    rgba(255, 60, 20, 0) 80%
  );
  filter: blur(10px);
  opacity: 0.95;
  transform-origin: top;
  transform: translateX(var(--spotlight-x, 0)) rotate(var(--spotlight-rot, 0deg));
  transition: transform 0.8s ease-in-out;
}

.spotlight.left {
  left: -15%;
  animation-delay: -2s;
}

.spotlight.right {
  right: -18%;
  animation-delay: -6s;
}



.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(16px);
  opacity: 0.8;
}

.hero-curtain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-curtain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    radial-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  opacity: 0.2;
  mix-blend-mode: soft-light;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 720px;
  padding: 0 16px;
}

@keyframes curtainWave {
  0%,
  100% {
    filter: saturate(1.05);
    --curtain-scale: 1;
  }
  50% {
    filter: saturate(1.2);
    --curtain-scale: 1.02;
  }
}

@keyframes curtainDrift {
  0%,
  100% {
    --curtain-shift: 0px;
  }
  50% {
    --curtain-shift: -6px;
  }
}


.trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #ffffff;
}

.avatars {
  display: inline-flex;
  align-items: center;
}

.avatars img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -8px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  max-width: 18ch;
}

.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 14px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.cta-stack {
  display: flex;
  gap: 12px;
}

.pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--panel);
  font-size: 13px;
  transition: transform 0.2s ease, border 0.2s ease;
}

.pill:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 92, 255, 0.6);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.glow {
  position: absolute;
  inset: 20% 10% auto;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.4), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.hero-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.hero-card.primary {
  background: linear-gradient(160deg, rgba(124, 92, 255, 0.25), var(--panel));
}

.hero-card.secondary {
  margin-left: 40px;
}

.hero-card.tertiary {
  margin-left: 20px;
}

.hero-card h3 {
  margin: 12px 0 16px;
  font-size: 20px;
}

.hero-card h4 {
  margin: 10px 0 16px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.tag {
  background: var(--panel-light);
  padding: 4px 10px;
  border-radius: 999px;
}

.status {
  color: var(--primary);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: var(--panel-light);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 80px 0;
}

.section + .section {
  padding-top: 70px;
}

.section.split {
  padding: 110px 0;
  color: var(--text);
}

.section.roles {
  padding: 120px 0;
}

.split-stack {
  display: grid;
  gap: 120px;
}

.split-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  gap: 56px;
  align-items: center;
  min-height: 54vh;
}

.split-row.is-reverse {
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
}

.split-title {
  justify-self: start;
}

.split-row.is-reverse .split-title {
  justify-self: end;
  text-align: right;
}

.split-title h2 {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  line-height: 1.05;
  max-width: 16ch;
  color: var(--text);
}

.split-row:first-child .split-title h2 {
  font-size: clamp(3rem, 6.2vw, 5.2rem);
  max-width: 14ch;
}

.split-body {
  display: grid;
  gap: 18px;
  align-items: start;
  max-width: 420px;
}

.split-body .lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.split-body .btn {
  width: fit-content;
}

.split-people {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 620px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  background: var(--people-bg);
  border: none;
  --people-reveal: 0;
}

.split-people::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle,
      var(--grid-dot) 0 1.2px,
      transparent 1px
    );
  background-size: 18px 18px;
  opacity: calc(0.18 + (var(--people-reveal) * 0.35));
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 42%,
    rgba(0, 0, 0, 0.25) 68%,
    rgba(0, 0, 0, 0) 100%
  );
}

.split-people img {
  width: 96%;
  height: 100%;
  object-fit: contain;
  object-position: center 12%;
  filter: grayscale(1);
  transform: translateX(-3%) scale(calc(0.9 + (var(--people-reveal) * 0.18)));
  opacity: calc(0.2 + (var(--people-reveal) * 0.8));
  transition: opacity 0.2s linear;
  justify-self: center;
  margin: 0 auto;
  z-index: 1;
}

.floating-tags {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.tag-pill {
  position: absolute;
  left: var(--x);
  top: var(--y);
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

.tag-pill:not(.icon-circle)::after {
  content: "";
  position: absolute;
  inset: 2px 6px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.18),
    transparent 55%
  );
  pointer-events: none;
}

.pill-small {
  font-size: 14px;
  padding: 10px 22px;
}

.pill-medium {
  font-size: 15px;
  padding: 12px 26px;
}

.pill-large {
  font-size: 21px;
  padding: 18px 36px;
}

.tag-pill.orange {
  background: linear-gradient(135deg, #ff5a1f, #ff8a46);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 14px 28px rgba(255, 90, 31, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.tag-pill.dark {
  background: linear-gradient(145deg, #2b2d32, #111215);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tilt-left {
  transform: translate(-50%, -50%) rotate(-8deg);
}

.tilt-right {
  transform: translate(-50%, -50%) rotate(8deg);
}

.icon-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  padding: 0;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #ff4d1a;
  font-size: 36px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.22),
    inset 0 0 12px rgba(0, 0, 0, 0.08);
}

.dots {
  padding: 12px 22px;
  font-size: 24px;
  letter-spacing: 6px;
  opacity: 0.9;
}

.arrow {
  font-size: 24px;
  padding: 12px 24px;
  opacity: 0.95;
}

.split-people::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to top,
    var(--people-fade),
    color-mix(in srgb, var(--people-fade) 85%, transparent) 35%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

.split-icon {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(145deg, #ff7a52 0%, #ff4d2c 55%, #b61f0a 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin-top: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.split-snake {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ff6f3f 0%, #ff3f1a 58%, #a01807 100%);
}

.split-snake::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 4px;
  background:
    repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.35) 0 6px,
        transparent 6px 10px
      )
      top / 10px 2px repeat-x,
    repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.35) 0 6px,
        transparent 6px 10px
      )
      right / 2px 10px repeat-y,
    repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.35) 0 6px,
        transparent 6px 10px
      )
      bottom / 10px 2px repeat-x,
    repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.35) 0 6px,
        transparent 6px 10px
      )
      left / 2px 10px repeat-y;
  opacity: 0.7;
}

.split-snake::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(
        90deg,
        #111111 0 6px,
        transparent 6px 12px
      )
      top / 12px 4px repeat-x,
    repeating-linear-gradient(
        180deg,
        #111111 0 6px,
        transparent 6px 12px
      )
      right / 4px 12px repeat-y,
    repeating-linear-gradient(
        90deg,
        #111111 0 6px,
        transparent 6px 12px
      )
      bottom / 12px 4px repeat-x,
    repeating-linear-gradient(
        180deg,
        #111111 0 6px,
        transparent 6px 12px
      )
      left / 4px 12px repeat-y;
  animation: snakeMarch 2.4s steps(12) infinite;
  pointer-events: none;
}

@keyframes snakeMarch {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      100% 100%,
      0% 100%;
  }
  25% {
    background-position:
      100% 0%,
      100% 100%,
      0% 100%,
      0% 0%;
  }
  50% {
    background-position:
      100% 100%,
      100% 0%,
      0% 0%,
      0% 100%;
  }
  75% {
    background-position:
      0% 100%,
      0% 0%,
      100% 0%,
      100% 100%;
  }
  100% {
    background-position:
      0% 0%,
      100% 0%,
      100% 100%,
      0% 100%;
  }
}

.stack {
  display: grid;
  gap: 20px;
}

.image-card {
  background: var(--panel);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
}

.image-card.compact {
  background: var(--panel-light);
}

.image-placeholder {
  height: 160px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.4), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(124, 92, 255, 0.3);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

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

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.role-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: var(--panel);
  transition: transform 0.25s ease, border 0.25s ease;
}

.role-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 255, 0.6);
}

.role-card.hover-focus {
  background: linear-gradient(160deg, rgba(124, 92, 255, 0.3), var(--panel));
}

.roles-header {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.roles-header h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
  max-width: 18ch;
}

.roles-showcase {
  display: grid;
  gap: 26px;
  justify-items: center;
  margin: 0 auto;
  width: 100%;
  padding: 0 4%;
}

.role-stack {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

.role-card-large {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 30px;
  background: var(--role-card-bg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(-3deg);
  transition: transform 0.4s ease, opacity 0.35s ease;
  backface-visibility: hidden;
  overflow: hidden;
}

.role-card-large::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 52px;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  background: repeating-linear-gradient(
    180deg,
    #ff7a52 0 10px,
    #ff4d2c 10px 20px,
    #d22a10 20px 32px,
    #9c1c09 32px 44px
  );
  opacity: 0.9;
  pointer-events: none;
}

.role-icon {
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.25);
}

.role-icon svg {
  width: 36px;
  height: 36px;
  stroke: #ffffff;
  stroke-width: 1.6;
  fill: none;
  opacity: 0.95;
}

.role-card-large.is-stack {
  background: var(--role-card-alt);
}

.role-card-large h3 {
  font-size: 32px;
  margin: 26px 0 18px;
}

.role-card-large .card-header {
  font-size: 13px;
}

.role-card-large .chip {
  font-size: 13px;
  padding: 7px 14px;
}

.role-nav {
  display: flex;
  gap: 16px;
}

.role-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease;
}

.role-nav-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
}

.role-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}


.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(280px, 1fr);
  gap: 60px;
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.faq-intro .btn {
  margin-top: 16px;
}

.faq-list {
  display: grid;
}

.faq-row {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
}

.faq-chevron {
  font-size: 18px;
  line-height: 1;
  opacity: 0.7;
}

.site-footer {
  padding: 110px 0 60px;
  background: var(--footer-bg);
  color: var(--footer-text);
}

.site-footer .muted {
  color: var(--footer-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-grid h4,
.footer-grid h5 {
  color: var(--footer-text);
}

.footer-grid a {
  display: block;
  color: var(--footer-muted);
  margin-top: 10px;
  font-size: 14px;
}

.footer-note {
  text-align: left;
  font-size: 12px;
  color: var(--footer-muted);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-weight: 800;
  font-size: 54px;
  text-decoration: none;
  color: var(--footer-text);
  white-space: nowrap;
}

.footer-logo img {
  width: auto;
  height: 90px;
  object-fit: contain;
  display: block;
  transform: none;
  filter: none;
}


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

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-note {
    text-align: left;
  }
}

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

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .header-inner {
    padding: 18px 0;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }

  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.menu-open .mobile-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-menu {
    display: block;
  }

  .hero-person,
  .spotlights {
    display: none;
  }

  .curtain-bar {
    animation-play-state: paused;
  }

  .split-row,
  .split-row.is-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-title h2 {
    max-width: 100%;
  }

  .split-title,
  .split-row.is-reverse .split-title {
    justify-self: start;
    text-align: left;
  }

  .split-row {
    gap: 24px;
  }

  .split-row .split-title {
    order: 1;
  }

  .split-row .split-body {
    order: 2;
    max-width: 100%;
  }

  .split-row.is-reverse .split-title {
    order: 1;
  }

  .split-row.is-reverse .split-body {
    order: 2;
  }

  .split-people {
    width: min(100%, 720px);
    max-height: 520px;
  }

  .split-people img {
    width: 92%;
    height: 100%;
    object-position: center 18%;
  }

  .section.split {
    padding: 80px 0;
  }

  .split-body .btn {
    width: fit-content;
    justify-content: flex-start;
  }

  .split-icon {
    margin: 10px auto 0;
  }

  .section.roles {
    padding: 90px 0;
  }

  .role-stack {
    width: min(520px, 100%);
  }

  .role-card-large {
    padding: 22px;
    border-radius: 22px;
    transform: rotate(-2deg) scale(0.98);
  }

  .role-card-back {
    transform: rotate(3deg) translate(12px, -6px);
  }

  .roles-header {
    margin-bottom: 24px;
  }

  .roles-showcase {
    gap: 18px;
    padding: 0 6%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro .btn {
    width: fit-content;
  }
}

@media (max-width: 540px) {
  .split-people {
    width: min(100%, 520px);
    max-height: 420px;
  }
  .role-stack {
    width: min(380px, 92%);
    margin: 0 auto;
  }

  .role-card-large .card-header {
    font-size: 12px;
  }

  .role-card-large {
    padding: 18px;
    border-radius: 18px;
    transform: rotate(-1deg) scale(0.96);
  }

  .role-card-large h3 {
    font-size: 24px;
    margin: 16px 0 10px;
  }

  .role-card-large .chip {
    font-size: 11px;
    padding: 5px 10px;
  }

  .role-icon {
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .role-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 420px) {
  .roles-showcase {
    padding: 0 8%;
  }

  .role-stack {
    width: min(320px, 92%);
    margin: 0 auto;
  }

  .role-card-large {
    padding: 14px;
  }

  .role-card-large::after {
    bottom: 16px;
    height: 40px;
  }

  .role-card-large h3 {
    font-size: 22px;
    margin: 14px 0 8px;
  }

  .role-card-large .card-header {
    font-size: 11px;
  }

  .role-card-large .chip {
    font-size: 10px;
    padding: 4px 8px;
  }

  .role-icon {
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

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

@media (max-width: 360px) {
  .role-stack {
    width: min(280px, 92%);
  }

  .role-card-large {
    padding: 12px;
  }

  .role-card-large::after {
    bottom: 14px;
    height: 34px;
  }

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

  .role-icon {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

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