:root {
  --bg: #0b0b0c;
  --bg-elevated: #141416;
  --bg-section: #101012;
  --surface: #1a1a1e;
  --border: rgba(255, 214, 0, 0.14);
  --border-muted: rgba(255, 255, 255, 0.08);
  --text: #f3f3f0;
  --text-muted: #a8a8a0;
  --accent: #ffd600;
  --accent-strong: #ffe566;
  --accent-dim: rgba(255, 214, 0, 0.12);
  --accent-glow: rgba(255, 214, 0, 0.35);
  --danger: #ff6b6b;
  --success: #6dff9a;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --radius: 4px;
  --max: 760px;
  --wide: 1100px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.25rem);
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 214, 0, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(255, 180, 0, 0.05), transparent 50%),
    linear-gradient(180deg, #0b0b0c 0%, #0e0e10 40%, #0b0b0c 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-strong);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(11, 11, 12, 0.82);
  border-bottom: 1px solid var(--border-muted);
}

.site-header__inner {
  position: relative;
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__drawer {
  display: contents;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border-muted);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  flex-shrink: 0;
}

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

.brand__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.brand__name span {
  color: var(--accent);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #111;
  background: var(--accent);
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}

.header-cta:hover {
  color: #111;
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.lang-switch {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  background: var(--surface);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius);
}

.lang-switch a {
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

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

.lang-switch a.is-active {
  background: var(--accent);
  color: #111;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - var(--header-h));
  padding: 3.5rem 0 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(255, 214, 0, 0.14), transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(47, 91, 255, 0.18), transparent 42%),
    radial-gradient(circle at 12% 70%, rgba(255, 214, 0, 0.08), transparent 40%),
    linear-gradient(165deg, #121214 0%, #0b0b0c 55%, #0a0a0b 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    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: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 35%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 35%, #000 20%, transparent 75%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero__orb--1 {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.22) 0%, transparent 68%);
  animation: orb-float 9s ease-in-out infinite;
}

.hero__orb--2 {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  bottom: 18%;
  left: -8%;
  background: radial-gradient(circle, rgba(47, 91, 255, 0.28) 0%, transparent 70%);
  animation: orb-float 11s ease-in-out 1s infinite reverse;
}

.hero__orb--3 {
  width: 180px;
  height: 180px;
  top: 42%;
  right: 18%;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.12) 0%, transparent 70%);
  animation: orb-float 7s ease-in-out 0.5s infinite;
}

.hero__ring {
  position: absolute;
  top: 12%;
  right: 10%;
  width: min(34vw, 280px);
  height: min(34vw, 280px);
  border: 1px solid rgba(255, 214, 0, 0.18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 40px rgba(255, 214, 0, 0.05),
    0 0 60px rgba(47, 91, 255, 0.08);
  animation: ring-spin 28s linear infinite;
}

.hero__ring::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero__spark {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  opacity: 0.7;
  animation: spark-pulse 3.2s ease-in-out infinite;
}

.hero__spark--1 {
  top: 22%;
  left: 14%;
}

.hero__spark--2 {
  top: 38%;
  right: 22%;
  width: 10px;
  height: 10px;
  animation-delay: 0.8s;
}

.hero__spark--3 {
  bottom: 32%;
  left: 42%;
  width: 12px;
  height: 12px;
  animation-delay: 1.5s;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.hero__form-wrap {
  width: 100%;
  min-width: 0;
}

.hero__form-wrap h1 {
  margin-bottom: 1.5rem;
}

.hero__copy {
  text-align: left;
  min-width: 0;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: rise-in 0.7s ease 0.1s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  margin-bottom: 4rem;
  opacity: 0;
  animation: rise-in 0.75s ease 0.22s forwards;
}
/* Brands slider */
.hero__brands {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.5rem 0 2.5rem;
}

.hero__brands::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.85), transparent);
  pointer-events: none;
}

.brands-slider {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-slider__track {
  display: flex;
  width: max-content;
  animation: brands-scroll 32s linear infinite;
}

.brands-slider:hover .brands-slider__track {
  animation-play-state: paused;
}

.brands-slider__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 1.5rem;
}

.brands-slider__group img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(0.15) brightness(1.05);
  transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}

