:root{
  --bg:#0B0B0D;
  --card:rgba(21,21,28,.70);
  --stroke:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.65);
  --brand:#EE9033;
  --radius:18px;
  --shadow:0 10px 40px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1000px 500px at 18% 10%, rgba(238,144,51,.14), transparent 55%),
              rgba(11,11,13,1);
  background-repeat:no-repeat;
  color:var(--text);
  line-height:1.6;
}
a{color:inherit; text-decoration:none}
.wrap{max-width:980px; margin:0 auto; padding:40px 18px}
.top{
  margin-bottom:16px;
}
.back{
  display:inline-block;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color: var(--muted);
}
.back:hover{color:var(--text); background: rgba(255,255,255,.08)}
h1{margin:14px 0 0; font-size:34px; letter-spacing:-.4px}
.muted{margin:10px 0 0; color:var(--muted); font-size:14px}
.card{
  background: var(--card);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
  backdrop-filter: blur(14px);
}
h2{margin:18px 0 8px; font-size:18px}
p{margin:10px 0; color:rgba(255,255,255,.80)}
ul{margin:10px 0 0; padding-left:18px; color:rgba(255,255,255,.78)}
li{margin:6px 0}
a[href^="mailto"], a[href^="tel"], a:not(.back){
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.foot{
  margin-top:16px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.70);
  font-size:14px;
}
.foot a:hover{color:rgba(255,255,255,.92)}
@media (max-width:600px){
  h1{font-size:28px}
  .card{padding:18px}
}
