:root{
  --red:#d21f2a;
  --blue:#1f5bd2;
  --ink:#0b1220;
  --muted:#5b6477;
  --bg:#ffffff;
  --card:#f6f7fb;
  --border:rgba(11,18,32,.12);
  --shadow:0 14px 42px rgba(11,18,32,.12);
  --radius:18px;
  --max:1100px;
  --green:#18a957;
}

*{box-sizing:border-box}
html,body{height:100%}
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(--ink);
  background: radial-gradient(1200px 500px at 15% -10%, rgba(31,91,210,.16), transparent 55%),
              radial-gradient(900px 450px at 85% 0%, rgba(210,31,42,.14), transparent 60%),
              var(--bg);
  line-height:1.55;
}

a{color:var(--blue); text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.skip-link{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip-link:focus{left:18px; top:18px; width:auto; height:auto; padding:10px 14px; background:#fff; border:1px solid var(--border); border-radius:12px; z-index:9999}

header.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(1.2) blur(10px);
  background:rgba(255,255,255,.78);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:220px;
}
.brand img{
  width:44px;
  height:44px;
  border-radius:14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  object-fit:cover;
}
.brand .title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .title strong{font-size:15px; letter-spacing:.2px}
.brand .title span{font-size:12px; color:var(--muted)}

nav a{
  display:inline-flex;
  align-items:center;
  padding:10px 10px;
  border-radius:12px;
  color:var(--ink);
  font-weight:600;
  font-size:14px;
}
nav a:hover{background:rgba(11,18,32,.06); text-decoration:none}
nav a[aria-current="page"]{background:rgba(31,91,210,.10); color:var(--blue)}

.nav-actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--ink);
  font-weight:800;
  font-size:14px;
  box-shadow:0 10px 26px rgba(11,18,32,.08);
}
.btn:hover{transform:translateY(-1px); text-decoration:none}
.btn.primary{
  border:none;
  background:linear-gradient(135deg, var(--red), #ff4b55);
  color:#fff;
  box-shadow: 0 16px 42px rgba(210,31,42,.22);
}
.btn.secondary{
  border:none;
  background:linear-gradient(135deg, var(--blue), #4b7dff);
  color:#fff;
  box-shadow: 0 16px 42px rgba(31,91,210,.20);
}
.badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(31,91,210,.10);
  color:var(--blue);
  font-weight:800;
  font-size:12px;
  border:1px solid rgba(31,91,210,.18);
}
.badge.verified{
  background:rgba(24,169,87,.10);
  border:1px solid rgba(24,169,87,.18);
  color:var(--green);
}

.hero{
  padding:44px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.74));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-card .inner{padding:22px}
.hero h1{
  margin:10px 0 10px;
  font-size:42px;
  line-height:1.1;
  letter-spacing:-.5px;
}
.hero p{margin:0; color:var(--muted); font-size:16px; max-width:60ch}
.hero .cta{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}
.hero-image{
  height:100%;
  min-height:260px;
  position:relative;
  background:linear-gradient(135deg, rgba(31,91,210,.18), rgba(210,31,42,.14));
}
.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.06) contrast(1.04);
  opacity:.98;
}
.hero-image .overlay{
  position:absolute; inset:0;
  background: radial-gradient(420px 240px at 30% 20%, rgba(255,255,255,.18), transparent 55%),
              linear-gradient(180deg, rgba(11,18,32,.0), rgba(11,18,32,.42));
}
.hero-image .label{
  position:absolute;
  left:16px;
  bottom:14px;
  display:flex;
  flex-direction:column;
  gap:6px;
  color:#fff;
  max-width:90%;
}
.hero-image .label strong{font-size:16px}
.hero-image .label span{font-size:13px; opacity:.9}

.section{padding:22px 0}
.section h2{margin:0 0 10px; font-size:22px}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.card{
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 10px 32px rgba(11,18,32,.08);
  padding:16px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted)}
.meta{color:var(--muted); font-size:13px}
.hr{height:1px; background:var(--border); margin:14px 0}

.list{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.list-item{
  display:flex;
  gap:12px;
  align-items:stretch;
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,.86);
  box-shadow:0 10px 30px rgba(11,18,32,.08);
}
.thumb{
  width:112px;
  min-height:84px;
  border-radius:14px;
  overflow:hidden;
  flex:0 0 auto;
  border:1px solid rgba(255,255,255,.5);
  background:linear-gradient(135deg, rgba(31,91,210,.18), rgba(210,31,42,.14));
}
.thumb img{width:100%; height:100%; object-fit:cover}
.list-item strong{display:block; font-size:15px}
.list-item .excerpt{margin-top:6px; color:var(--muted); font-size:13px}
.pill{
  display:inline-flex;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(210,31,42,.10);
  color:var(--red);
  border:1px solid rgba(210,31,42,.20);
  font-size:12px;
  font-weight:800;
}

.prose{
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.prose h1{margin:0 0 8px; font-size:28px}
.prose h3{margin:16px 0 8px; font-size:16px}
.prose p{margin:10px 0; color:var(--ink)}
.prose ul{margin:10px 0 10px 18px}

footer{
  padding:26px 0 38px;
  color:var(--muted);
}
.footer-shell{
  margin-top:18px;
  background:linear-gradient(180deg, rgba(11,18,32,.92), rgba(11,18,32,.98));
  border-top:1px solid rgba(255,255,255,.08);
  color:#c7cfdd;
}
.footer-inner{padding:34px 0 30px}
.footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}
.footer-brand{
  min-width: 240px;
  max-width: 360px;
}
.footer-brand .name{
  font-weight:900;
  letter-spacing:.2px;
  color:#fff;
  font-size:20px;
}
.footer-brand .tagline{margin-top:6px; font-size:13px; opacity:.9}
.footer-meta{margin-top:10px; font-size:13px; opacity:.9}

.footer-cols{
  display:grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap:18px;
  flex: 1 1 520px;
}
.footer-col h4{
  margin:0 0 10px;
  color:#ffffff;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.footer-col a{
  display:block;
  color:#c7cfdd;
  padding:6px 0;
  font-weight:650;
  font-size:13px;
  text-decoration:none;
}
.footer-col a:hover{color:#ffffff; text-decoration:underline}
.footer-contact .k{opacity:.7; font-size:11px; letter-spacing:.14em; text-transform:uppercase}
.footer-contact .v{font-size:13px; margin-top:4px; color:#ffffff}

.footer-actions{margin-top:12px}
.footer-actions .btn{
  box-shadow:none;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#ffffff;
}
.footer-actions .btn.primary{
  border:none;
  background:linear-gradient(135deg, var(--red), #ff4b55);
}

.social{
  display:flex;
  gap:10px;
  margin-top:12px;
}
.social a{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
}
.social a:hover{background:rgba(255,255,255,.12)}
.social svg{width:18px; height:18px}

.footer-bottom{
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-size:12px;
  opacity:.9;
}
.footer-bottom a{color:#c7cfdd}
.footer-bottom a:hover{color:#fff}

.map{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 14px 42px rgba(11,18,32,.10);
}
.map iframe{width:100%; height:340px; border:0}

.notice{
  border:1px solid rgba(31,91,210,.20);
  background:rgba(31,91,210,.07);
  padding:12px 14px;
  border-radius:16px;
  color:var(--ink);
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .list{grid-template-columns: 1fr}
  .brand{min-width:auto}
  nav{display:none}
  .footer-cols{grid-template-columns: 1fr}
}
