
body.intro-active {
  overflow: hidden;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #030712;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .7s ease, visibility .7s ease;
}

.intro-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #030712;
}

.intro-skip {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(7, 12, 24, 0.58);
  color: rgba(255,255,255,0.9);
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.intro-skip:hover {
  border-color: rgba(242,191,85,0.46);
}

@media (max-width: 768px) {
  .intro-video {
    object-fit: contain;
    background: #030712;
  }
  .intro-skip {
    right: 16px;
    bottom: 16px;
  }
}
:root {
  --bg: #030712;
  --bg-soft: #071225;
  --panel: rgba(8, 17, 35, 0.58);
  --panel-strong: rgba(9, 20, 42, 0.8);
  --text: #eef5ff;
  --muted: #9fb3d0;
  --gold: #f0bd4e;
  --gold-strong: #d99818;
  --gold-soft: rgba(240, 189, 78, 0.18);
  --blue: #1e6cff;
  --blue-soft: rgba(30, 108, 255, 0.22);
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(38, 80, 214, 0.18), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(240, 189, 78, 0.08), transparent 20%),
    linear-gradient(180deg, #01040a 0%, #030712 35%, #06101f 100%);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.7;
  animation: float 14s ease-in-out infinite;
}

.aurora-a {
  width: 42vw;
  height: 42vw;
  top: -10vw;
  left: -8vw;
  background: radial-gradient(circle, rgba(21, 88, 255, 0.35), transparent 70%);
}

.aurora-b {
  width: 34vw;
  height: 34vw;
  top: 18vh;
  right: -6vw;
  background: radial-gradient(circle, rgba(240, 189, 78, 0.2), transparent 70%);
  animation-delay: -4s;
}

.aurora-c {
  width: 46vw;
  height: 46vw;
  bottom: -18vw;
  left: 30vw;
  background: radial-gradient(circle, rgba(0, 112, 255, 0.16), transparent 70%);
  animation-delay: -8s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), rgba(0,0,0,0.25) 65%, transparent 100%);
  opacity: 0.35;
}

.particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.75) 0 1px, transparent 1.6px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.6) 0 1px, transparent 1.6px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.5) 0 1px, transparent 1.6px),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.45) 0 1px, transparent 1.6px);
  background-size: 260px 260px, 320px 320px, 360px 360px, 420px 420px;
  opacity: 0.28;
}

.deep-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 38%, rgba(0,0,0,0.38) 72%, rgba(0,0,0,0.82) 100%);
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header,
.section,
.footer {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 18px;
  z-index: 20;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 14px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-strong) 100%);
  box-shadow: 0 0 24px rgba(240, 189, 78, 0.45), 0 0 40px rgba(30, 108, 255, 0.18);
}

.brand-mark.small { height: 28px; }

.brand-text {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.22em;
  font-size: 0.9rem;
  white-space: nowrap;
}

.brand-text em {
  font-style: normal;
  color: #5ea0ff;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.nav a {
  white-space: nowrap;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

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

.section {
  padding: 72px 0;
}

.hero {
  min-height: min(820px, calc(100vh - 96px));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.84rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7eaefc;
  margin-bottom: 16px;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.cta-panel h2,
.contact-copy h2,
.registered-panel h2,
.lab-copy h2 {
  font-family: 'Cinzel', serif;
  line-height: 1.04;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.7rem, 5.1vw, 5.15rem);
  max-width: 10.5ch;
  text-wrap: balance;
}

.hero p,
.split-copy p,
.cta-panel p,
.contact-copy p,
.card p,
.timeline-step p,
.advantage-item p,
.statement-panel p,
.registered-panel p,
.dev-card p,
.development-heading p,
.lab-copy p,
.leader-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.hero p {
  max-width: 62ch;
  margin: 16px 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.btn-small { padding: 11px 16px; font-size: 0.92rem; white-space: nowrap; }

.btn-gold {
  background: linear-gradient(180deg, #f7ca62, #d89816);
  color: #111;
  box-shadow: 0 18px 35px rgba(217, 152, 22, 0.28);
}

.btn-ghost,
.btn-outline {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.12);
  color: var(--text);
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: rgba(240, 189, 78, 0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.metric {
  padding: 16px;
  border-radius: 18px;
}

.metric strong,
.card h3,
.timeline-step h3,
.advantage-item h3,
.contact-line strong,
.dev-card h3,
.leader-card h3 {
  display: block;
  font-size: 1.04rem;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

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

.logo-frame {
  position: relative;
  width: min(520px, 100%);
  padding: 16px;
  border-radius: 32px;
  overflow: hidden;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,189,78,0.12), transparent 35%, rgba(30,108,255,0.12));
  pointer-events: none;
}

.logo-frame img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 25px 80px rgba(0,0,0,0.45);
}

.hero-orbit,
.hero-shine {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.orbit-a {
  width: 120%;
  height: 120%;
  border: 1px solid rgba(30, 108, 255, 0.16);
  animation: spin 26s linear infinite;
}

.orbit-b {
  width: 86%;
  height: 86%;
  border: 1px solid rgba(240, 189, 78, 0.14);
  animation: spinReverse 21s linear infinite;
}

.hero-shine {
  width: 46%;
  height: 46%;
  background: radial-gradient(circle, rgba(30,108,255,0.26), transparent 70%);
  filter: blur(35px);
  bottom: 15%;
  animation: pulse 5.6s ease-in-out infinite;
}

.statement { padding-top: 18px; }

.statement-panel,
.cta-panel,
.registered-panel,
.lab-panel {
  padding: 36px;
  border-radius: 30px;
}

.statement-panel p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  text-align: center;
  max-width: 46ch;
  margin-inline: auto;
}

.registered-strip { padding-top: 18px; }
.registered-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, rgba(14,28,55,0.74), rgba(9,16,33,0.72));
}

