:root{
  --bg1:#06140c;
  --bg2:#0b2a16;
  --glass: rgba(255,255,255,.08);
  --glass2: rgba(255,255,255,.12);
  --stroke: rgba(255,255,255,.16);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --green: #38d26a;
  --green2:#1fbf57;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --radius: 22px;
  --radius2: 28px;
  --max: 980px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(56,210,106,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 0%, rgba(31,191,87,.12), transparent 55%),
    radial-gradient(900px 700px at 60% 90%, rgba(56,210,106,.12), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
}

.topbar{
  width:100%;
  padding:18px 18px 0;
  display:flex;
  justify-content:center;
}
.topbar-inner{
  width: min(var(--max), calc(100% - 36px));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  user-select:none;
}
.mark{
  width:42px; height:42px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(56,210,106,.95), rgba(31,191,87,.65));
  box-shadow: 0 10px 30px rgba(56,210,106,.18);
  position:relative;
}
.mark:before{
  content:"";
  position:absolute; inset:10px 12px 12px 10px;
  border-radius:12px;
  background: rgba(0,0,0,.18);
  transform: rotate(12deg);
  filter: blur(.2px);
  opacity:.7;
}
.brand h1{
  margin:0;
  font-size:18px;
  letter-spacing:.4px;
}
.brand small{
  display:block;
  margin-top:2px;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.2px;
}

.lang{
  display:flex;
  gap:10px;
  align-items:center;
}
.lang a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px; height:34px;
  border-radius:12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.lang a:hover{
  background: rgba(255,255,255,.10);
  text-decoration:none;
}

.hero{
  flex:1;
  display:flex;
  justify-content:center;
  padding:26px 18px 18px;
}

.card{
  width: min(var(--max), calc(100% - 36px));
  background: linear-gradient(180deg, var(--glass), rgba(255,255,255,.05));
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position:relative;
  overflow:hidden;
}

.card:before{
  content:"";
  position:absolute;
  inset:-120px -100px auto auto;
  width:320px; height:320px;
  background: radial-gradient(circle at 30% 30%, rgba(56,210,106,.35), transparent 60%);
  transform: rotate(18deg);
  filter: blur(2px);
  opacity:.9;
}

.card-inner{
  padding: 30px 26px 22px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
}

@media (max-width: 860px){
  .card-inner{ grid-template-columns:1fr; }
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(56,210,106,.10);
  border: 1px solid rgba(56,210,106,.18);
  color: rgba(255,255,255,.88);
  font-size:13px;
  letter-spacing:.2px;
}

.kicker .dot{
  width:8px;height:8px;border-radius:99px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(56,210,106,.12);
}

h2{
  margin:14px 0 10px;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: .2px;
}
@media (max-width: 520px){
  h2{ font-size: 34px; }
}

.lead{
  margin:0 0 16px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 52ch;
}

.bullets{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.bullets li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.bullets li span{
  margin-top:2px;
  width:18px;height:18px;
  border-radius:8px;
  background: rgba(56,210,106,.12);
  border: 1px solid rgba(56,210,106,.22);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color: var(--green);
  flex:0 0 auto;
}

.side{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.side h3{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:.2px;
}

.form{
  display:grid;
  gap:10px;
}
.row{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
input{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
input::placeholder{ color: rgba(255,255,255,.55); }

.btns{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:2px;
}
button,.btn{
  border:0;
  cursor:pointer;
  padding:12px 14px;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing:.2px;
}
.primary{
  background: linear-gradient(135deg, var(--green), var(--green2));
  color:#08160d;
  box-shadow: 0 14px 30px rgba(56,210,106,.18);
}
.primary:hover{ filter: brightness(1.02); }
.ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.90);
}
.ghost:hover{ background: rgba(255,255,255,.10); }

.note{
  margin:10px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 12.5px;
  line-height:1.45;
}

.footer{
  display:flex;
  justify-content:center;
  padding: 0 18px 18px;
}
.footer-inner{
  width: min(var(--max), calc(100% - 36px));
  color: rgba(255,255,255,.58);
  font-size: 12.5px;
  line-height: 1.45;
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  align-items:center;
  justify-content:space-between;
}

.fade-up{
  opacity:0;
  transform: translateY(10px);
  animation: fadeUp .9s ease forwards;
}
.delay-1{ animation-delay: .05s; }
.delay-2{ animation-delay: .15s; }
.delay-3{ animation-delay: .25s; }
.delay-4{ animation-delay: .35s; }

@keyframes fadeUp{
  to{ opacity:1; transform: translateY(0); }
}
