/* Static export based on your Next.js page, using the provided background image */
:root{
  --bg: #0b1020;
  --text: #e6e8ee;
  --muted: #a3a9b8;
  --ring: rgba(17, 24, 39, .8);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    url("./assets/bg.png") center/cover no-repeat fixed;
}

.page{
  min-height:100svh;
  display:flex;
  flex-direction:column;
}

.brand{
  position:fixed;
  top:24px;
  left:24px;
  z-index:10;
  padding:8px 12px;
  border-radius:12px;
  backdrop-filter: blur(4px);
}
.brand h2{
  margin:0;
  font-family: Outfit, Inter, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:.2px;
  font-size: clamp(20px, 2.2vw, 28px);
  color:#fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.hero{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 96px 16px 48px;
}

.hero-inner{
  width:min(92vw, 880px);
  padding: clamp(20px, 4vw, 40px);
  backdrop-filter: blur(6px);
}

.hero-title{
  margin:0 0 16px;
  font-family: Outfit, Inter, system-ui, sans-serif;
  font-weight:800;
  line-height:1.06;
  font-size: clamp(32px, 6vw, 64px);
  color:#fff;
}

.hero-sub{
  margin: 0 auto 24px;
  max-width: 760px;
  color: var(--text);
  opacity:.9;
  font-size: clamp(16px, 2.2vw, 20px);
}

.cta-row{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin: 8px 0 24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 12px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:700;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.btn:hover{ transform: translateY(-1px) }
.btn:active{ transform: translateY(0) scale(.98) }

.btn-primary{
  background: RGB(10, 54, 59);
  color: #e6f6ff;
  border-color: RGB(10, 54, 59);
}
.btn-primary:hover{ filter:brightness(1.02) }

.btn-ghost{
  background: RGB(10, 54, 59);
  color: #e6f6ff;
  border-color: #e6f6ff;
}

.note{
  margin-top: 24px;
  color: var(--text);
  opacity:.9;
}
.note p{ margin:.5rem 0; }

.footer{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 32px 16px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(2px);
}
