
:root{
  --bg:#0b1220;
  --bg2:#0a162f;
  --card:#0f1b32;
  --card2:#0f203d;
  --text:#eaf0ff;
  --muted:#b8c6e6;
  --line: rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --blue:#2aa6ff;
  --blue2:#00d4ff;
  --white:#ffffff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 15% -10%, rgba(42,166,255,.25), transparent 60%),
              radial-gradient(900px 700px at 85% 10%, rgba(0,212,255,.16), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(1120px, 92vw); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#fff; color:#000; border-radius:10px; z-index:9999}

.topbar{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,.72);
  border-bottom: 1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand-mark{width:40px; height:40px; border-radius:10px; box-shadow: 0 10px 24px rgba(0,0,0,.25)}
.brand-name{font-weight:800; letter-spacing:.2px; line-height:1.05}
.brand-tag{font-size:12px; color: var(--muted); margin-top:2px}

.menu{display:flex; align-items:center; gap:18px}
.menu a{color:var(--muted); font-weight:600; font-size:14px}
.menu a:hover{color:var(--text)}
.menu .btn{margin-left:2px}

.menu-btn{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:12px;
  width:44px; height:44px;
  align-items:center; justify-content:center;
  color:var(--text);
}
.dots{display:flex; gap:6px}
.dots i{width:6px; height:6px; background:rgba(234,240,255,.9); border-radius:999px; display:block}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 999px;
  padding:10px 14px;
  font-weight:700;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#04101f;
  box-shadow: 0 14px 36px rgba(42,166,255,.22);
}
.btn-primary:hover{filter:brightness(1.03)}
.btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover{background: rgba(255,255,255,.10)}
.btn-lg{padding:12px 18px; font-size:15px}

.hero{
  position:relative;
  padding: 56px 0 28px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight:700;
  font-size:12px;
}
h1{font-size: clamp(34px, 4vw, 52px); line-height:1.05; margin:14px 0 10px; letter-spacing:-.6px}
.lead{color: var(--muted); font-size: 16px; line-height:1.6; max-width: 58ch}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.trust{display:flex; gap:14px; flex-wrap:wrap; margin-top:18px}
.trust-item{
  display:flex; align-items:center; gap:10px;
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}
.dot{width:10px; height:10px; border-radius:999px; background: rgba(42,166,255,.85); box-shadow: 0 0 0 4px rgba(42,166,255,.18)}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-logo{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
}
.hero-mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.mini-kicker{color: var(--muted); font-size:12px; font-weight:700}
.mini-strong{font-size:14px; font-weight:800}
.hero-note{
  margin-top:12px;
  padding: 12px 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  color: var(--muted);
  line-height:1.5;
}

.bg-grid{
  position:absolute; inset:-120px -20px auto -20px;
  height: 360px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 68px 68px;
  transform: perspective(900px) rotateX(58deg);
  transform-origin: top;
  opacity:.22;
  pointer-events:none;
}
.bg-glow{
  position:absolute; inset:auto -180px -340px -180px;
  height: 520px;
  background: radial-gradient(closest-side, rgba(42,166,255,.32), transparent 70%);
  pointer-events:none;
}

.section{padding: 64px 0}
.section.alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
h2{font-size: 34px; margin:0 0 10px; letter-spacing:-.3px}
.sub{color: var(--muted); margin: 0 0 22px; max-width: 70ch; line-height:1.6}

.cards{display:grid; gap:14px}
.cards.three{grid-template-columns: repeat(3, 1fr)}
.card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.card-icon{font-size:22px}
.card h3{margin: 10px 0 6px; font-size:18px}
.card p{margin:0; color: var(--muted); line-height:1.55}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.panel{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.panel h3{margin:0 0 10px}
.panel ul{margin:0 0 14px 18px; color: var(--muted); line-height:1.6}
.panel li{margin: 6px 0}

.chips{display:flex; flex-wrap:wrap; gap:10px}
.chips span{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight:700;
  font-size:13px;
}
.note{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,.18);
  color: var(--muted);
}

.steps{display:grid; gap:12px}
.step{
  display:flex; gap:14px; align-items:flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.step-num{
  width:34px; height:34px; border-radius: 12px;
  background: rgba(42,166,255,.20);
  border: 1px solid rgba(42,166,255,.28);
  display:flex; align-items:center; justify-content:center;
  font-weight:800;
}
.step-title{font-weight:800; margin-top:2px}
.step-text{color: var(--muted); margin-top:4px; line-height:1.55}

.cta-band{
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(42,166,255,.22);
  background: radial-gradient(900px 350px at 10% 0%, rgba(42,166,255,.20), transparent 55%),
              rgba(255,255,255,.04);
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.cta-band-title{font-weight:900; font-size:18px}
.cta-band-sub{color: var(--muted); margin-top:6px}

.contact-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 14px;
  align-items:start;
}
.contact-card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.contact-kicker{color: var(--muted); font-size:12px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; margin-top: 12px}
.contact-strong{display:inline-block; font-weight:900; font-size:22px; margin-top:8px}
.contact-link{display:inline-block; color: var(--text); margin-top:8px; line-height:1.35}
.contact-actions{display:flex; gap:10px; margin-top: 14px; flex-wrap:wrap}
.micro{margin-top: 14px; color: var(--muted); font-size:12px; line-height:1.5}

.form{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
label{display:flex; flex-direction:column; gap:8px; font-weight:700; color: var(--text); font-size:13px}
label span{color: var(--muted); font-weight:800; font-size:12px; letter-spacing:.02em}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(42,166,255,.55); box-shadow: 0 0 0 4px rgba(42,166,255,.14)}
textarea{resize:vertical}
.form-row{display:grid; gap:12px; margin-bottom:12px}
.form-row.two{grid-template-columns: 1fr 1fr}
.full{margin-bottom:12px}
.fineprint{margin-top: 10px; color: var(--muted); font-size:12px}

.footer{
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.15);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 14px;
  align-items:start;
}
.footer-brand{display:flex; gap:12px; align-items:flex-start}
.footer-brand img{width:42px; height:42px; border-radius:12px}
.footer-name{font-weight:900}
.footer-sub{color: var(--muted); margin-top:6px}
.footer-links{display:grid; gap:8px; color: var(--muted); font-weight:700}
.footer-links a:hover{color: var(--text)}
.footer-meta{color: var(--muted); line-height:1.6}
.footer-meta .muted{opacity:.8; margin-top:8px}

.thanks{
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  min-height:100vh;
  display:flex;
  align-items:center;
}
.thanks-card{
  margin: 10vh auto;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  text-align:center;
}
.thanks-mark{margin: 0 auto 12px; width:86px; height:86px; border-radius:20px}
.thanks h1{font-size: 34px}
.thanks p{color: var(--muted); max-width: 60ch; margin: 8px auto 18px; line-height:1.6}


/* Featured image section (Now Hiring) */
.section.feature{padding-top: 10px;}
.feature-grid{display:grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items:center;}
.feature-media{border-radius: 22px; overflow:hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: rgba(255,255,255,.04);}
.feature-media img{display:block; width:100%; height:auto;}
.feature-copy h2{margin-top:0;}
.feature-copy .note{margin-top: 12px; padding: 12px 14px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--muted);}

@media (max-width: 980px){
  .feature-grid{grid-template-columns: 1fr;}
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .cards.three{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
}
@media (max-width: 760px){
  .menu{display:none; position:absolute; top:66px; left:0; right:0; background: rgba(11,18,32,.96); border-bottom: 1px solid var(--line); padding: 14px; flex-direction:column; align-items:stretch}
  .menu.open{display:flex}
  .menu a{padding: 10px 10px; border-radius: 12px}
  .menu .btn{width:100%}
  .menu-btn{display:inline-flex}
}


/* Netlify form helpers */
.honeypot{display:none!important;}
.form-status{margin-top:12px;font-weight:600;}
.form-status.ok{color:#0b7a39;}
.form-status.err{color:#b42318;}
