:root{
  --bg:#0b1220;
  --bg2:#0f2a2e;
  --card: rgba(226,232,240,0.06);
  --stroke: rgba(226,232,240,0.12);
  --text:#e2e8f0;
  --muted: rgba(226,232,240,0.78);
  --muted2: rgba(226,232,240,0.62);
  --accent:#22c55e;
  --accent2:#14b8a6;
  --shadow: 0 16px 48px rgba(0,0,0,0.35);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 70% 20%, rgba(34,197,94,0.18), transparent 60%),
              radial-gradient(1000px 600px at 20% 70%, rgba(20,184,166,0.12), transparent 60%),
              linear-gradient(160deg,var(--bg),var(--bg2));
  color:var(--text);
  line-height:1.55;
}

a{color:var(--text);text-decoration:none}
a:hover{opacity:0.9}
small{color:var(--muted2)}

.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.nav{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,0.65);
  border-bottom:1px solid var(--stroke);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px;font-weight:700}
.brand .mark{
  width:36px;height:36px;border-radius:12px;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow: 0 10px 28px rgba(34,197,94,0.20);
}
.menu{display:flex;gap:16px;flex-wrap:wrap;align-items:center}
.menu a{padding:8px 10px;border-radius:12px;color:var(--muted)}
.menu a.active, .menu a:hover{background:rgba(226,232,240,0.06); color:var(--text)}
.cta{display:flex;gap:10px;align-items:center}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(226,232,240,0.04);
  color:var(--text);
}
.btn.primary{
  border:none;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color:#062015;
  font-weight:700;
}
.btn.primary:hover{filter:brightness(1.05)}
.btn.small{padding:8px 12px;border-radius:12px;font-size:14px}

.hero{padding:56px 0 22px}
.hero-grid{display:grid;grid-template-columns: 1.1fr 0.9fr; gap:24px; align-items:center}
.kicker{color:var(--muted2); font-weight:600; letter-spacing:0.2px}
h1{margin:10px 0 12px; font-size: clamp(30px, 4vw, 46px); line-height:1.12}
.lead{color:var(--muted); font-size: 18px; max-width:56ch}
.hero-card{
  border:1px solid var(--stroke);
  background: rgba(226,232,240,0.04);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero-card img{width:100%;height:auto;display:block}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.badge{
  border:1px solid var(--stroke);
  background: rgba(226,232,240,0.03);
  padding:8px 10px;border-radius:999px;
  color:var(--muted2);font-size:14px
}

.section{padding:34px 0}
.section h2{margin:0 0 10px;font-size: clamp(22px, 3vw, 30px)}
.section p{color:var(--muted); margin:0 0 14px}
.grid-3{display:grid;grid-template-columns: repeat(3, 1fr); gap:16px}
.grid-2{display:grid;grid-template-columns: repeat(2, 1fr); gap:16px}
.card{
  border:1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.card h3{margin:6px 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted)}
.icon{width:48px;height:48px}
.split{
  display:grid;grid-template-columns: 1fr 1fr; gap:18px; align-items:start
}
.list{margin:0;padding-left:18px;color:var(--muted)}
.list li{margin:6px 0}
.hr{height:1px;background:var(--stroke);margin:18px 0}

.footer{
  padding:28px 0 40px;
  border-top:1px solid var(--stroke);
  background: rgba(11,18,32,0.55);
}
.footer-grid{display:grid;grid-template-columns: 1.2fr 0.8fr; gap:18px}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.note{color:var(--muted2);font-size:14px}
.inline{display:inline-flex;gap:10px;flex-wrap:wrap}

.form{
  display:grid;gap:12px
}
.input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(11,18,32,0.55);
  color: var(--text);
  outline:none;
}
textarea{min-height:140px;resize:vertical}
.label{font-size:14px;color:var(--muted2);margin-bottom:6px}

.notice{
  border:1px solid var(--stroke);
  background: rgba(226,232,240,0.03);
  border-radius: 14px;
  padding:12px;
  color: var(--muted2);
  font-size:14px;
}

.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: 14px;
  border:1px solid var(--stroke);
}
.table th, .table td{
  padding:12px;
  border-bottom:1px solid var(--stroke);
  text-align:left;
  color: var(--muted);
  vertical-align: top;
}
.table th{color:var(--text);background:rgba(226,232,240,0.04)}
.table tr:last-child td{border-bottom:none}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr; }
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .split{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}