/* Polar Gate — one-page temporary landing
   Dark corporate theme, responsive, no external deps.
*/

:root{
  --bg0:#070b12;
  --bg1:#0b1220;
  --bg2:#101a2f;
  --text:#e9eefb;
  --muted:#aab6d3;
  --line:rgba(255,255,255,.12);
  --glass:rgba(12,18,32,.62);
  --shadow: 0 30px 80px rgba(0,0,0,.55);
  --radius: 18px;
  --accent: #79a6ff;
  --accent2:#67e8f9;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background: linear-gradient(160deg, var(--bg0), var(--bg1) 45%, var(--bg2));
  overflow-x:hidden;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.bg{
  position:fixed;
  inset:-20%;
  background:
    radial-gradient(900px 600px at 15% 20%, rgba(121,166,255,.22), transparent 60%),
    radial-gradient(800px 500px at 85% 30%, rgba(103,232,249,.10), transparent 60%),
    radial-gradient(900px 700px at 45% 85%, rgba(121,166,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 30%, transparent 70%, rgba(255,255,255,.03));
  filter: blur(0px);
  pointer-events:none;
  opacity:1;
}

.topbar{
  position:relative;
  z-index:2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 0;
}
.brand-mark{
  width:44px;
  height:44px;
  border-radius: 14px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(103,232,249,.9), transparent 60%),
    radial-gradient(22px 22px at 70% 70%, rgba(121,166,255,.9), transparent 60%),
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand-text{ min-width:0; }
.brand-name{
  font-weight: 720;
  letter-spacing: .2px;
  font-size: 16px;
  line-height: 1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-sub{
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-decoration:none;
  color: var(--text);
  background: rgba(255,255,255,.06);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}
.btn:active{ transform: translateY(0px); }
.btn-icon{ opacity:.9; }

.wrap{
  flex: 1 0 auto;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 18px 0;
  position:relative;
  z-index:1;
}

.hero{
  padding: 34px 0 38px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 18px;
}

h1{
  margin: 0;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.2px;
  max-width: 980px;
}

.illustration{
  margin: 6px 0 2px;
  width: min(780px, 100%);
}
.illustration img{
  width:100%;
  height:auto;
  display:block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.card{
  width: min(820px, 100%);
  padding: 18px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}
.card p + p{ margin-top: 10px; }

.lead{
  color: var(--text) !important;
  font-weight: 600;
}

.footer{
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.08);
}
.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color: var(--muted);
  font-size: 13px;
}
.footer-left, .footer-right{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

@media (max-width: 640px){
  .topbar{
    align-items:flex-start;
    flex-direction:column;
  }
  .btn{ width: 100%; justify-content:center; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
}
