/* static - Developed by acidvegas in CSS (https://github.com/acidvegas) */
/* style.css */

/* Network Telescope - editorial monochrome */

:root {
    --bg: #0b0b0b;
    --bg-1: #111110;
    --rule: #232322;
    --rule-strong: #2e2e2c;
    --text: #ece8df;
    --text-dim: #8d8a82;
    --text-muted: #5a5750;
    --accent: #c87034;
    --maxw: 1240px;
    --maxw-narrow: 760px;

    --font-serif: 'Fraunces', 'Iowan Old Style', 'Apple Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* film-grain texture overlay - breaks the flat-black feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

.container.narrow {
    max-width: var(--maxw-narrow);
}

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease;
}

a:hover { color: var(--accent); }

p { margin: 0 0 1em; color: var(--text-dim); }

.serif {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.mono { font-family: var(--font-mono); }
.small { font-size: 0.85rem; }
.muted { color: var(--text-muted); }

h1, h2, h3, h4 {
    color: var(--text);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 0.6em;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 400; }
h3 { font-size: 1.15rem; font-weight: 500; }
h4 { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }

.section-label {
    font-size: 0.74rem;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: lowercase;
    margin: 0 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rule-mark {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(200, 112, 52, 0.6);
    margin-right: 6px;
    vertical-align: middle;
}

.kicker {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 11, 11, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav a {
    color: var(--text-dim);
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.site-nav a:hover { color: var(--text); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 22px;
    height: 1px;
    background: var(--text);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--text);
    border-color: var(--accent);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--rule-strong);
}

.btn-ghost:hover { border-color: var(--text); color: var(--text); }

.btn-sm { padding: 9px 16px; font-size: 0.78rem; }

.link-arrow {
    display: inline-block;
    font-size: 0.92rem;
    color: var(--text);
    border-bottom: 1px solid var(--rule-strong);
    padding-bottom: 2px;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.link-arrow:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* HERO */
.lede-section {
    position: relative;
    min-height: 88vh;
    padding: 120px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.map-stage {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.map-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 75% at 28% 50%, rgba(11,11,11,0.72) 0%, rgba(11,11,11,0.2) 60%, transparent 100%),
        linear-gradient(180deg, rgba(11,11,11,0.45) 0%, transparent 30%, transparent 70%, rgba(11,11,11,0.55) 100%);
    pointer-events: none;
}

#worldmap-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.lede-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.lede-overlay > * { max-width: 640px; }

.lede-h1 {
    font-size: clamp(2.3rem, 4.2vw, 4rem);
    line-height: 1.07;
    margin: 16px 0 32px;
    font-weight: 300;
    letter-spacing: -0.015em;
}

.lede-body {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin: 0 0 22px;
}

.lede-body:last-of-type { margin-bottom: 36px; }

.lede-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* SECTIONS */
.section {
    padding: 120px 0;
    position: relative;
}

.section-rule { border-top: 1px solid var(--rule); }
.section-tone { background: var(--bg-1); }

.lede-section + .section { border-top: none; }

.mandate-block {
    position: relative;
}

.mandate-body {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.5;
    color: var(--text);
    font-weight: 300;
    margin: 0;
    letter-spacing: -0.005em;
}

/* BULLET list (used on subpages) */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4em;
}

.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-dim);
}

.bullet-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.bullet-list li strong { color: var(--text); font-weight: 500; }

/* PAGE HEROES (subpages) */
.page-hero {
    padding: 140px 0 80px;
    border-bottom: 1px solid var(--rule);
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 24px;
    max-width: 900px;
}

.page-hero .lede {
    font-size: 1.08rem;
    color: var(--text);
    max-width: 680px;
    margin: 0;
    line-height: 1.6;
}

.lede {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 640px;
}

/* CONTENT GRIDS (subpages) */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* CODE BLOCK */
.code-block {
    background: var(--bg);
    border: 1px solid var(--rule);
    padding: 14px 18px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    overflow-x: auto;
    margin: 0 0 1.4em;
    white-space: pre-wrap;
    word-break: break-all;
}

/* FORM */
.form { display: grid; gap: 20px; }

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row label {
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

.form input,
.form select,
.form textarea {
    background: var(--bg-1);
    color: var(--text);
    border: 1px solid var(--rule-strong);
    padding: 14px 14px;
    font-family: var(--font-sans);
    font-size: 16px; /* iOS won't zoom on focus at >=16px */
    transition: border-color 0.15s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.form button { max-width: 100%; box-sizing: border-box; }

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--text);
}

.form textarea { resize: vertical; }

.checkbox-row { flex-direction: row; align-items: center; gap: 10px; }
.checkbox-row label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.92rem;
    white-space: nowrap;
}

.form input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid var(--text-muted);
    border-radius: 3px;
    background: var(--bg-1);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.form input[type="checkbox"]:hover { border-color: var(--accent); }
.form input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}
.form input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 45%;
    width: 4px;
    height: 8px;
    border: solid var(--bg);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}
.form input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(200,112,52,0.35);
}

/* ABOUT page - section heads with animated glyph on the right */
.about-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}
.about-head-text { min-width: 0; flex: 1; }
.about-head-text .section-label { margin-bottom: 14px; }
.about-head-text h2 { margin: 0; }
.about-head-glyph {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
}
.about-head-glyph svg { width: 100%; height: 100%; display: block; }
@media (max-width: 600px) {
    .about-head { gap: 20px; }
    .about-head-glyph { width: 96px; height: 70px; }
}

/* origin - skull-and-crossbones with a slow scan line */
.skull-scan {
    animation: skull-scan-sweep 4s ease-in-out infinite;
}
@keyframes skull-scan-sweep {
    0%, 100% { transform: translateY(0);  opacity: 0;    }
    8%       { opacity: 0.55; }
    50%      { transform: translateY(40px); opacity: 0.55; }
    92%      { opacity: 0;    }
}

/* quiet building - tower layers appear in sequence from the bottom up */
.tower-block { opacity: 0; transform-origin: center bottom; }
.tower-block.t1 { animation: tower-rise 5s ease-out infinite; animation-delay: 0.0s; }
.tower-block.t2 { animation: tower-rise 5s ease-out infinite; animation-delay: 0.7s; }
.tower-block.t3 { animation: tower-rise 5s ease-out infinite; animation-delay: 1.4s; }
.tower-block.t4 { animation: tower-rise 5s ease-out infinite; animation-delay: 2.1s; }
@keyframes tower-rise {
    0%   { opacity: 0; transform: translateY(6px) scaleY(0.6); }
    8%   { opacity: 1; transform: translateY(0)    scaleY(1);   }
    80%  { opacity: 1; transform: translateY(0)    scaleY(1);   }
    100% { opacity: 1; transform: translateY(0)    scaleY(1);   }
}

/* wild west - cowboy hat slow tip + dust puffs on each side */
.cowboy-hat {
    transform-origin: 60px 60px;
    animation: hat-tip 4s ease-in-out infinite;
}
@keyframes hat-tip {
    0%, 100% { transform: rotate(0deg);   }
    25%      { transform: rotate(-6deg); }
    50%      { transform: rotate(0deg);  }
    75%      { transform: rotate(4deg);  }
}
.dust-puff {
    animation: dust-puff 4s ease-in-out infinite;
}
@keyframes dust-puff {
    0%, 20%, 100% { opacity: 0; transform: scale(0.8); }
    30%, 45%      { opacity: 0.7; transform: scale(1.1); }
}

/* what we do - telescope twinkles three stars in the sky */
.ts { opacity: 0.25; animation: star-twinkle 3s ease-in-out infinite; }
.ts.s1 { animation-delay: 0s; }
.ts.s2 { animation-delay: 0.6s; }
.ts.s3 { animation-delay: 1.2s; }
@keyframes star-twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.85); }
    50%      { opacity: 1;   transform: scale(1.4);  }
}
.telescope-body {
    transform-box: fill-box;
    transform-origin: center;
    animation: scope-scan 6s ease-in-out infinite;
}
@keyframes scope-scan {
    0%, 100% { transform: rotate(-18deg); }
    50%      { transform: rotate(-30deg); }
}

/* ORIGIN FIGURE (about page) */
.origin-figure {
    margin: 32px 0 36px;
    padding: 14px;
    background: var(--bg-1);
    border: 1px solid var(--rule);
    border-left: 2px solid var(--accent);
}
.origin-figure img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--rule);
}
.origin-figure figcaption {
    margin: 12px 4px 2px;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
}
.origin-figure figcaption a { color: var(--text-dim); border-bottom: 1px dotted var(--rule-strong); }
.origin-figure figcaption a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* LEGAL */
.legal-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}
.legal h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--text);
    letter-spacing: -0.005em;
    margin-top: 2.4em;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(200,112,52,0.18);
}
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--text-dim); line-height: 1.7; }
.legal ul.bullet-list { margin: 12px 0 18px; }
.legal ul.bullet-list li { line-height: 1.65; }

