:root{
  --bg:#a56755;
  --card:#8f5647;
  --gold:#f0c66e;
  --text:#fff7ec;
  --muted:rgba(255,247,236,.8);
  --line:rgba(240,198,110,.3);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

.wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:24px;
}

.card{
  width:min(900px,100%);
  background:linear-gradient(180deg, rgba(143,86,71,.95), rgba(143,86,71,.85));
  border-radius:26px;
  border:1px solid var(--line);
  box-shadow:0 30px 70px rgba(0,0,0,.35);
  text-align:center;
  padding-bottom:28px;
}

.brand{
  padding:22px 20px 0px;
}

.logo{
  max-width:520px;
  width:100%;
  height:auto;
}

.content{
  padding:0 26px;
}

.subtitle{
  margin-top: 6px;
  margin-bottom: 6px;
  color:var(--gold);
  letter-spacing:.15em;
  text-transform:uppercase;
  font-size:12px;
}

.headline{
  font-size:36px;
  margin:10px 0;
}

.desc{
  max-width:520px;
  margin:0 auto 22px;
  font-size:15px;
  color:var(--muted);
}

.actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.btn{
  padding:12px 18px;
  border-radius:18px;
  font-weight:600;
  text-decoration:none;
  border:1px solid var(--line);
  transition:.2s ease;
}

.primary{
  background:var(--gold);
  color:#5a2f21;
}

.primary:hover{filter:brightness(1.05)}

.ghost{
  background:transparent;
  color:var(--text);
}

.ghost:hover{background:rgba(240,198,110,.15)}

.meta{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.metaItem{
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px 16px;
  min-width:220px;
}

.metaLabel{
  font-size:12px;
  color:var(--gold);
}

.metaValue{
  font-size:14px;
  color:var(--muted);
}

.footer{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:center;
  gap:10px;
  font-size:13px;
  color:var(--muted);
}

.dot{opacity:.6}

@media(max-width:520px){
  .headline{font-size:28px}
}
