:root{
  --bg1:#0b0b10;
  --bg2:#141424;

  /* gold accent */
  --accent:#caa25c;
  --accent2:#f3d7a0;

  --text:#f3f2f7;
  --muted:rgba(243,242,247,.76);

  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.10);
}

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

body{
  margin:0;
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  background:
    radial-gradient(1200px 700px at 18% 12%, rgba(202,162,92,.22), transparent 55%),
    radial-gradient(900px 600px at 82% 30%, rgba(160,110,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

.wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:32px 18px;
}

.card{
  width:min(560px, 100%);
  border-radius:24px;
  padding:28px 26px;
  background:var(--card);
  border:1px solid var(--stroke);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.mark{
  width:56px;
  height:56px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-family:"Playfair Display", serif;
  font-size:32px;
  color:var(--bg1);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

h1{
  margin:0;
  font-family:"Playfair Display", serif;
  font-weight:600;
  letter-spacing:.2px;
  font-size:34px;
  line-height:1.05;
}

.sub{
  margin:3px 0 0 0;
  color:var(--muted);
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:12px;
}

.tagline{
  margin:18px 0 16px 0;
  font-size:15px;
  line-height:1.65;
  color:rgba(243,242,247,.92);
}

.muted{ color:var(--muted); }

.cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:6px;
}

.btn{
  text-decoration:none;
  padding:12px 14px;
  border-radius:14px;
  font-weight:500;
  font-size:14px;
  color:var(--bg1);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  transition: transform .12s ease, opacity .12s ease;
}

.btn.ghost{
  color:var(--text);
  background: transparent;
  border:1px solid var(--stroke);
}

.btn:hover{ transform: translateY(-1px); opacity:.98; }
.btn:active{ transform: translateY(0px); opacity:.96; }

.divider{
  height:1px;
  background: var(--stroke);
  margin:18px 0 14px 0;
}

.details{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  border:1px solid var(--stroke);
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
}

.fine{
  margin:16px 0 0 0;
  color:var(--muted);
  font-size:12px;
}