/* legal hero glyph (terms / privacy) - uses the same hero grid as the transparency page */
.legal-hero-glyph {
    width: 220px;
    height: 220px;
    margin-left: auto;
    filter: drop-shadow(0 18px 50px rgba(200,112,52,0.32));
}
.legal-hero-glyph svg { width: 100%; height: 100%; display: block; }

/* terms page: wax-seal pulse + scan line sweeping down the contract */
.terms-seal {
    transform-origin: 134px 152px;
    animation: terms-seal-pulse 2.6s ease-in-out infinite;
}
@keyframes terms-seal-pulse {
    0%, 100% { transform: scale(0.96); opacity: 0.85; }
    50%      { transform: scale(1.08); opacity: 1;    }
}
.terms-scan {
    animation: terms-scan-sweep 5s ease-in-out infinite;
}
@keyframes terms-scan-sweep {
    0%, 100% { transform: translateY(0);   opacity: 0.0; }
    8%       { opacity: 0.45; }
    50%      { transform: translateY(120px); opacity: 0.45; }
    92%      { opacity: 0.0; }
}

/* privacy page: concentric protection rings expanding outward */
.pr-ring {
    transform-origin: 100px 100px;
    opacity: 0;
    animation: pr-ring-expand 3.2s ease-out infinite;
}
.pr-ring.r2 { animation-delay: 1.05s; }
.pr-ring.r3 { animation-delay: 2.10s; }
@keyframes pr-ring-expand {
    0%   { transform: scale(0.3); opacity: 0.85; }
    80%  { opacity: 0.15; }
    100% { transform: scale(2.2); opacity: 0;    }
}

@media (max-width: 760px) {
    .legal-container { padding: 0 22px; }
    .legal-hero-glyph { width: 160px; height: 160px; margin: 0; }
}

.hr-block {
    margin: 36px 0;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
}

/* FLASH */
.flash-wrap { padding-top: 16px; }
.flash {
    padding: 14px 18px;
    margin-bottom: 12px;
    background: var(--bg-1);
    border: 1px solid var(--rule-strong);
    border-left: 2px solid var(--accent);
    color: var(--text);
    font-size: 0.92rem;
}

/* CAROUSEL PIPELINE (home) */
.carousel-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.carousel-info h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--text);
}
.carousel-intro {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 460px;
}
.active-card {
    padding: 26px 28px;
    background: var(--bg-1);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--c, var(--accent));
    min-height: 180px;
    transition: border-left-color 0.5s ease;
}
.active-card > * { transition: opacity 0.35s ease; }
.active-card.fading > * { opacity: 0.15; }
.active-tag {
    color: var(--c, var(--text-muted));
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.active-name {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    color: var(--text);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.active-desc {
    color: var(--text-dim);
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
}
.carousel-dots {
    display: flex;
    gap: 8px;
    margin-top: 28px;
}
.carousel-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rule-strong);
    transition: background 0.35s ease, transform 0.35s ease;
    cursor: pointer;
}
.carousel-dots span:hover { background: var(--text-dim); }
.carousel-dots span.active {
    background: var(--accent);
    transform: scale(1.4);
}

.carousel-stage {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    margin-left: auto;
    position: relative;
}
.carousel-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* corner brackets */
.carousel-svg .brackets path {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.2;
    stroke-opacity: 0.55;
}

/* orbit ring */
.carousel-svg .cw-orbit {
    stroke: rgba(236, 232, 223, 0.07);
    stroke-width: 1;
    stroke-dasharray: 2 4;
}

/* flow lines: one per source, recomputed each frame in JS */
.carousel-svg .cw-line {
    fill: none;
    stroke: var(--c);
    stroke-width: 1;
    stroke-opacity: 0.22;
    stroke-dasharray: 4 6;
    transition: stroke-opacity 0.5s ease, stroke-width 0.5s ease;
}
.carousel-svg .cw-line.active {
    stroke-opacity: 0.95;
    stroke-width: 1.4;
    animation: pipeFlow 1.2s linear infinite;
}

/* hub - three independently-rotating dials around a static NT core */

/* every dial gets the same transform origin setup */
.carousel-svg .cw-hub .hub-dial {
    transform-origin: center;
    transform-box: fill-box;
}