.section-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

.section-heading h2,
.split-copy h2,
.cta-panel h2,
.contact-copy h2,
.registered-panel h2,
.lab-copy h2 { font-size: clamp(2.2rem, 4vw, 4rem); }

.cards-grid,
.development-grid,
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.timeline-step,
.contact-card,
.dev-card,
.leader-card {
  padding: 26px;
  border-radius: 24px;
}

.card h3,
.timeline-step h3,
.advantage-item h3,
.dev-card h3,
.leader-card h3 { margin: 0 0 10px; }
.card p,
.timeline-step p,
.dev-card p,
.leader-card p { margin: 0; }

.development-heading { max-width: 920px; }
.development-heading p { margin-top: 18px; }

.dev-card,
.leader-card {
  position: relative;
  overflow: hidden;
}

.dev-card::before,
.leader-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(240,189,78,0.08), transparent 45%, rgba(30,108,255,0.1));
  pointer-events: none;
}

.dev-tag,
.leader-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  color: #92baff;
  border: 1px solid rgba(255,255,255,0.08);
}

.lab-panel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), #ffde8a);
  box-shadow: 0 0 18px rgba(240, 189, 78, 0.45);
}

.advantage-panel {
  border-radius: 28px;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.advantage-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.advantage-item:last-child { border-bottom: 0; padding-bottom: 0; }

.advantage-item > span,
.timeline-step > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240,189,78,0.22), rgba(30,108,255,0.12));
  color: var(--gold);
  font-weight: 800;
}

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

.timeline-step { min-height: 100%; }
.timeline-step > span { margin-bottom: 16px; }

.cta-wrap { padding-bottom: 32px; }
.cta-panel { text-align: center; }
.cta-panel h2 { max-width: 15ch; margin-inline: auto; }
.cta-panel p { max-width: 52ch; margin: 18px auto 28px; }

.contact-card {
  display: grid;
  align-content: center;
  gap: 18px;
}

.contact-line {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-line span {
  display: block;
  color: #7eaefc;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer {
  padding: 18px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.16em;
  color: var(--text);
}

@keyframes float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0, 18px, 0) scale(1.03); }
}

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

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1080px) {
  .nav { display: none; }
  .hero,
  .split-section,
  .contact-section,
  .timeline,
  .cards-grid,
  .development-grid,
  .leadership-grid,
  .registered-panel,
  .lab-panel {
    grid-template-columns: 1fr 1fr;
  }
  .hero-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header {
    padding: 14px;
    gap: 12px;
  }
  .brand-text { font-size: 0.72rem; }
  .btn-small { display: none; }
  .section { padding: 54px 0; }
  .hero,
  .split-section,
  .contact-section,
  .timeline,
  .cards-grid,
  .development-grid,
  .leadership-grid,
  .registered-panel,
  .lab-panel {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 18px;
  }
  .hero-visual { min-height: auto; order: -1; }
  .logo-frame { width: min(100%, 520px); }
  .statement-panel,
  .cta-panel,
  .card,
  .timeline-step,
  .contact-card,
  .advantage-panel,
  .registered-panel,
  .dev-card,
  .leader-card,
  .lab-panel { padding: 22px; }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* V7 additions keeping V3 visual language */
.leadership-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.leader-card-photo {
  display: flex;
  flex-direction: column;
}

.leader-photo {
  position: relative;
  height: 340px;
  border-radius: 22px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 18%, rgba(240, 189, 78, 0.16), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(30, 108, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.leader-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.12);
}



.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}

.leader-photo span {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: #8fb8ff;
  white-space: nowrap;
}

.solutions-grid .solution-card,
.preregister-copy,
.preregister-form,
.mini-block {
  position: relative;
  overflow: hidden;
}

.solutions-grid .solution-card::before,
.preregister-copy::before,
.preregister-form::before,
.mini-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(240,189,78,0.07), transparent 42%, rgba(30,108,255,0.08));
  pointer-events: none;
}

.commercial-panel {
  margin-top: 18px;
}

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

.mini-block {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.mini-block h3,
.preregister-copy h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
}

.mini-block p,
.preregister-copy p,
.preregister-form label span,
.preregister-form input,
.preregister-form select,
.preregister-form textarea {
  color: var(--muted);
}

