/* =========================================================
   Theme: Activist — "Urgent. Direct. Mobilized."
   Same content, high-contrast posture.
   Fonts: Urbanist 900 (head), Public Sans (body)
   ========================================================= */

:root{
  --act-bg: #0b1220;        /* dark slate/navy */
  --act-surface: #0f1a2e;   /* slightly lighter for panels */
  --act-text: #f8fafc;      /* near-white */
  --act-muted: #cbd5e1;     /* slate-300 */
  --act-border: rgba(255,255,255,0.12);

  --act-ink: #ffffff;       /* text on dark */
  --act-blue: #39b7ff;      /* energized cyan-blue */
  --act-gold: #e19b25;      /* DRG gold */
  --act-red: #ff2d2d;       /* siren */
  --act-red-deep: #d11f1f;  /* hover */

  --act-font-body: "Public Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --act-font-head: "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

body{
  background: var(--act-bg);
  color: var(--act-text);
  font-family: var(--act-font-body);
}

/* Make the base footer/background not look like it belongs to another theme */
.site-footer{
  background: #071022;
  border-top: 1px solid var(--act-border);
}
.site-footer,
.site-footer a{
  color: var(--act-muted);
}

/* Links */
a{
  color: var(--act-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
a:hover{
  color: var(--act-gold);
  text-decoration-thickness: 2px;
}

/* =========================================================
   Header — loud framing, sticky, alarm strip
   ========================================================= */

.site-header--activist{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,18,32,0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--act-border);
}

/* alarm strip */
.alert-strip{
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,45,45,0.95) 0px,
      rgba(255,45,45,0.95) 10px,
      rgba(225,155,37,0.95) 10px,
      rgba(225,155,37,0.95) 20px
    );
}
.alert-strip__inner{
  padding-top: .55rem;
  padding-bottom: .55rem;
  display:flex;
  align-items:center;
  gap: .75rem;
}
.alert-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .18rem .6rem;
  border-radius: 999px;
  background: rgba(11,18,32,0.85);
  color: #fff;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem;
  border: 1px solid rgba(255,255,255,0.22);
}
.alert-text{
  color: rgba(11,18,32,0.92);
  font-weight: 800;
  letter-spacing: .01em;
}

/* header bar */
.site-header--activist .wrap{
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.header-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
}

.brand-lockup{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  flex: 0 0 auto;
}

/* Logo bigger + more dominant */
.brand-lockup__box{
  display:block;
  height: clamp(64px, 8vw, 120px);
  max-width: min(72vw, 980px);
}
.brand-lockup__img{
  display:block;
  height: 100%;
  width: auto;
  max-width: 100%;
}

/* =========================================================
   Buttons — less friendly, more directive
   ========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.78rem 1.05rem;
  border-radius: 10px; /* sharpens the vibe */
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration:none;
  line-height: 1.05;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
}

.btn--primary{
  background: var(--act-red);
  color: #fff;
  box-shadow: 0 14px 32px rgba(255,45,45,0.22);
}
.btn--primary:hover{
  background: var(--act-red-deep);
  color: #fff;
  text-decoration: none;
}

.btn--ghost{
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.btn--ghost:hover{
  border-color: rgba(57,183,255,0.6);
  background: rgba(57,183,255,0.12);
  color: #fff;
  text-decoration:none;
}

/* =========================================================
   Hero — "situation room" energy
   ========================================================= */

.hero{
  border-bottom: 1px solid var(--act-border);
  background:
    radial-gradient(800px 320px at 15% 0%, rgba(255,45,45,0.22), rgba(11,18,32,0) 55%),
    radial-gradient(900px 360px at 95% 0%, rgba(57,183,255,0.18), rgba(11,18,32,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(11,18,32,0));
}

.hero__inner{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items:start;
  padding-top: 3.25rem;
  padding-bottom: 2.75rem;
}

/* Kicker becomes a label */
.kicker{
  margin: 0 0 .85rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .9rem;
}
.kicker::before{
  content: "⚠ ";
}

/* Headline becomes the punch */
.hero h1{
  margin: 0 0 1rem;
  font-family: var(--act-font-head);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: clamp(2.35rem, 4.2vw, 3.6rem);
  text-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.lede{
  color: rgba(248,250,252,0.86);
  font-size: 1.15rem;
  max-width: 62ch;
}

.hero__cta{
  display:flex;
  gap: .85rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

/* =========================================================
   Panel — "briefing box"
   ========================================================= */

.panel{
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 6px solid var(--act-red);
  border-radius: 14px;
  background: rgba(15,26,46,0.72);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.panel__title{
  margin: 0 0 .75rem;
  font-family: var(--act-font-head);
  font-weight: 900;
  color: #fff;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.panel__list{
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(248,250,252,0.86);
}
.panel__list li{
  margin: .4rem 0;
}

/* =========================================================
   Sections — bold dividers, less “article”, more “brief”
   ========================================================= */

.section{
  padding: 2.75rem 0;
  border-top: 1px solid var(--act-border);
}

.section__inner h2{
  font-family: var(--act-font-head);
  font-weight: 900;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.section__inner p{
  max-width: 72ch;
  color: rgba(248,250,252,0.86);
}

.list{
  max-width: 72ch;
}

.list strong{
  color: #fff;
}

/* Contact section gets a final “call” feel without changing text */
.section--contact{
  background: rgba(255,255,255,0.04);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px){
  .hero__inner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .brand-lockup__box{
    max-width: 76vw;
    height: clamp(54px, 12vw, 86px);
  }
  .header-actions .btn{
    padding: .68rem .85rem;
    font-size: .85rem;
  }
  .alert-text{
    display:none; /* keep strip compact on tiny screens */
  }
}
