:root {
  color-scheme: dark;
  --bg: #050505;
  --ink: #f5f5f7;
  --muted: #a1a1a6;
  --soft: #d2d2d7;
  --panel: #111113;
  --panel-2: #17171a;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --gold: #d6a83e;
  --gold-2: #ffe5a4;
  --blue: #8fb7ff;
  --radius: 8px;
  --max: 1280px;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.54);
  --header-h: 63px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.38), transparent 72%);
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 40;
  padding: 10px 14px;
  background: var(--ink);
  color: #050505;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px max(18px, calc((100vw - var(--max)) / 2 + 22px));
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
}

.global-nav a,
.header-phone,
.product-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.global-nav a:hover,
.product-nav a:hover,
.product-nav a.is-active {
  color: var(--ink);
}

.header-phone {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--ink);
  color: #050505;
  font-size: 13px;
  font-weight: 600;
}

.product-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 25;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  min-height: 45px;
  padding: 8px 18px;
  overflow: visible;
  background: rgba(5, 5, 5, 0.66);
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
  backdrop-filter: blur(18px);
}

.product-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.section,
.documents-band,
.contact-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 22px;
}

#overview,
#highlights,
#needs,
#smm,
#stories,
#proof,
#choice,
#paths,
#vacancies,
#audit,
#documents,
#contact,
#learning {
  scroll-margin-top: 138px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 150px);
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  gap: clamp(18px, 3vh, 34px);
  padding: 52px max(22px, calc((100vw - var(--max)) / 2 + 22px)) 28px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 2% 0 auto;
  width: min(980px, 92vw);
  height: min(620px, 70svh);
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 44%, rgba(255, 229, 164, 0.22), transparent 33%),
    radial-gradient(circle at 62% 55%, rgba(143, 183, 255, 0.14), transparent 42%);
  filter: blur(34px);
  opacity: 0.78;
  transform: translate3d(0, 16%, 0);
  animation: heroAura 7.8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #050505 86%);
}

.hero__copy,
.hero__actions,
.hero-stage,
.section-head,
.chapter,
.audit-copy,
.audit-form,
.documents-grid {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1,
h2,
h3 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1060px;
  margin: 0 auto 18px;
  font-size: 118px;
  line-height: 0.88;
}

.hero__lead {
  max-width: 760px;
  margin: 0 auto 22px;
  color: var(--soft);
  font-size: 30px;
  line-height: 1.12;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.button--primary {
  background: var(--ink);
  color: #050505;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.46;
  filter: grayscale(0.35);
}

.hero-stage {
  width: min(1180px, 100%);
  display: grid;
  align-content: end;
  min-height: clamp(300px, 36svh, 500px);
  margin-top: clamp(0px, 1.3vh, 14px);
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(214, 168, 62, 0.18), transparent 34%),
    #000;
  box-shadow: none;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-stage::before {
  background:
    radial-gradient(circle at 50% 48%, transparent 0 28%, rgba(255, 229, 164, 0.12) 42%, transparent 64%),
    linear-gradient(90deg, rgba(5,5,5,0.72), transparent 18%, transparent 82%, rgba(5,5,5,0.72));
  mix-blend-mode: screen;
  opacity: 0.62;
  animation: heroStageLight 6.6s ease-in-out infinite;
}

.hero-stage::after {
  background: linear-gradient(to bottom, rgba(5,5,5,0.04), transparent 54%, #050505 96%);
}

.hero-stage video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(300px, 36svh, 500px);
  min-height: 0;
  display: block;
  object-fit: cover;
  background: #000;
  opacity: 0.96;
}

.hero-stage__meta {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 18px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(720px, calc(100% - 28px));
  transform: translateX(-50%);
}

.hero-stage__meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(0,0,0,0.42);
  color: var(--soft);
  font-size: 12px;
  backdrop-filter: blur(14px);
}