/* OUTER DIAL: slow, sweeping. Hunting motion. */
.carousel-svg .cw-hub .hub-dial-outer {
    animation: hubDialOuter 26s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes hubDialOuter {
    0%   { transform: rotate(0deg); }
    9%   { transform: rotate(0deg); }
    18%  { transform: rotate(-28deg); }
    27%  { transform: rotate(-28deg); }
    38%  { transform: rotate(16deg); }
    47%  { transform: rotate(16deg); }
    56%  { transform: rotate(-10deg); }
    63%  { transform: rotate(-10deg); }
    74%  { transform: rotate(36deg); }
    83%  { transform: rotate(36deg); }
    92%  { transform: rotate(-20deg); }
    100% { transform: rotate(0deg); }
}

/* MID DIAL: smooth continuous counter-rotation */
.carousel-svg .cw-hub .hub-dial-mid {
    animation: hubDialMid 40s linear infinite;
}
@keyframes hubDialMid {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* CORE DIAL: smaller, faster snaps. Different rhythm so it never syncs with the outer. */
.carousel-svg .cw-hub .hub-dial-core {
    animation: hubDialCore 14s cubic-bezier(0.5, 0, 0.3, 1) infinite;
}
@keyframes hubDialCore {
    0%   { transform: rotate(0deg); }
    14%  { transform: rotate(0deg); }
    28%  { transform: rotate(45deg); }
    42%  { transform: rotate(45deg); }
    56%  { transform: rotate(-30deg); }
    70%  { transform: rotate(-30deg); }
    84%  { transform: rotate(22deg); }
    100% { transform: rotate(0deg); }
}

.carousel-svg .cw-hub .hub-ring-outer {
    stroke: rgba(200, 112, 52, 0.32);
    stroke-width: 0.9;
    stroke-dasharray: 2 4;
}
.carousel-svg .cw-hub .hub-ring-mid {
    stroke: rgba(236, 232, 223, 0.14);
    stroke-width: 0.7;
    stroke-dasharray: 1 3;
}
.carousel-svg .cw-hub .hub-ring-core {
    stroke: rgba(200, 112, 52, 0.55);
    stroke-width: 1.1;
}
.carousel-svg .cw-hub .hub-ticks line {
    stroke: var(--accent);
    stroke-width: 1.2;
    stroke-opacity: 0.75;
}
.carousel-svg .cw-hub .hub-ticks-mid line {
    stroke: rgba(236, 232, 223, 0.4);
    stroke-width: 0.8;
}
.carousel-svg .cw-hub .hub-brackets path {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.1;
    stroke-opacity: 0.75;
}
.carousel-svg .cw-hub .hub-aperture {
    fill: var(--accent);
    filter: drop-shadow(0 0 6px rgba(200, 112, 52, 0.9));
}
/* NT monogram in the centre - static reference frame inside the moving dials */
.carousel-svg .cw-hub .hub-mono {
    fill: var(--accent);
    font-family: var(--font-mono);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-shadow: 0 0 20px rgba(200, 112, 52, 0.7);
    animation: hubMonoPulse 2.6s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}
.carousel-svg .cw-hub .hub-monogram-pulse {
    stroke: var(--accent);
    stroke-width: 1;
    stroke-opacity: 0.6;
    animation: hubRingPulse 2.6s ease-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}
@keyframes hubMonoPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.55; }
}
@keyframes hubRingPulse {
    0%   { stroke-opacity: 0.6; r: 38; }
    100% { stroke-opacity: 0;   r: 62; }
}
/* source palette - distinct accent per feed type (applies to stations, lines, and host card) */
.carousel-svg .st-port,    .active-card.host-port    { --c: #c87034; }
.carousel-svg .st-http,    .active-card.host-http    { --c: #6db4c4; }
.carousel-svg .st-bgp,     .active-card.host-bgp     { --c: #c4877a; }
.carousel-svg .st-dns,     .active-card.host-dns     { --c: #b482aa; }
.carousel-svg .st-cert,    .active-card.host-cert    { --c: #8ea88e; }
.carousel-svg .st-honey,   .active-card.host-honey   { --c: #d9a64f; }
.carousel-svg .st-rir,     .active-card.host-rir     { --c: #b88a5f; }
.carousel-svg .st-partner, .active-card.host-partner { --c: #dcdcd2; }
.carousel-svg .st-stealer, .active-card.host-stealer { --c: #9173b3; }
.carousel-svg .st-breach,  .active-card.host-breach  { --c: #b85a55; }
.carousel-svg .st-more,    .active-card.host-more    { --c: #5a5750; }

/* carousel station nodes */
.carousel-tooltip {
    position: fixed;
    z-index: 1000;
    pointer-events: none;
    padding: 6px 10px;
    background: var(--bg);
    border: 1px solid var(--accent);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity .12s ease, transform .12s ease;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,112,52,0.12);
}
.carousel-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.carousel-svg .cw-station {
    opacity: 0.45;
    transition: opacity 0.5s ease;
    cursor: pointer;
}
.carousel-svg .cw-station:hover { opacity: 0.85; }
.carousel-svg .cw-station:focus-visible { outline: none; }
.carousel-svg .cw-station:focus-visible .disc-ring { stroke-width: 2.4; }
.carousel-svg .cw-station.active { opacity: 1; }
.carousel-svg .cw-station .disc-bg { fill: var(--bg); }
.carousel-svg .cw-station .disc-ring {
    stroke: var(--c);
    stroke-width: 1.5;
    transition: stroke-width 0.5s ease;
}
.carousel-svg .cw-station.active .disc-ring {
    stroke-width: 2.6;
}
.carousel-svg .cw-station .icon circle,
.carousel-svg .cw-station .icon polygon,
.carousel-svg .cw-station .icon path,
.carousel-svg .cw-station .icon line,
.carousel-svg .cw-station .icon rect {
    fill: var(--c);
    stroke: var(--c);
}
.carousel-svg .cw-station .icon [fill="none"] { fill: none; }

/* live metrics on the hero map - horizontal row, sat in the ocean under western Europe */
.map-metrics {
    position: absolute;
    bottom: 16%;
    right: 10%;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    gap: 36px;
    pointer-events: none;
    white-space: nowrap;
}
.map-metrics .metric { text-align: center; }
.map-metrics .metric-value {
    margin: 0 0 4px;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1;
    color: var(--text);
    letter-spacing: -0.015em;
    text-shadow:
        0 0 22px rgba(11, 11, 11, 0.95),
        0 0 8px rgba(11, 11, 11, 0.95),
        0 1px 2px rgba(0, 0, 0, 0.9);
}
.map-metrics .metric-value .unit {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-left: 4px;
    vertical-align: middle;
    text-shadow: 0 0 14px rgba(11, 11, 11, 0.95);
}
.map-metrics .metric-label {
    margin: 0;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-shadow:
        0 0 14px rgba(11, 11, 11, 0.95),
        0 0 4px rgba(11, 11, 11, 0.95);
}

/* partner marquee - sits as its own band right after the hero */
.partner-band {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--bg-1);
    position: relative;
}
.partner-label {
    margin: 0 auto;
    padding: 18px 32px 4px;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: lowercase;
    text-align: center;
    display: block;
}
.marquee {
    overflow: hidden;
    padding: 18px 0 22px;
    mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 56px;
    white-space: nowrap;
    animation: marqueeScroll 90s linear infinite;
    will-change: transform;
}
.marquee-track span {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: color 0.18s ease;
}
.marquee-track span:hover { color: var(--text); }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 960px) {
    .carousel-wrap { grid-template-columns: 1fr; gap: 36px; }
    .carousel-stage { margin: 0 auto; max-width: 480px; }
    .map-metrics { gap: 24px; }
    .map-metrics .metric-value { font-size: 1.2rem; }
    .map-metrics .metric-value .unit { font-size: 0.56rem; }
    .map-metrics .metric-label { font-size: 0.54rem; }
}
@media (max-width: 760px) {
    .map-metrics { display: none; }
    .marquee-track span { font-size: 0.85rem; letter-spacing: 0.14em; }
    .marquee-track { gap: 36px; }
    .partner-label { padding: 14px 22px 0; }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-svg .cw-line.active,
    .carousel-svg .cw-hub .hub-dial,
    .carousel-svg .cw-hub .hub-dial-outer,
    .carousel-svg .cw-hub .hub-dial-mid,
    .carousel-svg .cw-hub .hub-dial-core,
    .carousel-svg .cw-hub .hub-mono,
    .carousel-svg .cw-hub .hub-monogram-pulse { animation: none; }
}

/* NT Labs heading + badge */
.labs-heading {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    line-height: 1;
    font-size: clamp(2.4rem, 4vw, 3.4rem) !important;
    font-weight: 300;
    margin: 0 0 14px !important;
    letter-spacing: -0.015em;
}

.labs-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 1.25em;          /* relative to heading: ~68px at 3.4rem */
    height: 1.25em;
    border-radius: 8px;
    background:
        linear-gradient(155deg, rgba(200,112,52,0.30), rgba(200,112,52,0.10) 70%, rgba(200,112,52,0.04));
    border: 1px solid rgba(200,112,52,0.6);
    box-shadow:
        inset 0 0 0 1px rgba(11,11,11,0.55),
        inset 0 -10px 24px -8px rgba(0,0,0,0.7),
        0 0 0 1px rgba(200,112,52,0.10),
        0 14px 44px -14px rgba(200,112,52,0.6);
    flex-shrink: 0;
}

/* the actual NT letters - sized as a fraction of the heading so they always fit */
.labs-badge .labs-letters {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.62em;       /* ~33.7px at 3.4rem heading */
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--accent);
    text-shadow: 0 0 16px rgba(200,112,52,0.7);
}

/* inner hairline frame */
.labs-badge::before {
    content: '';
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(200,112,52,0.22);
    border-radius: 4px;
    pointer-events: none;
}

/* corner tick marks */
.labs-badge > .tick {
    position: absolute;
    width: 9px;
    height: 9px;
    border-color: var(--accent);
    border-style: solid;
    border-width: 0;
    opacity: 0.85;
}
.labs-badge > .tick.tl { top: 5px;    left: 5px;    border-top-width: 1px;    border-left-width: 1px; }
.labs-badge > .tick.tr { top: 5px;    right: 5px;   border-top-width: 1px;    border-right-width: 1px; }
.labs-badge > .tick.bl { bottom: 5px; left: 5px;    border-bottom-width: 1px; border-left-width: 1px; }
.labs-badge > .tick.br { bottom: 5px; right: 5px;   border-bottom-width: 1px; border-right-width: 1px; }

/* pulsing status dot */
.labs-badge > .pulse {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(200,112,52,0.9);
    animation: labsPulse 2.2s ease-in-out infinite;
}
@keyframes labsPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(1.5); }
}

/* LATEST POSTS (home) */
.latest-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}
.latest-head h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    margin: 0 0 14px;
    color: var(--text);
    line-height: 1.18;
    max-width: 620px;
}
.latest-intro {
    margin: 0;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 620px;
}
.latest-all { white-space: nowrap; }

.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.latest-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--rule);
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.18s ease, transform 0.18s ease;
    overflow: hidden;
}
.latest-card:hover {
    border-color: var(--rule-strong);
    transform: translateY(-2px);
    color: var(--text);
}
.latest-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
    background: var(--bg-1);
}
.latest-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.latest-card:hover .latest-cover img { transform: scale(1.03); }
.latest-meta {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.latest-date { color: var(--text-muted); margin: 0; letter-spacing: 0.06em; }
.latest-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.15rem;
    margin: 0;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.latest-card:hover .latest-title { color: var(--accent); }
.latest-excerpt {
    margin: 0;
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.55;
    flex: 1;
}
.latest-read { color: var(--text-muted); margin-top: 4px; letter-spacing: 0.06em; }
.latest-card:hover .latest-read { color: var(--accent); }

@media (max-width: 960px) {
    .latest-grid { grid-template-columns: repeat(2, 1fr); }
    .latest-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 640px) {
    .latest-grid { grid-template-columns: 1fr; }
    .latest-meta { padding: 18px 20px 20px; }
}

/* BLOG hero row + RSS link */
.blog-hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.blog-hero-row .labs-heading { margin-bottom: 0 !important; }
.rss-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--rule-strong);
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.18s ease, border-color 0.18s ease;
}
.rss-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}
.rss-link svg { display: block; }
.rss-text { letter-spacing: 0.18em; text-transform: uppercase; }

/* contact-page hero glyph: three incoming signals converging on a parabolic dish */
.sig-pulse {
    offset-rotate: 0deg;
    animation: sig-flow 2.6s linear infinite;
    opacity: 0;
}
.sig-pulse.p1 { offset-path: path('M20 28 L 100 90'); animation-delay: 0.0s; }
.sig-pulse.p2 { offset-path: path('M20 56 L 100 90'); animation-delay: 0.85s; }
.sig-pulse.p3 { offset-path: path('M46 20 L 100 90'); animation-delay: 1.7s; }
@keyframes sig-flow {
    0%   { offset-distance: 0%;   opacity: 0; }
    10%  { opacity: 1; }
    88%  { offset-distance: 100%; opacity: 1; }
    100% { offset-distance: 100%; opacity: 0; }
}
.dish-blip {
    transform-origin: 100px 90px;
    animation: dish-blip 2.6s ease-in-out infinite;
    opacity: 0;
}
@keyframes dish-blip {
    0%, 85% { opacity: 0; transform: scale(0.6); }
    90%     { opacity: 1; transform: scale(1.6); }
    100%    { opacity: 0; transform: scale(1);   }
}

/* "we're listening" block tucked into the contact aside, under opt-out */
.contact-listening-row {
    display: flex;
    align-items: center;
    gap: 18px;
}
.contact-listening-headline {
    flex: 1;
    min-width: 0;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin: 0;
    color: var(--text);
}
.contact-listening-glyph {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
}
.contact-listening-glyph svg { width: 100%; height: 100%; display: block; }

