:root{
  --bg: #0b1220;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);
  --brand: #6ee7ff;
  --brand2:#a78bfa;
  --accent:#34d399;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(110,231,255,.20), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(167,139,250,.18), transparent 50%),
    radial-gradient(900px 600px at 50% 90%, rgba(52,211,153,.12), transparent 55%),
    linear-gradient(180deg, #070b14, #0b1220 55%, #070b14);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 20px}
.muted{color:var(--muted); font-weight:650; line-height:1.55}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11,18,32,.85), rgba(11,18,32,.55));
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px;font-weight:800; letter-spacing:.2px}
.brand-top{font-size:14px;opacity:.95}
.brand-bottom{font-size:16px;margin-top:-2px}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, rgba(110,231,255,.9), rgba(167,139,250,.85));
  box-shadow: 0 10px 30px rgba(110,231,255,.18);
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.18);
}
.logo span{font-weight:900; color:#0b1220}
.links{display:flex; align-items:center; gap:18px;color:var(--muted);font-weight:600}
.links a{opacity:.92}
.links a:hover{opacity:1; color:var(--text)}
.cta{display:flex; align-items:center; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22)}
.btn.primary{
  background: linear-gradient(135deg, rgba(110,231,255,.95), rgba(167,139,250,.92));
  color:#0b1220;
  border-color: rgba(255,255,255,.25);
}
.btn.primary:hover{filter: brightness(1.02)}
.btn:disabled{opacity:.65; cursor:not-allowed; transform:none; filter:none}

.hero{padding:56px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
.headline{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius2);
  padding: 28px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.headline:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 300px at 20% 20%, rgba(110,231,255,.18), transparent 55%),
              radial-gradient(600px 320px at 80% 60%, rgba(167,139,250,.16), transparent 55%);
  pointer-events:none;
}
.headline > *{position:relative}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:7px 12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.kdot{width:8px;height:8px;border-radius:50%;background: var(--accent); box-shadow: 0 0 0 5px rgba(52,211,153,.15)}
h1{margin:14px 0 10px;font-size:clamp(30px, 3.6vw, 46px);line-height:1.08;letter-spacing:-.4px}
.sub{margin:0;color:var(--muted);font-size:16.5px;line-height:1.55;max-width:60ch}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.meta{display:flex; gap:14px; flex-wrap:wrap;margin-top:18px;color:var(--muted);font-weight:650;font-size:14px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 11px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}

.side{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 22px;
  display:flex; flex-direction:column; gap:14px;
  position:relative;
  overflow:hidden;
}
.side:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(520px 260px at 60% 10%, rgba(52,211,153,.12), transparent 60%);
  pointer-events:none;
}
.side > *{position:relative}
.profile{
  display:flex; gap:14px; align-items:center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.avatar{
  width:54px;height:54px;border-radius:18px;
  background: linear-gradient(135deg, rgba(52,211,153,.95), rgba(110,231,255,.90));
  border:1px solid rgba(255,255,255,.2);
  display:grid; place-items:center;
  color:#062016;
  font-weight:900;
}
.profile h3{margin:0;font-size:16px}
.profile p{margin:3px 0 0;color:var(--muted);font-weight:600;font-size:13.5px}

.facts{display:grid;grid-template-columns: 1fr 1fr;gap:10px}
.fact{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-weight:650;
  font-size:13.5px;
  line-height:1.25;
}
.fact strong{display:block;color:var(--text);font-size:14.5px;margin-bottom:4px}
.quote{
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border:1px dashed rgba(255,255,255,.18);
  color:var(--muted);
  font-weight:650;
  line-height:1.45;
}

section{padding:30px 0}
.section-title{
  display:flex; align-items:end; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  margin-bottom:14px;
}
.section-title h2{margin:0;font-size:26px;letter-spacing:-.2px}
.section-title p{margin:0;color:var(--muted);font-weight:600}

.cards{display:grid;grid-template-columns: repeat(3, 1fr);gap:16px}
.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 290px;
}
.card .tag{
  display:inline-flex; align-items:center; gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-size: 12.5px;
  font-weight:800;
  width: fit-content;
}
.price{margin:12px 0 6px;font-size:26px;font-weight:900;letter-spacing:-.3px}
.price span{font-size:13px;color:var(--muted);font-weight:750}
.card h3{margin:0;font-size:18px}
.card .desc{margin:8px 0 12px;color:var(--muted);font-weight:650;line-height:1.5}
ul{margin:0; padding-left: 18px; color:var(--muted); font-weight:650; line-height:1.55}
li{margin:6px 0}
.card .grow{flex:1}
.card .actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
.card.featured{
  border-color: rgba(110,231,255,.35);
  background: linear-gradient(180deg, rgba(110,231,255,.10), rgba(255,255,255,.03));
  transform: translateY(-2px);
}
.card.featured:before{
  content:"Most Popular";
  position:absolute;
  top:14px; right:14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(110,231,255,.16);
  border: 1px solid rgba(110,231,255,.35);
  color: rgba(255,255,255,.92);
  font-weight:900;
  font-size:12px;
}

.two-col{display:grid;grid-template-columns: 1fr 1fr;gap:16px;align-items:start}
.panel{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}

form{display:grid; gap:12px; margin-top:6px}
label{display:grid; gap:6px; font-weight:800; font-size:13px; color: rgba(255,255,255,.86)}
input, textarea{
  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;
  font-weight:650;
}
textarea{min-height:140px; resize:vertical}
input::placeholder, textarea::placeholder{color: rgba(255,255,255,.45)}
input:focus, textarea:focus{border-color: rgba(110,231,255,.42); box-shadow: 0 0 0 4px rgba(110,231,255,.12)}
.form-actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.note{color:var(--muted); font-weight:650; font-size:13px; line-height:1.45}

.holdWrap{display:grid; gap:10px; margin-top:6px}
.holdHint{
  display:flex; justify-content:space-between; gap:10px; align-items:center;
  color: var(--muted);
  font-weight:700;
  font-size:13px;
}
.progressOuter{
  height: 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}
.progressInner{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(52,211,153,.95), rgba(110,231,255,.95), rgba(167,139,250,.92));
  transition: width .04s linear;
}

.toast{
  display:none;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(52,211,153,.12);
  border:1px solid rgba(52,211,153,.28);
  color: rgba(255,255,255,.92);
  font-weight:750;
}
.status{
  padding: 12px 14px;
  border-radius: 16px;
  font-weight:800;
  line-height:1.4;
}

.footer{
  padding: 26px 0 42px;
  color: var(--muted);
  font-weight:650;
  border-top:1px solid var(--line);
  margin-top: 18px;
}
.footer-inner{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  align-items:center;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .two-col{grid-template-columns: 1fr}
  .links{display:none}
}