.brands-slider__group img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 214, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 28px 2px rgba(255, 214, 0, 0.28);
  }
}

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

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -16px) scale(1.05);
  }
}

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

@keyframes spark-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.15);
  }
}

/* Content */
.page-content {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.intro {
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-muted);
}

.intro p,
.content-block p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.intro p:last-child,
.content-block p:last-child {
  margin-bottom: 0;
}

.content-block {
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-muted);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.content-block:last-of-type {
  border-bottom: none;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 1.25rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--accent);
}

/* Role block */
.role-block {
  position: relative;
  padding: 2rem 1.5rem 2.5rem;
  margin-inline: -0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 214, 0, 0.04) 0%, transparent 42%),
    var(--bg-elevated);
  overflow: hidden;
}

.role-block__glow {
  position: absolute;
  top: -20%;
  right: -8%;
  width: min(55%, 320px);
  height: 220px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.14) 0%, transparent 70%);
  pointer-events: none;
  animation: orb-float 10s ease-in-out infinite;
}

.role-block__head {
  position: relative;
  margin-bottom: 1.25rem;
}

.role-block__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.role-block h2 {
  margin-bottom: 0;
  padding-left: 0;
  border-left: none;
  max-width: 18ch;
}

.role-block__lead {
  position: relative;
  max-width: 52ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text) !important;
  margin-bottom: 1.75rem !important;
}

.role-block__split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2.25rem;
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
}

.role-block__panel {
  padding: 1.35rem 1.25rem 1.35rem 0;
}

.role-block__panel--not {
  padding-right: 1.5rem;
  border-right: 1px solid var(--border-muted);
}

.role-block__panel--is {
  padding-left: 1.5rem;
  padding-right: 0;
  background: linear-gradient(90deg, rgba(255, 214, 0, 0.06), transparent 85%);
}

.role-block__panel-label {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.role-block__panel--not .role-block__panel-label {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(168, 168, 160, 0.55);
}

.role-block__panel--is .role-block__panel-label {
  color: var(--accent);
}

.role-block__panel p {
  margin: 0 !important;
  font-size: 0.95rem;
  line-height: 1.55;
}

.role-block__panel--not p {
  color: var(--text-muted);
}

.role-block__panel--is p {
  color: var(--text);
}

.role-block__reqs h3 {
  margin-top: 0;
  margin-bottom: 1.15rem;
}

.role-reqs {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  counter-reset: none;
}

.role-reqs li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 0 !important;
  padding: 1.15rem 1.25rem 1.15rem 0 !important;
  border-bottom: 1px solid var(--border-muted);
  border-right: 1px solid var(--border-muted);
}

.role-reqs li:nth-child(2n) {
  padding-left: 1.25rem !important;
  padding-right: 0 !important;
  border-right: none;
}

.role-reqs li:nth-last-child(-n + 2) {
  border-bottom: none;
}

.role-reqs li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: none;
  padding-right: 0 !important;
}

.role-reqs li::before {
  display: none;
}

.role-reqs__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1.4;
  min-width: 1.6rem;
}

.role-reqs__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.role-reqs__body strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

.role-reqs__body span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Process block */
.process-block {
  position: relative;
  padding: 2rem 1.5rem 2.5rem;
  margin-inline: -0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, transparent 30%, rgba(255, 214, 0, 0.035) 100%),
    var(--bg-elevated);
  overflow: hidden;
}

.process-block__glow {
  position: absolute;
  bottom: -15%;
  left: -6%;
  width: min(50%, 280px);
  height: 240px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: orb-float 12s ease-in-out infinite reverse;
}

.process-block__head {
  position: relative;
  margin-bottom: 2rem;
}

.process-block__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.process-block h2 {
  margin-bottom: 0.85rem;
  padding-left: 0;
  border-left: none;
  max-width: 22ch;
}

.process-block__lead {
  max-width: 48ch;
  margin: 0 !important;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted) !important;
}

.process-steps {
  position: relative;
  list-style: none;
  margin: 0 !important;
  padding: 0 0 0 0.15rem !important;
  counter-reset: none;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  bottom: 1.1rem;
  left: 1.35rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    rgba(255, 214, 0, 0.35) 45%,
    rgba(255, 214, 0, 0.08) 100%
  );
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 1.15rem;
  align-items: start;
  margin: 0 !important;
  padding: 0 0 1.65rem !important;
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.process-block.is-visible .process-steps li {
  opacity: 1;
  transform: translateX(0);
}