.tw {
    transform-origin: 100px 100px;
    opacity: 0;
    animation: tx-wave-expand 2.4s ease-out infinite;
}
.tw.r2 { animation-delay: 0.8s; }
.tw.r3 { animation-delay: 1.6s; }
@keyframes tx-wave-expand {
    0%   { transform: scale(0.2); opacity: 0.85; }
    80%  { opacity: 0.15; }
    100% { transform: scale(2.6); opacity: 0;    }
}
.tx-led {
    transform-origin: 100px 128px;
    animation: tx-led 1.6s ease-in-out infinite;
}
@keyframes tx-led {
    0%, 100% { opacity: 0.35; transform: scale(0.85); }
    50%      { opacity: 1;    transform: scale(1.3);  }
}

/* acknowledgments grid */
.ack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.ack-card {
    position: relative;
    display: block;
    padding: 24px 22px 20px;
    border: 1px solid rgba(200,112,52,0.18);
    border-radius: 10px;
    background:
        linear-gradient(160deg, rgba(200,112,52,0.05), rgba(200,112,52,0) 60%),
        var(--bg-1);
    color: inherit;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, box-shadow .25s ease;
}
.ack-card:hover {
    border-color: rgba(200,112,52,0.55);
    transform: translateY(-2px);
    box-shadow: 0 22px 50px -28px rgba(200,112,52,0.45);
}
.ack-card > .tick {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: var(--accent);
    border-style: solid;
    border-width: 0;
    opacity: 0.7;
}
.ack-card > .tick.tl { top: 8px;    left: 8px;    border-top-width: 1px;    border-left-width: 1px; }
.ack-card > .tick.tr { top: 8px;    right: 8px;   border-top-width: 1px;    border-right-width: 1px; }
.ack-card > .tick.bl { bottom: 8px; left: 8px;    border-bottom-width: 1px; border-left-width: 1px; }
.ack-card > .tick.br { bottom: 8px; right: 8px;   border-bottom-width: 1px; border-right-width: 1px; }
.ack-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    text-align: center;
}
.ack-card h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0;
    transition: color .2s ease;
}
.ack-card:hover h3 { color: var(--accent); }
.ack-foot {
    max-width: 700px;
    margin: 48px auto 0;
    text-align: center;
}

/* InfraGard membership block at bottom of acknowledgments */
.infragard-card {
    display: flex;
    align-items: center;
    gap: 36px;
    max-width: 820px;
    margin: 0 auto;
    padding: 32px 36px;
    border: 1px solid rgba(200,112,52,0.28);
    border-radius: 10px;
    background:
        linear-gradient(160deg, rgba(200,112,52,0.06), rgba(200,112,52,0) 60%),
        var(--bg-1);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 22px 60px -32px rgba(200,112,52,0.4);
}
.infragard-seal {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.infragard-seal img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.infragard-text { flex: 1; min-width: 0; }
.infragard-text .section-label { margin-bottom: 8px; }
.infragard-text h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}
.infragard-text p { margin: 0; color: var(--text-dim); }
@media (max-width: 600px) {
    .infragard-card { flex-direction: column; text-align: center; gap: 20px; padding: 28px 24px; }
    .infragard-seal { width: 100px; height: 100px; }
    .infragard-text .section-label { justify-content: center; }
}

/* blog tag cloud / filter chips */
.tag-section { padding: 40px 0 24px; }
.tag-cloud-label {
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 14px;
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-results { padding-top: 24px; }
.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--rule-strong);
    border-radius: 999px;
    background: var(--bg-1);
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.tag-chip:hover {
    border-color: var(--accent);
    color: var(--text);
}
.tag-chip.active {
    background: rgba(200, 112, 52, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}
.tag-chip .tag-count {
    color: var(--text-muted);
    font-size: 0.72rem;
}
.tag-chip.active .tag-count { color: var(--accent); opacity: 0.7; }

.blog-results .tag-active-note {
    color: var(--text-muted);
    margin: 0 0 20px;
}
.tag-active-name { color: var(--accent); }

/* PAGINATION (blog) */
.pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin-top: 64px;
    padding-top: 36px;
    border-top: 1px solid var(--rule);
}
.pg-side { display: flex; }
.pg-left  { justify-content: flex-start; }
.pg-right { justify-content: flex-end; }

.pg-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--rule-strong);
    background: var(--bg-1);
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    white-space: nowrap;
}
.pg-step:hover { color: var(--accent); border-color: var(--accent); }
.pg-step.disabled {
    color: var(--text-muted);
    border-color: var(--rule);
    background: transparent;
    cursor: default;
    pointer-events: none;
}
.pg-arrow { color: var(--accent); font-family: var(--font-mono); }
.pg-step.disabled .pg-arrow { color: var(--text-muted); }

.pg-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pg-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-family: var(--font-mono);
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    border: 1px solid var(--rule);
    background: var(--bg-1);
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.pg-num:hover {
    color: var(--text);
    border-color: var(--rule-strong);
    transform: translateY(-1px);
}
.pg-num.current {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(200, 112, 52, 0.10);
    box-shadow: 0 0 0 1px rgba(200, 112, 52, 0.20), 0 6px 18px -8px rgba(200, 112, 52, 0.6);
    cursor: default;
}

.pg-meta {
    margin: 14px 0 0;
    text-align: center;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 720px) {
    .pagination { grid-template-columns: 1fr; gap: 16px; padding-top: 28px; margin-top: 40px; }
    .pg-side { justify-content: center; }
    .pg-step { width: 100%; justify-content: center; }
    .pg-num { width: 38px; height: 38px; font-size: 0.78rem; }
}
@media (max-width: 640px) {
    .blog-hero-row { gap: 14px; }
}

/* BLOG GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 28px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-1);
    border: 1px solid var(--rule);
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.18s ease, transform 0.18s ease;
    overflow: hidden;
}

.blog-card:hover {
    border-color: var(--rule-strong);
    transform: translateY(-2px);
    color: var(--text);
}

.blog-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
    background: var(--bg);
}

.blog-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-cover img { transform: scale(1.03); }

.blog-meta {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.blog-date {
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 0.06em;
}

.blog-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.01em;
}

.blog-card:hover .blog-title { color: var(--accent); }

.blog-excerpt {
    color: var(--text-dim);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.blog-read {
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.06em;
}

.blog-card:hover .blog-read { color: var(--accent); }

@media (max-width: 960px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; gap: 22px; }
    .blog-meta { padding: 18px 18px 22px; }
}

/* DATA / FEEDS */
.data-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.data-card {
    background: var(--bg-1);
    border: 1px solid var(--rule);
    padding: 26px 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.18s ease;
}

.data-card:hover { border-color: var(--rule-strong); }

.data-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.data-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.01em;
}

.data-cadence {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--rule-strong);
    color: var(--text-dim);
    white-space: nowrap;
}

.cad-daily   { border-color: var(--accent); color: var(--accent); }
.cad-weekly  { color: var(--text); }
.cad-monthly { color: var(--text-muted); }

.data-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.data-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding: 12px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    font-size: 0.78rem;
}

.data-meta > div { display: flex; gap: 8px; }
.data-meta dt {
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}
.data-meta dd { color: var(--text); margin: 0; }

.data-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .data-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .data-card { padding: 22px 20px 20px; }
    .data-meta { gap: 14px; }
}

.post-date { margin: 0; color: var(--text-muted); }
.post-body p { color: var(--text); line-height: 1.75; }

/* FOOTER */
.site-footer {
    border-top: 1px solid var(--rule);
    padding: 72px 0 36px;
    background: var(--bg);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 48px;
}

.footer-mark {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text);
    margin: 0 0 8px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: end;
    gap: 140px;
}

.footer-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.footer-cols a {
    display: block;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-cols a:hover { color: var(--text); }

.footer-cols address {
    font-style: normal;
    line-height: 1.55;
    margin: 10px 0 0;
}


.footer-rule { height: 1px; background: var(--rule); margin: 0 0 24px; }

/* wire dispatch band - sits at top of footer */
.wire-band {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    padding: 28px 32px;
    margin-bottom: 48px;
    background: var(--bg-1);
    border: 1px solid var(--rule);
    border-left: 2px solid var(--accent);
    align-items: center;
}
.wire-copy {
    display: flex;
    align-items: center;
    gap: 18px;
}
.wire-glyph {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
}
.wire-glyph svg { width: 100%; height: 100%; display: block; }
.wire-text { min-width: 0; }
.wire-copy h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.25rem;
    margin: 0 0 6px;
    color: var(--text);
    letter-spacing: -0.01em;
}
.wire-copy p {
    margin: 0;
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 460px;
}
.wire-form {
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.wire-form input {
    flex: 1;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--rule-strong);
    padding: 11px 14px;
    font-family: var(--font-sans);
    font-size: 16px;
    min-width: 0;
    transition: border-color 0.18s ease;
}
.wire-form input::placeholder { color: var(--text-muted); }
.wire-form input:focus { outline: none; border-color: var(--accent); }
.wire-form button {
    border: 1px solid var(--text);
    background: var(--text);
    color: var(--bg);
    padding: 11px 20px;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    transition: all 0.18s ease;
    white-space: nowrap;
}
.wire-form button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text);
}

