
:root{
  --bg:#241d1a;
  --bg-2:#1a1412;
  --panel:#211b19;
  --panel-2:#1c1715;
  --line:rgba(255,255,255,.08);
  --text:#f1ece4;
  --muted:#b9aa97;
  --gold:#d2a24d;
  --gold-2:#e0b564;
  --green:#79b874;
  --red:#d47267;
  --radius:3px;
  --shadow:0 18px 48px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  min-height:100vh;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    linear-gradient(rgba(15,12,11,.58),rgba(15,12,11,.58)),
    url("/assets/images/page-texture.png") center/cover fixed no-repeat,
    #2b2420;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.page-frame{
  width:min(100%,1480px);
  margin:28px auto;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--shadow);
  background:rgba(17,14,13,.76);
}
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 30px;
  border-bottom:1px solid var(--line);
  background:rgba(18,15,14,.78);
}
.brand{display:flex;align-items:center;gap:14px;font-weight:700}
.brand img{width:44px;height:auto}
.brand span{
  font-size:25px;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.nav{
  display:flex;
  align-items:center;
  gap:28px;
  color:#efe6d7;
  font-size:14px;
}
.nav a{opacity:.96}
.nav a:hover{color:#fff}
.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:10px 12px;
}
.subscribe-btn,.gold-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:3px;
  background:linear-gradient(180deg,var(--gold-2),var(--gold));
  color:#1a140f;
  font-weight:700;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.35);
}
.hero{
  display:grid;
  grid-template-columns: 1.02fr .98fr;
  min-height:238px;
  border-bottom:1px solid var(--line);
}
.hero-copy{
  padding:34px 48px 30px;
  background:linear-gradient(90deg,rgba(246,240,231,.05),rgba(255,255,255,0));
}
.hero-copy h1,
.section-title,
.page-hero h1,
.news-feature h3,
.rank-name{
  font-family:Georgia,"Times New Roman",serif;
}
.hero-copy h1{
  font-size:62px;
  line-height:.98;
  margin:0 0 18px;
  letter-spacing:-.03em;
}
.hero-copy p{
  max-width:470px;
  margin:0 0 22px;
  font-size:16px;
  color:#e3d7ca;
  line-height:1.55;
}
.hero-art{
  min-height:238px;
  background:
    linear-gradient(90deg, rgba(27,22,20,.1), rgba(27,22,20,.18)),
    url("/assets/images/hero-art.png") center/cover no-repeat;
}
.main-grid{
  display:grid;
  grid-template-columns: 1.04fr .96fr;
}
.column{
  min-width:0;
}
.column + .column{
  border-left:1px solid var(--line);
}
.block{
  padding:20px 18px 18px;
  border-bottom:1px solid var(--line);
}
.block-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}
.section-title{
  margin:0;
  font-size:23px;
  font-weight:600;
}
.block-header a{
  color:var(--muted);
  font-size:11px;
}
.signal-list{display:grid;gap:10px}
.signal-card{
  display:grid;
  grid-template-columns: 44px 1.15fr .92fr .52fr .52fr;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.09);
  border-radius:8px;
}
.signal-badge{
  width:38px;height:38px;border-radius:7px;display:grid;place-items:center;
  color:#fff;font-size:15px;font-weight:700;
}
.green{background:#6b9c58}
.yellow{background:#d8ab47;color:#2a2011}
.red{background:#c96253}
.gray{background:#403936}
.signal-name strong{
  display:block;
  font-size:16px;
  line-height:1;
}
.signal-name small,.signal-value small,.signal-change small{
  display:block;
  color:var(--muted);
  font-size:10px;
  margin-top:4px;
}
.signal-value{
  font-size:14px;
  white-space:nowrap;
}
.signal-change{font-size:14px;white-space:nowrap}
.up{color:var(--green)}
.down{color:var(--red)}
.news-feature{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-bottom:14px;
}
.news-feature img{
  width:100%;
  height:74px;
  object-fit:cover;
  border-radius:2px;
}
.news-feature h3{
  margin:0;
  font-size:21px;
  line-height:1.05;
}
.news-feature p{
  margin:6px 0 0;
  font-size:11px;
  color:var(--muted);
}
.news-list{display:grid;gap:10px}
.news-row{
  display:grid;
  grid-template-columns: 98px 1fr;
  gap:10px;
  align-items:start;
}
.news-row img{
  width:98px;
  height:68px;
  object-fit:cover;
  border-radius:2px;
}
.news-row h4{
  margin:0;
  font-size:12px;
  line-height:1.25;
  color:#eee6dc;
}
.news-row p{
  margin:5px 0 0;
  color:var(--muted);
  font-size:10px;
}
.logo-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:8px;
}
.logo-card{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:8px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:4px;
  color:#f2e7d7;
  font-weight:800;
  line-height:1.05;
}
.logo-card small{display:block;color:var(--muted);font-weight:500;font-size:10px;margin-top:4px}
.rank-grid{display:grid;gap:10px}
.rank-card{
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap:12px;
  padding:8px 10px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:4px;
}
.rank-name{font-size:20px;margin:0 0 4px}
.rank-sub{font-size:11px;color:var(--muted)}
.rank-score{font-size:17px;text-align:right}
.rank-score strong{display:block;font-size:38px;font-family:Georgia,"Times New Roman",serif;line-height:.92}
.rank-score span{color:#e4c16a;font-size:12px}
.safety-card{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:14px;
  align-items:start;
  background:rgba(255,255,255,.02);
}
.shield{
  width:50px;height:50px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(180deg,var(--gold-2),#b7802a);
  color:#23190f;font-weight:900;font-size:26px;
}
.safety-card h3{margin:0 0 8px;font-size:20px;font-family:Georgia,"Times New Roman",serif}
.safety-card p{margin:0 0 12px;color:var(--muted);font-size:12px;line-height:1.4}
.site-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 16px;
  font-size:12px;
  color:#ddd1c0;
  background:rgba(15,12,11,.82);
}
.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.footer-right{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-pill{
  padding:6px 10px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.page-hero{
  padding:34px 40px 28px;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    rgba(17,14,13,.45);
}
.page-hero h1{
  margin:0 0 12px;
  font-size:48px;
  line-height:1;
  font-family:Georgia,"Times New Roman",serif;
}
.page-hero p{
  margin:0;
  max-width:800px;
  color:var(--muted);
  font-size:16px;
}
.content-grid{
  display:grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap:0;
}
.panel{
  padding:22px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.panel:nth-child(2n){border-right:0}
.panel h2,.panel h3{
  margin:0 0 10px;
  font-family:Georgia,"Times New Roman",serif;
}
.panel p,.panel li,.panel td,.panel th{
  color:#e7ddd0;
}
.panel p,.panel li{font-size:14px;line-height:1.6}
.panel ul{margin:0;padding-left:18px}
.table-wrap{overflow:auto}
table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
th,td{
  text-align:left;
  padding:12px 10px;
  border-top:1px solid var(--line);
}
th{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
}
.widget-shell{
  padding:14px;
  border:1px dashed rgba(224,181,100,.45);
  background:rgba(224,181,100,.05);
  color:#e8d6b3;
  font-size:13px;
}
@media (max-width: 980px){
  .site-header{flex-wrap:wrap}
  .nav-toggle{display:inline-flex}
  .nav{
    display:none;
    width:100%;
    flex-wrap:wrap;
    gap:14px;
    padding-top:10px;
  }
  .nav.is-open{display:flex}
  .hero,.main-grid,.content-grid{grid-template-columns:1fr}
  .column + .column{border-left:0;border-top:1px solid var(--line)}
  .panel{border-right:0}
}
@media (max-width: 700px){
  .page-frame{margin:8px auto}
  .site-header{padding:16px}
  .brand span{font-size:22px}
  .hero-copy{padding:26px 22px}
  .hero-copy h1{font-size:44px}
  .signal-card{
    grid-template-columns:44px 1fr;
    gap:10px;
  }
  .signal-value,.signal-change{grid-column:2}
  .site-footer{flex-direction:column;align-items:flex-start}
}