.audit-ribbon {
  min-height: 62px;
  margin: 0;
  padding: 11px max(18px, calc((100vw - var(--max)) / 2 + 22px));
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 0, rgba(255,229,164,0.08), transparent 38%),
    rgba(5,5,5,0.74);
  color: var(--soft);
  backdrop-filter: blur(18px);
}

.audit-ribbon__copy {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.audit-ribbon__copy span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.audit-ribbon__copy strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
}

.audit-ribbon__points {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.audit-ribbon__points span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.audit-ribbon a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.smm-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  isolation: isolate;
}

.smm-spotlight::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(245, 196, 94, 0.18), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(91, 160, 255, 0.11), transparent 34%);
  filter: blur(16px);
  opacity: 0.82;
  animation: proofGlow 8s ease-in-out infinite alternate;
}

.smm-spotlight__copy {
  max-width: 760px;
}

.smm-spotlight__copy h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.96;
}

.smm-spotlight__copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.34;
}

.smm-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.smm-spotlight__profile {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.smm-spotlight__profile::before,
.smm-spotlight__profile::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.smm-spotlight__profile::before {
  width: min(82vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 196, 94, 0.28);
  box-shadow:
    0 0 46px rgba(245, 196, 94, 0.16),
    inset 0 0 34px rgba(255, 255, 255, 0.05);
  animation: proofFloat 7s ease-in-out infinite;
}

.smm-spotlight__profile::after {
  width: min(66vw, 315px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245, 196, 94, 0.24), rgba(91, 160, 255, 0.05) 48%, transparent 70%);
  filter: blur(18px);
  opacity: 0.7;
}

.smm-portrait {
  position: relative;
  z-index: 1;
  width: min(72vw, 330px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: #0d0d0d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.smm-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 62%;
}

.smm-card {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 2;
  width: min(270px, 78%);
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.smm-card span,
.smm-card em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.smm-card strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.12;
}

.smm-card em {
  color: var(--gold-2);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head h2,
.chapter h2,
.audit-copy h2,
.documents-band h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4.9vw, 66px);
  line-height: 1.02;
}

.section-head p,
.chapter p,
.audit-copy p {
  color: var(--muted);
  font-size: 19px;
}

.carousel-shell {
  position: relative;
}

.carousel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.carousel-progress {
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
}

.carousel-progress span {
  display: block;
  width: calc(var(--carousel-progress, 0) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-2), var(--blue));
  transition: width 180ms linear;
}

.carousel-toggle,
.carousel-controls button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  cursor: pointer;
}

.carousel-toggle {
  width: 36px;
  height: 36px;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.story-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(410px, 56%);
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.story-rail::-webkit-scrollbar {
  display: none;
}

.story-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  scroll-snap-align: center;
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.06), rgba(0,0,0,0.18) 46%, rgba(0,0,0,0.86));
  pointer-events: none;
}

.story-card video,
.story-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  background: #000;
}

.story-card > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.story-card span,
.chapter .eyebrow {
  color: var(--gold-2);
}

.story-card h3 {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: clamp(25px, 2.75vw, 40px);
  line-height: 1.05;
}

.story-card p {
  max-width: 560px;
  color: var(--soft);
  font-size: 16px;
}

.story-card a,
.documents-grid a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.carousel-controls button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.dotnav {
  display: flex;
  gap: 8px;
}

.dotnav button {
  width: 8px;
  height: 8px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.30);
}

.dotnav button.is-active {
  background: var(--ink);
}

.product-story {
  display: grid;
  gap: 58px;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: center;
  min-height: 640px;
  padding: 22px 0;
}

.chapter:nth-child(even) {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.chapter__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.chapter__media video,
.chapter__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  background: #000;
}

.lead-system {
  isolation: isolate;
  --visual-x: 0;
  --visual-y: 0;
}

.lead-system img {
  transform: scale(1.035) translate(
    calc(var(--visual-x) * -10px),
    calc(var(--visual-y) * -8px)
  );
  transition: transform 320ms ease;
}