/* wire-glyph: envelope with expanding pulse waves and a blinking LED */
.ww {
    transform-origin: 78px 28px;
    opacity: 0;
    animation: ww-expand 2.4s ease-out infinite;
}
.ww.r2 { animation-delay: 0.8s; }
.ww.r3 { animation-delay: 1.6s; }
@keyframes ww-expand {
    0%   { transform: scale(0.2); opacity: 0.85; }
    80%  { opacity: 0.15; }
    100% { transform: scale(2.4); opacity: 0;    }
}
.wire-led {
    transform-origin: 78px 28px;
    animation: wire-led 1.8s ease-in-out infinite;
}
@keyframes wire-led {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50%      { opacity: 1;   transform: scale(1.3); }
}

@media (max-width: 768px) {
    .wire-band {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 20px;
        margin-bottom: 36px;
    }
}
@media (max-width: 480px) {
    .wire-form { flex-direction: column; }
    .wire-form button { width: 100%; }
}

/* social channels */
.socials {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    gap: 14px;
}
.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--rule);
    color: var(--text-dim);
    transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
}
.socials svg { display: block; }
.socials a.social-pending {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============ RESPONSIVE ============ */

/* tablet and below */
@media (max-width: 1024px) {
    .container { padding: 0 28px; }
    .section { padding: 96px 0; }
    .lede-section { padding: 120px 0 100px; min-height: 80vh; }
    .footer-grid { gap: 56px; }
}

/* small tablet / large phone landscape */
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .header-inner { height: 64px; }
    .split,
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
    .section { padding: 72px 0; }
    .lede-section { padding: 88px 0 64px; min-height: auto; }
    /* recenter the hero text mask on narrower screens */
    .map-stage::after {
        background:
            radial-gradient(ellipse 90% 80% at 50% 50%, rgba(11,11,11,0.78) 0%, rgba(11,11,11,0.3) 60%, transparent 100%),
            linear-gradient(180deg, rgba(11,11,11,0.55) 0%, transparent 40%, transparent 60%, rgba(11,11,11,0.65) 100%);
    }
    .lede-overlay > * { max-width: 100%; }
}

/* phone */
@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .nav-toggle { display: flex; }
    .site-nav {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--rule);
        flex-direction: column;
        align-items: stretch;
        padding: 18px 24px 24px;
        gap: 4px;
        display: none;
    }
    .site-nav.open { display: flex; }
    .site-nav a {
        padding: 14px 0;
        font-size: 1rem;
        color: var(--text);
        border-bottom: 1px solid var(--rule);
    }
    .site-nav a:last-child { border-bottom: none; }
    .footer-cols { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
    .lede-section { padding: 64px 0 56px; }
    .lede-h1 { font-size: clamp(1.9rem, 7.5vw, 2.6rem); margin: 12px 0 22px; }
    .lede-body { font-size: 0.98rem; }
    .section { padding: 64px 0; }
    h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
    .mandate-body { font-size: clamp(1.15rem, 4.5vw, 1.45rem); line-height: 1.45; }
    .page-hero { padding: 80px 0 48px; }
    .page-hero h1 { font-size: clamp(1.8rem, 6.5vw, 2.4rem); }
    .footer-grid { padding-bottom: 36px; }
    .btn { padding: 14px 22px; }   /* larger tap target */
    .lede-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .lede-actions .btn { width: 100%; }
    .split { gap: 32px; }
    .form { gap: 16px; }
    /* keep code blocks from busting the viewport */
    .code-block { font-size: 0.74rem; padding: 12px; }
}

/* very small phone */
@media (max-width: 380px) {
    .container { padding: 0 16px; }
    .lede-h1 { font-size: 1.75rem; }
}

/* tall phones in landscape — avoid huge hero */
@media (max-height: 520px) and (orientation: landscape) {
    .lede-section { min-height: auto; padding: 72px 0 64px; }
}

/* respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    body::before { display: none; }
}

.kicker.accent { color: var(--accent); }

/* traffic section intro + 2x2 card grid */
.traffic-intro {
    max-width: 700px;
    margin: 0 auto 36px;
    text-align: center;
}
.traffic-intro .section-label {
    justify-content: center;
    color: var(--accent);
    margin-bottom: 12px;
}
.traffic-intro h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}
.traffic-intro .muted { color: var(--text-dim); }

.traffic-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 1040px;
    margin: 0 auto;
}
.traffic-card.horiz {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 0;
}
.traffic-card.horiz .traffic-glyph {
    flex-shrink: 0;
    width: 180px;
    height: auto;
    margin: 0;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(200,112,52,0.15);
    background: linear-gradient(140deg, rgba(200,112,52,0.06), rgba(200,112,52,0) 80%);
}
.traffic-card.horiz .traffic-glyph svg { max-width: 140px; max-height: 100px; }
.traffic-card.horiz .traffic-body {
    flex: 1;
    min-width: 0;
    padding: 28px 32px 24px;
}
@media (max-width: 760px) {
    .traffic-card.horiz { flex-direction: column; }
    .traffic-card.horiz .traffic-glyph {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(200,112,52,0.15);
        padding: 22px;
    }
    .traffic-card.horiz .traffic-body { padding: 22px 24px 22px; }
}

.traffic-card {
    position: relative;
    padding: 28px 30px 22px;
    border: 1px solid rgba(200,112,52,0.18);
    border-radius: 10px;
    background:
        linear-gradient(160deg, rgba(200,112,52,0.05), rgba(200,112,52,0) 60%),
        var(--bg-1);
    transition: border-color .2s ease, transform .2s ease, box-shadow .25s ease;
}
.traffic-card:hover {
    border-color: rgba(200,112,52,0.5);
    transform: translateY(-2px);
    box-shadow: 0 22px 50px -28px rgba(200,112,52,0.45);
}
.traffic-card > .tick {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: var(--accent);
    border-style: solid;
    border-width: 0;
    opacity: 0.7;
}
.traffic-card > .tick.tl { top: 8px;    left: 8px;    border-top-width: 1px;    border-left-width: 1px; }
.traffic-card > .tick.tr { top: 8px;    right: 8px;   border-top-width: 1px;    border-right-width: 1px; }
.traffic-card > .tick.bl { bottom: 8px; left: 8px;    border-bottom-width: 1px; border-left-width: 1px; }
.traffic-card > .tick.br { bottom: 8px; right: 8px;   border-bottom-width: 1px; border-right-width: 1px; }

.traffic-glyph {
    width: 100px;
    height: 60px;
    margin: 0 0 14px;
}
.traffic-glyph svg { width: 100%; height: 100%; display: block; }

.traffic-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    color: var(--text);
    margin: 0 0 10px;
}
.traffic-card p { margin: 0 0 10px; }
.traffic-card p:last-child { margin-bottom: 0; }
.traffic-card .code-block.traffic-ua {
    font-size: 0.7rem;
    padding: 10px 12px;
    white-space: pre;
    margin: 10px 0 12px;
}

/* HTTP packet bounces toward the server */
.http-packet {
    animation: http-fly 2s ease-in-out infinite;
}
@keyframes http-fly {
    0%   { transform: translateX(0);   opacity: 0; }
    12%  { opacity: 1; }
    78%  { opacity: 1; transform: translateX(58px); }
    92%  { opacity: 0; transform: translateX(58px); }
    100% { opacity: 0; transform: translateX(0);   }
}

/* DNS leaves pulse in sequence as the query fans out */
.dns-leaf {
    transform-origin: center;
    animation: dns-pulse 2.4s ease-in-out infinite;
    opacity: 0.3;
}
.dns-leaf.l1 { animation-delay: 0.0s; }
.dns-leaf.l2 { animation-delay: 0.3s; }
.dns-leaf.l3 { animation-delay: 0.6s; }
@keyframes dns-pulse {
    0%, 60%, 100% { opacity: 0.3; transform: scale(1);   }
    20%           { opacity: 1;   transform: scale(1.4); }
    40%           { opacity: 0.5; transform: scale(1);   }
}

