/* ============================================================
   The Black Lotus — Home page styles
   Depends on theme.css.
   ============================================================ */

/* ---------- Hero ---------- */
header.hero-wrap{
  padding:150px 0 110px;
  position:relative;
}
.hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
}
.hero .eyebrow{margin-bottom:26px}
h1{
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(42px,6vw,72px);
  line-height:1.02;
  letter-spacing:1px;
}
h1 .accent{color:var(--accent)}
.lead{
  margin-top:24px;
  font-size:18px;
  color:var(--muted);
  max-width:520px;
  font-weight:300;
}
.hero-actions{
  margin-top:38px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.stats{
  margin-top:52px;
  display:flex;
  gap:44px;
  flex-wrap:wrap;
}
.stat .num{
  font-family:var(--font-display);
  font-size:26px;
  font-weight:700;
  color:var(--text);
}
.stat .label{
  font-size:12.5px;
  color:var(--muted-2);
  letter-spacing:.5px;
}

.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
}
.hero-visual img{
  position:relative;
  width:min(360px,80%);
  filter:drop-shadow(0 20px 50px rgba(0,255,102,.22));
  animation:float 6s ease-in-out infinite;
}
@keyframes float{50%{transform:translateY(-14px)}}

/* ---------- Sections ---------- */
section{padding:var(--space-section) 0}
.section-head{max-width:640px;margin-bottom:56px}
.section-tag{
  font-size:12.5px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
}
.section-head h2{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(28px,4vw,40px);
  margin-top:14px;
  line-height:1.15;
}
.section-head p{
  margin-top:18px;
  color:var(--muted);
  font-size:17px;
  font-weight:300;
}

/* ---------- Mission split ---------- */
.mission{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  background:var(--surface);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-lg);
  padding:56px;
}
.mission .side-tag{
  font-size:12.5px;letter-spacing:2px;text-transform:uppercase;
  color:var(--accent);font-weight:600;
}
.mission h2{
  font-family:var(--font-display);font-weight:700;
  font-size:clamp(26px,3.5vw,36px);margin-top:14px;line-height:1.2;
}
.mission p{color:var(--muted);margin-top:20px;font-size:17px;font-weight:300}
.mission-quote{font-size:20px}

/* ---------- Values grid ---------- */
.values{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.value-card{
  background:var(--surface);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  padding:34px;
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.value-card:hover{
  transform:translateY(-6px);
  border-color:var(--border);
  background:var(--surface-2);
}
.value-icon{
  width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  background:var(--accent-soft);
  border:1px solid var(--border);
  margin-bottom:22px;
}
.value-icon svg{width:24px;height:24px;stroke:var(--accent);fill:none;stroke-width:1.6}
.value-card h3{
  font-family:var(--font-display);
  font-size:19px;font-weight:600;
  letter-spacing:.5px;
}
.value-card p{color:var(--muted);margin-top:12px;font-size:15px;font-weight:300}

/* ---------- CTA band ---------- */
.cta-band{
  text-align:center;
  background:linear-gradient(180deg,var(--surface),var(--bg));
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:70px 40px;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(60% 120% at 50% 0%,rgba(0,255,102,.12),transparent 70%);
  pointer-events:none;
}
.cta-band h2{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(26px,4vw,40px);
  position:relative;
}
.cta-band p{
  color:var(--muted);margin-top:16px;font-size:17px;font-weight:300;
  position:relative;
}
.cta-band .hero-actions{justify-content:center}

/* ---------- Responsive ---------- */
@media(max-width:880px){
  .hero{grid-template-columns:1fr;gap:40px}
  .hero-visual{order:-1}
  .mission{grid-template-columns:1fr;padding:38px 30px}
  .values{grid-template-columns:1fr}
}