.lead-system::before,
.lead-system::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.lead-system::before {
  inset: 12%;
  border: 1px solid rgba(255, 229, 164, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 42px rgba(214, 168, 62, 0.24),
    inset 0 0 34px rgba(214, 168, 62, 0.12);
  animation: leadHalo 4.8s ease-in-out infinite;
}

.lead-system::after {
  width: 38%;
  height: 38%;
  left: 38%;
  bottom: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 164, 0.32), transparent 64%);
  filter: blur(18px);
  transform: translate(
    calc(var(--visual-x) * 24px),
    calc(var(--visual-y) * 18px)
  );
  animation: leadGlow 5.2s ease-in-out infinite;
}

.lead-orbit {
  position: absolute;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow:
    0 0 18px rgba(255, 229, 164, 0.9),
    0 0 44px rgba(214, 168, 62, 0.55);
  pointer-events: none;
}

.lead-orbit::after {
  content: "";
  position: absolute;
  left: -72px;
  top: 5px;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,229,164,0.78));
}

.lead-orbit--one {
  left: 32%;
  top: 34%;
  animation: leadSignalOne 3.6s ease-in-out infinite;
}

.lead-orbit--two {
  left: 44%;
  top: 49%;
  animation: leadSignalTwo 4.2s ease-in-out infinite;
}

.lead-orbit--three {
  left: 58%;
  top: 63%;
  animation: leadSignalThree 4.9s ease-in-out infinite;
}

.lead-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.48);
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.32);
  pointer-events: none;
  animation: leadChipFloat 4.4s ease-in-out infinite;
}

.lead-chip--phone {
  left: 9%;
  top: 16%;
}

.lead-chip--map {
  left: 12%;
  bottom: 18%;
  animation-delay: 0.4s;
}

.lead-chip--form {
  right: 10%;
  bottom: 20%;
  animation-delay: 0.8s;
}

.chapter__copy {
  max-width: 610px;
}

.chapter ul {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--soft);
}

.metric-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 620px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.metric-line strong {
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.9;
  font-weight: 600;
  color: var(--gold-2);
}

.metric-line span {
  color: var(--soft);
  font-size: 17px;
}

.position-section {
  position: relative;
  display: grid;
  gap: 24px;
}

.position-section::before {
  content: "";
  position: absolute;
  inset: 64px 22px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,229,164,0.44), transparent);
}

.position-hero {
  min-height: 460px;
  display: grid;
  align-content: center;
  padding: clamp(36px, 6vw, 72px);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 229, 164, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018)),
    #080808;
  box-shadow: var(--shadow);
}

.position-hero h2 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: 0.98;
}

.position-hero p {
  max-width: 820px;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.32;
}

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

.position-grid article,
.training-band {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.026)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.position-grid article {
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px;
}

.position-grid span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.position-grid strong {
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.position-grid p,
.training-band p {
  margin: 0;
  color: var(--muted);
}

.training-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
  padding: clamp(24px, 4vw, 42px);
}

.training-band h3 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02;
}

.training-band > p {
  font-size: 17px;
  line-height: 1.55;
}

.training-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.training-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.proof-section {
  max-width: none;
  padding-left: max(22px, calc((100vw - var(--max)) / 2 + 22px));
  padding-right: max(22px, calc((100vw - var(--max)) / 2 + 22px));
  overflow: hidden;
}

.proof-scene {
  position: relative;
  min-height: clamp(620px, 78svh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  isolation: isolate;
}

.proof-scene::before {
  content: "";
  position: absolute;
  inset: 10% -14% 0 36%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 48% 42%, rgba(255,229,164,0.26), transparent 28%),
    radial-gradient(circle at 68% 58%, rgba(143,183,255,0.18), transparent 34%),
    radial-gradient(circle at 52% 70%, rgba(214,168,62,0.16), transparent 44%);
  filter: blur(14px);
  opacity: 0.9;
  animation: proofGlow 8s ease-in-out infinite;
}

