:root{
  --bg:#333333;
  --text:#FFFCFF;
  --accent:#EEE00B;
  --accent-2:#EF7B45;
  --muted:#799496;
  --container:1100px;
  --radius:12px;
  --shadow: 0 6px 18px rgba(0,0,0,0.35);
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

h4 {
  font-size: 1.4rem;
  color: #FFFCFF;
  font-weight: 800;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

.container{
  width:90%;
  max-width:var(--container);
  margin:0 auto;
}

/* HEADER */
.site-header {
  background-color: #333333;
  padding: 2rem 1rem; /* top/bottom more space for stacked layout */
  text-align: center;  /* center logo and nav */
}

.header-inner {
  display: flex;
  flex-direction: column; /* stack logo and nav vertically */
  align-items: center;
  justify-content: center;
  gap: 1rem; /* spacing between logo and nav */
}

/* Logo styling */
.brand {
  display: block;
  width: 100%;
  max-width: 800px; /* logo won’t grow beyond this */
}

.logo-img {
  width: 100%;  /* span full container width */
  max-height: 120px; /* maximum height so it doesn’t get too big */
  object-fit: contain; /* preserve aspect ratio */
}

/* Nav buttons below logo */
.nav-below-logo {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.nav a{color:var(--text); text-decoration:none; margin-left:16px; font-size:15px}
.nav .btn.small{padding:8px 12px; border-radius:8px; background:transparent; border:1px solid rgba(255,255,255,0.06)}
/* Optional: smaller screens */
@media (max-width: 600px) {
  .logo-img {
    height: 40px;
  }
}

/* HERO */
.hero{
  min-height:40vh;
  display:flex;
  align-items:center;
  position:relative;
  padding:48px 0;
  background-image: url('https://images.unsplash.com/photo-1521412644187-c49fa049e84d?auto=format&fit=crop&w=1600&q=60');
  background-size:cover;
  background-position:center;
}
.hero .overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(51,51,51,0.65), rgba(0,0,0,0.5));}
.hero-inner{position:relative; z-index:10; display:flex; align-items:center; justify-content:space-between; gap:24px}
.hero-copy{max-width:640px}
.hero h2{font-size:40px; margin:0 0 12px; font-weight:800; letter-spacing:-0.5px}
.lead{color:rgba(255,252,255,0.92); margin:8px 0 18px; font-size:18px}
.cta-row{display:flex; gap:12px; margin-bottom:8px}
.btn{display:inline-block; padding:14px 22px; border-radius:12px; text-decoration:none; cursor:pointer; border:0; font-weight:700}
.btn.primary{background:var(--accent); color:#111}
.btn.primary:hover{background:var(--accent-2); color:#fff}
.btn.ghost{background:transparent; color:var(--text); border:1px solid rgba(255,255,255,0.08)}
.small-note{font-size:13px; font-style: italic; color:rgba(255,255,255,0.8); margin-top:6px}

/* HOW SECTION */
.how-section{padding:48px 0}
.section-title{font-size:26px; margin-bottom:18px; color:var(--accent)}
.steps-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px}
.step-card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); padding:20px; border-radius:12px; box-shadow:var(--shadow)}
.step-num{background:rgba(255,255,255,0.05); width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:9px; margin-bottom:10px; font-weight:700; color:var(--text)}

/* WHY */
.why-section{padding:40px 0; background:linear-gradient(180deg, rgba(0,0,0,0.12), transparent)}
.why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.why-card{background:var(--bg); color:var(--text); padding:18px; border-radius:12px; box-shadow:var(--shadow)}

/* JOIN FORM */
.join-section{padding:48px 3rem; background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02)); border-radius:12px; margin:36px auto}
.waitlist-form{max-width:640px; margin-top:18px; display:flex; flex-direction:column; gap:12px}
label{font-weight:600; font-size:14px}
input[type="text"], input[type="email"], textarea{
  padding:12px 14px; border-radius:10px; border:1px solid rgba(255,255,255,0.06); background:rgba(0,0,0,0.18); color:var(--text); outline:none; font-size:15px;
}
textarea{min-height:110px; resize:vertical}
.checkbox-row{display:flex; align-items:center; gap:8px}
.req{color:var(--accent); font-weight:700}
.form-actions{margin-top:6px}
.form-feedback{margin-top:8px; color:var(--accent)}


/* CRED & FOOTER */
.cred-section{padding:26px 0; border-top:1px solid rgba(255,255,255,0.03)}
.footer-inner{display:flex; justify-content:space-between; align-items:center; padding:18px 0; color:rgba(255,255,255,0.7); font-size:13px}
.cred-text{font-size:18px; font-weight : bold; color:rgba(255,255,255,0.8); margin-top:6px}
/* small screens */
@media (max-width:880px){
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:1fr}
  .hero-inner{flex-direction:column; align-items:flex-start}
  .hero h2{font-size:32px}
}
@media (max-width:520px){
  .steps-grid{grid-template-columns:1fr}
  .nav{display:none}
  .hero{padding:36px 0}
}
