/* Global tokens */

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black; 
}

/* Top-half background image (max 50vh), bottom stays black */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8) 90%, rgba(0,0,0,1) 100%),
    url('../assets/background.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -2;
  pointer-events: none;
}

.topbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(96vw, 1090px);
  height: 72px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  
}

.brand-mark {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-left: 8px;
}


.initiative {
  display: flex;
  align-items: center;
  color: #111827;

}
.initiative-logo {
  width: clamp(64px, 7vw, 86px);
  height: clamp(64px, 7vw, 86px);
 
}
.initiative-text {
  font-size: 12px;
  font-weight: 300;
  gap: 0px;
}


.content {
  min-height: 100vh;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-sm {
  display: block;
  width: 420px;
  height: auto;
  margin: 0 auto;
  margin-left: 0;
  margin: 0 auto;
}
.align{
  margin-top: 10px;
}

.tagline {
 padding-top: 0;
  position: relative;
  max-width:850px;
  margin: 0 auto 20px;
  color: #ffffff;
  opacity: 0.9;
  

}
.launching {
  font-size: 80px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #d4af37 0%, #d4af37 65%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
}
/* Responsive adjustments */
@media (max-width: 720px) {
  .header-inner { padding: 10px 14px; gap: 16px; }
  .brand-text.black { font-size: 16px; }
  .note-text { font-size: 12px; }
  .hero { padding-top: 110px; }
}

@media (max-width: 420px) {
  .note-text { display: none; }
}

/* Responsive layout: Mobile, Tablet, Desktop */
@media (max-width: 600px) {
  .topbar { height: 64px; padding: 0 14px; width: min(96vw, 980px); }
  .brand-mark { height: 32px; }
  .initiative-text { font-size: 11px; }
  .initiative-logo { width: 60px; height: 60px; }
  .content { padding: 88px 16px 24px; }
  .logo-sm { width: 72vw; }
  .tagline { max-width: 92vw; font-size: 14px; }
  .launching { font-size: 40px; }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .topbar { height: 68px; padding: 0 18px; width: min(96vw, 1040px); }
  .brand-mark { height: 38px; }
  .initiative-text { font-size: 12px; }
  .initiative-logo { width: 76px; height: 76px; }
  .content { padding: 110px 24px 32px; }
  .logo-sm { width: 56vw; }
  .tagline { max-width: 86vw; font-size: 15px; }
  .launching { font-size: 60px; }
}

@media (min-width: 1025px) {
  .topbar { height: 72px; padding: 0 20px; }
  .brand-mark { height: 42px; }
  .content { padding: 120px 0 40px; }
  .logo-sm { width: 420px; }
  .tagline { max-width: 850px; font-size: 16px; }
  .launching { font-size: 80px; }
}

