:root{
  --dark:#05070b;
  --dark2:#0a0d13;
  --teal:#22c7c7;
  --teal-dark:#07999b;
  --red:#e51f24;
  --white:#ffffff;
  --ink:#0d1220;
  --muted:#5f6878;
  --line:#e5e7eb;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f5f7f8;
  color:var(--ink);
  line-height:1.55;
}
a{color:inherit}
.site-header{
  background:linear-gradient(180deg,#070a0f,#05070b);
  color:white;
  box-shadow:0 4px 18px rgba(0,0,0,.35);
}
.header-inner{
  max-width:1480px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:22px 58px;
}
.brand{
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
}
.brand img{
  width:78px;
  height:78px;
  object-fit:contain;
  filter:drop-shadow(0 2px 5px rgba(0,0,0,.45));
}
.brand span{
  font-size:1.75rem;
  font-weight:900;
  letter-spacing:-.03em;
}
nav{
  display:flex;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}
nav a{
  color:#f5f5f5;
  text-decoration:none;
  font-weight:900;
  font-size:1.05rem;
  position:relative;
  padding:10px 0;
}
nav a.active,
nav a:hover{
  color:var(--teal);
}
nav a.active::after,
nav a:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:var(--teal);
}
.hero{
  min-height:560px;
  background-image:
    linear-gradient(90deg, rgba(5,7,11,.08), rgba(5,7,11,.02)),
    url("anti_reform_banner.webp");
  background-size:cover;
  background-position:center top;
  display:flex;
  align-items:center;
}
.hero-inner{
  max-width:1480px;
  margin:0 auto;
  width:100%;
  padding:54px 58px 64px;
}
.hero-copy{
  max-width:780px;
}
.hero h1{
  color:white;
  font-size:clamp(3.2rem,6vw,6.4rem);
  line-height:.95;
  margin:0 0 22px;
  text-transform:uppercase;
  letter-spacing:-.045em;
  font-weight:950;
  text-shadow:0 4px 14px rgba(0,0,0,.55);
}
.hero h1 .teal{color:var(--teal)}
.hero h1 .red{color:var(--red)}
.hero p{
  color:#fff;
  max-width:760px;
  font-size:1.45rem;
  margin:0 0 30px;
  text-shadow:0 3px 12px rgba(0,0,0,.65);
}
.button-row{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:18px 28px;
  min-width:225px;
  border-radius:8px;
  background:linear-gradient(180deg,#ff2d2d,#d91419);
  color:white;
  text-decoration:none;
  font-weight:900;
  font-size:1.22rem;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.button.secondary{
  background:linear-gradient(180deg,#32d7d7,#13adad);
  color:white;
}
.button .arrow{
  background:white;
  color:var(--red);
  border-radius:50%;
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}
.button.secondary .arrow{color:var(--teal-dark)}
.hero-pill-row{
  margin-top:58px;
  display:grid;
  grid-template-columns:repeat(4,minmax(160px,1fr));
  gap:28px;
  max-width:1120px;
}
.hero-pill{
  color:white;
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.icon-circle{
  width:62px;
  height:62px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  font-weight:900;
  flex:none;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}
.icon-circle.teal{background:linear-gradient(180deg,#2fdad9,#079a9a)}
.icon-circle.red{background:linear-gradient(180deg,#ff3030,#d51318)}
.hero-pill strong{
  display:block;
  font-size:1.1rem;
  line-height:1.1;
  text-transform:uppercase;
}
.hero-pill span{
  display:block;
  color:#f1f5f9;
  font-size:.96rem;
}
.cards-section{
  max-width:1480px;
  margin:0 auto;
  padding:42px 54px 62px;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(220px,1fr));
  gap:30px;
}
.card{
  background:white;
  border-radius:9px;
  padding:34px 28px 28px;
  box-shadow:0 10px 30px rgba(10,20,30,.14);
  border-top:5px solid var(--teal);
  min-height:290px;
}
.card.red{border-top-color:var(--red)}
.card h2{
  margin:0 0 18px;
  font-size:1.55rem;
  line-height:1.1;
}
.card-title{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--teal-dark);
  margin-bottom:18px;
}
.card.red .card-title{color:var(--red)}
.card-title .mini-icon{
  font-size:2.6rem;
  line-height:1;
}
.card p{
  margin:0 0 22px;
  font-size:1.04rem;
}
.card-link{
  color:var(--teal-dark);
  font-weight:900;
  text-decoration:none;
}
.card.red .card-link{color:var(--red)}
.page-hero{
  background:linear-gradient(120deg,#06080d,#111827);
  color:white;
  padding:70px 58px;
}
.page-hero-inner{
  max-width:1180px;
  margin:0 auto;
}
.page-hero h1{
  color:white;
  font-size:clamp(2.6rem,5vw,4.8rem);
  line-height:1;
  margin:0 0 16px;
  text-transform:uppercase;
}
.page-hero p{font-size:1.25rem;max-width:760px}
.content{
  max-width:1180px;
  margin:0 auto;
  padding:44px 24px 70px;
}
.resource-card{
  background:white;
  border-left:7px solid var(--teal);
  border-radius:10px;
  padding:26px;
  margin-bottom:22px;
  box-shadow:0 6px 22px rgba(0,0,0,.08);
}
.resource-card.red{border-left-color:var(--red)}
.resource-card h2{margin-top:0}
footer{
  background:#05070b;
  color:white;
  text-align:center;
  padding:34px 20px;
}
footer strong{color:var(--teal)}
@media(max-width:1100px){
  .header-inner{padding:18px 28px;flex-direction:column;align-items:flex-start}
  nav{gap:18px}
  .hero-inner{padding:42px 28px}
  .hero-pill-row,.card-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .brand img{width:58px;height:58px}
  .brand span{font-size:1.35rem}
  .hero{min-height:auto;background-position:center top}
  .hero-inner{padding:34px 20px;background:rgba(0,0,0,.48)}
  .hero h1{font-size:2.75rem}
  .hero p{font-size:1.1rem}
  .button{width:100%;min-width:0}
  .hero-pill-row,.card-grid{grid-template-columns:1fr}
  .cards-section{padding:28px 20px 44px}
}