:root{
  --bg:#f4faf5;
  --surface:#ffffff;
  --surface-2:#f8fcf8;
  --text:#123726;
  --muted:#67806f;
  --line:#d9eadc;
  --green:#149647;
  --green-2:#22a85a;
  --green-dark:#0d7b39;
  --pill:#e8f6ec;
  --danger:#b12727;
  --danger-bg:#ffeaea;
  --success:#0f7d3b;
  --success-bg:#e9fff0;
  --shadow:0 20px 60px rgba(9, 41, 20, .08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at top right, rgba(34,168,90,.08), transparent 28%),
    linear-gradient(180deg, #f7fbf8 0%, #f1f8f3 55%, #edf6ef 100%);
  color:var(--text);
}
a{text-decoration:none;color:inherit}
.container{width:min(1180px, calc(100% - 32px)); margin:0 auto}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:52px; padding:0 22px; border-radius:999px;
  border:1px solid var(--line); font-weight:800; font-size:16px; cursor:pointer;
}
.btn-light{background:#fff; color:var(--green-dark)}
.btn-green{background:linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%); color:#fff; border-color:transparent}
.btn-submit{
  width:100%; min-height:56px; border:none; border-radius:18px;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  color:#fff; font-size:18px; font-weight:800; cursor:pointer;
  box-shadow:0 14px 34px rgba(20,150,71,.18);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 14px; border-radius:999px;
  background:rgba(255,255,255,.16); font-size:13px; font-weight:800;
}
.muted{color:var(--muted)}
.card{background:var(--surface); border:1px solid var(--line); border-radius:26px; box-shadow:var(--shadow)}
.alert{padding:14px 16px; border-radius:16px; font-size:14px; font-weight:700; margin-bottom:16px}
.alert-error{background:var(--danger-bg); color:var(--danger); border:1px solid #f4c3c3}
.alert-success{background:var(--success-bg); color:var(--success); border:1px solid #c5eed3}
.topbar{padding:24px 0}
.topbar-inner{
  background:rgba(255,255,255,.72); backdrop-filter: blur(10px);
  border:1px solid var(--line); border-radius:24px; padding:18px 22px;
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.brand{display:flex; align-items:center; gap:14px}
.logo{
  width:54px; height:54px; border-radius:18px;
  background:linear-gradient(135deg, #d8efdd 0%, #eef9f0 100%);
  color:var(--green-dark); display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:28px;
}
.brand h1{margin:0; font-size:18px; line-height:1.15}
.brand p{margin:4px 0 0; color:var(--muted); font-size:14px}
.nav-btns{display:flex; gap:12px; flex-wrap:wrap}
.hero{padding-top:6px}
.hero-card{
  position:relative; overflow:hidden; padding:34px;
  background:linear-gradient(135deg, #149647 0%, #1ea653 55%, #7cd097 100%);
  color:#fff; border-radius:34px;
  display:grid; grid-template-columns:1.25fr .95fr; gap:24px;
  box-shadow:0 26px 70px rgba(20,150,71,.18);
}
.hero h2{margin:14px 0 14px; font-size:60px; line-height:1.02}
.hero p{margin:0 0 18px; font-size:18px; max-width:760px}
.pill-row{display:flex; gap:12px; flex-wrap:wrap; margin:22px 0 18px}
.pill{
  background:rgba(255,255,255,.16); color:#fff; padding:13px 16px;
  border-radius:999px; font-size:15px; font-weight:800;
}
.hero-side{
  align-self:center; padding:22px;
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.18);
  border-radius:26px;
}
.hero-side h3{margin:0 0 14px; font-size:22px}
.hero-line{
  display:flex; justify-content:space-between; gap:16px;
  padding:14px 0; border-bottom:1px dashed rgba(255,255,255,.35); font-weight:700;
}
.hero-line:last-child{border-bottom:none}
.stats{display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; margin:22px 0 24px}
.stat-card{padding:24px}
.stat-card small{display:block; color:var(--muted); margin-bottom:8px; font-size:15px}
.stat-card strong{display:block; font-size:38px; line-height:1.04; margin-bottom:8px}
.stat-card span{color:var(--muted); font-size:15px}
.grid-2{display:grid; grid-template-columns:1.1fr .9fr; gap:18px; margin-bottom:24px}
.table-wrap{overflow:auto}
table{width:100%; border-collapse:collapse}
th,td{text-align:left; padding:14px 8px; border-bottom:1px solid #edf4ee; font-size:15px}
th{font-size:13px; color:#5b7463; text-transform:uppercase; letter-spacing:.04em}
.mode{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 12px; border-radius:999px; background:var(--pill); color:var(--green-dark);
  font-size:12px; font-weight:800;
}
.section-card{padding:24px}
.section-card h3{margin-top:0; font-size:28px; line-height:1.1}
.steps{margin:0; padding-left:20px}
.steps li{margin:0 0 16px; font-size:16px; line-height:1.5}
.feature{
  background:var(--surface-2); border:1px solid var(--line);
  border-radius:20px; padding:18px; margin-bottom:14px;
}
.footer-note{padding:0 0 34px; color:var(--muted); font-size:14px}
.auth-wrap{
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  padding:40px 20px;
}
.auth-card{
  width:100%; max-width:1060px; display:flex; flex-wrap:wrap;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line); border-radius:34px; overflow:hidden; box-shadow:var(--shadow);
}
.auth-left{
  flex:1 1 50%; min-width:320px;
  padding:44px; color:#fff;
  background:linear-gradient(180deg, #16904a 0%, #138743 100%);
}
.title-left{margin:18px 0 14px; font-size:54px; line-height:1.02}
.desc-left{font-size:18px; line-height:1.45; margin:0 0 26px; max-width:520px}
.info-box{
  background:rgba(255,255,255,.14);
  border-radius:18px; padding:17px 18px; margin-bottom:14px; font-size:16px; font-weight:700;
}
.auth-right{
  flex:1 1 50%; min-width:320px; background:rgba(248,252,248,.96); padding:44px; min-height:620px;
  display:flex; flex-direction:column; justify-content:center;
}
.title-right{margin:0 0 10px; font-size:42px; line-height:1.05}
.desc-right{margin:0 0 22px; color:var(--muted); font-size:17px; line-height:1.45}
form{display:flex; flex-direction:column; gap:14px}
.row{display:flex; gap:14px; flex-wrap:wrap}
.row .field{flex:1 1 0; min-width:180px}
.field input{
  width:100%; min-height:56px;
  border:1px solid #d8e8db; border-radius:18px; background:#fff;
  padding:0 16px; font-size:16px; color:var(--text); outline:none;
}
.field input:focus{
  border-color:var(--green); box-shadow:0 0 0 4px rgba(20,150,71,.10);
}
.hint{font-size:13px; color:#7a9080; margin-top:-2px}
.auth-link{margin:10px 0 0; font-size:16px; color:#6f8577}
.auth-link a{color:var(--green-dark); font-weight:800}
@media (max-width: 980px){
  .hero-card,.stats,.grid-2{grid-template-columns:1fr}
  .hero h2{font-size:42px}
  .auth-left,.auth-right{flex:1 1 100%; min-width:100%}
  .auth-right{min-height:auto}
  .title-left{font-size:38px}
}