.process-block.is-visible .process-steps li:nth-child(1) { transition-delay: 0.05s; }
.process-block.is-visible .process-steps li:nth-child(2) { transition-delay: 0.12s; }
.process-block.is-visible .process-steps li:nth-child(3) { transition-delay: 0.19s; }
.process-block.is-visible .process-steps li:nth-child(4) { transition-delay: 0.26s; }
.process-block.is-visible .process-steps li:nth-child(5) { transition-delay: 0.33s; }
.process-block.is-visible .process-steps li:nth-child(6) { transition-delay: 0.4s; }
.process-block.is-visible .process-steps li:nth-child(7) { transition-delay: 0.47s; }

.process-steps li:last-child {
  padding-bottom: 0 !important;
}

.process-steps li::before {
  display: none;
}

.process-steps__marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid rgba(255, 214, 0, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--bg-elevated);
}

.process-steps li:last-child .process-steps__marker {
  background: var(--accent);
  color: #0b0b0c;
  border-color: var(--accent);
  box-shadow:
    0 0 0 6px var(--bg-elevated),
    0 0 22px rgba(255, 214, 0, 0.35);
}

.process-steps__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  padding-top: 0.35rem;
}

.process-steps__body strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

.process-steps__body span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.process-steps li:last-child .process-steps__body strong {
  color: var(--accent-strong);
}

.content-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-strong);
  margin: 1.75rem 0 0.85rem;
}

.content-block ul,
.content-block ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.content-block li {
  margin-bottom: 0.65rem;
  padding-left: 0.35rem;
}

.content-block li::marker {
  color: var(--accent);
}

.content-block ol {
  list-style: none;
  counter-reset: steps;
  padding-left: 0;
}

.content-block ol li {
  counter-increment: steps;
  position: relative;
  padding: 0.85rem 0 0.85rem 3.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-muted);
}

.content-block ol li:last-child {
  border-bottom: none;
}

.content-block ol li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  -webkit-overflow-scrolling: touch;
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.95rem;
}

.content-block table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-muted);
  vertical-align: top;
  color: var(--text-muted);
}

.content-block table tr:first-child td {
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.content-block table tr:last-child td {
  border-bottom: none;
}

.content-block table td p {
  margin: 0;
  color: inherit;
}

/* Apply / Form */
.apply {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 214, 0, 0.1), transparent 60%),
    var(--bg-section);
  border-top: 1px solid var(--border);
}

.apply__inner {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
}

.form__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
  text-align: center;
}

.apply__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  text-align: center;
}

.apply__subtitle {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 0.98rem;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-fields--horizontal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  align-items: end;
}

.form-fields--horizontal .field--messenger {
  grid-column: 1 / span 3;
}

.form-fields--horizontal .field--submit {
  grid-column: 4;
}

.form-fields--horizontal .form-error {
  grid-column: 1 / -1;
  margin: 0;
}

