/* Lorado Capital – New Dark Steel & Emerald Design */
* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background:#0c0c0c url('https://images.unsplash.com/photo-1614145929200-75f2b6e1f2e9?auto=format&fit=crop&q=90') fixed center/cover;
  color:#e2e8f0;
  line-height:1.7;
  letter-spacing:0.02em;
}

/* Hero – pure text, massive */
.hero {
  height:100vh; min-height:700px;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  text-align:center; padding:0 2rem;
  position:relative;
}
.hero::before {
  content:""; position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(12,12,12,0.9), rgba(12,12,12,0.7));
}
.hero h1 {
  font-size:7.5rem; font-weight:900; letter-spacing:-0.04em;
  color:#10b981; text-shadow:0 4px 20px rgba(0,0,0,0.8);
  position:relative; z-index:2;
}
.hero p {
  font-size:2rem; margin-top:1.5rem; opacity:0.9; position:relative; z-index:2;
}

/* Nav – thin emerald line */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(12,12,12,0.8); backdrop-filter:blur(12px);
  border-bottom:2px solid #10b981;
}
.nav-container {
  max-width:1100px; margin:0 auto; padding:1.5rem 2rem;
  display:flex; justify-content:space-between; align-items:center;
}
.nav-logo { font-size:1.6rem; font-weight:800; color:#10b981; }
.nav-menu { display:flex; gap:3rem; list-style:none; }
.nav-menu a { color:#e2e8f0; font-weight:600; font-size:1.05rem; }

/* Sections */
.container { max-width:900px; margin:0 auto; padding:6rem 2rem; text-align:center; }
h2 { font-size:3.2rem; color:#10b981; margin-bottom:2rem; }
p, li { font-size:1.25rem; max-width:720px; margin:1.5rem auto; }
.bullet-list { text-align:left; margin:4rem auto; }
.bullet-list li { margin:1.8rem 0; }

/* CTA button */
.btn {
  background:#10b981; color:#0f172a; padding:1.1rem 2.8rem;
  font-weight:800; font-size:1.2rem; border-radius:8px; margin-top:2rem;
  display:inline-block; transition:0.3s;
}
.btn:hover { background:#34d399; transform:translateY(-2px); }

/* Footer */
.footer {
  background:#000; color:#64748b; text-align:center; padding:4rem 2rem;
  border-top:1px solid #10b981;
}
.footer a { color:#10b981; }

/* Cookie banner */
.cookie-banner {
  background:#000; border-top:2px solid #10b981; color:#e2e8f0;
  padding:1.2rem; text-align:center; position:fixed; bottom:0; width:100%; z-index:1000;
}
.cookie-banner button { background:#10b981; color:#000; border:none; padding:0.6rem 1.4rem; margin-left:1rem; border-radius:6px; font-weight:700; }

/* Responsive */
@media (max-width:768px) {
  .hero h1 { font-size:4.5rem; }
  .hero p { font-size:1.5rem; }
  h2 { font-size:2.5rem; }
}

/* Mobile hero adjustments – tighter on phones */
@media (max-width: 768px) {
  .hero h1 { font-size: 4.2rem !important; line-height: 1.05 !important; }
  .hero p { font-size: 1.4rem !important; }
}