.proof-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.proof-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: 92px;
  line-height: 0.94;
}

.proof-copy p {
  max-width: 560px;
  color: var(--soft);
  font-size: 21px;
  line-height: 1.38;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-visual {
  position: relative;
  min-height: clamp(420px, 52vw, 640px);
  display: grid;
  align-items: center;
  justify-items: center;
}

.proof-visual img {
  width: min(100%, 720px);
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.52;
  filter: saturate(1.08) contrast(1.08);
  transform: translate3d(4%, 2%, 0) scale(1.04);
  animation: proofFloat 9s ease-in-out infinite;
  mask-image: radial-gradient(circle, rgba(0,0,0,0.9) 0 46%, rgba(0,0,0,0.54) 58%, transparent 72%);
}

.proof-number {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  justify-items: center;
  transform: translate(-48%, -52%);
  text-align: center;
  text-shadow: 0 22px 80px rgba(0,0,0,0.72);
}

.proof-number span {
  font-size: 220px;
  line-height: 0.78;
  font-weight: 700;
  letter-spacing: 0;
}

.proof-number em {
  margin-top: 16px;
  color: var(--gold-2);
  font-style: normal;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0;
}

.proof-facts {
  position: absolute;
  right: 4%;
  bottom: 10%;
  display: flex;
  gap: 8px;
}

.proof-facts span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(5,5,5,0.58);
  color: var(--soft);
  font-size: 13px;
  backdrop-filter: blur(16px);
}

.ecosystem-section {
  display: grid;
  gap: 22px;
}

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

.ecosystem-note {
  min-height: 154px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.2fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.018)),
    rgba(7,7,8,0.86);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 22px 70px rgba(0,0,0,0.22);
}

.partners-compact {
  min-height: 182px;
  display: grid;
  grid-template-columns: minmax(210px, 0.46fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 14%, rgba(255,229,164,0.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.018)),
    rgba(7,7,8,0.88);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 24px 72px rgba(0,0,0,0.24);
}

.partners-compact__logos {
  display: flex;
  align-items: center;
}

.partners-compact__logos img {
  width: clamp(52px, 6vw, 82px);
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.045);
  box-shadow:
    0 16px 44px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.partners-compact__logos img + img {
  margin-left: -12px;
}

.partners-compact__copy {
  display: grid;
  gap: 8px;
}

.partners-compact__copy strong {
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  font-weight: 650;
}

.partners-compact__copy p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.social-links--footer {
  margin-top: 10px;
}

.social-links img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.ecosystem-grid article,
.route-map article {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 229, 164, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.072), rgba(255,255,255,0.016)),
    #070708;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 22px 70px rgba(0,0,0,0.24);
}

.ecosystem-grid span,
.ecosystem-note span,
.route-map span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ecosystem-grid strong,
.ecosystem-note strong,
.route-map strong {
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.04;
  font-weight: 650;
}

.ecosystem-grid p,
.ecosystem-note p,
.route-map p,
.path-tabs__head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.ecosystem-grid a,
.ecosystem-note a,
.route-map a {
  width: fit-content;
  color: var(--blue);
  font-weight: 650;
  text-decoration: none;
}

body.has-focus-panels:not(.focus-learning) #learning,
body.has-focus-panels:not(.focus-vacancies) #vacancies {
  display: none;
}

.path-tabs {
  padding-top: 34px;
  padding-bottom: 42px;
}

.path-tabs__head {
  max-width: 820px;
  margin: 0 auto 22px;
  text-align: center;
}

.path-tabs__head h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1;
}

.path-tabs__head p {
  max-width: 700px;
  margin: 12px auto 0;
}

.path-tabs__grid {
  width: min(930px, 100%);
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0 auto;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.115), rgba(255,255,255,0.036)),
    rgba(8,8,9,0.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 24px 70px rgba(0,0,0,0.32);
  backdrop-filter: blur(18px);
}