.field label .req {
  color: var(--accent);
  margin-left: 0.15rem;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field input:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.messenger-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.messenger-type {
  display: flex;
  flex-shrink: 0;
  gap: 0.35rem;
}

.messenger-option {
  position: relative;
  cursor: pointer;
}

.messenger-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.messenger-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.messenger-option input:checked + span {
  color: #111;
  background: var(--accent);
  border-color: var(--accent);
}

.messenger-option:hover span {
  border-color: rgba(255, 214, 0, 0.4);
}

.messenger-row input[type="text"] {
  flex: 1;
  min-width: 0;
}

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.field--submit .btn-submit {
  margin-top: 0;
}

.model-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.model-option {
  position: relative;
  cursor: pointer;
}

.model-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.model-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.model-option input:checked + span {
  color: #111;
  background: var(--accent);
  border-color: var(--accent);
}

.model-option:hover span {
  border-color: rgba(255, 214, 0, 0.4);
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  display: none;
  color: var(--danger);
  font-size: 0.9rem;
  margin: 0;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  color: var(--success);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.form-success.is-visible {
  display: block;
}

.apply-form.is-submitted .form-fields {
  display: none;
}

.btn-submit {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #111;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.site-footer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border-muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  body {
    font-size: 1rem;
  }

  .brand__name {
    font-size: 0.92rem;
  }

  .brand__logo {
    width: 28px;
    height: 28px;
  }

  .site-header__actions {
    gap: 0.5rem;
  }

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

  .site-header__drawer {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    right: auto;
    width: 100vw;
    margin-left: -50vw;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.1rem 1rem 1.25rem;
    background: rgba(11, 11, 12, 0.96);
    border-bottom: 1px solid var(--border-muted);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  }

  .site-header.is-open .site-header__drawer {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    flex: none;
  }

  .site-nav a {
    padding: 0.7rem 0.25rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-muted);
  }

  .lang-switch {
    align-self: flex-start;
  }

  .header-cta {
    padding: 0.45rem 0.7rem;
    font-size: 0.72rem;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
    padding: 2.5rem 0 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.5rem 0 2rem;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

  .hero__ring {
    width: 180px;
    height: 180px;
    top: 8%;
    right: -8%;
    opacity: 0.7;
  }

  .hero__orb--1 {
    width: 220px;
    height: 220px;
  }

  .hero__orb--2 {
    width: 160px;
    height: 160px;
  }

  .brands-slider__group {
    gap: 2.25rem;
  }

  .brands-slider__group img {
    height: 28px;
    max-width: 96px;
  }

  .page-content {
    padding-top: 1.5rem;
  }

  .content-block {
    margin-bottom: 2.75rem;
    padding-bottom: 2rem;
  }

  .role-block {
    margin-inline: 0;
    padding: 1.5rem 1.1rem 1.75rem;
  }

  .role-block h2 {
    max-width: none;
  }

  .role-block__split {
    grid-template-columns: 1fr;
  }

  .role-block__panel--not {
    padding: 1.15rem 0;
    border-right: none;
    border-bottom: 1px solid var(--border-muted);
  }

  .role-block__panel--is {
    padding: 1.15rem 0;
    background: linear-gradient(180deg, rgba(255, 214, 0, 0.06), transparent 90%);
  }

  .role-reqs {
    grid-template-columns: 1fr;
  }

  .role-reqs li,
  .role-reqs li:nth-child(2n),
  .role-reqs li:last-child:nth-child(odd) {
    padding: 1rem 0 !important;
    border-right: none;
  }

  .role-reqs li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border-muted);
  }

  .role-reqs li:last-child {
    border-bottom: none;
  }

  .process-block {
    margin-inline: 0;
    padding: 1.5rem 1.1rem 1.75rem;
  }

  .process-block h2 {
    max-width: none;
  }

  .process-steps {
    padding-left: 0 !important;
  }

  .process-steps::before {
    left: 1.2rem;
  }

  .process-steps li {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.95rem;
    padding-bottom: 1.4rem !important;
  }

  .process-steps__marker {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 0.72rem;
    box-shadow: 0 0 0 5px var(--bg-elevated);
  }

  .process-steps li:last-child .process-steps__marker {
    box-shadow:
      0 0 0 5px var(--bg-elevated),
      0 0 18px rgba(255, 214, 0, 0.3);
  }

  .process-steps__body {
    padding-top: 0.2rem;
  }

  .process-steps__body strong {
    font-size: 0.98rem;
  }

  .model-options {
    grid-template-columns: 1fr;
  }

  .form-fields--horizontal {
    grid-template-columns: 1fr;
  }

  .form-fields--horizontal .field--messenger,
  .form-fields--horizontal .field--submit {
    grid-column: 1;
  }

  .messenger-row {
    flex-direction: column;
  }

  .messenger-type {
    width: 100%;
  }

  .messenger-option {
    flex: 1;
  }

  .messenger-option span {
    width: 100%;
  }

  .apply {
    padding: 3.5rem 0 4rem;
  }

  .apply-form {
    padding: 1.35rem;
  }
}

@media (max-width: 400px) {
  .site-header__inner {
    width: min(100% - 1.25rem, var(--wide));
  }

  .brand__name {
    max-width: none;
  }
}

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

  .hero__eyebrow,
  .hero h1,
  .hero-form,
  .content-block {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .brands-slider__track,
  .hero__orb,
  .hero__ring,
  .hero__spark,
  .role-block__glow,
  .process-block__glow {
    animation: none !important;
  }

  .process-steps li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
