:root {
  --gold: #d7b24a;
  --gold-bright: #f0cf68;
  --black: #070707;
  --panel: #111111;
  --panel-2: #171717;
  --white: #f7f5ef;
  --muted: #aaa79f;
  --border: rgba(255, 255, 255, 0.10);
  --danger: #ff6b6b;
  --success: #58d68d;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.track-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .10;
  background-image: linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.07) 50%, transparent 50.2%);
  background-size: 140px 100%;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

.hero {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(215,178,74,.20), transparent 24%),
    linear-gradient(115deg, rgba(0,0,0,.92) 0 50%, rgba(0,0,0,.52)),
    repeating-linear-gradient(-20deg, rgba(255,255,255,.018) 0 1px, transparent 1px 9px),
    #080808;
}
.hero::after {
  content: "OZ-E";
  position: absolute;
  right: -40px;
  bottom: -160px;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(220px, 31vw, 500px);
  font-weight: 700;
  letter-spacing: -.09em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.04);
  transform: skewX(-7deg);
  user-select: none;
}
.nav { height: 96px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 3; }
.brand { display: inline-flex; flex-direction: column; line-height: .82; }
.brand-mark { font-family: "Rajdhani", sans-serif; font-weight: 700; font-size: 34px; letter-spacing: -.04em; }
.brand-sub { margin-top: 8px; font-weight: 800; font-size: 9px; letter-spacing: .36em; color: var(--gold); }
.nav-link { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding: 6px 0; }
.hero-content { position: relative; z-index: 2; padding-top: 115px; }
.eyebrow, .section-label { color: var(--gold-bright); font-size: 12px; letter-spacing: .23em; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: 13px; }
.eyebrow span { width: 42px; height: 2px; background: var(--gold); }
h1, h2, h3 { margin-top: 0; }
h1 {
  margin-bottom: 26px;
  max-width: 850px;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(67px, 9.5vw, 135px);
  line-height: .78;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
h1 em { color: var(--gold); font-style: normal; }
.hero-copy { color: #c6c3ba; max-width: 670px; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; }
.button { min-height: 54px; padding: 0 26px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.button.primary { background: var(--gold); color: #090909; }
.button.primary:hover { background: var(--gold-bright); }
.button.secondary { border: 1px solid var(--border); background: rgba(255,255,255,.02); }
.button.secondary:hover { border-color: var(--gold); }
.hero-stats { display: flex; gap: 0; margin-top: 85px; border-top: 1px solid var(--border); max-width: 850px; }
.hero-stats > div { padding: 24px 34px 0 0; min-width: 190px; }
.hero-stats > div + div { padding-left: 34px; border-left: 1px solid var(--border); }
.hero-stats strong, .hero-stats span { display: block; }
.hero-stats strong { font-family: "Rajdhani"; font-size: 24px; }
.hero-stats span { color: var(--muted); font-size: 12px; }

.role-section { padding: 125px 0 135px; display: grid; grid-template-columns: .8fr 1.5fr; gap: 80px; }
.role-section h2, .application-intro h2 { margin: 16px 0 0; font-family: "Rajdhani"; font-size: clamp(45px, 5vw, 70px); line-height: .95; text-transform: uppercase; letter-spacing: -.03em; }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.role-grid article { min-height: 260px; padding: 30px; background: var(--panel); border: 1px solid var(--border); transition: transform .2s ease, border-color .2s ease; }
.role-grid article:hover { transform: translateY(-5px); border-color: rgba(215,178,74,.55); }
.role-grid article > span { color: var(--gold); font-family: "Rajdhani"; font-size: 18px; font-weight: 700; }
.role-grid h3 { margin: 78px 0 10px; font-size: 18px; }
.role-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.application-section { background: #0e0e0e; border-top: 1px solid var(--border); padding: 125px 0; }
.application-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.application-intro { position: sticky; top: 40px; }
.application-intro > p { color: var(--muted); margin: 28px 0 36px; max-width: 430px; }
.privacy-note { display: grid; gap: 4px; border-left: 3px solid var(--gold); padding: 13px 0 13px 18px; }
.privacy-note strong { font-size: 14px; }
.privacy-note span { color: var(--muted); font-size: 12px; max-width: 390px; }
.application-form { background: var(--panel); border: 1px solid var(--border); box-shadow: var(--shadow); padding: 48px; }
.form-section-heading { display: flex; gap: 17px; align-items: flex-start; margin-bottom: 30px; }
.form-section-heading.separated { border-top: 1px solid var(--border); padding-top: 45px; margin-top: 48px; }
.form-section-heading > span { width: 36px; height: 36px; border: 1px solid rgba(215,178,74,.55); color: var(--gold); display: grid; place-items: center; font-family: "Rajdhani"; font-weight: 700; font-size: 13px; }
.form-section-heading h3 { margin: -2px 0 2px; font-size: 20px; }
.form-section-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.field-grid.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 9px; }
.field > span { font-size: 13px; font-weight: 700; }
.field > span b { color: var(--gold); }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #0b0b0b;
  color: var(--white);
  border-radius: 0;
  padding: 16px;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(215,178,74,.10); }
.field input::placeholder, .field textarea::placeholder { color: #67645e; }
.question-list { display: grid; gap: 26px; }
.question-field { position: relative; }
.question-field > span { display: grid; grid-template-columns: 34px 1fr; align-items: start; }
.question-field i { color: var(--gold); font-family: "Rajdhani"; font-style: normal; font-weight: 700; }
.question-field small { color: #6f6c65; text-align: right; margin-top: -6px; font-size: 11px; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 34px; color: #c6c3ba; font-size: 13px; cursor: pointer; }
.consent input { margin-top: 4px; accent-color: var(--gold); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-message { min-height: 26px; margin: 20px 0 12px; font-size: 13px; font-weight: 600; }
.form-message.error { color: var(--danger); }
.form-message.success { color: var(--success); }
.submit-button {
  width: 100%;
  height: 60px;
  border: 0;
  background: var(--gold);
  color: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: background .2s ease, opacity .2s ease;
}
.submit-button:hover { background: var(--gold-bright); }
.submit-button:disabled { opacity: .65; cursor: wait; }
.submit-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.button-loader { display: none; width: 17px; height: 17px; border: 2px solid rgba(0,0,0,.25); border-top-color: #000; border-radius: 50%; animation: spin .8s linear infinite; }
.submit-button.loading .button-loader { display: inline-block; }
.submit-button.loading svg { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

footer { padding: 42px 0; border-top: 1px solid var(--border); }
.footer-content { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 12px; }
.footer-brand { color: var(--white); }
.footer-brand .brand-mark { font-size: 25px; }
.footer-brand .brand-sub { font-size: 7px; }

@media (max-width: 980px) {
  .role-section, .application-layout { grid-template-columns: 1fr; }
  .role-grid { margin-top: 15px; }
  .application-intro { position: static; }
}
@media (max-width: 700px) {
  .shell { width: min(100% - 24px, 1180px); }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 90px; }
  h1 { font-size: clamp(55px, 20vw, 84px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { display: grid; grid-template-columns: 1fr; margin-top: 55px; }
  .hero-stats > div, .hero-stats > div + div { padding: 18px 0; border-left: 0; border-bottom: 1px solid var(--border); }
  .role-section, .application-section { padding: 85px 0; }
  .role-grid { grid-template-columns: 1fr; }
  .role-grid article { min-height: 190px; }
  .role-grid h3 { margin-top: 42px; }
  .application-form { padding: 25px 18px; }
  .field-grid.two-column { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 18px; text-align: center; }
}