.preregister-wrap {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: start;
}

.preregister-copy,
.preregister-form {
  padding: 28px;
  border-radius: 28px;
}

.preregister-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.preregister-form label {
  display: grid;
  gap: 10px;
}

.preregister-form label.full {
  grid-column: 1 / -1;
}

.preregister-form label span {
  font-size: 0.83rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8db8ff;
}

.preregister-form input,
.preregister-form select,
.preregister-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.preregister-form input::placeholder,
.preregister-form textarea::placeholder {
  color: #83a0c7;
}

.preregister-form input:focus,
.preregister-form select:focus,
.preregister-form textarea:focus {
  border-color: rgba(240, 189, 78, 0.35);
  box-shadow: 0 0 0 3px rgba(240, 189, 78, 0.08);
  background: rgba(255,255,255,0.05);
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 1080px) {
  .leadership-grid--three,
  .commercial-columns,
  .preregister-wrap,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .preregister-form label.full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .leadership-grid--three,
  .commercial-columns,
  .preregister-wrap,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .leader-photo {
    height: 300px;
  }
  .preregister-copy,
  .preregister-form {
    padding: 22px;
  }
}


.form-status{margin-top:18px;min-height:24px;font-size:.95rem;line-height:1.5;color:var(--text-soft);}
.form-status.success{color:#9fe8c3;}
.form-status.error{color:#ffb3b3;}
.form-actions{flex-wrap:wrap;}


.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease;
}

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

.footer-copy {
  margin-top: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
}

.legal-page {
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.legal-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 80px;
}

.legal-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.legal-back {
  color: #f4c04d;
  text-decoration: none;
  font-weight: 600;
}

.legal-card {
  padding: 34px;
}

.legal-card h1 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 1.15rem;
}

.legal-card p, .legal-card li {
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

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

.legal-meta {
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}

.preregister-form select option {
  background: #0d1730;
  color: #eef5ff;
}




/* Intro page */
body.intro-page-body {
  margin: 0;
  background: #000;
  overflow: hidden;
  min-height: 100dvh;
}

.intro-page {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #000;
  overflow: hidden;
}

.intro-page-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: #000;
}

.intro-gate {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(7,18,37,.36), rgba(0,0,0,.86) 60%, rgba(0,0,0,.96) 100%);
  transition: opacity .45s ease, visibility .45s ease;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.intro-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-gate-inner {
  width: min(760px, 100%);
  text-align: center;
  padding: 34px 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(7,16,33,.56), rgba(4,9,18,.78));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 90px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
}

.intro-gate-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.intro-gate-logo {
  width: min(420px, 74vw);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(30,108,255,.12));
}

.intro-gate-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9dc0ff;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.intro-gate h1 {
  margin: 0 0 12px;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  color: #fff;
}

.intro-gate p {
  margin: 0;
  color: rgba(238,245,255,.78);
  font-size: 1.04rem;
  line-height: 1.7;
}

.intro-gate-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.intro-page-btn {
  border-radius: 999px;
  padding: 13px 22px;
  font: 600 14px/1 Inter, sans-serif;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease, border-color .18s ease;
}

.intro-page-btn:hover {
  transform: translateY(-1px);
}

.intro-page-btn--primary {
  color: #0b0f16;
  border: 1px solid rgba(242,191,85,.5);
  background: linear-gradient(180deg, #f4c65c, #d99818);
}

.intro-page-btn--ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}

@media (max-width: 768px) {
  .intro-page-video {
    object-fit: cover;
    object-position: center center;
  }

  .intro-gate {
    place-items: start center;
    padding-top: max(20px, calc(env(safe-area-inset-top) + 20px));
    padding-bottom: max(20px, calc(env(safe-area-inset-bottom) + 28px));
    padding-left: 16px;
    padding-right: 16px;
  }

  .intro-gate-inner {
    width: 100%;
    max-width: 540px;
    padding: 22px 16px;
    border-radius: 24px;
    margin: auto 0;
  }

  .intro-gate-logo {
    width: min(270px, 70vw);
  }

  .intro-gate-kicker {
    margin-bottom: 10px;
    font-size: .72rem;
    letter-spacing: .16em;
  }

  .intro-gate h1 {
    font-size: clamp(1.5rem, 7.6vw, 2.3rem);
    margin-bottom: 10px;
  }

  .intro-gate p {
    font-size: .98rem;
    line-height: 1.55;
  }

  .intro-gate-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .intro-page-btn {
    width: 100%;
    padding: 14px 18px;
  }
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (min-width: 1181px) {
  .hero {
    min-height: calc(100vh - 110px);
    align-items: start;
  }
  .hero-copy {
    padding-top: 28px;
  }
}

@media (min-width: 1200px) {
  .header, .section, .footer { width: min(calc(100% - 42px), 1220px); }
  .hero { gap: 28px; }
}


.careers-section .section-heading { margin-bottom: 28px; }
.careers-wrap { align-items: start; }
