:root{
  --bg: #0e1a2b;
  --panel: rgba(18, 28, 48, 0.72);
  --panel-border: rgba(255,255,255,0.08);
  --text: #e9eef5;
  --muted: #c1cbdb;
  --shadow: rgba(0,0,0,.55);
  --accent: #3aa3ff;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(10,16,28,0.75)),
    url('/home_classic_main.jpg')
    center / cover no-repeat fixed,
    var(--bg);
}
.page{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: clamp(16px, 4vw, 40px);
  position:relative;
}
.brand img{
  width: clamp(200px, 28vw, 320px);
  height:auto;
  display:block;
  filter: drop-shadow(0 8px 24px var(--shadow));
}
.card{
  margin-top: clamp(12px, 2.5vh, 20px);
  width: min(880px, 92vw);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: clamp(18px, 3.2vw, 34px);
  box-shadow: 0 16px 60px var(--shadow);
  backdrop-filter: blur(6px);
}
h1{
  margin:0 0 .4rem 0;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height:1.2;
}
p{ color: var(--muted); line-height:1.65; margin: .35rem 0 .9rem }
.contact h2{
  margin-top: 1.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
ul{ margin: .4rem 0 0; padding-left: 1.1rem }
li{ margin: .25rem 0 }
a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.45);
}
a:hover{ border-bottom-color: rgba(255,255,255,.85) }
.footer{
  position:absolute;
  bottom: 14px;
  left: 0; right: 0;
  text-align:center;
  opacity:.9;
  color: var(--muted);
  font-size: .9rem;
}
@media (max-width: 520px){
  .card{ background: rgba(18,28,48,0.8) }
}
