/* assets/home.css — Homepage only (polished header + stronger logo + tightened CTA) */

:root{
  --bg:#070a12;
  --card:rgba(255,255,255,.04);
  --card2:rgba(255,255,255,.055);
  --border:rgba(255,255,255,.10);
  --border2:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.78);
  --muted2:rgba(255,255,255,.64);
  --accent:rgba(214,167,88,.85);
}

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

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  background:
    radial-gradient(1200px 700px at 30% 20%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(900px 600px at 70% 30%, rgba(214,167,88,.08), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{text-decoration:none;color:inherit}

.wrap{
  max-width:1120px;
  margin:0 auto;
  padding:22px 18px 40px;
}

/* ================= HEADER ================= */

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  padding:18px 20px;
  min-height:96px;

  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  flex:1 1 auto;
  min-width:0;
}

/* Responsive logo sizing that actually reads on iPhone */
.brandLogo{
  height:clamp(56px, 6.2vw, 90px);
  width:auto;
  max-width:min(560px, 72vw);
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.45));
}

.brandText{
  font-weight:900;
  letter-spacing:.14em;
  font-size:18px;
}

.topActions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

.pillBtn{
  padding:10px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  font-weight:800;
  white-space:nowrap;
}

/* ================= CONTENT ================= */

.card{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:18px;
  padding:18px;
}

.card.soft{
  background:rgba(255,255,255,.035);
  border-color:rgba(214,167,88,.28);
}

.hero{margin-top:16px}

.heroGrid{
  display:grid;
  grid-template-columns:1.25fr .9fr;
  gap:16px;
}

.hTitle{
  font-size:46px;
  font-weight:900;
  line-height:1.02;
  margin:0 0 12px;
}

.hSub{
  font-size:16.5px;
  color:var(--muted);
  line-height:1.55;
}

.bullets{
  padding-left:18px;
  color:var(--muted);
}

.bullets li{margin:8px 0}

.ctaRow{
  display:flex;
  gap:10px;
  margin-top:14px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.btn{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  font-weight:800;
}

.btn.primary{
  border-color:rgba(214,167,88,.45);
  background:rgba(214,167,88,.16);
}

.grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:16px;
}

.boxTitle{
  font-size:18px;
  font-weight:900;
}

.small{
  font-size:13px;
  color:var(--muted2);
}

.footerLine{
  margin-top:18px;
  text-align:center;
  font-size:12.5px;
  color:rgba(255,255,255,.55);
}

/* ================= RESPONSIVE ================= */

@media (max-width:980px){
  .heroGrid,
  .grid{grid-template-columns:1fr}
  .hTitle{font-size:40px}

  .topbar{
    min-height:90px;
    padding:16px 18px;
  }
}

@media (max-width:520px){
  .wrap{padding:18px 14px 34px;}

  .topbar{
    min-height:78px;
    padding:14px 14px;
    gap:12px;
  }

  .hTitle{font-size:34px}
}