:root{
  --bg: #070a07;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --border: rgba(255,255,255,.14);
  --accent: #69f0a8;
  --accent2: #a0ff5a;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0,0,0,.55);
}

*{ box-sizing: border-box; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:linear-gradient(180deg, #001e0a 0%, #070a07 30%);
}

a{ color: inherit; }

.container{
  max-width: 1100px;
  padding: 40px 18px 70px;
  margin: 0 auto;
}

.banner{
  margin: 0 0 18px;
  padding: 40px 30px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  font-weight: 400;
  line-height: 1.4;
}
  .banner strong{
     font-weight: 700;
     font-size: 20px;
  }
.banner-success{
  border-color: rgba(105,240,168,.35);
  background: rgba(105,240,168,.10);
  color: rgba(255,255,255,.92);
}
.banner-error{
  border-color: rgba(255,107,107,.35);
  background: rgba(255,107,107,.10);
  color: rgba(255,255,255,.92);
}

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

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card-pad{ padding: 22px; }

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(105,240,168,.10);
  border: 1px solid rgba(105,240,168,.25);
  color: rgba(255,255,255,.88);
  font-weight: 600;
  letter-spacing: .2px;
}

.badge i{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(105,240,168,.15);
}

h1{
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.06;
  margin: 14px 0 12px;
  letter-spacing: -0.5px;
}

.subtitle{
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
}

.features{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 600;
}
.price{
  display:flex;
  align-items:baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.price strong{
  font-size: 26px;
}
.price span{
  color: var(--muted);
  font-size: 13px;
}

.cover{
  position: relative;
  background:
    radial-gradient(700px 500px at 50% 10%, rgba(105,240,168,.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.55));
}
.cover img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  opacity: .98;
}

.form h2{
  margin: 0 0 10px;
  font-size: 20px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label{
  display:block;
  font-size: 12.5px;
  color: rgba(255,255,255,.78);
  margin: 10px 0 6px;
  font-weight: 600;
}

input, textarea, select{
  width:100%;
  color: var(--text);
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 11px 12px;
  outline: none;
}
textarea{ min-height: 88px; resize: vertical; }
input:focus, textarea:focus, select:focus{
  border-color: rgba(105,240,168,.45);
  box-shadow: 0 0 0 4px rgba(105,240,168,.10);
}

.actions{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-top: 16px;
}
.btn{
  appearance:none;
  border: 1px solid rgba(105,240,168,.35);
  background: linear-gradient(180deg, rgba(105,240,168,.20), rgba(105,240,168,.10));
  color: rgba(255,255,255,.92);
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
}
.btn:disabled{
  opacity: .6;
  cursor:not-allowed;
}
.btn-secondary{
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  font-weight: 700;
}
.hint{
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}
.error{
  margin-top: 10px;
  color: var(--danger);
  font-weight: 600;
  font-size: 13px;
}
.success{
  margin-top: 10px;
  color: rgba(105,240,168,.95);
  font-weight: 700;
  font-size: 13px;
}

.relay-box{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.relay-title{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.relay-title strong{ font-size: 13.5px; }
.relay-summary{
  margin-top: 8px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-line;
}

@media (max-width: 940px){
  .hero{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .price{ flex-direction: column; align-items:flex-start; }
}

