
:root{
  --bg:#0b1220;
  --bg2:#0f1b31;
  --card:#111a2e;
  --text:#e9eef8;
  --muted:#b7c3da;
  --gold:#caa46a;
  --gold2:#e0c18a;
  --line:rgba(202,164,106,.25);
  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1000px 500px at 70% -10%, rgba(202,164,106,.18), transparent 60%),
              radial-gradient(900px 500px at 20% 10%, rgba(64,129,255,.10), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.70);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:34px; width:auto}
.brand .name{display:flex; flex-direction:column; line-height:1.1}
.brand .name strong{letter-spacing:.14em; font-size:14px}
.brand .name span{font-size:12px; color:var(--muted)}
.menu{display:flex; gap:18px; align-items:center; flex-wrap:wrap}
.menu a{font-size:13px; color:var(--muted); padding:8px 10px; border-radius:999px}
.menu a:hover{color:var(--text); background:rgba(255,255,255,.05)}
.menu .cta{color:var(--bg); background: linear-gradient(135deg, var(--gold), var(--gold2)); font-weight:650}
.menu .cta:hover{filter:brightness(1.05)}
.lang{
  display:flex; gap:8px; align-items:center;
  border-left:1px solid rgba(255,255,255,.08);
  padding-left:14px; margin-left:12px
}
.lang a{font-size:12px; color:var(--muted); padding:6px 8px; border-radius:10px; border:1px solid rgba(255,255,255,.10)}
.lang a.active{color:var(--text); border-color: rgba(202,164,106,.55); background: rgba(202,164,106,.12)}
.hero{
  position:relative;
  padding:78px 0 46px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(11,18,32,.96) 0%, rgba(11,18,32,.82) 50%, rgba(11,18,32,.35) 100%),
    var(--hero);
  background-size: cover;
  background-position: center;
  filter:saturate(1.05);
}
.hero .container{position:relative}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:7px 12px; border:1px solid rgba(202,164,106,.30);
  color:var(--gold2); border-radius:999px; font-size:12px;
  background: rgba(202,164,106,.10);
}
h1{margin:14px 0 10px; font-size:46px; line-height:1.08; letter-spacing:-.02em}
.lead{max-width:760px; color:var(--muted); font-size:18px; line-height:1.6}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:22px}
.btn{
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px; font-weight:650; font-size:13px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.btn.primary{border:none; color:var(--bg); background: linear-gradient(135deg, var(--gold), var(--gold2))}
.btn:hover{filter:brightness(1.06)}
.grid{
  display:grid; gap:16px;
  grid-template-columns: repeat(12, 1fr);
  margin: 26px 0 0;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:13px; line-height:1.6}
.span-4{grid-column: span 4}
.span-6{grid-column: span 6}
.span-8{grid-column: span 8}
.span-12{grid-column: span 12}
.section{padding:54px 0}
.section .head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:18px}
.section h2{margin:0; font-size:28px}
.section .sub{margin:0; color:var(--muted); max-width:780px; line-height:1.6}
.pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.pill{font-size:12px; color:var(--muted); border:1px solid rgba(255,255,255,.10); padding:7px 10px; border-radius:999px; background: rgba(255,255,255,.04)}
.split{display:grid; gap:18px; grid-template-columns: 1.2fr .8fr; align-items:stretch}
.media{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  min-height: 320px;
  background: var(--media) center/cover no-repeat;
  box-shadow: var(--shadow);
}
.footer{
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
}
.footer .cols{display:grid; gap:18px; grid-template-columns: 1.2fr .8fr}
small, .fine{color:rgba(183,195,218,.85); font-size:12px; line-height:1.6}
hr.sep{border:none; height:1px; background: rgba(255,255,255,.08); margin:18px 0}
.breadcrumb{color:var(--muted); font-size:12px}
.page-title{font-size:34px; margin:10px 0 8px}
.page-lead{color:var(--muted); max-width:860px; line-height:1.7}
ul.clean{margin:10px 0 0 18px; color:var(--muted); line-height:1.8}
@media (max-width: 920px){
  .split{grid-template-columns:1fr}
  h1{font-size:38px}
  .span-4,.span-6,.span-8{grid-column: span 12}
  .menu{display:none}
}