.path-tabs__grid a {
  min-height: 64px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 9px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  text-align: center;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.path-tabs__grid a.is-active {
  background: var(--ink);
  color: #050505;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.34);
}

.path-tabs__grid span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: inherit;
  opacity: 0.72;
}

.path-tabs__grid strong {
  max-width: 240px;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.12;
  font-weight: 600;
}

.route-map {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px auto 0;
}

.route-map article {
  min-height: 232px;
}

.vacancies-section {
  display: grid;
  gap: 0;
}

.vacancies-hero {
  position: relative;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 5.4vw, 72px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 229, 164, 0.16), transparent 31%),
    radial-gradient(circle at 20% 82%, rgba(143, 183, 255, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.072), rgba(255,255,255,0.012)),
    #050505;
  box-shadow: var(--shadow);
}

.vacancies-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to bottom, transparent, rgba(5,5,5,0.92));
  pointer-events: none;
}

.vacancies-visual,
.vacancies-copy {
  position: relative;
  z-index: 2;
}

.vacancies-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.034) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(255, 229, 164, 0.18), transparent 36%),
    #020202;
  background-size: 54px 54px, 54px 54px, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 34px 90px rgba(0,0,0,0.46);
}

.vacancy-screen {
  position: relative;
  z-index: 2;
  width: min(88%, 500px);
  display: block;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  object-fit: cover;
  opacity: 0.88;
  transform: translate3d(0, -10px, 0);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.46),
    0 0 0 1px rgba(255,255,255,0.04);
  animation: proofFloat 9s ease-in-out infinite;
}

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

.vacancies-visual::before {
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 164, 0.32), transparent 62%);
  filter: blur(24px);
  animation: vacancyPulse 5.8s ease-in-out infinite;
}

.vacancies-visual::after {
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06), transparent 24%, transparent 74%, rgba(0,0,0,0.72));
}

.vacancy-panel {
  position: relative;
  z-index: 2;
  width: min(360px, calc(100% - 42px));
  min-height: 176px;
  margin-top: -96px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 229, 164, 0.18), transparent 38%),
    rgba(5,5,5,0.72);
  backdrop-filter: blur(18px);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.44),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.vacancy-panel span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vacancy-panel strong {
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
  font-weight: 600;
}

.vacancy-panel em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.vacancy-chip {
  position: absolute;
  z-index: 3;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(0,0,0,0.58);
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.34);
  animation: vacancyChipFloat 5.4s ease-in-out infinite;
}

.vacancy-chip--age {
  left: 9%;
  top: 16%;
}

.vacancy-chip--speech {
  right: 10%;
  top: 22%;
  animation-delay: 0.45s;
}

.vacancy-chip--mind {
  right: 14%;
  bottom: 15%;
  animation-delay: 0.9s;
}

.vacancies-copy h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.92;
}

.vacancies-copy p {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(20px, 2.15vw, 28px);
  line-height: 1.2;
  font-weight: 600;
}

.vacancies-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.vacancies-grid {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: -8px;
}

.vacancies-grid article {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,229,164,0.09), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.022)),
    #0b0b0c;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.vacancies-grid span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vacancies-grid strong {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
}

.vacancies-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.audit-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  margin-top: 32px;
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 229, 164, 0.16), transparent 34%),
    radial-gradient(circle at 84% 72%, rgba(143, 183, 255, 0.09), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.016)),
    #050505;
  box-shadow: var(--shadow);
}

.audit-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, rgba(5,5,5,0.86));
  pointer-events: none;
}

.audit-copy {
  position: relative;
  z-index: 2;
}

.phone-big {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  text-decoration: none;
}

.audit-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2.5vw, 26px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.032)),
    rgba(8,8,9,0.74);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 24px 70px rgba(0,0,0,0.34);
  backdrop-filter: blur(18px);
}

.audit-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 600;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(0,0,0,0.38);
  color: var(--ink);
  padding: 12px 15px;
  outline: none;
}

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
  border-color: rgba(255, 229, 164, 0.54);
  box-shadow: 0 0 0 3px rgba(255, 229, 164, 0.12);
}

