:root{
  --bg:#0b1220;
  --panel:rgba(255,255,255,0.06);
  --panel2:rgba(255,255,255,0.04);
  --border:rgba(255,255,255,0.10);
  --text:#e8eefc;
  --muted:rgba(232,238,252,0.72);
  --muted2:rgba(232,238,252,0.55);
  --accent:#63b3ff;
  --accent-2:#6ee7b7;
  --shadow:0 10px 30px rgba(0,0,0,0.45);
  --radius:16px;
  --wrap:1100px;
}

*{ box-sizing:border-box; }
html, body{ min-height:100%; }
body{
  margin:0;
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Helvetica,Arial,sans-serif;
  background:
    radial-gradient(1200px 800px at 20% -20%, rgba(99,179,255,0.18), transparent 55%),
    radial-gradient(900px 700px at 90% 0%, rgba(110,231,183,0.12), transparent 50%),
    linear-gradient(180deg, #08111d 0%, #0b1220 100%);
  background-repeat:no-repeat;
  background-attachment:fixed;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(10px);
  background:rgba(11,18,32,0.75);
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  max-width:var(--wrap);
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:12px;
}
.brand{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand-logo{
  width:38px;
  height:38px;
  object-fit:contain;
  flex:0 0 auto;
}
.brand-logo-light{ display:none; }
.holding-page .brand-logo-dark{display:block}.holding-page .brand-logo-light{display:none}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .title{
  font-weight:800;
  font-size:16px;
  letter-spacing:.2px;
}
.brand .subtitle{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-left:auto;
}
.nav a{
  padding:8px 10px;
  border:1px solid transparent;
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
.nav a:hover{
  color:var(--text);
  border-color:var(--border);
  background:rgba(255,255,255,0.03);
}
.nav a.active{
  border-color:var(--border);
  color:var(--text);
  background:rgba(255,255,255,0.06);
}

.menu-toggle{
  margin-left:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.04);
  color:var(--text);
  cursor:default;
}
.menu-toggle .bars{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.menu-toggle .bars span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}

.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}

.holding-shell{
  max-width:var(--wrap);
  margin:0 auto;
  padding:40px 16px 56px;
}
.holding-hero{
  padding:32px;
  background:
    radial-gradient(circle at top right, rgba(99,179,255,0.14), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025)),
    rgba(11,18,32,0.88);
}
.holding-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.05);
  color:var(--accent);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.holding-hero h1{
  margin:0;
  font-size:clamp(34px, 5vw, 56px);
  line-height:1.02;
  letter-spacing:-.03em;
}
.holding-lead{
  margin:16px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
  max-width:760px;
}

.holding-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}
.holding-panel{
  padding:18px;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.04);
}
.holding-panel h2{
  margin:0 0 10px;
  font-size:16px;
  font-weight:800;
}
.holding-panel p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

.holding-footer{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.holding-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(99,179,255,0.14);
  border:1px solid rgba(99,179,255,0.22);
  color:#d9efff;
  font-size:13px;
  font-weight:700;
}
.holding-meta{
  color:var(--muted2);
  font-size:13px;
}

@media (max-width: 900px){
  .holding-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 820px){
  .nav{ display:none; }
}
@media (max-width: 640px){
  .holding-shell{ padding-top:24px; }
  .holding-hero{ padding:24px; }
  .holding-lead{ font-size:16px; }
}

/* holding page cleanup */
.holding-page .menu-toggle{display:none !important;}
