:root{
  --bg:#05070c;
  --panel:#0b0b0b;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.12);
  --card:rgba(255,255,255,.06);
  --accent:#29cc6a;

  /* Sky tones */
  --sky1:#0b1630;
  --sky2:#0a0f1f;
  --sky3:#0a1a2e;
}

*{
  box-sizing:border-box;
}

html, body{
  margin:0;
  padding:0;
  color:var(--text);
  font-family: Arial, sans-serif;
  min-height:100%;
}

/* Sky background with gentle gradients */
body{
  position: relative;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(70,160,255,.18), transparent 55%),
    radial-gradient(900px 600px at 80% 18%, rgba(120,220,255,.12), transparent 60%),
    radial-gradient(900px 700px at 40% 80%, rgba(70,255,170,.06), transparent 60%),
    linear-gradient(180deg, var(--sky1) 0%, var(--sky2) 45%, var(--sky3) 100%);
}

/* Subtle grain texture */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-radial-gradient(circle at 10% 20%,
      rgba(255,255,255,.03) 0 1px,
      transparent 1px 6px);
  opacity: .22;
  mix-blend-mode: overlay;
}

/* Content wrapper */
.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 18px 70px;
  position: relative;
  z-index: 1;
}

/* Hero section */
.hero{
  padding: 26px 0 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}

.badge{
  display:inline-block;
  border:1px solid var(--line);
  color:var(--muted);
  padding:6px 10px;
  border-radius: 999px;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 14px;
}

/* Main title */
h1{
  margin:0 0 12px;
  font-weight: normal;
  font-size: 34px;
  line-height: 1.2;
}

/* Tagline: Piece by piece, human by human */
.tagline{
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  color: rgba(255,255,255,.78);
  letter-spacing: .2px;
}

/* Lead text */
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 820px;
}

/* Sections */
.section{
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

h2{
  margin: 0 0 10px;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: .2px;
}

p{
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

p strong{
  color: var(--text);
  font-weight: 600;
}

em{
  color: var(--text);
  font-style: normal;
  opacity: .95;
}

.small{
  font-size: 13px;
  color: rgba(255,255,255,.68);
}

/* Buttons */
.cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 8px;
}

.btn{
  display:inline-block;
  text-decoration:none;
  background:#fff;
  color:#000;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.btn.ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px 12px;
}

.num{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.card h3{
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.card p{
  margin:0;
  font-size: 13.5px;
}

/* Lists */
.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.list li{
  margin: 8px 0;
}

/* Quotes */
.quotes{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.q{
  border: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  border-radius: 14px;
  padding: 12px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

/* Footer */
.footer{
  padding-top: 26px;
  text-align: left;
}

.footer p{
  max-width: 820px;
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 780px){
  h1{
    font-size: 28px;
  }

  .steps{
    grid-template-columns: 1fr;
  }

  .quotes{
    grid-template-columns: 1fr;
  }
}