.audit-form textarea {
  resize: vertical;
  min-height: 112px;
  border-radius: var(--radius);
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox input {
  width: auto;
  margin-top: 3px;
}

.form-result {
  min-height: 24px;
  color: var(--gold-2);
  font-weight: 600;
}

.documents-band {
  padding-top: 36px;
  padding-bottom: 28px;
}

.documents-details {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.documents-details summary {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
}

.documents-details summary::-webkit-details-marker {
  display: none;
}

.documents-details summary > span {
  display: grid;
  gap: 6px;
}

.documents-details strong {
  color: var(--ink);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.04;
  font-weight: 600;
}

.documents-details em {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
}

.documents-details b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--soft);
  font-size: 20px;
  font-weight: 500;
  transition: transform 220ms ease, background 220ms ease;
}

.documents-details[open] b {
  transform: rotate(45deg);
  background: rgba(255,255,255,0.08);
}

.documents-details:not([open]) .documents-grid {
  display: none;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 0 18px;
}

.documents-grid a {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)),
    #0b0b0c;
  color: var(--soft);
  text-decoration: none;
}

.contact-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 40px;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
}

.contact-bar__brand {
  display: grid;
  gap: 6px;
}

.contact-bar__brand > span {
  color: var(--ink);
  font-weight: 600;
}

.contact-bar small {
  color: rgba(245,245,247,0.48);
  font-size: 12px;
  line-height: 1.4;
}

.contact-bar__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 16px;
}

.contact-bar a {
  color: var(--muted);
  text-decoration: none;
}

.contact-bar a:hover {
  color: var(--ink);
}

.cookie-choice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(720px, calc(100% - 32px));
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    rgba(10,10,11,0.92);
  box-shadow: 0 22px 70px rgba(0,0,0,0.5);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.cookie-choice.is-visible {
  display: grid;
}

.cookie-choice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.cookie-choice p {
  margin: 0;
  max-width: 48ch;
  color: rgba(245,245,247,0.66);
  font-size: 13px;
  line-height: 1.35;
}

.cookie-choice a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
  font-size: 13px;
  text-decoration: none;
}

.cookie-choice__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-choice__actions .button {
  min-height: 42px;
  padding: 0 14px;
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible:nth-child(2) { transition-delay: 70ms; }
[data-reveal].is-visible:nth-child(3) { transition-delay: 120ms; }
[data-reveal].is-visible:nth-child(4) { transition-delay: 170ms; }

.type-title .type-word {
  display: inline-block;
  white-space: nowrap;
}

.type-title .type-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.28em);
  filter: blur(8px);
}

.type-title.is-typing .type-char {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 360ms ease,
    transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 460ms ease;
  transition-delay: calc(var(--char-index) * 18ms);
}

@keyframes leadHalo {
  0%, 100% {
    opacity: 0.32;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.68;
    transform: scale(1.05);
  }
}

@keyframes leadGlow {
  0%, 100% {
    opacity: 0.46;
    transform: translate(calc(var(--visual-x) * 24px), calc(var(--visual-y) * 18px)) scale(0.92);
  }
  50% {
    opacity: 0.82;
    transform: translate(calc(var(--visual-x) * 24px), calc(var(--visual-y) * 18px)) scale(1.08);
  }
}

@keyframes leadSignalOne {
  0%, 100% { transform: translate3d(-18px, -8px, 0); opacity: 0.36; }
  50% { transform: translate3d(78px, 24px, 0); opacity: 1; }
}

@keyframes leadSignalTwo {
  0%, 100% { transform: translate3d(-26px, 10px, 0); opacity: 0.28; }
  50% { transform: translate3d(96px, -4px, 0); opacity: 0.94; }
}

@keyframes leadSignalThree {
  0%, 100% { transform: translate3d(-22px, 12px, 0); opacity: 0.22; }
  50% { transform: translate3d(64px, -26px, 0); opacity: 0.86; }
}

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

