/* styles.css (optional)
   This site will still look great without this file because the page includes inline CSS.
   Keep this for future pages / consistency.
*/

:root{
  --bg1:#0b1220;
  --bg2:#0f2342;
  --card: rgba(255,255,255,.92);
  --stroke: rgba(255,255,255,.16);
  --ink:#0b1220;
  --muted:#56657a;
  --navy:#132A4B;
  --yellow:#FFD230;
  --shadow: 0 30px 80px rgba(0,0,0,.28);
  --radius: 22px;
}

/* Base reset + defaults */
*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:#eaf0ff;
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(255,210,48,.16), transparent 60%),
    radial-gradient(900px 520px at 85% 20%, rgba(110,168,255,.18), transparent 60%),
    linear-gradient(160deg, var(--bg1) 0%, var(--bg2) 55%, #0b1220 100%);
  overflow-x:hidden;
}

/* Layout */
.wrap{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding: 34px 16px;
}

.shell{
  width: min(980px, 100%);
  position: relative;
}

.card{
  background: var(--card);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 44px);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

/* Header */
.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}

.brand{
  display:flex;
  align-items:center;
  min-width: 160px;
}

.logo-img{
  height: 42px;
  width: auto;
  display:block;
}

/* Coming soon badge */
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(19,42,75,.95);
  background: rgba(19,42,75,.08);
  border: 1px solid rgba(19,42,75,.14);
  white-space: nowrap;
}
.badge:before{
  content:"";
  width:10px;
  height:10px;
  border-radius:99px;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,210,48,.22);
}

/* Main */
.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:start;
  margin-top: 10px;
}

.kicker{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(19,42,75,.78);
  font-weight: 900;
  margin-bottom: 10px;
}

h1{
  margin: 0 0 12px;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #0e2242;
}

.lead{
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
  max-width: 70ch;
}

/* Side panel */
.panel{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  padding: 16px 16px 14px;
}
.panel h2{
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(19,42,75,.82);
}
.panel ul{
  margin:0;
  padding-left: 18px;
  display:grid;
  gap: 10px;
}
.panel li{
  color:#425468;
  line-height: 1.6;
  font-size: 14.5px;
}
.panel li strong{ color:#0b1220; }

/* Footer */
.footer{
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.10);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  color: #64748b;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 860px){
  .hero{ grid-template-columns: 1fr; }
  .badge{ margin-left:auto; }
  .top{ flex-wrap:wrap; }
}

@media (max-width: 480px){
  .logo-img{ height: 38px; }
}