
:root{
  --bg:#0B0B0D;
  --panel:#111116;
  --muted:#A6A8B3;
  --text:#F3F4F6;
  --accent:#FF5A1F;
  --accent2:#F8D9C9;
  --line:rgba(255,255,255,.08);
  --shadow: 0 14px 38px rgba(0,0,0,.38);
  --radius: 18px;
  --max: 1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,90,31,.22), transparent 55%),
              radial-gradient(900px 500px at 80% 0%, rgba(255,255,255,.10), transparent 50%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
nav{
  position:sticky; top:0; z-index:50;
  background: rgba(11,11,13,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:34px; height:34px}
.brand strong{letter-spacing:.8px}
.nav-links{display:flex; gap:18px; align-items:center; color:var(--muted); font-weight:600}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px; font-weight:800;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  transition:.15s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, rgba(255,90,31,1), rgba(255,140,87,1));
  border:none; color:#0B0B0D;
}
.btn.ghost{background:transparent}
.hero{padding:56px 0 24px}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:26px; align-items:center}
@media(max-width: 900px){.hero-grid{grid-template-columns:1fr}}
.kicker{color:var(--accent2); font-weight:800; letter-spacing:2.2px; text-transform:uppercase; font-size:12px}
h1{font-size:54px; line-height:1.04; margin:10px 0 14px}
@media(max-width: 600px){h1{font-size:40px}}
.lede{color:var(--muted); font-size:18px; max-width:62ch}
.hero-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero-card .row{display:flex; justify-content:space-between; gap:10px; border-top:1px solid var(--line); padding-top:12px; margin-top:12px}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  background: rgba(255,90,31,.12);
  border:1px solid rgba(255,90,31,.35);
  color:var(--text);
  padding:8px 12px; border-radius:999px; font-weight:800; font-size:13px;
}
.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:16px}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:18px;
}
.card h3{margin:0 0 8px}
.muted{color:var(--muted)}
.section{padding:28px 0}
.section h2{font-size:30px; margin:0 0 10px}
hr.sep{border:none; border-top:1px solid var(--line); margin:18px 0}
.list{margin:10px 0 0; padding:0; list-style:none}
.list li{padding:10px 0; border-top:1px solid var(--line)}
.list li:first-child{border-top:none}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.pill{border:1px solid var(--line); border-radius:999px; padding:8px 10px; color:var(--muted); font-weight:700; font-size:13px}
.two{grid-column: span 6}
.four{grid-column: span 4}
.three{grid-column: span 3}
.twelve{grid-column: span 12}
@media(max-width: 900px){
  .two,.four,.three{grid-column: span 12}
}
.form{
  display:grid; gap:12px;
}
label{font-weight:800; font-size:13px; letter-spacing:.6px; text-transform:uppercase; color:var(--muted)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline: none;
}
textarea{min-height:110px; resize:vertical}
small.help{color:var(--muted)}
footer{padding:28px 0 48px; border-top:1px solid var(--line); margin-top:24px}
.footer-grid{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap}
.lang{
  display:flex; gap:8px; align-items:center;
}
.lang button{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
  font-weight:800;
}
.lang button.active{
  border-color: rgba(255,90,31,.45);
  color: var(--text);
  background: rgba(255,90,31,.12);
}
.notice{
  border-left: 4px solid var(--accent);
  padding: 10px 12px;
  background: rgba(255,90,31,.08);
  border-radius: 12px;
}

.btn.linkedin{border:1px solid rgba(10,102,194,.45); background:rgba(10,102,194,.05);} .btn.linkedin:hover{border-color:rgba(10,102,194,.9);} 
