:root{
  --bg: #0b1220;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --border: rgba(255,255,255,.14);
  --primary: #7c3aed; /* violeta profesional */
  --primary-2:#22c55e; /* verde acento */
  --shadow: 0 30px 80px rgba(0,0,0,.55);
  --radius: 22px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(124,58,237,.25), transparent 60%),
              radial-gradient(900px 700px at 80% 60%, rgba(34,197,94,.18), transparent 55%),
              var(--bg);
  overflow-x: hidden;
}

.page{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  position: relative;
}

/* Glows decorativos */
.bg-glow{
  position:absolute;
  width: 520px;
  height: 520px;
  filter: blur(90px);
  opacity: .55;
  z-index: 0;
}
.bg-glow--one{
  left: -140px;
  top: -160px;
  background: radial-gradient(circle, rgba(124,58,237,.9), transparent 60%);
}
.bg-glow--two{
  right: -160px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(34,197,94,.7), transparent 60%);
}

.card{
  width: min(980px, 100%);
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Layout interno */
.header{
  padding: 26px 26px 10px;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: var(--muted);
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary-2);
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

.title{
  margin: 14px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.subtitle{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 64ch;
}

/* Imagen hero */
.hero{
  margin: 18px 0 0;
  padding: 0 26px;
  position: relative;
}
.hero img{
  width: 100%;
  height: min(440px, 46vh);
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid rgba(255,255,255,.12);
  display: block;
  transform: translateZ(0);
}

.hero-caption{
  position: absolute;
  left: 46px;
  bottom: 16px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  font-size: 13px;
  color: rgba(255,255,255,.82);
}
.hero-caption .mini{
  color: rgba(255,255,255,.65);
}

/* Botones */
.actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 26px 6px;
}

.btn{
  appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
}
.btn:active{ transform: translateY(0px); }

.btn-primary{
  border: none;
  background: linear-gradient(135deg, rgba(124,58,237,1), rgba(59,130,246,1));
  box-shadow: 0 14px 36px rgba(124,58,237,.22);
}
.btn-primary:hover{
  background: linear-gradient(135deg, rgba(139,92,246,1), rgba(59,130,246,1));
}
.btn-secondary{
  color: rgba(255,255,255,.86);
}

/* Footer */
.footer{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 26px 22px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 10px;
}
.sep{ opacity: .55; }
.muted{ opacity: .85; }

/* Responsive */
@media (max-width: 640px){
  .header{ padding: 22px 18px 8px; }
  .hero{ padding: 0 18px; }
  .hero-caption{ left: 32px; bottom: 14px; }
  .actions{ padding: 16px 18px 6px; }
  .footer{ padding: 16px 18px 20px; flex-wrap: wrap; }
}