/* ====== RaSaCapMan - Final Light Theme (working) ====== */
:root{
  --bg: #fbfbf9;
  --paper: #ffffff;
  --text: #101828;
  --muted: #475467;
  --border: rgba(16,24,40,.10);
  --navBg: rgba(255,255,255,.72);
  --navy: #0b2a5b;
  --gold: #b08d2f;
  --max: 1120px;
  --radius: 18px;
}

/* Reset */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 20px 34px;
}

/* ===== NAV ===== */
.nav{
  position: sticky;
  top: 14px;
  z-index: 50;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;

  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--navBg);
  backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}

.brand img{
  height: 44px;
  width: auto;
  border-radius: 12px;
}

.brand-name{
  display:flex;
  flex-direction:column;
  gap:1px;
  line-height: 1.2;
}
.brand-name strong{
  font-weight: 650;
  letter-spacing: .01em;
  font-size: 14px;
}
.brand-name small{
  color: var(--muted);
  font-size: 12px;
}

.navlinks{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.navlinks a{
  font-size: 14px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 999px;
}
.navlinks a[aria-current="page"]{
  color: var(--text);
  font-weight: 700;
  background: rgba(11,42,91,.08);
}

@media (max-width: 880px){
  .nav{flex-direction:column; align-items:stretch; border-radius: 22px;}
  .brand{min-width: unset;}
  .navlinks{justify-content:flex-start;}
  .brand img{height: 40px;}
}

/* ===== HERO ===== */
.hero{
  margin-top: 22px;
  border: 1px solid var(--border);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset: -140px -120px auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(11,42,91,.16), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(176,141,47,.12), transparent 55%);
  filter: blur(2px);
}
.kicker{
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1{
  font-weight: 650;
  letter-spacing: .01em;
  font-size: 44px;
  line-height: 1.1;
  margin: 12px 0 12px;
  max-width: 920px;
}
.lead{
  font-size: 18px;
  color: var(--muted);
  max-width: 900px;
  margin: 0 0 18px;
}

@media (max-width: 900px){
  h1{font-size: 34px}
  .hero{padding: 26px}
}

/* ===== CARDS ===== */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.card{
  grid-column: span 4;
  border: 1px solid var(--border);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 18px;
}
.card h3{ margin: 0 0 8px; font-size: 16px; }
.card p{ margin: 0; color: var(--muted); font-size: 14px; }

@media (max-width: 900px){
  .card{grid-column: span 12}
}

/* ===== SECTIONS ===== */
.section{
  margin-top: 22px;
  border: 1px solid var(--border);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px;
}
.section h2{ margin: 0 0 10px; font-size: 26px; }
.section h3{ margin: 16px 0 6px; font-size: 15px; }
.small{ color: var(--muted); font-size: 13.5px; }
.hr{ height: 1px; background: var(--border); margin: 16px 0; }

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}
.btn:hover{ background: rgba(11,42,91,.06); }

/* ===== FOOTER ===== */
.footer{
  margin-top: 22px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  color: var(--muted);
  font-size: 13px;
}
.footer a{ text-decoration: underline; text-underline-offset: 3px; }