/* Scaleup Exit */
:root{
  --bg:#ffffff;
  --text:#0b0f19;
  --muted:#5b6473;
  --line:#e9edf3;
  --alt:#f6f7fb;
  --shadow: 0 10px 30px rgba(11,15,25,0.06);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

.container{
  max-width:1160px;
  margin:0 auto;
  padding:0 22px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(255,255,255,0.9);
  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:20px;
}

.brand{display:flex;align-items:center;text-decoration:none}
.brand-logo{height:56px;width:auto;display:block}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.nav a{
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  font-size:14px;
  opacity:0.9;
}

.nav a:hover{opacity:1}

.nav-cta{
  padding:10px 14px;
  border:1px solid var(--text);
  border-radius:999px;
}

.hero{padding:44px 0 28px 0}

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:44px;
  align-items:start;
}

.hero-copy h1{
  margin:0;
  font-size:44px;
  letter-spacing:-0.02em;
  white-space:nowrap;
}

.lead{
  margin:14px 0 0 0;
  font-size:16px;
  color:var(--muted);
  max-width:54ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  border:1px solid var(--line);
  background:#fff;
}

.btn.primary{
  background:var(--text);
  color:#fff;
  border-color:var(--text);
}

.btn.ghost{background:#fff;color:var(--text)}

.hero-visual img{
  width:100%;
  height:auto;
  border-radius:24px;
  box-shadow: var(--shadow);
  display:block;
}

.hero-proof{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.proof-card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  background:#fff;
  box-shadow: 0 6px 18px rgba(11,15,25,0.04);
}

.proof-title{font-weight:800}
.proof-sub{font-size:13px;color:var(--muted);margin-top:4px}

.section{padding:72px 0}
.section.alt{background:var(--alt)}

.section-head{max-width:820px}
.section-head h2{margin:0;font-size:28px;letter-spacing:-0.01em}
.section-sub{margin:10px 0 0 0;color:var(--muted)}

.split{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:22px;
  align-items:start;
}

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:#fff;
  box-shadow: var(--shadow);
}

.card h3{margin:0 0 10px 0;font-size:16px}
.clean-list{margin:0;padding-left:18px;color:var(--muted)}
.clean-list li{margin:8px 0}

.video-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow: var(--shadow);
  padding:14px;
}

.video-top{display:flex;gap:10px;align-items:center;padding:6px 4px 12px 4px}
.pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:var(--alt);
  border:1px solid var(--line);
  font-size:12px;
  font-weight:700;
}
.pill.subtle{opacity:0.75}

.video-card video{
  width:100%;
  border-radius:16px;
  display:block;
  background:#000;
  max-height:560px;
}

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

.step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow: 0 6px 18px rgba(11,15,25,0.04);
}

.step-num{font-weight:900;font-size:12px;color:var(--muted)}
.step-body h3{margin:10px 0 6px 0;font-size:15px}
.step-body p{margin:0;color:var(--muted);font-size:13px}

.focus-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:20px;
}

.focus-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.focus-card img{width:100%;height:170px;object-fit:cover;display:block}
.focus-card h3{margin:14px 14px 6px 14px;font-size:15px}
.focus-card p{margin:0 14px 16px 14px;color:var(--muted);font-size:13px}

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

.case-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow: var(--shadow);
  padding:18px;
}

.case-top{display:flex;align-items:center;justify-content:space-between;gap:10px}
.case-title{font-weight:800}
.case-pill{
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  background:var(--alt);
  border:1px solid var(--line);
}

.case-card p{color:var(--muted);margin:12px 0 0 0}

.apply-form.full{
  margin-top:18px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow: var(--shadow);
  padding:18px;
}

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

.field{display:flex;flex-direction:column;gap:6px}
.field label{font-size:12px;font-weight:800}
.field input,.field select,.field textarea{
  padding:12px;
  border:1px solid var(--line);
  border-radius:14px;
  font-family:inherit;
  font-size:14px;
}
.field textarea{min-height:110px;resize:vertical}
.span2{grid-column:span 2}

.form-bottom{margin-top:14px}

.footer{
  border-top:1px solid var(--line);
  padding:30px 0;
  background:#fff;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footer-logo{height:40px;width:auto}
.footer-link{text-decoration:none;font-weight:800;color:var(--text)}
.small{color:var(--muted);font-size:12px;margin-top:6px}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr}
  .focus-grid{grid-template-columns:1fr 1fr}
  .case-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .span2{grid-column:span 1}
  .hero-proof{grid-template-columns:1fr}
  .hero-copy h1{white-space:normal}
}

@media (max-width: 520px){
  .focus-grid{grid-template-columns:1fr}
  .brand-logo{height:50px}
  .hero-copy h1{font-size:36px}
}