@keyframes heroAura {
  0%, 100% {
    opacity: 0.56;
    transform: translate3d(0, 16%, 0) scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: translate3d(0, 18%, 0) scale(1.04);
  }
}

@keyframes heroStageLight {
  0%, 100% {
    opacity: 0.42;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.03);
  }
}

@keyframes proofGlow {
  0%, 100% {
    opacity: 0.62;
    transform: translate3d(-2%, 2%, 0) scale(0.96);
  }
  50% {
    opacity: 0.96;
    transform: translate3d(2%, -1%, 0) scale(1.04);
  }
}

@keyframes proofFloat {
  0%, 100% {
    transform: translate3d(4%, 2%, 0) scale(1.04);
  }
  50% {
    transform: translate3d(1%, -2%, 0) scale(1.08);
  }
}

@keyframes vacancyPulse {
  0%, 100% {
    opacity: 0.42;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.86;
    transform: scale(1.06);
  }
}

@keyframes vacancyChipFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -9px, 0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .type-title .type-char {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .chapter,
  .chapter:nth-child(even),
  .smm-spotlight,
  .audit-section,
  .training-band,
  .proof-scene,
  .vacancies-hero {
    grid-template-columns: 1fr;
  }

  .position-grid,
  .ecosystem-grid,
  .ecosystem-note,
  .partners-compact,
  .route-map,
  .vacancies-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 92px;
  }

  .hero__lead {
    font-size: 28px;
  }

  .smm-spotlight__copy {
    max-width: 860px;
  }

  .smm-spotlight__profile {
    min-height: 400px;
  }

  .smm-card {
    right: max(0px, calc(50% - 300px));
  }

  .hero-stage,
  .chapter__media {
    min-height: 480px;
  }

  .story-rail {
    grid-auto-columns: minmax(360px, 78%);
  }

  .proof-scene {
    min-height: auto;
    gap: 18px;
  }

  .proof-copy h2 {
    max-width: 820px;
    font-size: 68px;
  }

  .proof-copy p {
    max-width: 640px;
  }

  .proof-visual {
    min-height: 480px;
  }

  .proof-number span {
    font-size: 168px;
  }

}