/* active-probing glyph: expanding ICMP rings + directional TCP/UDP/ICMP darts */
.active-rings .ar {
    transform-origin: 50px 30px;
    opacity: 0;
    animation: active-ring 2.4s ease-out infinite;
}
.active-rings .ar.r2 { animation-delay: 1.2s; }
@keyframes active-ring {
    0%   { transform: scale(0.3); opacity: 0.9; }
    80%  { opacity: 0.15; }
    100% { transform: scale(2.6); opacity: 0;   }
}
.probe-dart {
    opacity: 0;
}
.probe-dart.tcp {
    animation: dart-tcp 2.4s ease-in-out infinite;
}
.probe-dart.udp {
    animation: dart-udp 2.4s ease-in-out infinite;
    animation-delay: 0.6s;
}
.probe-dart.icmp {
    animation: dart-icmp 2.4s ease-in-out infinite;
    animation-delay: 1.2s;
}
@keyframes dart-tcp {
    0%   { opacity: 0; transform: translate(54px,30px) rotate(-25deg); }
    12%  { opacity: 1; }
    60%  { opacity: 1; transform: translate(86px,15px) rotate(-25deg); }
    75%  { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes dart-udp {
    0%   { opacity: 0; transform: translate(54px,30px) rotate(25deg); }
    12%  { opacity: 1; }
    60%  { opacity: 1; transform: translate(86px,45px) rotate(25deg); }
    75%  { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes dart-icmp {
    0%   { opacity: 0; transform: translate(46px,30px) scale(-1,1); }
    12%  { opacity: 1; }
    60%  { opacity: 1; transform: translate(14px,30px) scale(-1,1); }
    75%  { opacity: 0; }
    100% { opacity: 0; }
}

/* SinkDB list-scanner sweep */
.sinkdb-scan line {
    transform-origin: 50px 30px;
    animation: sinkdb-sweep 2.2s ease-in-out infinite;
}
@keyframes sinkdb-sweep {
    0%, 100% { transform: translateY(-12px); opacity: 0.3; }
    50%      { transform: translateY(12px);  opacity: 0.9; }
}

/* RFC 9511 fingerprint scan */
.fp-scan {
    animation: fp-scan-sweep 2.4s ease-in-out infinite;
}
@keyframes fp-scan-sweep {
    0%, 100% { transform: translateY(0);   opacity: 0.85; }
    50%      { transform: translateY(24px); opacity: 0.85; }
}

/* opt-out: node fades out with a slash drawn over it */
.optout-leaving {
    animation: optout-fade 3s ease-in-out infinite;
}
.optout-strike {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: optout-strike 3s ease-in-out infinite;
}
@keyframes optout-fade {
    0%, 30%   { opacity: 0.85; }
    55%, 80%  { opacity: 0.15; }
    95%, 100% { opacity: 0.85; }
}
@keyframes optout-strike {
    0%, 30%   { stroke-dashoffset: 20; opacity: 0.9; }
    55%, 80%  { stroke-dashoffset: 0;  opacity: 0.9; }
    95%, 100% { stroke-dashoffset: 20; opacity: 0;   }
}

/* opt-out form sits inside the card body */
.optout-form { margin-top: 18px; }


/* blog "share your research" call-to-action */
.collab-card {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 36px 36px 32px;
    border: 1px solid rgba(200,112,52,0.32);
    border-radius: 10px;
    background:
        linear-gradient(160deg, rgba(200,112,52,0.08), rgba(200,112,52,0) 60%),
        var(--bg-1);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 22px 60px -30px rgba(200,112,52,0.4);
    text-align: left;
}
.collab-card > .tick {
    position: absolute;
    width: 9px;
    height: 9px;
    border-color: var(--accent);
    border-style: solid;
    border-width: 0;
    opacity: 0.8;
}
.collab-card > .tick.tl { top: 10px;    left: 10px;    border-top-width: 1px;    border-left-width: 1px; }
.collab-card > .tick.tr { top: 10px;    right: 10px;   border-top-width: 1px;    border-right-width: 1px; }
.collab-card > .tick.bl { bottom: 10px; left: 10px;    border-bottom-width: 1px; border-left-width: 1px; }
.collab-card > .tick.br { bottom: 10px; right: 10px;   border-bottom-width: 1px; border-right-width: 1px; }
.collab-tag {
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.collab-card h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}
.collab-btn { margin-top: 14px; }
@media (max-width: 560px) {
    .collab-card { padding: 28px 24px; }
}

/* honeypot: darts firing toward the center hex */
.honey-dart {
    opacity: 0;
    animation: honey-fire 2.4s ease-in-out infinite;
}
.honey-dart.d1 { animation-delay: 0.0s; }
.honey-dart.d2 { animation-delay: 0.4s; }
.honey-dart.d3 { animation-delay: 0.8s; }
@keyframes honey-fire {
    0%   { opacity: 0; transform: translate(8px,14px); }
    10%  { opacity: 1; }
    60%  { opacity: 1; transform: translate(40px,28px); }
    70%  { opacity: 0; }
    100% { opacity: 0; }
}
.honey-dart.d2 { animation-name: honey-fire-2; }
.honey-dart.d3 { animation-name: honey-fire-3; }
@keyframes honey-fire-2 {
    0%   { opacity: 0; transform: translate(8px,30px); }
    10%  { opacity: 1; }
    60%  { opacity: 1; transform: translate(40px,30px); }
    70%  { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes honey-fire-3 {
    0%   { opacity: 0; transform: translate(8px,46px); }
    10%  { opacity: 1; }
    60%  { opacity: 1; transform: translate(40px,32px); }
    70%  { opacity: 0; }
    100% { opacity: 0; }
}

/* background noise: highlights cycle randomly across the dot grid */
.bg-hit {
    opacity: 0;
    animation: bg-flash 2.2s ease-in-out infinite;
}
.bg-hit.h1 { animation-delay: 0.0s; }
.bg-hit.h2 { animation-delay: 0.7s; }
.bg-hit.h3 { animation-delay: 1.4s; }
@keyframes bg-flash {
    0%, 60%, 100% { opacity: 0; transform: scale(0.6); }
    25%           { opacity: 1; transform: scale(1.4); }
    45%           { opacity: 0.3; transform: scale(1);  }
}

/* hero radar (large, right side of opt-out hero) */
.optout-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 48px;
    align-items: center;
}
.optout-hero-text { min-width: 0; }
.optout-hero-radar {
    width: 220px;
    height: 220px;
    margin-left: auto;
    filter: drop-shadow(0 18px 50px rgba(200,112,52,0.35));
}
.optout-hero-radar svg { width: 100%; height: 100%; display: block; }
.radar-sweep-hero {
    transform-origin: 100px 100px;
    animation: radar-spin 4.2s linear infinite;
}
@keyframes radar-spin {
    from { transform: rotate(0deg);   }
    to   { transform: rotate(360deg); }
}
.radar-blip {
    animation: radar-blip 4.2s ease-in-out infinite;
}
.radar-blip.blip-2 { animation-delay: 1.4s; }
.radar-blip.blip-3 { animation-delay: 2.6s; }
@keyframes radar-blip {
    0%, 30%  { opacity: 0; }
    40%      { opacity: 1; }
    70%      { opacity: 0.3; }
    100%     { opacity: 0; }
}

@media (max-width: 760px) {
    .optout-hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .optout-hero-radar { width: 160px; height: 160px; margin: 0; }
}

/* noscript gate - default state hides the page and shows the gate;
   the inline script in <head> adds .has-js to <html>, which flips this. */
html:not(.has-js) body > *:not(.noscript-gate) { display: none !important; }
html:not(.has-js) body { overflow: hidden; }
html.has-js .noscript-gate { display: none !important; }

.noscript-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(200,112,52,0.10), transparent 55%),
        radial-gradient(ellipse at 70% 80%, rgba(200,112,52,0.06), transparent 60%),
        var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
}
.noscript-card {
    max-width: 560px;
    width: 100%;
    padding: 40px 36px;
    background: linear-gradient(160deg, rgba(255,255,255,0.02), rgba(255,255,255,0.0));
    border: 1px solid rgba(200,112,52,0.35);
    border-radius: 10px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 30px 80px -30px rgba(200,112,52,0.45),
        0 0 0 1px rgba(11,11,11,0.6);
    text-align: left;
}
.noscript-eyebrow {
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin: 0 0 14px;
}
.noscript-card h1 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    color: var(--text);
}
.noscript-card p { color: var(--text-dim); }
.noscript-card strong { color: var(--accent); font-weight: 500; }
.noscript-foot {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(200,112,52,0.18);
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ============================================================
   PRODUCTS
   Alternating full-width bands with per-product themed SVG.
   ============================================================ */

.products-hero { padding-bottom: 12px; }

.products-stream { padding: 40px 0 20px; }

.product-band {
    padding: 72px 0;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.product-band.in-view { opacity: 1; transform: none; }

.product-band + .product-band {
    border-top: 1px dashed rgba(200,112,52,0.10);
}

.product-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 56px;
    align-items: center;
}
.product-band--rev .product-band-inner { direction: rtl; }
.product-band--rev .product-band-inner > * { direction: ltr; }

.product-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 360px;
    width: 100%;
    justify-self: center;
}
.product-visual-frame {
    width: 100%;
    height: 100%;
    border: 1px solid var(--rule-strong);
    border-radius: 4px;
    background:
        radial-gradient(ellipse at center, color-mix(in srgb, var(--p-accent) 8%, transparent) 0%, transparent 65%),
        linear-gradient(180deg, color-mix(in srgb, var(--p-accent) 3%, var(--bg-1)) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}
.product-visual-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(color-mix(in srgb, var(--p-accent) 6%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--p-accent) 6%, transparent) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    pointer-events: none;
}
.product-visual-index {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    z-index: 2;
}
.product-visual .pv {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-copy .product-tag {
    color: var(--p-accent);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.product-copy .product-name {
    font-size: 2.4rem;
    line-height: 1.05;
    margin: 0 0 12px;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.product-copy .product-pitch {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text);
    margin: 0 0 20px;
    line-height: 1.4;
    font-style: italic;
}
.product-copy .product-body {
    color: var(--text-dim);
    margin: 0 0 24px;
}
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--p-accent);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    padding-bottom: 4px;
    border-bottom: 1px solid color-mix(in srgb, var(--p-accent) 40%, transparent);
    transition: border-color 0.15s ease, color 0.15s ease, gap 0.2s ease;
}
.product-cta:hover {
    color: var(--text);
    border-bottom-color: var(--text);
    gap: 12px;
}
.product-cta-arrow { transition: transform 0.2s ease; }
.product-cta:hover .product-cta-arrow { transform: translateX(3px); }
.product-cta--preview {
    background: var(--p-accent);
    color: var(--bg);
    border-bottom: none;
    padding: 10px 18px;
    border-radius: 2px;
}
.product-cta--preview:hover {
    background: color-mix(in srgb, var(--p-accent) 85%, #000);
    color: var(--bg);
    border-bottom: none;
}

.products-footnote {
    padding-top: 40px;
    border-top: 1px solid var(--rule);
    color: var(--text-dim);
}

/* ---- product visual: base + shared primitives ---- */

.pv * { transition: none; }
.pv text { font-family: var(--font-mono); fill: var(--text-dim); font-size: 8px; }
.pv-lbl { fill: var(--text); font-size: 9px; }

/* radar (IRC Eagle Eye) */
.pv-radar .pv-ring {
    fill: none;
    stroke: var(--p-accent);
    stroke-width: 1;
    opacity: 0;
    transform-origin: 100px 100px;
    animation: pvRingPulse 3.6s infinite ease-out;
}
.pv-radar .pv-ring-2 { animation-delay: 1.2s; }
.pv-radar .pv-ring-3 { animation-delay: 2.4s; }
.pv-radar .pv-sweep { animation: pvSpin 6s linear infinite; }
.pv-radar .pv-center { fill: var(--p-accent); }
.pv-radar .pv-dot { fill: var(--p-accent); opacity: 0.7; animation: pvBlink 2.4s infinite; }
.pv-radar .pv-dot-a { animation-delay: 0.2s; }
.pv-radar .pv-dot-b { animation-delay: 0.9s; }
.pv-radar .pv-dot-c { animation-delay: 1.5s; }
.pv-radar .pv-dot-d { animation-delay: 2.1s; }

@keyframes pvRingPulse {
    0%   { r: 20; opacity: 0.85; stroke-width: 1.4; }
    100% { r: 88; opacity: 0;    stroke-width: 0.4; }
}
@keyframes pvSpin { to { transform: rotate(360deg); } }
@keyframes pvBlink { 0%,100% { opacity: 0.15; } 50% { opacity: 0.95; } }

/* tree (DNS Map) */
.pv-tree .pv-node {
    fill: var(--p-accent);
    opacity: 0;
    animation: pvFadeIn 0.5s forwards;
}
.pv-tree .pv-edge {
    stroke: color-mix(in srgb, var(--p-accent) 55%, transparent);
    stroke-width: 1;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: pvDrawEdge 0.5s forwards;
}
.pv-tree .pv-node-1 { animation-delay: 0s; }
.pv-tree .pv-edge-1, .pv-tree .pv-edge-2 { animation-delay: 0.3s; }
.pv-tree .pv-node-2, .pv-tree .pv-node-3 { animation-delay: 0.6s; }
.pv-tree .pv-edge-3, .pv-tree .pv-edge-4, .pv-tree .pv-edge-5, .pv-tree .pv-edge-6 { animation-delay: 0.9s; }
.pv-tree .pv-node-4, .pv-tree .pv-node-5, .pv-tree .pv-node-6, .pv-tree .pv-node-7 { animation-delay: 1.2s; }
.pv-tree .pv-edge-7, .pv-tree .pv-edge-8, .pv-tree .pv-edge-9 { animation-delay: 1.5s; }
.pv-tree .pv-node-8, .pv-tree .pv-node-9, .pv-tree .pv-node-10 { animation-delay: 1.8s; }

@keyframes pvFadeIn { to { opacity: 1; } }
@keyframes pvDrawEdge { to { stroke-dashoffset: 0; } }

/* grid (ICE) */
.pv-grid .pv-cell {
    fill: color-mix(in srgb, var(--p-accent) 12%, var(--bg-1));
    stroke: color-mix(in srgb, var(--p-accent) 25%, transparent);
    stroke-width: 0.5;
    animation: pvCellPulse 8s infinite;
}
.pv-grid-band rect {
    fill: none;
    stroke: var(--p-accent);
    stroke-width: 1.5;
    opacity: 0;
    animation: pvBandSweep 6s infinite;
}
.pv-grid-band-a rect { animation-delay: 0s; }
.pv-grid-band-b rect { animation-delay: 2s; }
.pv-grid-band-c rect { animation-delay: 4s; }

@keyframes pvCellPulse {
    0%,100% { opacity: 0.7; }
    50%     { opacity: 1;   }
}
@keyframes pvBandSweep {
    0%   { opacity: 0; transform: scaleY(0.6); transform-origin: center; }
    15%  { opacity: 0.9; transform: scaleY(1); }
    35%  { opacity: 0.4; }
    100% { opacity: 0; }
}

/* packet (Spoofer Research) */
.pv-packet rect { fill: none; stroke: var(--p-accent); stroke-width: 1; }
.pv-packet text.pv-lbl { fill: var(--p-accent); font-size: 9px; }
.pv-packet .pv-src-true { opacity: 0.35; }
.pv-packet .pv-src-fake { opacity: 1; animation: pvBlink 2.4s infinite; }
.pv-packet .pv-strike { stroke: var(--p-accent); stroke-width: 1.2; opacity: 0.85; }
.pv-packet .pv-flow line { stroke: color-mix(in srgb, var(--p-accent) 45%, transparent); stroke-width: 1; }
.pv-packet .pv-flow-dot { fill: var(--p-accent); animation: pvFlowRight 2.2s linear infinite; }
.pv-packet .pv-flow-dot-2 { animation-delay: 0.7s; }
.pv-packet .pv-flow-dot-3 { animation-delay: 1.4s; }
.pv-packet .pv-arrowhead { fill: var(--p-accent); }

@keyframes pvFlowRight {
    0%   { transform: translateX(0);   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateX(110px); opacity: 0; }
}

/* rotate (Proxy Resolver) */
.pv-rotate .pv-orbit {
    fill: none;
    stroke: color-mix(in srgb, var(--p-accent) 20%, transparent);
    stroke-width: 1;
    stroke-dasharray: 3 4;
}
.pv-rotate .pv-orb {
    fill: color-mix(in srgb, var(--p-accent) 60%, var(--bg-1));
    stroke: var(--p-accent);
    stroke-width: 0.5;
}
.pv-rotate .pv-hub { fill: var(--p-accent); }
.pv-rotate .pv-pointer {
    stroke: var(--p-accent);
    stroke-width: 1.5;
    fill: var(--p-accent);
    animation: pvSpin 8s linear infinite;
}

/* ports (PortMap) */
.pv-ports-frame {
    fill: var(--bg-1);
    stroke: color-mix(in srgb, var(--p-accent) 40%, transparent);
    stroke-width: 1;
}
.pv-ports-reel {
    animation: pvReelScroll 24s linear infinite;
    transform: translateY(0);
}
.pv-port-num {
    fill: var(--text-dim);
    font-size: 14px;
    font-weight: 500;
}
.pv-ports-hilite {
    fill: color-mix(in srgb, var(--p-accent) 15%, transparent);
    stroke: var(--p-accent);
    stroke-width: 1;
}
@keyframes pvReelScroll {
    to { transform: translateY(-352px); }
}

/* graph (BGP Watchdog) */
.pv-graph .pv-gedge {
    stroke: color-mix(in srgb, var(--p-accent) 30%, transparent);
    stroke-width: 1;
}
.pv-graph .pv-gedge-warn {
    stroke: var(--p-accent);
    stroke-width: 1.6;
    stroke-dasharray: 4 3;
    animation: pvDashRun 1.6s linear infinite;
}
.pv-graph .pv-gnode circle {
    fill: var(--bg-1);
    stroke: var(--p-accent);
    stroke-width: 1.4;
}
.pv-graph .pv-gnode-warn circle {
    fill: color-mix(in srgb, var(--p-accent) 30%, var(--bg-1));
    stroke-width: 2;
}
.pv-graph .pv-glbl { fill: var(--text); font-size: 6.5px; }
.pv-graph .pv-pulse {
    fill: none;
    stroke: var(--p-accent);
    stroke-width: 1.5;
    animation: pvPulseOut 2s ease-out infinite;
    transform-origin: 100px 170px;
}
@keyframes pvDashRun { to { stroke-dashoffset: -14; } }
@keyframes pvPulseOut {
    0%   { r: 10; opacity: 0.9; }
    100% { r: 28; opacity: 0;   }
}

/* redact (StealCity) */
.pv-redact .pv-redact-row {
    opacity: 0;
    animation: pvFadeIn 0.35s forwards;
}
.pv-redact .pv-redact-row-0 { animation-delay: 0.05s; }
.pv-redact .pv-redact-row-1 { animation-delay: 0.15s; }
.pv-redact .pv-redact-row-2 { animation-delay: 0.25s; }
.pv-redact .pv-redact-row-3 { animation-delay: 0.35s; }
.pv-redact .pv-redact-row-4 { animation-delay: 0.45s; }
.pv-redact .pv-redact-row-5 { animation-delay: 0.55s; }
.pv-redact .pv-redact-row-6 { animation-delay: 0.65s; }
.pv-redact .pv-rlbl {
    fill: color-mix(in srgb, var(--p-accent) 70%, transparent);
    font-size: 8px;
    letter-spacing: 0.06em;
}
.pv-redact .pv-redact-row rect {
    fill: color-mix(in srgb, var(--p-accent) 25%, var(--text-muted));
    animation: pvBlink 2.8s infinite;
}
.pv-redact .pv-redact-scan {
    stroke: var(--p-accent);
    stroke-width: 1;
    opacity: 0.7;
    animation: pvScanBar 3.4s ease-in-out infinite;
}
@keyframes pvScanBar {
    0%,100% { transform: translateY(0);    }
    50%     { transform: translateY(140px); }
}

/* havoc (HAVOC — distributed recon) */
.pv-havoc .pv-havoc-beam {
    stroke: color-mix(in srgb, var(--p-accent) 55%, transparent);
    stroke-width: 1;
    stroke-dasharray: 3 6;
    animation: pvDashRun 1.4s linear infinite;
}
.pv-havoc .pv-havoc-beam-2 { animation-delay: 0.2s; }
.pv-havoc .pv-havoc-beam-3 { animation-delay: 0.4s; }
.pv-havoc .pv-havoc-beam-4 { animation-delay: 0.6s; }
.pv-havoc .pv-havoc-beam-5 { animation-delay: 0.8s; }
.pv-havoc .pv-havoc-beam-6 { animation-delay: 1.0s; }
.pv-havoc .pv-havoc-worker {
    fill: var(--bg-1);
    stroke: var(--p-accent);
    stroke-width: 1.2;
}
.pv-havoc .pv-havoc-target {
    fill: var(--p-accent);
    opacity: 0.7;
    animation: pvBlink 2.2s infinite;
}
.pv-havoc .pv-havoc-target-2 { animation-delay: 0.25s; }
.pv-havoc .pv-havoc-target-3 { animation-delay: 0.55s; }
.pv-havoc .pv-havoc-target-4 { animation-delay: 0.85s; }
.pv-havoc .pv-havoc-target-5 { animation-delay: 1.15s; }
.pv-havoc .pv-havoc-target-6 { animation-delay: 1.45s; }
.pv-havoc .pv-havoc-hub { fill: var(--p-accent); }
.pv-havoc .pv-havoc-pulse {
    fill: none;
    stroke: var(--p-accent);
    stroke-width: 1.4;
    transform-origin: 100px 100px;
    animation: pvHavocPulse 2s ease-out infinite;
}
@keyframes pvHavocPulse {
    0%   { r: 8;  opacity: 0.9; }
    100% { r: 26; opacity: 0;   }
}

/* blackhole (Blackhole — DNS honeypot swarm) */
.pv-blackhole .pv-bh-ring {
    fill: none;
    stroke: var(--p-accent);
    stroke-width: 1;
    opacity: 0;
    transform-origin: 100px 100px;
    animation: pvBhRing 3.6s infinite ease-out;
}
.pv-blackhole .pv-bh-ring-2 { animation-delay: 1.2s; }
.pv-blackhole .pv-bh-ring-3 { animation-delay: 2.4s; }
.pv-blackhole .pv-bh-disc {
    fill: none;
    stroke: color-mix(in srgb, var(--p-accent) 45%, transparent);
    stroke-width: 0.8;
    transform-origin: 100px 100px;
    animation: pvSpin 14s linear infinite;
}
.pv-blackhole .pv-bh-core {
    stroke: var(--p-accent);
    stroke-width: 1;
}
.pv-blackhole .pv-bh-q circle {
    fill: var(--p-accent);
    opacity: 0;
    transform-origin: 100px 100px;
    animation: pvBhFall 2.4s ease-in infinite;
}
.pv-blackhole .pv-bh-q-2 circle { animation-delay: 0.3s; }
.pv-blackhole .pv-bh-q-3 circle { animation-delay: 0.6s; }
.pv-blackhole .pv-bh-q-4 circle { animation-delay: 0.9s; }
.pv-blackhole .pv-bh-q-5 circle { animation-delay: 1.2s; }
.pv-blackhole .pv-bh-q-6 circle { animation-delay: 1.5s; }
.pv-blackhole .pv-bh-q-7 circle { animation-delay: 1.8s; }
.pv-blackhole .pv-bh-q-8 circle { animation-delay: 2.1s; }
@keyframes pvBhRing {
    0%   { r: 18; opacity: 0.75; stroke-width: 1.4; }
    100% { r: 78; opacity: 0;    stroke-width: 0.3; }
}
@keyframes pvBhFall {
    0%   { transform: scale(1);   opacity: 0; }
    15%  { opacity: 0.9; }
    90%  { transform: scale(0.15); opacity: 0.9; }
    100% { transform: scale(0.05); opacity: 0; }
}

/* coming-soon page flourishes */
.coming-soon-flash {
    background: linear-gradient(90deg,
        var(--text) 0%,
        var(--accent) 50%,
        var(--text) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: csShimmer 6s ease-in-out infinite;
}
@keyframes csShimmer {
    0%,100% { background-position: 0% 50%; }
    50%     { background-position: 100% 50%; }
}
.coming-soon-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 24px;
}
.coming-soon-blink {
    display: inline-block;
    color: var(--accent);
    animation: pvBlink 1.4s infinite;
}

/* mobile: stack + shrink */
@media (max-width: 800px) {
    .product-band { padding: 48px 0; }
    .product-band-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .product-band--rev .product-band-inner { direction: ltr; }
    .product-visual { max-width: 260px; }
    .product-copy .product-name { font-size: 1.8rem; }
    .product-copy .product-pitch { font-size: 1.02rem; }
}

@media (prefers-reduced-motion: reduce) {
    .pv *,
    .coming-soon-flash,
    .coming-soon-blink { animation: none !important; }
    .product-band { opacity: 1; transform: none; transition: none; }
}


/* honey (Telescope - honeypot feed) */
.pv-honey .pv-honey-line {
    stroke: color-mix(in srgb, var(--p-accent) 22%, transparent);
    stroke-width: 0.8;
    stroke-dasharray: 3 5;
}
.pv-honey .pv-honey-node {
    fill: color-mix(in srgb, var(--p-accent) 65%, var(--bg-1));
    stroke: var(--p-accent);
    stroke-width: 0.6;
    animation: pvBlink 3.2s infinite;
}
.pv-honey .pv-honey-node-1 { animation-delay: 0s; }
.pv-honey .pv-honey-node-2 { animation-delay: 0.35s; }
.pv-honey .pv-honey-node-3 { animation-delay: 0.7s; }
.pv-honey .pv-honey-node-4 { animation-delay: 1.05s; }
.pv-honey .pv-honey-node-5 { animation-delay: 1.4s; }
.pv-honey .pv-honey-node-6 { animation-delay: 1.75s; }
.pv-honey .pv-honey-node-7 { animation-delay: 2.1s; }
.pv-honey .pv-honey-node-8 { animation-delay: 2.45s; }
.pv-honey .pv-honey-hub {
    fill: var(--p-accent);
}
.pv-honey .pv-honey-hub-ring {
    fill: none;
    stroke: var(--p-accent);
    stroke-width: 1.2;
    transform-origin: 100px 170px;
    animation: pvPulseOut 2.4s ease-out infinite;
}
.pv-honey .pv-honey-flare {
    fill: none;
    stroke: var(--p-accent);
    stroke-width: 1.4;
    opacity: 0;
    animation: pvHoneyFlare 4.5s infinite;
    transform-origin: center;
}
.pv-honey .pv-honey-flare-1 { animation-delay: 0.5s;  transform-origin: 170px 35px;  }
.pv-honey .pv-honey-flare-2 { animation-delay: 2s;    transform-origin: 70px 70px;   }
.pv-honey .pv-honey-flare-3 { animation-delay: 3.4s;  transform-origin: 130px 140px; }

@keyframes pvHoneyFlare {
    0%   { r: 3;  opacity: 0;    stroke-width: 1.4; }
    10%  {         opacity: 0.9;                     }
    100% { r: 18; opacity: 0;    stroke-width: 0.3; }
}
