:root{
  --navy:#071b3a;
  --blue:#1d6fff;
  --teal:#10b7b0;
  --ink:#162033;
  --muted:#617089;
  --line:#dfe7f1;
  --bg:#f6f8fb;
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
.hidden{display:none!important}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
.siteHeader{
  position:sticky;
  top:0;
  z-index:20;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:0 32px;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}
.logo{display:flex;align-items:center;gap:10px;font-weight:900}
.logo span{
  width:38px;height:38px;border-radius:8px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:white;
}
.siteHeader nav{display:flex;align-items:center;gap:22px;color:#334155;font-weight:800}
.headerActions{
  display:flex;
  align-items:center;
  gap:8px;
}
.headerCta,.headerLogin,.primaryBtn,.secondaryBtn,.ghostBtn{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:7px;
  padding:0 16px;
  font-weight:900;
}
.headerCta,.primaryBtn{background:var(--navy);color:#fff}
.headerLogin{background:#fff;color:var(--navy);border:1px solid var(--line)}
.secondaryBtn{background:#fff;color:var(--navy);border:1px solid var(--line)}
.ghostBtn{background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.36)}
.hero{
  position:relative;
  min-height:680px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy);
}
.heroImage{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.heroOverlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(7,27,58,.92) 0%,rgba(7,27,58,.78) 36%,rgba(7,27,58,.15) 72%,rgba(7,27,58,.05) 100%);
}
.heroContent{
  position:relative;
  z-index:1;
  width:min(680px,calc(100% - 40px));
  margin-left:clamp(24px,8vw,120px);
  color:#fff;
  padding:84px 0;
}
.eyebrow{
  margin:0 0 10px;
  color:#42c8ff;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
}
.hero h1{
  margin:0;
  font-size:clamp(44px,7vw,82px);
  line-height:1.02;
  letter-spacing:0;
}
.heroCopy{
  margin:22px 0 0;
  max-width:560px;
  color:#dbeafe;
  font-size:18px;
  line-height:1.7;
  font-weight:700;
}
.heroActions{display:flex;gap:10px;flex-wrap:wrap;margin-top:30px}
.metrics{
  width:min(1180px,calc(100% - 40px));
  margin:-56px auto 0;
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:0 18px 50px rgba(22,32,51,.14);
}
.metrics article{padding:24px;border-right:1px solid var(--line)}
.metrics article:last-child{border-right:0}
.metrics b{display:block;font-size:22px;color:var(--navy)}
.metrics span{display:block;margin-top:6px;color:var(--muted);font-weight:700;line-height:1.5}
.section{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  padding:86px 0 0;
}
.sectionHead{max-width:680px;margin-bottom:26px}
.section h2{
  margin:0;
  font-size:clamp(30px,4vw,46px);
  line-height:1.18;
  letter-spacing:0;
}
.section p{color:var(--muted);font-weight:700;line-height:1.75}
.featureGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.featureGrid article,.priceGrid article,.contactForm,.flowList{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:0 12px 32px rgba(22,32,51,.06);
}
.featureGrid article{padding:24px}
.featureGrid span{color:var(--blue);font-weight:900}
.featureGrid h3,.priceGrid h3{margin:12px 0 0;font-size:20px}
.split{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:44px;
  align-items:start;
}
.flowList{
  list-style:none;
  margin:0;
  padding:12px;
}
.flowList li{display:grid;gap:4px;padding:18px;border-bottom:1px solid var(--line)}
.flowList li:last-child{border-bottom:0}
.flowList b{font-size:18px}
.flowList span{color:var(--muted);font-weight:700}
.pricing{padding-top:78px}
.priceGrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.priceGrid article{padding:26px}
.priceGrid strong{display:block;margin-top:12px;font-size:28px;color:var(--blue)}
.contact{
  display:grid;
  grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
  gap:44px;
  padding-bottom:92px;
}
.contactForm{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  padding:22px;
}
.contactForm label{display:grid;gap:7px;color:#334155;font-size:13px;font-weight:900}
.contactForm .full{grid-column:1/-1}
.contactForm input,.contactForm select,.contactForm textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:7px;
  padding:11px 12px;
  min-height:44px;
  background:#fff;
  color:var(--ink);
}
.contactForm textarea{resize:vertical}
.contactForm button{
  grid-column:1/-1;
  min-height:48px;
  border:0;
  border-radius:7px;
  background:var(--blue);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.formResult{grid-column:1/-1;margin:0;color:var(--navy)}
.footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:28px 32px;
  background:var(--navy);
  color:#dbeafe;
}
.footer strong{color:#fff}
@media (max-width:920px){
  .siteHeader{height:auto;align-items:flex-start;flex-direction:column;padding:16px}
  .siteHeader nav{flex-wrap:wrap;gap:12px}
  .headerActions{width:100%}
  .headerActions a{flex:1}
  .hero{min-height:620px}
  .heroOverlay{background:linear-gradient(180deg,rgba(7,27,58,.92),rgba(7,27,58,.62))}
  .heroContent{margin:0 auto;padding:70px 0}
  .metrics,.featureGrid,.split,.priceGrid,.contact,.contactForm{grid-template-columns:1fr}
  .metrics{margin-top:14px}
  .metrics article{border-right:0;border-bottom:1px solid var(--line)}
  .metrics article:last-child{border-bottom:0}
  .footer{flex-direction:column}
}

.loginPage{
  min-height:100vh;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,460px);
  background:#f6f8fb;
}
.loginVisual{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  padding:48px;
  overflow:hidden;
  background:var(--navy);
  color:#fff;
}
.loginVisual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.72;
}
.loginVisual::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(7,27,58,.18),rgba(7,27,58,.92));
}
.loginVisualContent{
  position:relative;
  z-index:1;
  max-width:720px;
}
.loginVisual h1{
  margin:0;
  font-size:clamp(42px,6vw,72px);
  line-height:1.05;
}
.loginVisual p{
  margin:18px 0 0;
  color:#dbeafe;
  font-size:18px;
  font-weight:800;
  line-height:1.7;
}
.loginPanel{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:36px;
  background:#fff;
}
.loginCard{
  width:100%;
  max-width:380px;
}
.loginCard .logo{
  margin-bottom:34px;
}
.loginCard h2{
  margin:0;
  font-size:30px;
  color:var(--navy);
}
.loginCard p{
  margin:10px 0 22px;
  color:var(--muted);
  font-weight:800;
  line-height:1.6;
}
.loginForm{
  display:grid;
  gap:13px;
}
.loginForm label{
  display:grid;
  gap:7px;
  color:#334155;
  font-size:13px;
  font-weight:900;
}
.loginForm input,.loginForm select{
  width:100%;
  min-height:46px;
  border:1px solid var(--line);
  border-radius:7px;
  padding:0 12px;
  color:var(--ink);
}
.loginForm button{
  min-height:48px;
  margin-top:4px;
  border:0;
  border-radius:7px;
  background:var(--navy);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.loginLinks{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
  font-weight:800;
}
.loginResult{
  min-height:20px;
  margin:2px 0 0;
  color:var(--blue);
  font-weight:900;
}
@media (max-width:920px){
  .loginPage{grid-template-columns:1fr}
  .loginVisual{min-height:360px;padding:32px 20px}
  .loginPanel{padding:28px 20px}
}

.opsPage{background:#f6f8fb}
.opsShell{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  padding:52px 0 90px;
}
.opsHero{
  margin-bottom:28px;
}
.opsHero h1{
  margin:0;
  color:var(--navy);
  font-size:clamp(34px,5vw,54px);
  line-height:1.08;
}
.opsHero p{
  color:var(--muted);
  font-weight:800;
  line-height:1.7;
}
.opsGrid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.65fr);
  gap:16px;
  align-items:start;
}
.opsLoginPanel{
  max-width:560px;
  margin-bottom:16px;
}
.opsLoginForm{
  display:grid;
  gap:12px;
}
.opsPanel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:0 14px 36px rgba(22,32,51,.07);
  padding:22px;
}
.opsPanelHead{
  margin-bottom:18px;
}
.opsPanelHead.row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.opsPanelHead h2{
  margin:0;
  color:var(--navy);
  font-size:24px;
}
.opsPanelHead p{
  margin:6px 0 0;
  color:var(--muted);
  font-weight:800;
}
.opsPanel label{
  display:grid;
  gap:7px;
  margin-bottom:12px;
  color:#334155;
  font-size:13px;
  font-weight:900;
}
.opsPanel input,.opsPanel select{
  width:100%;
  min-height:44px;
  border:1px solid var(--line);
  border-radius:7px;
  padding:0 12px;
  color:var(--ink);
}
.opsPanel button{
  min-height:44px;
  border:0;
  border-radius:7px;
  padding:0 16px;
  background:var(--navy);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.opsPanel form button,.opsPanel > button{
  width:100%;
}
.credentialBox{
  display:grid;
  gap:10px;
  padding:16px;
  border-radius:8px;
  background:#f8fafc;
  border:1px solid var(--line);
}
.credentialBox b{color:var(--navy)}
.credentialBox span{color:var(--muted);font-weight:800;line-height:1.6}
.credentialBox code{
  display:block;
  padding:10px 12px;
  border-radius:7px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--navy);
  font-weight:900;
}
.credentialBox a{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:7px;
  background:var(--blue);
  color:#fff;
  font-weight:900;
}
.academyListPanel{margin-top:16px}
.opsToolsPanel{margin-bottom:16px}
.opsButtonStack{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}
.opsButtonStack button{
  width:auto;
}
.restoreForm{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  align-items:end;
  padding-top:16px;
  border-top:1px solid var(--line);
}
.restoreForm label{
  margin:0;
}
.restoreForm .formResult{
  grid-column:1/-1;
}
.academyList{
  display:grid;
  gap:10px;
}
.academyItem{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:start;
  padding:16px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
}
.academyItem h3{
  margin:0 0 8px;
  color:var(--navy);
  font-size:20px;
}
.academyItem p{
  margin:5px 0;
  color:var(--muted);
  font-weight:800;
  line-height:1.5;
}
.academyItem small{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-weight:800;
  text-align:right;
}
.opsBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:82px;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  font-weight:900;
  color:#fff;
  background:#64748b;
}
.opsBadge.ok{background:#0f766e}
.opsBadge.trial{background:#1d6fff}
.opsBadge.off{background:#64748b}
.academyEmpty{
  padding:20px;
  border-radius:8px;
  background:#f8fafc;
  color:var(--muted);
  font-weight:900;
  text-align:center;
}
@media (max-width:920px){
  .opsGrid,.academyItem{grid-template-columns:1fr}
  .restoreForm{grid-template-columns:1fr}
  .academyItem small{text-align:left}
  .opsPanelHead.row{align-items:flex-start;flex-direction:column}
}
