
:root{
  --blue:#1e3a8a;
  --blueDark:#172554;
  --gold:#d4af37;
  --cream:#fffdf7;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--cream);
  color:#0f172a;
}
.nav{
  position:sticky; top:0; z-index:10;
  background:var(--cream);
  border-bottom:1px solid #e5e7eb;
  display:flex; flex-wrap:wrap; align-items:center; gap:12px;
  padding:10px 16px;
}
.brand{display:flex; align-items:center; gap:10px;}
.ram{width:40px; height:40px; border-radius:50%; background:var(--blue); color:var(--gold);
  display:flex; align-items:center; justify-content:center; font-size:20px; box-shadow:0 2px 6px rgba(0,0,0,.1)}
.name{color:var(--blue); font-weight:800; letter-spacing:.04em}
.tag{color:var(--blueDark); font-size:12px}
.tabs{margin-left:auto; display:flex; gap:6px; flex-wrap:wrap}
.tab{
  border:none; background:#f1f5f9; color:var(--blue);
  padding:8px 14px; border-radius:999px; font-weight:700; cursor:pointer; position:relative;
}
.tab.active{background:linear-gradient(0deg, rgba(212,175,55,.25), rgba(212,175,55,.25)); color:var(--blueDark)}

.hero{
  position:relative; overflow:hidden;
  background:linear-gradient(135deg, var(--blue), var(--blueDark));
  color:white;
}
.hero-inner{max-width:1100px; margin:0 auto; padding:64px 24px}
.hero h1{font-size:44px; margin:0 0 8px; font-weight:800}
.hero-quote{opacity:.92; font-size:18px}
.hero-ctas{margin-top:24px; display:flex; gap:12px}
.btn{display:inline-block; padding:12px 18px; border-radius:14px; font-weight:800; text-decoration:none}
.btn.primary{background:var(--gold); color:var(--blueDark)}
.btn.ghost{border:1px solid rgba(255,255,255,.35); color:white}
.verse{margin-top:28px; display:flex; gap:8px; align-items:center; opacity:.85; font-size:14px}
.wave{position:absolute; left:0; right:0; bottom:0; width:100%}

main{max-width:1100px; margin:0 auto; padding:32px 24px}
.cards{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px}
.card{background:var(--cream); border-radius:16px; padding:18px; box-shadow:0 6px 16px rgba(0,0,0,.06)}
.card h3{margin:0 0 8px; color:var(--blue)}
.grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px}
.grid.two{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.grid.four{grid-template-columns:repeat(auto-fit,minmax(200px,1fr))}

.bullets{padding-left:18px}
.muted{color:#475569}

.footer{border-top:1px solid #e5e7eb; margin-top:32px; background:var(--cream)}
.footer .container{max-width:1100px; margin:0 auto; padding:22px 24px; display:flex; gap:12px; flex-wrap:wrap; justify-content:space-between; color:var(--blueDark)}

.fab{position:fixed; right:18px; bottom:18px; padding:12px 16px; border:none; border-radius:999px; font-weight:800;
  color:var(--blueDark); background:var(--gold); box-shadow:0 8px 18px rgba(0,0,0,.15); cursor:pointer}

.page{display:none}
.page-active{display:block}
