:root {
    --hw-green: #00c805;
    --hw-green-hot: #7dff3a;
    --hw-ink: #070a08;
    --hw-ink-soft: #111612;
    --hw-paper: #f3f5ef;
    --hw-white: #ffffff;
    --hw-line: #ced4ca;
    --hw-muted: #667068;
    --hw-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
    --hw-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --hw-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
    --hw-shell: min(1440px, calc(100vw - 64px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--hw-ink);
    background: var(--hw-paper);
    font-family: var(--hw-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

::selection { color: var(--hw-ink); background: var(--hw-green); }

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hw-shell { width: var(--hw-shell); margin-inline: auto; }

.hw-reading-progress {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.hw-reading-progress span { display: block; width: 0; height: 100%; background: var(--hw-green); }

.hw-independence-bar {
    position: relative;
    z-index: 102;
    color: #cbd1cc;
    background: #020403;
    border-bottom: 1px solid #242925;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hw-independence-inner {
    min-height: 31px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.hw-independence-inner .hw-est { margin-left: auto; color: #828b84; }

.hw-pulse {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hw-green);
    box-shadow: 0 0 0 4px rgba(0, 200, 5, .13);
}

.hw-header {
    position: sticky;
    z-index: 100;
    top: 0;
    color: var(--hw-white);
    background: rgba(7, 10, 8, .94);
    border-bottom: 1px solid #2c322d;
    backdrop-filter: blur(18px);
}

.admin-bar .hw-header { top: 32px; }

.hw-header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.hw-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    color: var(--hw-white);
    font-family: var(--hw-display);
    font-size: 27px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.06em;
}

.hw-brand small {
    color: var(--hw-green);
    font-family: var(--hw-sans);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .06em;
}

.hw-brand-mark {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    width: 21px;
    height: 22px;
    margin-right: 7px;
    transform: skew(-13deg);
}

.hw-brand-mark i { width: 5px; background: var(--hw-green); }
.hw-brand-mark i:nth-child(1) { height: 45%; }
.hw-brand-mark i:nth-child(2) { height: 70%; }
.hw-brand-mark i:nth-child(3) { height: 100%; }

.hw-nav { justify-self: center; }
.hw-nav-list, .hw-nav ul { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 38px); margin: 0; padding: 0; list-style: none; }
.hw-nav a {
    position: relative;
    color: #d7dcd8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.hw-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 2px;
    background: var(--hw-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}
.hw-nav a:hover::after, .hw-nav .current-menu-item a::after { transform: scaleX(1); }

.hw-signal-button {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 12px 14px 12px 17px;
    color: var(--hw-ink);
    background: var(--hw-green);
    border: 1px solid var(--hw-green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .2s, background .2s;
}
.hw-signal-button:hover { color: var(--hw-green); background: transparent; }
.hw-signal-button b { font-size: 16px; }

.hw-menu-toggle { display: none; }

.hw-ticker {
    position: relative;
    z-index: 90;
    min-height: 39px;
    display: grid;
    grid-template-columns: max-content 1fr;
    color: var(--hw-white);
    background: var(--hw-ink-soft);
    border-bottom: 1px solid #2d342e;
    overflow: hidden;
}

.hw-ticker-label {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 25px 0 max(32px, calc((100vw - min(1440px, calc(100vw - 64px))) / 2));
    color: var(--hw-ink);
    background: var(--hw-green);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .12em;
}

.hw-ticker-label span { width: 6px; height: 6px; border-radius: 50%; background: var(--hw-ink); }
.hw-ticker-rail { min-width: 0; display: flex; align-items: center; overflow: hidden; }
.hw-ticker-track { display: flex; width: max-content; animation: hw-ticker 42s linear infinite; }
.hw-ticker-track:hover { animation-play-state: paused; }
.hw-ticker-track a { display: block; padding: 0 34px; border-right: 1px solid #343a35; font-size: 10px; font-weight: 650; letter-spacing: .035em; white-space: nowrap; }
.hw-ticker-track b { margin-right: 8px; color: var(--hw-green); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

@keyframes hw-ticker { to { transform: translateX(-48%); } }

.hw-hero {
    position: relative;
    min-height: 665px;
    color: var(--hw-white);
    background: var(--hw-ink);
    overflow: hidden;
}

.hw-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(4, 6, 5, .97) 0%, rgba(4, 6, 5, .87) 39%, rgba(4, 6, 5, .3) 72%, rgba(4, 6, 5, .83) 100%),
                linear-gradient(0deg, #070a08 0%, transparent 33%);
}

.hw-hero-art {
    position: absolute;
    inset: 0;
    background-image: url("../images/hoodwire-signal-field.png");
    background-position: center;
    background-size: cover;
    filter: saturate(1.22) contrast(1.05);
    opacity: .83;
    transform: scale(1.015);
}

.hw-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 665px;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(360px, .83fr);
    gap: clamp(60px, 8vw, 130px);
    align-items: center;
    padding-block: 78px;
}

.hw-hero-lead { min-width: 0; max-width: 850px; }

.hw-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
    color: var(--hw-green);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.hw-eyebrow > span { width: 24px; height: 2px; background: currentColor; }
.hw-eyebrow i { margin-left: 6px; color: #a1a9a2; font-style: normal; font-weight: 700; }

.hw-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: var(--hw-display);
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 950;
    line-height: .91;
    letter-spacing: -.065em;
    text-wrap: balance;
}
.hw-hero h1 a { transition: color .2s; }
.hw-hero h1 a:hover { color: var(--hw-green); }

.hw-hero-deck {
    max-width: 700px;
    margin: 27px 0 24px;
    color: #c7cdc8;
    font-family: var(--hw-serif);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.48;
}

.hw-byline { display: flex; align-items: center; gap: 11px; margin: 20px 0 31px; font-size: 10px; letter-spacing: .095em; text-transform: uppercase; }
.hw-byline b { color: var(--hw-white); }
.hw-byline span { width: 18px; height: 1px; background: #59615b; }
.hw-byline em { color: #8d968f; font-style: normal; }

.hw-read-link {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    min-width: 190px;
    padding: 15px 18px;
    color: var(--hw-ink);
    background: var(--hw-green);
    border: 1px solid var(--hw-green);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: .2s ease;
}
.hw-read-link:hover { color: var(--hw-green); background: transparent; }
.hw-read-link span { margin-left: auto; font-size: 17px; }

.hw-hero-stack { border-top: 1px solid #59615a; border-bottom: 1px solid #59615a; }
.hw-stack-heading { display: flex; justify-content: space-between; padding: 13px 0; color: #9da69f; border-bottom: 1px solid #414842; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.hw-stack-heading span { color: var(--hw-green); }

.hw-stack-card { position: relative; display: grid; grid-template-columns: 31px 1fr auto; gap: 14px; align-items: start; padding: 23px 0; border-bottom: 1px solid #414842; }
.hw-stack-number { color: var(--hw-green); font-family: var(--hw-display); font-size: 11px; font-weight: 900; }
.hw-stack-card p { margin: 0 0 8px; color: #8a938c; font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.hw-stack-card h2 { margin: 0; font-family: var(--hw-display); font-size: clamp(18px, 1.5vw, 23px); font-weight: 850; line-height: 1.08; letter-spacing: -.03em; }
.hw-stack-card h2 a:hover { color: var(--hw-green); }
.hw-arrow { color: var(--hw-green); font-size: 18px; }
.hw-market-note { display: flex; align-items: center; gap: 10px; padding: 15px 0; color: #89928b; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.hw-section { padding-block: 100px; }
.hw-section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; padding-bottom: 22px; border-bottom: 1px solid #afb6ad; }
.hw-index { margin: 0 0 8px; color: var(--hw-green); font-size: 9px; font-weight: 950; letter-spacing: .15em; }
.hw-section-head h2 { margin: 0; font-family: var(--hw-display); font-size: clamp(39px, 4.5vw, 64px); font-weight: 950; line-height: .95; letter-spacing: -.055em; }
.hw-section-head > a { display: inline-flex; gap: 18px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid var(--hw-ink); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hw-section-head > a span { color: var(--hw-green); font-size: 15px; }

.hw-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px 26px; }
.hw-card { min-width: 0; }
.hw-card-wide { grid-column: span 2; }
.hw-card-media { position: relative; display: block; aspect-ratio: 1.48 / 1; overflow: hidden; background: #111512; }
.hw-card-wide .hw-card-media { aspect-ratio: 2.15 / 1; }
.hw-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.4), transparent 45%); }
.hw-card-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.03); transition: transform .5s ease, filter .5s ease; }
.hw-card:hover .hw-card-media img { transform: scale(1.035); filter: saturate(1.2) contrast(1.05); }
.hw-card-media > span { position: absolute; z-index: 2; left: 13px; bottom: 12px; padding: 6px 8px; color: var(--hw-ink); background: var(--hw-green); font-size: 8px; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.hw-card-body { padding-top: 18px; }
.hw-card-meta { display: flex; align-items: center; gap: 8px; margin: 0 0 13px; color: var(--hw-muted); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hw-card-meta i { width: 3px; height: 3px; border-radius: 50%; background: var(--hw-green); }
.hw-card h2, .hw-card h3 { margin: 0 0 12px; font-family: var(--hw-display); font-size: clamp(24px, 2.25vw, 33px); font-weight: 900; line-height: 1.01; letter-spacing: -.045em; }
.hw-card-wide h3 { max-width: 850px; font-size: clamp(30px, 3.2vw, 47px); }
.hw-card h2 a:hover, .hw-card h3 a:hover { text-decoration: underline; text-decoration-color: var(--hw-green); text-decoration-thickness: 3px; text-underline-offset: 5px; }
.hw-card-body > p:not(.hw-card-meta) { max-width: 650px; margin: 0 0 17px; color: #555f57; font-family: var(--hw-serif); font-size: 15px; line-height: 1.48; }
.hw-text-link { display: inline-flex; align-items: center; gap: 15px; font-size: 9px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.hw-text-link span { color: var(--hw-green); font-size: 15px; }

.hw-radar { color: var(--hw-white); background: var(--hw-ink); }
.hw-section-head-light { border-color: #3c433e; }
.hw-section-head-light > p { max-width: 440px; margin: 0; color: #909a92; font-family: var(--hw-serif); font-size: 16px; }
.hw-radar-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #3c433e; border-left: 1px solid #3c433e; }
.hw-radar-card { position: relative; min-height: 360px; display: flex; flex-direction: column; padding: 27px; border-right: 1px solid #3c433e; border-bottom: 1px solid #3c433e; overflow: hidden; }
.hw-radar-card::before { content: ""; position: absolute; right: -60px; bottom: -60px; width: 190px; height: 190px; border: 1px solid #3a423b; border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.018), 0 0 0 57px rgba(255,255,255,.012); transition: .35s ease; }
.hw-radar-card::after { content: ""; position: absolute; right: 17px; bottom: 17px; width: 7px; height: 7px; border-radius: 50%; background: var(--hw-green); box-shadow: 0 0 18px var(--hw-green); }
.hw-radar-card:hover { color: var(--hw-ink); background: var(--hw-green); }
.hw-radar-card:hover::before { border-color: rgba(0,0,0,.18); transform: scale(1.18); }
.hw-radar-card:hover::after { background: var(--hw-ink); box-shadow: none; }
.hw-radar-card > span { color: #7d877f; font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.hw-radar-card:hover > span { color: rgba(0,0,0,.58); }
.hw-radar-card h3 { margin: auto 0 13px; font-family: var(--hw-display); font-size: 39px; font-weight: 950; letter-spacing: -.05em; }
.hw-radar-card p { min-height: 72px; margin: 0 0 24px; color: #9fa8a1; font-family: var(--hw-serif); font-size: 14px; }
.hw-radar-card:hover p { color: rgba(0,0,0,.72); }
.hw-radar-card b { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.hw-culture-grid { border-top: 1px solid #b6bcb4; }
.hw-culture-row { display: grid; grid-template-columns: 105px 1fr auto; gap: 28px; align-items: center; min-height: 142px; padding: 28px 3px; border-bottom: 1px solid #b6bcb4; }
.hw-culture-row time { color: #7e8880; font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.hw-culture-row p { margin: 0 0 8px; color: var(--hw-green); font-size: 8px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.hw-culture-row h3 { margin: 0; font-family: var(--hw-display); font-size: clamp(27px, 3.3vw, 46px); font-weight: 900; line-height: 1; letter-spacing: -.045em; }
.hw-culture-row h3 a:hover { text-decoration: underline; text-decoration-color: var(--hw-green); text-underline-offset: 6px; }
.hw-culture-row > a { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid #aeb6ad; font-size: 19px; transition: .2s; }
.hw-culture-row > a:hover { background: var(--hw-green); border-color: var(--hw-green); }

.hw-signal { padding: 80px 0; color: var(--hw-ink); background: var(--hw-green); }
.hw-signal-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 8vw; align-items: end; }
.hw-eyebrow-dark { color: var(--hw-ink); }
.hw-signal h2 { margin: 0; font-family: var(--hw-display); font-size: clamp(52px, 6.2vw, 89px); font-weight: 950; line-height: .85; letter-spacing: -.068em; }
.hw-signal-copy > p { max-width: 560px; margin: 0 0 24px; font-family: var(--hw-serif); font-size: 18px; }
.hw-signup { display: grid; grid-template-columns: 1fr auto; border-bottom: 2px solid var(--hw-ink); }
.hw-signup input { min-width: 0; padding: 17px 0; color: var(--hw-ink); background: transparent; border: 0; outline: none; font-family: var(--hw-display); font-size: 21px; font-weight: 750; }
.hw-signup input::placeholder { color: rgba(0,0,0,.5); }
.hw-signup button { padding: 10px 0 10px 25px; color: var(--hw-ink); background: transparent; border: 0; font-size: 10px; font-weight: 950; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; }
.hw-signup button span { margin-left: 13px; font-size: 16px; }
.hw-signal-copy small { display: block; margin-top: 10px; color: rgba(0,0,0,.62); font-size: 9px; font-weight: 700; }

.hw-footer { padding: 70px 0 34px; color: var(--hw-white); background: var(--hw-ink); }
.hw-footer-top { display: grid; grid-template-columns: auto 1fr auto; gap: 7vw; align-items: start; padding-bottom: 70px; }
.hw-brand-footer { font-size: 30px; }
.hw-footer-top > p { max-width: 460px; margin: 0; color: #a1aaa3; font-family: var(--hw-serif); font-size: 17px; }
.hw-footer nav ul { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 35px; margin: 0; padding: 0; list-style: none; }
.hw-footer nav a { color: #c2cac3; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.hw-footer-legal { padding-top: 25px; border-top: 1px solid #333a35; color: #7e8880; font-size: 9px; line-height: 1.6; }
.hw-footer-legal p { max-width: 1000px; margin: 0 0 9px; }
.hw-footer-legal strong { color: #aeb6b0; }
.hw-footer-legal div { display: flex; justify-content: space-between; margin-top: 28px; color: #c1c8c2; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.hw-archive-head, .hw-story-head { position: relative; color: var(--hw-white); background: var(--hw-ink); overflow: hidden; }
.hw-archive-head::after, .hw-story-head::after { content: ""; position: absolute; right: -7vw; bottom: -21vw; width: 48vw; height: 48vw; border: 1px solid #283029; border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.012), 0 0 0 130px rgba(255,255,255,.009); }
.hw-archive-head .hw-shell { position: relative; z-index: 2; padding-block: 100px 80px; }
.hw-archive-head h1 { margin: 0; font-family: var(--hw-display); font-size: clamp(62px, 8vw, 118px); font-weight: 950; line-height: .84; letter-spacing: -.065em; }
.hw-archive-description { max-width: 650px; margin-top: 25px; color: #a9b2ab; font-family: var(--hw-serif); font-size: 18px; }
.hw-archive-description p { margin: 0; }
.hw-pagination { margin-top: 65px; padding-top: 22px; border-top: 1px solid #aeb5ad; }
.hw-pagination .nav-links { display: flex; gap: 8px; }
.hw-pagination .page-numbers { min-width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid #aeb5ad; font-size: 10px; font-weight: 900; }
.hw-pagination .current { background: var(--hw-green); border-color: var(--hw-green); }
.hw-empty { padding: 100px 0; }
.hw-empty h2 { margin: 0; font-family: var(--hw-display); font-size: 55px; }

.hw-story-head-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 175px; gap: 70px; align-items: end; padding-block: 95px 80px; }
.hw-story-head h1 { max-width: 1120px; margin: 0; font-family: var(--hw-display); font-size: clamp(52px, 7.1vw, 105px); font-weight: 950; line-height: .9; letter-spacing: -.066em; text-wrap: balance; }
.hw-story-deck { max-width: 800px; margin: 25px 0 0; color: #b4bdb6; font-family: var(--hw-serif); font-size: clamp(18px, 1.7vw, 23px); }
.hw-story-sigil { width: 150px; height: 150px; display: grid; place-items: center; align-content: center; gap: 10px; border: 1px solid #445047; border-radius: 50%; }
.hw-story-sigil span { color: var(--hw-green); font-family: var(--hw-display); font-size: 39px; font-weight: 950; letter-spacing: -.06em; }
.hw-story-sigil i { color: #717b73; font-size: 7px; font-style: normal; font-weight: 900; letter-spacing: .11em; }
.hw-story-visual { padding: 0 0 28px; background: var(--hw-ink); }
.hw-story-visual img { width: 100%; max-height: 760px; object-fit: cover; }
.hw-story-layout { display: grid; grid-template-columns: 135px minmax(0, 740px); gap: 70px; justify-content: center; padding-block: 80px 110px; }
.hw-story-rail { display: flex; flex-direction: column; gap: 7px; padding-top: 8px; }
.hw-story-rail span { margin-top: 14px; color: #929b94; font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.hw-story-rail b, .hw-story-rail a { font-size: 9px; font-weight: 950; letter-spacing: .08em; }
.hw-story-rail a { color: var(--hw-green); }
.hw-story-content { min-width: 0; color: #222923; font-family: var(--hw-serif); font-size: 19px; line-height: 1.78; }
.hw-story-content > p:first-child::first-letter { float: left; margin: .1em .11em 0 0; color: var(--hw-green); font-family: var(--hw-display); font-size: 4.5em; font-weight: 950; line-height: .72; }
.hw-story-content h2 { margin: 2.1em 0 .55em; color: var(--hw-ink); font-family: var(--hw-display); font-size: clamp(32px, 4vw, 47px); line-height: 1; letter-spacing: -.045em; }
.hw-story-content h3 { margin: 1.8em 0 .5em; font-family: var(--hw-display); font-size: 28px; line-height: 1; }
.hw-story-content a { text-decoration: underline; text-decoration-color: var(--hw-green); text-underline-offset: 3px; }
.hw-story-content blockquote { margin: 2.3em 0; padding: 25px 0 25px 28px; border-left: 5px solid var(--hw-green); font-family: var(--hw-display); font-size: 31px; font-weight: 850; line-height: 1.08; letter-spacing: -.03em; }
.hw-story-content ul { padding-left: 22px; }
.hw-story-content li::marker { color: var(--hw-green); }
.hw-source-card { margin-top: 52px; padding: 25px; color: var(--hw-white); background: var(--hw-ink); border-top: 5px solid var(--hw-green); font-family: var(--hw-sans); }
.hw-source-card div { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 15px; border-bottom: 1px solid #3a423b; }
.hw-source-card span { color: var(--hw-green); font-size: 8px; font-weight: 950; letter-spacing: .15em; }
.hw-source-card strong { font-size: 10px; letter-spacing: .06em; }
.hw-source-card p { color: #aeb7b0; font-family: var(--hw-serif); font-size: 15px; line-height: 1.5; }
.hw-source-card a { display: inline-flex; gap: 15px; color: var(--hw-green); font-size: 9px; font-weight: 950; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.hw-story-disclosure { margin-top: 24px; padding: 17px 0; color: #717a73; border-top: 1px solid #bac1b9; border-bottom: 1px solid #bac1b9; font-family: var(--hw-sans); font-size: 9px; font-weight: 700; line-height: 1.5; letter-spacing: .04em; }
.hw-more { background: #e9ece5; }
.hw-card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.hw-page-inner { max-width: 900px; }
.hw-page h1 { margin: 0 0 45px; font-family: var(--hw-display); font-size: clamp(55px, 8vw, 100px); line-height: .9; letter-spacing: -.06em; }
.hw-404 { min-height: 620px; display: grid; align-items: center; color: var(--hw-white); background: var(--hw-ink) url("../images/hoodwire-signal-field.png") center/cover no-repeat; }
.hw-404 .hw-shell { position: relative; z-index: 1; }
.hw-404 h1 { max-width: 800px; margin: 0; font-family: var(--hw-display); font-size: clamp(64px, 9vw, 120px); line-height: .85; letter-spacing: -.07em; }
.hw-404 p:not(.hw-eyebrow) { max-width: 550px; color: #bbc3bd; font-family: var(--hw-serif); font-size: 19px; }

@media (max-width: 1120px) {
    .hw-header-inner { gap: 22px; }
    .hw-nav-list, .hw-nav ul { gap: 16px; }
    .hw-signal-button { gap: 9px; }
    .hw-hero-grid { grid-template-columns: 1.45fr .8fr; gap: 45px; }
    .hw-radar-grid { grid-template-columns: repeat(2, 1fr); }
    .hw-radar-card { min-height: 310px; }
}

@media (max-width: 900px) {
    :root { --hw-shell: min(100% - 36px, 760px); }
    .admin-bar .hw-header { top: 46px; }
    .hw-independence-inner .hw-est { display: none; }
    .hw-header-inner { grid-template-columns: 1fr auto; min-height: 69px; }
    .hw-signal-button { display: none; }
    .hw-menu-toggle { position: relative; z-index: 105; display: grid; gap: 4px; width: 39px; height: 39px; place-content: center; color: var(--hw-white); background: transparent; border: 1px solid #424943; cursor: pointer; }
    .hw-menu-toggle span { width: 17px; height: 1px; display: block; background: currentColor; transition: .2s; }
    .hw-menu-toggle em { position: absolute; width: 1px; height: 1px; overflow: hidden; }
    .hw-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    .hw-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .hw-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
    .hw-nav { position: fixed; inset: 0; z-index: 101; display: grid; place-items: center; visibility: hidden; opacity: 0; background: var(--hw-ink); transition: .22s; }
    .hw-nav.is-open { visibility: visible; opacity: 1; }
    .hw-nav-list, .hw-nav ul { flex-direction: column; gap: 24px; }
    .hw-nav a { font-family: var(--hw-display); font-size: 34px; letter-spacing: -.03em; text-transform: none; }
    .hw-ticker-label { padding-left: 18px; }
    .hw-hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 55px; padding-block: 70px; }
    .hw-hero-stack { max-width: 650px; }
    .hw-section { padding-block: 70px; }
    .hw-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hw-card-wide { grid-column: span 2; }
    .hw-section-head { align-items: start; }
    .hw-section-head-light > p { max-width: 300px; }
    .hw-signal-grid { grid-template-columns: 1fr; gap: 50px; }
    .hw-footer-top { grid-template-columns: 1fr 1fr; }
    .hw-footer-top > p { grid-column: span 1; }
    .hw-footer nav { grid-column: span 2; }
    .hw-story-head-grid { grid-template-columns: 1fr; gap: 40px; padding-block: 75px 60px; }
    .hw-story-sigil { display: none; }
    .hw-story-layout { grid-template-columns: 1fr; gap: 25px; max-width: 740px; }
    .hw-story-rail { flex-direction: row; align-items: center; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid #bdc4bc; }
    .hw-story-rail span { margin: 0 2px 0 13px; }
}

@media (max-width: 620px) {
    :root { --hw-shell: calc(100vw - 28px); }
    .hw-shell { max-width: calc(100vw - 28px); }
    .hw-independence-inner { min-height: 37px; align-items: flex-start; padding-block: 9px; font-size: 8px; line-height: 1.35; }
    .hw-brand { font-size: 24px; }
    .hw-ticker { grid-template-columns: 93px 1fr; }
    .hw-ticker-label { padding: 0 12px; font-size: 8px; }
    .hw-ticker-track a { padding: 0 19px; }
    .hw-hero::before { background: linear-gradient(0deg, rgba(4,6,5,.97) 0%, rgba(4,6,5,.83) 70%, rgba(4,6,5,.45) 100%); }
    .hw-hero-art { background-position: 55% center; opacity: .64; }
    .hw-hero-grid { padding-block: 57px; }
    .hw-hero h1 { max-width: 100%; font-size: clamp(45px, 13.35vw, 54px); overflow-wrap: anywhere; }
    .hw-hero-deck { font-size: 17px; }
    .hw-stack-card { grid-template-columns: 25px 1fr auto; }
    .hw-section { padding-block: 60px; }
    .hw-section-head { display: block; margin-bottom: 31px; }
    .hw-section-head > a { margin-top: 22px; }
    .hw-section-head-light > p { margin-top: 19px; }
    .hw-card-grid, .hw-card-grid-3 { grid-template-columns: 1fr; gap: 42px; }
    .hw-card-wide { grid-column: auto; }
    .hw-card-wide .hw-card-media { aspect-ratio: 1.48 / 1; }
    .hw-card h2, .hw-card h3, .hw-card-wide h3 { font-size: 30px; }
    .hw-radar-grid { grid-template-columns: 1fr; }
    .hw-radar-card { min-height: 265px; }
    .hw-culture-row { grid-template-columns: 66px 1fr auto; gap: 12px; min-height: 125px; }
    .hw-culture-row h3 { font-size: 27px; }
    .hw-culture-row > a { width: 37px; height: 37px; }
    .hw-signup { grid-template-columns: 1fr; }
    .hw-signup button { padding-left: 0; text-align: left; }
    .hw-footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 45px; }
    .hw-footer nav { grid-column: auto; }
    .hw-footer-legal div { display: grid; gap: 5px; }
    .hw-story-head h1 { font-size: clamp(45px, 14vw, 65px); }
    .hw-story-layout { padding-block: 50px 75px; }
    .hw-story-content { font-size: 18px; }
    .hw-story-rail { display: none; }
    .hw-source-card div { display: grid; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