@media (max-width: 720px) {
  :root {
    --header-h: 91px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    padding: 10px 14px;
  }

  .global-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    overflow: visible;
    padding-bottom: 0;
  }

  .header-phone {
    min-height: 34px;
  }

  .product-nav {
    justify-content: center;
    gap: 6px 16px;
    padding: 8px 12px;
  }

  .section,
  .documents-band,
  .contact-bar {
    padding: 64px 14px;
  }

  .hero {
    padding: 28px 14px 22px;
    gap: 22px;
  }

  .hero h1 {
    font-size: 54px;
    line-height: 0.94;
  }

  .hero__lead {
    font-size: 22px;
  }

  .hero__actions,
  .audit-ribbon,
  .carousel-top {
    display: grid;
  }

  .hero-stage,
  .hero-stage video {
    min-height: 280px;
  }

  .hero-stage__meta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .audit-ribbon {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 13px 14px;
  }

  .audit-ribbon__copy {
    justify-content: center;
    text-align: center;
  }

  .audit-ribbon__copy strong {
    width: 100%;
    font-size: 16px;
  }

  .audit-ribbon__points {
    justify-content: center;
  }

  .audit-ribbon a {
    width: min(180px, 100%);
    justify-self: center;
  }

  .smm-spotlight {
    gap: 20px;
  }

  .smm-spotlight__copy h2 {
    font-size: 42px;
    line-height: 0.98;
  }

  .smm-spotlight__copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .smm-spotlight__actions {
    display: grid;
    margin-top: 20px;
  }

  .smm-spotlight__profile {
    min-height: 330px;
  }

  .smm-portrait {
    width: min(76vw, 268px);
  }

  .smm-card {
    right: 50%;
    bottom: 0;
    width: min(250px, calc(100% - 28px));
    transform: translateX(50%);
  }

  .contact-bar {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .contact-bar__links {
    justify-content: center;
  }

  .cookie-choice {
    bottom: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .cookie-choice p {
    max-width: none;
  }

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

  .section-head h2,
  .chapter h2,
  .audit-copy h2,
  .position-hero h2,
  .training-band h3 {
    font-size: 38px;
  }

  .proof-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ecosystem-grid article,
  .ecosystem-note,
  .route-map article {
    min-height: auto;
    padding: 16px;
  }

  .ecosystem-grid strong,
  .route-map strong {
    font-size: 24px;
  }

  .proof-scene {
    gap: 10px;
  }

  .proof-copy h2 {
    font-size: 44px;
    line-height: 0.98;
  }

  .proof-copy p {
    font-size: 18px;
  }

  .proof-actions {
    display: grid;
  }

  .proof-visual {
    min-height: 340px;
  }

  .proof-visual img {
    width: min(100%, 420px);
  }

  .proof-number span {
    font-size: 118px;
  }

  .proof-number em {
    margin-top: 10px;
    font-size: 18px;
  }

  .proof-facts {
    right: 50%;
    bottom: 4px;
    flex-wrap: wrap;
    justify-content: center;
    transform: translateX(50%);
  }

  .position-hero {
    min-height: auto;
    padding: 28px 18px;
  }

  .position-grid article {
    min-height: 210px;
    padding: 18px;
  }

  .training-band {
    gap: 16px;
  }

  .vacancies-hero {
    min-height: auto;
    gap: 18px;
    padding: 24px 16px;
  }

  .vacancies-visual {
    width: 100%;
    min-height: 220px;
    justify-self: center;
  }

  .vacancy-panel {
    width: min(292px, calc(100% - 28px));
    min-height: 118px;
    padding: 15px;
  }

  .vacancy-panel strong {
    font-size: 24px;
  }

  .vacancy-chip {
    min-height: 30px;
    padding: 0 11px;
  }

  .vacancies-copy h2 {
    font-size: 36px;
    line-height: 0.96;
  }

  .vacancies-copy p {
    font-size: 17px;
    line-height: 1.28;
  }

  .vacancies-actions {
    display: grid;
  }

  .vacancies-grid article {
    min-height: auto;
    padding: 14px;
  }

  .vacancies-grid strong {
    font-size: 22px;
  }

  .vacancies-grid p {
    display: none;
  }

  .story-rail {
    grid-auto-columns: minmax(288px, 88%);
  }

  .story-card,
  .story-card video,
  .story-card img {
    min-height: 480px;
  }

  .story-card > div {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .story-card h3 {
    font-size: 28px;
  }

  .chapter {
    min-height: auto;
    gap: 18px;
  }

  .chapter__media,
  .chapter__media video,
  .chapter__media img {
    min-height: 340px;
  }

  .metric-line {
    grid-template-columns: 1fr;
  }

  .documents-grid {
    grid-template-columns: 1fr;
  }

  .documents-details summary {
    min-height: 86px;
  }

  .documents-details strong {
    font-size: 28px;
  }

  .documents-details em {
    font-size: 14px;
  }

  .path-tabs {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .path-tabs__head {
    margin-bottom: 16px;
  }

  .path-tabs__head h2 {
    font-size: 38px;
  }

  .path-tabs__grid {
    min-height: 64px;
    gap: 4px;
    padding: 4px;
  }

  .path-tabs__grid a {
    min-height: 56px;
    padding: 7px 6px;
  }

  .path-tabs__grid span {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .path-tabs__grid strong {
    font-size: 12px;
    line-height: 1.05;
  }

  .audit-form {
    padding: 14px;
  }

  .audit-section {
    margin-top: 18px;
    padding: 28px 14px;
  }

  .audit-form input,
  .audit-form select,
  .audit-form textarea {
    min-height: 46px;
  }
}
