:root{
  --bg:#f5f7fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e5e7eb;
  --shadow:0 20px 45px rgba(15,23,42,.08);

  --accent:#ff7a18;
  --accent2:#ff9a3d;
  --danger:#dc2626;

  --radius:18px;
  --radius2:14px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(255,122,24,.08), transparent 55%),
    radial-gradient(700px 420px at 100% 10%, rgba(255,154,61,.06), transparent 60%),
    var(--bg);
}

/* layout */
.vcl-wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:28px 16px;
}

.vcl-shell{
  width:min(980px, 100%);
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:18px;
}

/* hero */
.vcl-hero{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#ffffff;
  box-shadow:var(--shadow);
  padding:28px;
}

.vcl-brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}

.vcl-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  box-shadow:0 10px 25px rgba(255,122,24,.25);
}

.vcl-brand-title{
  margin:0;
  font-size:20px;
}

.vcl-brand-sub{
  margin:2px 0 0 0;
  font-size:13px;
  color:var(--muted);
}

.vcl-hero-title{
  margin:18px 0 10px;
  font-size:28px;
  letter-spacing:-.3px;
}

.vcl-hero-desc{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
  max-width:48ch;
}

.vcl-bullets{
  margin-top:18px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.vcl-bullets li{
  display:flex;
  gap:10px;
  font-size:14px;
  color:var(--muted);
}

.vcl-dot{
  width:10px;
  height:10px;
  margin-top:6px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
}

/* card */
.vcl-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.vcl-card-title{
  margin:0 0 6px;
  font-size:18px;
}

.vcl-card-sub{
  margin:0 0 18px;
  font-size:13px;
  color:var(--muted);
}

/* alert */
.vcl-alert{
  border:1px solid rgba(220,38,38,.25);
  background:rgba(220,38,38,.06);
  color:#991b1b;
  padding:10px 12px;
  border-radius:var(--radius2);
  font-size:13px;
  margin-bottom:12px;
}

/* form */
.vcl-field{margin-bottom:14px}

.vcl-label{
  display:block;
  margin-bottom:6px;
  font-size:12px;
  color:var(--muted);
}

.vcl-input{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--border);
  border-radius:var(--radius2);
  padding:10px 12px;
  background:#fff;
}

.vcl-input:focus-within{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(255,122,24,.15);
}

.vcl-input input{
  width:100%;
  border:0;
  outline:0;
  font-size:14px;
  color:var(--text);
}

.vcl-icon{
  width:18px;
  height:18px;
  color:#64748b;
}

.vcl-toggle{
  border:0;
  background:none;
  font-size:12px;
  cursor:pointer;
  color:var(--muted);
  padding:6px 8px;
  border-radius:8px;
}

.vcl-toggle:hover{
  background:#f1f5f9;
  color:var(--text);
}

/* actions */
.vcl-actions{margin-top:6px}

.vcl-btn{
  width:100%;
  border:0;
  padding:12px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(255,122,24,.25);
}

.vcl-btn:disabled{
  opacity:.6;
  cursor:not-allowed;
}

.vcl-hint{
  margin-top:12px;
  font-size:12px;
  color:#64748b;
}

/* responsive */
@media(max-width:860px){
  .vcl-shell{grid-template-columns:1fr}
  .vcl-hero{padding:22px}
  .vcl-card{padding:20px}
  .vcl-hero-title{font-size:24px}
}
