/* TRMEEZZ Coming Soon (Modern) */
:root{
  --bg:#070a12;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --border:rgba(255,255,255,.14);
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.10);
  --shadow:0 18px 60px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background: radial-gradient(900px 600px at 18% 8%, rgba(11,58,102,.32), transparent 60%),
              radial-gradient(850px 580px at 86% 22%, rgba(194,199,208,.20), transparent 60%),
              var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding: 40px 18px;
  position:relative;
  overflow:hidden;
}
.bg{position:absolute; inset:0; pointer-events:none;}
.glow{
  position:absolute;
  width: 560px; height: 560px;
  filter: blur(48px);
  opacity: .55;
  border-radius: 999px;
  animation: float 12s ease-in-out infinite;
}
.g1{ left: -180px; top: -180px; background: radial-gradient(circle at 35% 35%, rgba(11,58,102,.95), transparent 65%); }
.g2{ right:-180px; top: 40px; background: radial-gradient(circle at 40% 40%, rgba(194,199,208,.55), transparent 65%); animation-duration: 14s; }
@keyframes float{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(22px,14px) scale(1.03)}}
.dots{
  position:absolute; left:50%; top:0;
  width:min(900px,110%); height:240px;
  transform:translateX(-50%);
  opacity:.18;
  mask-image: radial-gradient(closest-side at 50% 18%, rgba(0,0,0,.9), transparent 75%);
}
.card{
  position:relative;
  width:min(820px,100%);
  border-radius: 26px;
  border:1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  box-shadow: var(--shadow);
  padding: 22px;
  backdrop-filter: blur(14px);
}
.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.logo{height:44px; width:auto;}
.preview{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  font-weight: 800;
}
.preview:hover{background:var(--panel2); color:var(--text); transform: translateY(-1px);}
h1{
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 16px 0 10px;
}
.grad{
  background: linear-gradient(135deg, rgba(194,199,208,1), rgba(11,58,102,1));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.lead{margin:0 0 18px; color:var(--muted); font-size:1.05rem; max-width: 70ch;}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 16px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-weight: 900;
  transition: transform .18s ease, background .18s ease;
}
.btn:hover{transform: translateY(-1px); background: var(--panel2);}
.btn.primary{ background: linear-gradient(135deg, rgba(11,58,102,.95), rgba(194,199,208,.45)); }
.btn.ghost{ background: transparent; }
.contacts{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
.c{
  display:flex; gap: 12px; align-items:flex-start;
  border:1px solid var(--border);
  background: var(--panel);
  border-radius: 18px;
  padding: 14px;
}
.ic{font-size: 1.25rem;}
.c b{display:block; margin-bottom: 4px;}
.c a{color: var(--muted); font-weight: 800;}
.c a:hover{color: var(--text); text-decoration: underline;}
.foot{
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top: 18px;
  padding-top: 14px;
  color: rgba(255,255,255,.70);
}
.muted{color:rgba(255,255,255,.62)}
@media (max-width: 720px){
  .contacts{grid-template-columns: 1fr;}
}
