:root{
  --bg:#07070b;
  --bg2:#0b0b10;
  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.62);
  --accent: #ff6b2c;
  --accent2:#ff9a6b;
  --shadow: 0 22px 70px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html, body { min-height: 100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 50% -50px, rgba(255,107,44,.22), transparent 60%),
    radial-gradient(900px 520px at 18% 20%, rgba(120,80,255,.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:rgba(255,255,255,.8)}
a:hover{text-decoration:underline}

.container{
  width:min(1120px,100%);
  margin:0 auto;
  padding:0 18px;
}

/* Topbar */
.topbar{
  position: sticky;
  top:0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(7,7,11,.58);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.logo{
  width:40px;height:40px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display:grid; place-items:center;
  color:#0b0b10;
  font-weight:900;
  box-shadow: 0 14px 40px rgba(255,107,44,.28);
}
.brandText .name{
  font-weight:850;
  letter-spacing:-0.3px;
  line-height:1;
}
.brandText .tag{
  margin-top:2px;
  font-size:12px;
  color: var(--muted);
}
.navlinks{
  display:flex;
  gap:16px;
  font-size:14px;
  color: var(--muted);
}
.navlinks a{
  text-decoration:none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius:999px;
}
.navlinks a:hover{
  background: rgba(255,255,255,.05);
  text-decoration:none;
}
@media (max-width: 780px){
  .navlinks{display:none;}
}

/* Hero */
.hero{
  padding: 35px 0 26px; /* space below sticky bar + extra breathing room */
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 14px;
}
@media (min-width: 980px){
  .hero{
    padding: 80px 0 26px;
  }
}

h1{
  margin:0;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.0;
  letter-spacing: -1.2px;
}
.accent{color: var(--accent);}
.sub{
  margin-top:50;
  max-width: 58ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--muted);
}

/* Card (signup) */
.card{
  width: min(760px, 100%);
  margin-top: 0px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,107,44,.30);
  background: rgba(255,107,44,.10);
  font-weight: 800;
  font-size: 14px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,.82);
}
.dot{
  width:9px;height:9px;
  background: var(--accent);
  border-radius:99px;
  box-shadow: 0 0 18px rgba(255,107,44,.55);
}
.cardTop{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}
.cardTitle{font-size:16px;font-weight:900}
.cardHint{font-size:13px;color:var(--muted)}

/* Form */
.form{margin:0}
.row{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
input[type="email"]{
  flex:1;
  min-width:240px;
  border-radius:16px;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: var(--text);
  outline:none;
  font-size: 15px;
}
input[type="email"]::placeholder{color: rgba(255,255,255,.45);}
button{
  border:none;
  border-radius:16px;
  padding: 14px 18px;
  background: var(--accent);
  color: #0b0b10;
  font-weight: 950;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 18px 60px rgba(255,107,44,.28);
}
button:hover{filter:brightness(1.03)}
.checks{
  margin-top:10px;
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
  font-size: 13px;
  color: var(--muted);
}
label{
  display:flex;
  gap:10px;
  align-items:center;
  padding: 8px 10px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.fine{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.52);
  line-height: 1.45;
}

/* Sections */
main{padding: 30px 0 80px;}
h2{
  text-align:center;
  margin: 72px 0 14px;
  font-size: 34px;
  letter-spacing: -0.6px;
}
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media(max-width: 980px){
  .steps{grid-template-columns: repeat(2, 1fr);}
}
@media(max-width: 560px){
  .steps{grid-template-columns: 1fr;}
}
.step{
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.num{
  width: 38px;height: 38px;
  border-radius: 999px;
  display:grid; place-items:center;
  font-weight: 950;
  background: rgba(255,107,44,.95);
  color: #0b0b10;
  margin-bottom: 12px;
}
.title{
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 8px;
}
.desc{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* FAQ */
.faq{
  width: min(860px, 100%);
  margin: 0 auto;
  display:grid;
  gap: 12px;
}
details{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 14px 16px;
}
summary{
  cursor:pointer;
  font-weight: 950;
  font-size: 16px;
  list-style:none;
}
summary::-webkit-details-marker{display:none;}
details p{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq details p {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin: 0;
  margin-top: 0; /* <-- add this */
  transition:
    max-height 280ms ease,
    opacity 200ms ease,
    margin-top 280ms ease; /* <-- make same duration */
}

.faq details[open] p {
  opacity: 1;
  margin-top: 10px;
}


/* Footer full width */
.footer{
  width: 100%;
  /* margin-left: calc(50% - 50vw); */
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding: 28px 0;
  margin-top: 80px;
}
.footerGrid{
  display:flex;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
  align-items:flex-start;
}
.footerBrand{
  font-weight: 900;
  margin-bottom: 6px;
}
.footerText{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.footerLinks{
  display:grid;
  gap: 10px;
  font-size: 13px;
}
.footerLinks a{
  text-decoration:none;
  color: rgba(255,255,255,.72);
}
.footerLinks a:hover{text-decoration:underline}
