:root{
  --bg: #0b1220;
  --card: #0f1a32;
  --muted: #d1d5db;
  --accent: #D4AF37;
  --ring: #1F2937;
  --text: #ffffff;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 75% -10%, #182135 0%, #0b1220 60%, #0b1220 100%);
  color: var(--text);
  line-height:1.6;
}
.container{
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display:flex;
  flex-direction:column;
  gap:28px;
}
.header{
  display:flex;
  flex-direction: column;
  align-items:center;
  text-align:center;
  gap:16px;
  padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  backdrop-filter: blur(6px);
}
.header img{
  height:140px;
  width:auto;
  display:block;
}
.brand h1{
  margin:0;
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--accent);
}
.brand p{
  margin:6px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
h2{margin:0 0 6px; font-size: clamp(22px, 3.6vw, 32px); color: var(--accent)}
.lead{margin:0; color: var(--muted); font-size: 16px}
.features{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top: 16px;
}
.footer img {
  vertical-align: middle;
    height: 14px;
}
@media (max-width: 720px){
  .features{grid-template-columns: 1fr}
  .header img{height:100px}
}
.feature{
  background: rgba(255,255,255,0.06);
  border:1px dashed rgba(255,255,255,0.15);
  border-radius: 16px;
  padding:16px 14px;
}
.feature strong{display:block; font-weight:700; margin-bottom:6px; color: var(--accent)}
.contact{
  display:flex; gap:12px; flex-wrap:wrap; margin-top:12px; justify-content:center;
}
.contact a{
  padding: 10px 14px;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.contact a:hover{
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(212,175,55,.4);
}
.footer{
  color: var(--muted);
  font-size: 14px;
  text-align:center;
  margin-top: -10px;
}
small.dim{color: var(--muted)}
