:root{
  --bg0:#07080b;
  --bg1:#0b0c10;

  --text:#f6f7fb;
  --muted:#b7bdc9;
  --line:rgba(255,255,255,.12);

  /* High-contrast CTA */
  --cta:#6ea8ff;
  --cta2:#9bffd7;

  --card:rgba(255,255,255,.035);
  --card2:rgba(255,255,255,.06);
  --shadow: 0 12px 40px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(110,168,255,.18), transparent 60%),
    radial-gradient(800px 480px at 85% 20%, rgba(155,255,215,.12), transparent 55%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 100%);
  line-height:1.55;
}

.container{
  width:min(1050px, 92vw);
  margin:0 auto;
}

.header{
  position:sticky; top:0; z-index:10;
  background: rgba(11,12,16,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px;
}

.logo{
  font-weight:900;
  letter-spacing:.2px;
  font-size:18px;
}
.logo span{color:var(--cta)}

.badge{
  font-size:13px;
  color:var(--muted);
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
  white-space:nowrap;
}

.hero{
  padding:72px 0 34px;
}

.hero__inner{
  max-width:760px;
}

h1{
  margin:0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height:1.12;
  letter-spacing:-.2px;
}

.sub{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
}

.section{
  padding:38px 0 56px;
  border-top: 1px solid var(--line);
}

.cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.card{
  background: linear-gradient(180deg, var(--card) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 200px at 18% 12%, rgba(110,168,255,.22), transparent 60%),
    radial-gradient(380px 180px at 88% 18%, rgba(155,255,215,.14), transparent 55%);
  opacity:.45;
  pointer-events:none;
}

.card > *{position:relative}

.card__head h2{
  margin:0 0 6px;
  font-size:22px;
}

.card__head p{
  margin:0 0 14px;
  color:var(--muted);
}

.list{
  margin:0 0 16px;
  padding-left:18px;
}
.list li{margin:10px 0}

.section--apply{
  background: rgba(255,255,255,.015);
}

.apply-wrap{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}

.apply-head h2{
  margin:0 0 6px;
  font-size:26px;
}
.apply-head p{
  margin:0;
  color:var(--muted);
  max-width:820px;
}

.form{
  background: linear-gradient(180deg, var(--card2) 0%, rgba(255,255,255,.03) 100%);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:18px;
  max-width:820px;
  box-shadow: var(--shadow);
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-bottom:14px;
}

label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-weight:800;
  font-size:13px;
  color:var(--muted);
}

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.28);
  color:var(--text);
  outline:none;
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(110,168,255,.75);
  box-shadow: 0 0 0 4px rgba(110,168,255,.18);
}

textarea{resize:vertical}

.full{grid-column: 1 / -1}

.note{
  color:var(--muted);
  margin:10px 0 0;
  font-size:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  border:none;
  cursor:pointer;
  user-select:none;
  transition: transform .12s ease, filter .12s ease;
}

/* High-contrast CTA */
.btn--primary{
  color:#081019;
  background: linear-gradient(90deg, var(--cta) 0%, var(--cta2) 100%);
  box-shadow: 0 12px 30px rgba(110,168,255,.18);
}
.btn--primary:hover{filter:brightness(1.06)}
.btn--primary:active{transform: translateY(1px)}

.btn--block{
  width:100%;
}

.footer{
  border-top:1px solid var(--line);
  padding:20px 0;
  color:var(--muted);
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

/* Honeypot hidden */
.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px; height:1px;
  opacity:0;
}

/* Mobile */
@media (max-width: 820px){
  .cards{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .badge{display:none}
}
