/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0e1a;
    --bg-card: #111827;
    --bg-surface: #0f1629;
    --text-primary: #e8edf5;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #a78bfa;
    --accent-hover: #c4b5fd;       /* brighter same-family tint — replaces jarring green */
    /* --accent-green removed; use --accent-ice for harmonious accents */
    --accent-purple: #c4b5fd;
    --accent-ice: #7dd3fc;          /* cool cyan for arctic harmony */
    --accent-deep: #6d28d9;         /* deep Arctic Space brand purple */
    --accent-light: #d8b4fe;        /* light lavender for gradient end */
    --accent-signal: #ff5a5f;       /* signal red for silent-comms / defense */
    --accent-signal-soft: #ffb3b5;
    /* Arctic Space brand gradient — stays within the purple family, dark to light */
    --arctic-gradient: linear-gradient(135deg, #7c3aed 0%, #a78bfa 50%, #d8b4fe 100%);
    --border: #1e293b;
    --border-hover: #3b3a6b;
    --glow-accent: 0 0 0 1px rgba(167,139,250,0.45), 0 8px 32px -8px rgba(167,139,250,0.35);
    --glow-signal: 0 0 0 1px rgba(255,90,95,0.45), 0 8px 32px -8px rgba(255,90,95,0.35);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --radius-pill: 9999px;
    --shadow-soft: 0 20px 60px -30px rgba(76, 29, 149, 0.35);
    --shadow-lift: 0 30px 80px -40px rgba(76, 29, 149, 0.45);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    line-height: 0;
}

.logo:hover {
    color: var(--text-primary);
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.logo:hover .logo-img {
    opacity: 0.85;
}

@media (max-width: 480px) {
    .logo-img { height: 28px; }
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before { top: -7px; }
.nav-toggle-label span::after { top: 7px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.btn-nav {
    background: var(--accent);
    color: var(--bg-dark) !important;
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--accent-hover);
    color: var(--bg-dark) !important;
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1a2e 30%, #0d1f35 50%, #0a1628 70%, #0a0e1a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(167, 139, 250, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(216, 180, 254, 0.08) 0%, transparent 50%);
    animation: aurora 20s ease-in-out infinite alternate;
}

@keyframes aurora {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, -1%) rotate(1deg); }
    66% { transform: translate(-1%, 2%) rotate(-1deg); }
    100% { transform: translate(1%, -2%) rotate(0.5deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 72px;
}

.hero-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.accent {
    background: var(--arctic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--bg-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px -10px rgba(167,139,250,0.55);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.875rem;
    border-radius: var(--radius-pill);
}

.link-arrow {
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

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

.link-arrow--signal {
    color: var(--accent-signal);
}

.link-arrow--signal:hover {
    color: var(--accent-signal-soft);
}

/* === Sections === */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--bg-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.page-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    margin: 0 auto;
    text-align: center;
}

/* === Features Grid === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
    border-color: rgba(167, 139, 250, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(167,139,250,0.04) 100%);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
    line-height: 0;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    display: block;
}

.threat-card__marker svg {
    width: 1.75rem;
    height: 1.75rem;
    display: block;
}

.resilience-card__glyph svg {
    width: 2.25rem;
    height: 2.25rem;
    display: block;
}

.spec-card h3 svg {
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.2em;
    margin-right: 0.55rem;
    color: var(--accent-purple);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* === Services Preview === */
.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-card:hover {
    border-color: rgba(167, 139, 250, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(167,139,250,0.05) 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* === Service Detail === */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-detail-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === Content Block === */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block.centered {
    text-align: center;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content-block p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* === Team Grid === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px -16px rgba(167,139,250,0.35);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--bg-dark);
}

.team-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === Contact Grid === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px -16px rgba(167,139,250,0.35);
}

.contact-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--arctic-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bg-dark);
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-role {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.contact-email {
    font-size: 0.9rem;
}

/* === Location === */
.location-hero {
    text-align: center;
}

.location-badge {
    display: inline-block;
    background: rgba(167, 139, 250, 0.1);
    color: var(--accent);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.location-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.spec-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.spec-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.spec-card ul {
    list-style: none;
}

.spec-card li {
    padding: 0.35rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.spec-card li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.location-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.location-info.centered {
    text-align: center;
}

.info-block h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.info-block p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* === News === */
/* === News "dispatch log" — hairline-separated entries, no boxy cards === */
/* Sharp corners + corner crop-marks on imagery (matches the video hero),    */
/* monospace index/date metadata. A large lead story sets the rhythm.        */
.news-feed {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.news-entry {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

/* Lead story: full-width, larger image stacked above oversized headline. */
.news-entry--lead {
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    padding: 3.5rem 0;
    align-items: center;
}

.news-entry__media {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 2px;
}

.news-entry__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
    filter: saturate(0.92);
}

/* Corner crop-marks — same instrument language as .video-hero__bracket */
.news-entry__media::before,
.news-entry__media::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 0 solid rgba(216, 180, 254, 0.6);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-entry__media::before {
    top: 9px;
    left: 9px;
    border-top-width: 1px;
    border-left-width: 1px;
}

.news-entry__media::after {
    bottom: 9px;
    right: 9px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.news-entry__media--empty {
    background:
        radial-gradient(ellipse at 50% 40%, rgba(167, 139, 250, 0.12) 0%, transparent 65%),
        var(--bg-surface);
}

.news-entry:hover .news-entry__media img {
    transform: scale(1.04);
    filter: saturate(1);
}

.news-entry:hover .news-entry__media::before,
.news-entry:hover .news-entry__media::after {
    opacity: 1;
}

.news-entry__body {
    min-width: 0;
}

.news-entry__meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.news-entry__index {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.news-entry__tick {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.news-entry__date {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.news-entry__src {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    border: 1px solid rgba(216, 180, 254, 0.35);
    border-radius: var(--radius-pill);
    padding: 0.15rem 0.6rem;
}

.news-entry__title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 0.85rem;
    transition: color 0.25s ease;
}

.news-entry--lead .news-entry__title {
    font-size: 2.1rem;
}

.news-entry:hover .news-entry__title {
    color: var(--accent);
}

.news-entry__excerpt {
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.news-entry--lead .news-entry__excerpt {
    font-size: 1.05rem;
}

.news-entry__more {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.news-entry__more:hover {
    border-bottom-color: var(--accent);
}

.news-entry__title a {
    color: inherit;
    text-decoration: none;
}

/* === News article detail page === */
.container--narrow {
    max-width: 820px;
}

.article__back {
    display: inline-block;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 2.5rem;
    transition: color 0.2s ease;
}

.article__back:hover {
    color: var(--accent);
}

.article__meta {
    margin-bottom: 0.9rem;
}

.article__date {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
}

.article__title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.015em;
    margin-bottom: 2rem;
}

.article__media {
    position: relative;
    margin: 0 0 2.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--bg-surface);
}

.article__media img {
    display: block;
    width: 100%;
    height: auto;
}

.article__media::before,
.article__media::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 0 solid rgba(216, 180, 254, 0.6);
    pointer-events: none;
}

.article__media::before {
    top: 10px;
    left: 10px;
    border-top-width: 1px;
    border-left-width: 1px;
}

.article__media::after {
    bottom: 10px;
    right: 10px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.article__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article__body p {
    margin-bottom: 1.4rem;
}

.article__body a {
    color: var(--accent);
}

.article__source {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

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

@media (max-width: 768px) {
    .news-entry,
    .news-entry--lead {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    .news-entry--lead .news-entry__title {
        font-size: 1.6rem;
    }
}

.news-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 4rem 0;
}

/* === Jobs === */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.job-header {
    margin-bottom: 1rem;
}

.job-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.job-location {
    font-size: 0.85rem;
    color: var(--accent);
}

.job-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.job-requirements h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.job-requirements ul {
    margin-bottom: 1.5rem;
}

.job-requirements li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.job-requirements li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* === CTA === */
.cta-section {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.05) 0%, rgba(125, 211, 252, 0.05) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* === Footer === */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--accent-hover);
}

/* Silent Comms nav tint */
.nav-links a.nav-signal {
    color: var(--accent-signal);
    position: relative;
}

.nav-links a.nav-signal::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-signal);
    display: inline-block;
    margin-right: 0.4rem;
    vertical-align: middle;
    box-shadow: 0 0 8px var(--accent-signal);
    animation: signal-blink 2.4s ease-in-out infinite;
}

.nav-links a.nav-signal:hover {
    color: var(--accent-signal-soft);
}

@keyframes signal-blink {
    0%, 60%, 100% { opacity: 1; }
    70%, 85% { opacity: 0.3; }
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    margin-top: 0.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: underline;
}

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

/* === Legal pages (privacy policy) === */
.legal-body h2 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
}

.legal-body ul {
    margin: 0 0 1.4rem 1.4rem;
    list-style: disc;
}

.legal-body ul li {
    margin-bottom: 0.4rem;
}

/* === Product Pages === */
.product-hero {
    padding: 8rem 0 4rem;
}

.product-hero--scout {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a1a2e 50%, var(--bg-dark) 100%);
}

.product-hero--hive {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #121330 50%, var(--bg-dark) 100%);
}

.product-hero--fenix {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1f1708 50%, var(--bg-dark) 100%);
}

.product-hero--silent {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1f0a0d 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.product-hero--silent::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 40%, rgba(255,90,95,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(255,90,95,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.product-hero--silent .container { position: relative; z-index: 1; }

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.product-headline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-image img {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(167, 139, 250, 0.15));
}

.product-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.product-badge--scout {
    background: rgba(125, 211, 252, 0.1);
    color: var(--accent-ice);
}

.product-badge--hive {
    background: rgba(167, 139, 250, 0.1);
    color: var(--accent-purple);
}

.product-badge--fenix {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.product-badge--silent {
    background: rgba(255, 90, 95, 0.12);
    color: var(--accent-signal);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.product-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-signal);
    box-shadow: 0 0 10px var(--accent-signal);
    animation: signal-blink 2.4s ease-in-out infinite;
}

/* Product Cards (overview page) */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.product-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-4px);
    color: inherit;
}

.product-card--scout:hover { border-color: var(--accent-ice); box-shadow: 0 20px 48px -22px rgba(125,211,252,0.4); }
.product-card--hive:hover { border-color: var(--accent-purple); box-shadow: 0 20px 48px -22px rgba(196,181,253,0.35); }
.product-card--fenix:hover { border-color: #fbbf24; box-shadow: 0 20px 48px -22px rgba(251,191,36,0.35); }
.product-card--silent:hover { border-color: var(--accent-signal); box-shadow: 0 20px 48px -22px rgba(255,90,95,0.35); }

.product-card-image {
    padding: 2.5rem 2.5rem 0;
    display: flex;
    justify-content: center;
    background: var(--bg-surface);
}

.product-card-image img {
    max-height: 180px;
    width: auto;
}

.product-card-content {
    padding: 2rem 2.5rem 2.5rem;
}

.product-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.product-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.product-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Specs Table */
.specs-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

.specs-table td {
    padding: 1rem 0;
}

.spec-name {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    width: 40%;
}

.spec-value {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* HIVE Steps */
.hive-steps {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hive-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.hive-step-arrow {
    display: flex;
    align-items: center;
    color: var(--accent-purple);
    font-size: 1.5rem;
    padding-top: 2rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-purple);
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

.hive-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hive-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FENIX Capabilities */
.fenix-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.capability-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.2s;
}

.capability-card:hover {
    border-color: #fbbf24;
}

.capability-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbf24;
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

.capability-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.capability-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FENIX Tech Grid */
.fenix-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fenix-tech-card {
    text-align: center;
    padding: 2rem;
}

.fenix-tech-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.fenix-tech-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
        display: none;
    }

    .nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid,
    .services-preview,
    .news-grid,
    .specs-grid,
    .jobs-grid,
    .product-showcase,
    .fenix-capabilities,
    .fenix-tech-grid {
        grid-template-columns: 1fr;
    }

    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .product-hero-content h1 {
        font-size: 3rem;
    }

    .product-hero-image img {
        max-width: 200px;
    }

    .hive-steps {
        flex-direction: column;
        align-items: center;
    }

    .hive-step {
        max-width: 100%;
    }

    .hive-step-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .location-info {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .page-hero {
        padding: 8rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }
}

/* ============================================================ */
/* === NEW: Section Tags, RF Studies, Resilience Suite      === */
/* ============================================================ */

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    border: 1px solid currentColor;
}

.section-tag--rf {
    color: var(--accent-ice);
    background: rgba(125, 211, 252, 0.08);
}

.section-tag--resilience {
    color: var(--accent-purple);
    background: rgba(196, 181, 253, 0.08);
}

.section-tag--signal {
    color: var(--accent-signal);
    background: rgba(255, 90, 95, 0.08);
}

.feature-list.compact li {
    padding: 0.35rem 0 0.35rem 1.6rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.band-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.band-pill {
    font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', ui-monospace, monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    background: rgba(125, 211, 252, 0.08);
    color: var(--accent-ice);
    border: 1px solid rgba(125, 211, 252, 0.25);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.band-pill:hover {
    transform: translateY(-1px);
    background: rgba(125, 211, 252, 0.15);
    border-color: var(--accent-ice);
}

.band-pill--optical {
    background: rgba(167, 139, 250, 0.1);
    color: var(--accent-purple);
    border-color: rgba(167, 139, 250, 0.3);
}

.band-pill--optical:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: var(--accent-purple);
}

/* Resilience grid */
.resilience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* CDN card carries a detailed infographic — give it the full row, side by side
   with its text, so the graphic is large enough to read. */
.resilience-card--cdn {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.resilience-card--cdn .resilience-card__figure {
    margin: 0;
    border-bottom: none;
    border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
    .resilience-card--cdn {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.resilience-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.resilience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(196,181,253,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.resilience-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 50px -24px rgba(196,181,253,0.4);
}

.resilience-card:hover::before {
    opacity: 1;
}

.resilience-card__glyph {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--accent-purple);
    display: inline-block;
}

.resilience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.resilience-card__lead {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.resilience-card--deploy .resilience-card__glyph { color: var(--accent-ice); }
.resilience-card--deploy:hover { border-color: var(--accent-ice); box-shadow: 0 20px 50px -24px rgba(125,211,252,0.4); }
.resilience-card--cdn .resilience-card__glyph { color: var(--accent-purple); }
.resilience-card--backup .resilience-card__glyph { color: var(--accent-ice); }
.resilience-card--backup:hover { border-color: var(--accent-ice); box-shadow: 0 20px 50px -24px rgba(125,211,252,0.35); }

/* Top-row text cards: flex column so the feature list always anchors to the
   bottom and both cards read as an even, balanced pair regardless of copy length.
   Scoped to deploy/backup so the CDN card keeps its two-column grid. */
.resilience-card--deploy,
.resilience-card--backup {
    display: flex;
    flex-direction: column;
}
.resilience-card--deploy .feature-list,
.resilience-card--backup .feature-list {
    margin-top: auto;
}

.resilience-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    border: 1px dashed rgba(255, 90, 95, 0.3);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,90,95,0.03) 0%, transparent 100%);
}

.resilience-cta p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

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

/* Align left when section-tag is used in a service-detail */
.service-detail-content .section-tag {
    margin-bottom: 0.75rem;
}

/* ============================================================ */
/* === Silent Comms page                                    === */
/* ============================================================ */

.signal-hero {
    position: relative;
    min-height: 82vh;
    padding: 10rem 0 8rem;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(255, 90, 95, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 110%, rgba(125, 211, 252, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #060811 0%, #0a0e1a 100%);
    overflow: hidden;
    isolation: isolate;
}

.signal-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,90,95,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,90,95,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.signal-hero__scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255,255,255,0) 0px,
        rgba(255,255,255,0) 3px,
        rgba(255,255,255,0.015) 3px,
        rgba(255,255,255,0.015) 4px
    );
    pointer-events: none;
    z-index: 0;
}

.signal-hero__content {
    position: relative;
    z-index: 2;
}

.signal-hero__classmark {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255,90,95,0.5);
    border-radius: 4px;
    background: rgba(255,90,95,0.06);
    margin-bottom: 2rem;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
}

.signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-signal);
    box-shadow: 0 0 12px var(--accent-signal);
    animation: signal-blink 2.4s ease-in-out infinite;
}

.signal-meta {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    color: var(--accent-signal);
    font-weight: 600;
}

.signal-hero h1 {
    font-size: clamp(3.5rem, 11vw, 8rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.signal-h1__line {
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, #d6d9e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signal-h1__line--alt {
    background: linear-gradient(180deg, var(--accent-signal) 0%, #ff8287 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.05em;
    position: relative;
    padding-left: 0.3em;
}

.signal-lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.55;
    margin-bottom: 2.5rem;
}

.btn-signal {
    background: var(--accent-signal);
    color: #0a0e1a;
    padding: 0.95rem 2.2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
}

.btn-signal:hover {
    background: var(--accent-signal-soft);
    color: #0a0e1a;
    transform: translateY(-1px);
    box-shadow: 0 12px 36px -12px rgba(255,90,95,0.6);
}

.signal-hero__ticker {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255, 90, 95, 0.4);
    animation: ticker 38s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.signal-hero__ticker span {
    flex-shrink: 0;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Signal sections */
.signal-section {
    background:
        radial-gradient(ellipse at 80% 0%, rgba(255,90,95,0.04) 0%, transparent 60%),
        var(--bg-dark);
    position: relative;
}

.signal-section--darker {
    background:
        radial-gradient(ellipse at 15% 50%, rgba(255,90,95,0.06) 0%, transparent 55%),
        var(--bg-surface);
}

/* Principles — long-form, editorial */
.signal-principles {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.signal-principle {
    position: relative;
    padding-left: 6rem;
}

.signal-principle--offset {
    margin-left: auto;
    padding-left: 6rem;
    text-align: left;
}

.signal-principle__index {
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--accent-signal);
    opacity: 0.7;
    line-height: 1;
}

.signal-principle h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.signal-principle p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
}

@media (max-width: 720px) {
    .signal-principle,
    .signal-principle--offset {
        padding-left: 0;
        padding-top: 3.5rem;
    }
    .signal-principle__index {
        font-size: 2.5rem;
    }
}

/* Flow diagram */
.signal-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.signal-flow__node {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent-signal);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    min-height: 180px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.signal-flow__node:hover {
    transform: translateY(-3px);
    border-color: var(--accent-signal);
    box-shadow: 0 20px 48px -24px rgba(255,90,95,0.45);
}

.signal-flow__step {
    display: block;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--accent-signal);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.signal-flow__node p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
}

.signal-flow__arrow {
    color: var(--accent-signal);
    opacity: 0.6;
    font-size: 1.5rem;
}

@media (max-width: 900px) {
    .signal-flow {
        grid-template-columns: 1fr;
    }
    .signal-flow__arrow {
        transform: rotate(90deg);
        justify-self: center;
    }
}

/* Facts row */
.signal-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,90,95,0.2);
    border-bottom: 1px solid rgba(255,90,95,0.2);
    padding: 2rem 0;
}

.signal-fact {
    text-align: center;
    padding: 1rem 1.25rem;
    border-right: 1px solid rgba(255,90,95,0.15);
}

.signal-fact:last-child {
    border-right: 0;
}

.signal-fact__value {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.signal-fact__label {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--accent-signal);
    text-transform: uppercase;
}

@media (max-width: 720px) {
    .signal-facts { grid-template-columns: 1fr 1fr; }
    .signal-fact:nth-child(2) { border-right: 0; }
}

/* Pairing */
.signal-section--pairing {
    border-top: 1px solid rgba(255,90,95,0.1);
}

.signal-pairing {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.signal-pairing h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.signal-pairing p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.signal-pairing__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.signal-link {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--border);
    border-left: 2px solid var(--accent-signal);
    border-radius: 4px;
    transition: all 0.2s ease;
    background: rgba(255,90,95,0.02);
}

.signal-link:hover {
    color: var(--accent-signal);
    border-color: var(--accent-signal);
    background: rgba(255,90,95,0.08);
    transform: translateX(4px);
}

@media (max-width: 800px) {
    .signal-pairing { grid-template-columns: 1fr; gap: 2rem; }
}

/* Signal CTA */
.signal-cta {
    background: linear-gradient(135deg, rgba(255,90,95,0.06) 0%, rgba(255,90,95,0.02) 100%);
    border-top: 1px solid rgba(255,90,95,0.2);
    border-bottom: 1px solid rgba(255,90,95,0.2);
}

.signal-cta .cta-content h2 {
    background: linear-gradient(180deg, #ffffff 0%, var(--accent-signal-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================ */
/* === FENIX FORGE: Threats, Regions, Resilience Product    === */
/* ============================================================ */

.threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.threat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.threat-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-purple), transparent);
    opacity: 0.6;
}

.threat-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-purple);
    box-shadow: 0 18px 44px -20px rgba(196,181,253,0.35);
}

.threat-card__marker {
    font-size: 1.75rem;
    color: var(--accent-purple);
    margin-bottom: 0.85rem;
    line-height: 1;
}

.threat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.005em;
}

.threat-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Region grid */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.region-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.region-card:hover {
    border-color: var(--accent-ice);
    transform: translateY(-2px);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(125,211,252,0.04) 100%);
}

.region-card__label {
    display: block;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--accent-ice);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.region-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Cross-reference cards on /services */
.crossref-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.crossref-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem;
    color: inherit;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.crossref-card__tag {
    display: inline-block;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-purple);
    padding: 0.25rem 0.65rem;
    border: 1px solid currentColor;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.crossref-card__tag--signal {
    color: var(--accent-signal);
}

.crossref-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.crossref-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.crossref-card--fenix:hover {
    transform: translateY(-3px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 48px -22px rgba(196,181,253,0.4);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(196,181,253,0.04) 100%);
    color: inherit;
}

.crossref-card--silent:hover {
    transform: translateY(-3px);
    border-color: var(--accent-signal);
    box-shadow: 0 20px 48px -22px rgba(255,90,95,0.4);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255,90,95,0.04) 100%);
    color: inherit;
}

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

/* Silent Comms product card (on /products hub) */
.product-card--silent {
    border-color: rgba(255, 90, 95, 0.25);
}

.product-card--silent:hover {
    border-color: var(--accent-signal);
    box-shadow: 0 20px 48px -22px rgba(255,90,95,0.4);
}

.product-card-image--signal {
    background:
        radial-gradient(circle at center, rgba(255,90,95,0.12) 0%, transparent 60%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0) 0px, rgba(255,255,255,0) 3px, rgba(255,255,255,0.02) 3px, rgba(255,255,255,0.02) 4px),
        #0a0e1a;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.silent-card-visual {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.silent-card-visual__dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-signal);
    box-shadow: 0 0 20px var(--accent-signal);
    z-index: 2;
}

.silent-card-visual__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--accent-signal);
    opacity: 0;
    animation: silent-ping 3s ease-out infinite;
    width: 40px;
    height: 40px;
}

.silent-card-visual__ring--2 {
    animation-delay: 1s;
}

.silent-card-visual__ring--3 {
    animation-delay: 2s;
}

@keyframes silent-ping {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.8;
        border-width: 1.5px;
    }
    100% {
        width: 160px;
        height: 160px;
        opacity: 0;
        border-width: 0.5px;
    }
}


/* 4-card product showcase breakpoint */
@media (min-width: 1200px) {
    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1600px) {
    .product-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================================ */
/* === Silent Comms product page — refined, site-consistent === */
/* ============================================================ */

/* Hero visual: concentric pings around a central dot */
.silent-visual {
    position: relative;
    width: 320px;
    height: 320px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 40px rgba(255, 90, 95, 0.2));
}

.silent-visual__core {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-signal);
    box-shadow: 0 0 28px var(--accent-signal), 0 0 80px rgba(255, 90, 95, 0.4);
    z-index: 2;
}

.silent-visual__ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--accent-signal);
    opacity: 0;
    width: 32px;
    height: 32px;
    animation: silent-ping-large 4s cubic-bezier(0.25, 0.6, 0.3, 1) infinite;
}

.silent-visual__ring--2 { animation-delay: 1s; }
.silent-visual__ring--3 { animation-delay: 2s; }
.silent-visual__ring--4 { animation-delay: 3s; }

@keyframes silent-ping-large {
    0% {
        width: 32px;
        height: 32px;
        opacity: 0.9;
        border-width: 1.5px;
    }
    100% {
        width: 320px;
        height: 320px;
        opacity: 0;
        border-width: 0.5px;
    }
}

/* Principles cards — red accent */
.capability-card--silent {
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.capability-card--silent .capability-number {
    color: var(--accent-signal);
    opacity: 0.6;
}

.capability-card--silent:hover {
    border-color: var(--accent-signal);
    transform: translateY(-3px);
    box-shadow: 0 18px 44px -20px rgba(255, 90, 95, 0.4);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255, 90, 95, 0.03) 100%);
}

/* Flow steps — red accent for Silent Comms */
.hive-step--silent {
    border-top: 2px solid var(--accent-signal);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hive-step--silent .step-number {
    color: var(--accent-signal);
    opacity: 0.6;
}

.hive-step--silent:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -20px rgba(255, 90, 95, 0.35);
    border-color: var(--accent-signal);
}

/* Silent Comms page arrow override — use red instead of purple */
.product-hero--silent ~ .section .hive-step-arrow,
.section .hive-step--silent ~ .hive-step-arrow {
    color: var(--accent-signal);
    opacity: 0.55;
}

/* Sibling cards (product cross-links) — fits in .service-detail-visual 2x2 grid */
.sibling-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    color: inherit;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.sibling-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    color: inherit;
    box-shadow: 0 14px 36px -18px rgba(167, 139, 250, 0.3);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(167, 139, 250, 0.03) 100%);
}

.sibling-card--fenix:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 14px 36px -18px rgba(196, 181, 253, 0.35);
}

.sibling-card__label {
    display: block;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.sibling-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: -0.005em;
    color: var(--text-primary);
}

.sibling-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.sibling-card .link-arrow {
    font-size: 0.85rem;
}

/* Silent Comms hero image padding adjustment */
.product-hero--silent .product-hero-image {
    padding: 2rem 0;
}

/* Technical whisper under hero subtitle — allusive, not explanatory */
.hero-whisper {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: rgba(255, 179, 181, 0.7);
    padding: 0.55rem 0.95rem;
    border-left: 2px solid var(--accent-signal);
    background: rgba(255, 90, 95, 0.04);
    border-radius: 0 4px 4px 0;
    margin-bottom: 2rem;
    max-width: fit-content;
}

.hero-whisper__mark {
    color: var(--accent-signal);
    letter-spacing: 0.1em;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .silent-visual {
        width: 220px;
        height: 220px;
    }
    @keyframes silent-ping-large {
        0% { width: 24px; height: 24px; opacity: 0.9; }
        100% { width: 220px; height: 220px; opacity: 0; }
    }
}

/* ============================================================ */
/* === Imagery integrations                                 === */
/* ============================================================ */

/* Product hero atmospheric background (Silent Comms) */
.product-hero {
    position: relative;
    isolation: isolate;
}

.product-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    opacity: 0.22;
    filter: saturate(0.9) contrast(1.05);
    z-index: 0;
    mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 100%);
}

.product-hero--silent .product-hero__bg {
    mask-image: radial-gradient(ellipse at 75% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 75% 50%, black 0%, transparent 70%);
    opacity: 0.32;
}

.product-hero .container {
    position: relative;
    z-index: 1;
}

/* Section hero figure — wide illustration above a grid */
.hero-figure {
    max-width: 900px;
    margin: 0 auto 3.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.8);
}

.hero-figure img {
    display: block;
    width: 100%;
    height: auto;
}

/* The resilience render has its own near-black space background, so the card */
/* frame (border + radius + shadow) made it read as a sticker on the dark      */
/* page. Instead, strip the frame and feather all four edges so the image      */
/* dissolves seamlessly into the section. Feather is kept thin at the top (3%)  */
/* to preserve the baked-in title; wider on the sides/bottom where the edges    */
/* are only space and night-side Earth. */
.hero-figure--resilience {
    max-width: 1040px;
    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    -webkit-mask-image:
        linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%),
        linear-gradient(to bottom, transparent 0, #000 3%, #000 92%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%),
        linear-gradient(to bottom, transparent 0, #000 3%, #000 92%, transparent 100%);
    mask-composite: intersect;
}

/* Resilience card figure (CDN multicast diagram inside card) */
.resilience-card__figure {
    margin: -2.25rem -2.25rem 1.25rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%), #0c1222;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

/* Full infographic (its own dark background + baked-in labels) — show it whole,
   no crop or blend that would chop the title/caption or wash the colors. */
.resilience-card__figure img {
    display: block;
    width: 100%;
    height: auto;
}

/* Service detail visual stacked variant (for images + stat row) */
.service-detail-visual--stacked {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-figure {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.7);
}

.service-figure img {
    display: block;
    width: 100%;
    height: auto;
}

.service-figure figcaption {
    padding: 0.85rem 1.1rem;
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    letter-spacing: 0.05em;
    border-top: 1px solid var(--border);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.stat-card--inline {
    padding: 1.25rem 0.85rem;
}

.stat-card--inline .stat-number {
    font-size: 1.35rem;
}

.stat-card--inline .stat-label {
    font-size: 0.72rem;
}

/* Location figure (single image under hero header) */
.location-figure {
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-lift);
    max-width: 1100px;
    margin-inline: auto;
}

.location-figure img {
    display: block;
    width: 100%;
    height: auto;
}

.location-figure figcaption {
    padding: 1rem 1.4rem;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 0.92rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

/* Location gallery (night + antenna) */
.location-gallery__grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 1.25rem;
}

.location-gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.location-gallery__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px -30px rgba(167, 139, 250, 0.35);
}

.location-gallery__item img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.location-gallery__item figcaption {
    padding: 0.9rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    letter-spacing: 0.06em;
    border-top: 1px solid var(--border);
}

@media (max-width: 800px) {
    .location-gallery__grid { grid-template-columns: 1fr; }
    .location-gallery__item img { height: 240px; }
}

/* === Coming Soon location banners === */

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.coming-soon-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s;
}

.coming-soon-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -16px rgba(167,139,250,0.35);
}

.coming-soon-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.coming-soon-card:hover .coming-soon-card__bg {
    transform: scale(1.1);
}

.coming-soon-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 26, 0.15) 0%, rgba(10, 14, 26, 0.85) 65%, rgba(10, 14, 26, 0.95) 100%),
        radial-gradient(ellipse at 30% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
}

.coming-soon-card__content {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    width: 100%;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bg-dark);
    background: var(--arctic-gradient);
    border-radius: 100px;
    margin-bottom: 1rem;
}

.coming-soon-card__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.coming-soon-card__content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.coming-soon-coord {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.06em;
}

@media (max-width: 800px) {
    .coming-soon-grid { grid-template-columns: 1fr; }
    .coming-soon-card { min-height: 300px; }
}

/* ============================================================ */
/* === Site-wide facility imagery (cohesive visual thread)  === */
/* ============================================================ */

/*
 * The night-lit Arctic Space Center is the hero visual that unifies
 * the site. It appears as:
 *   1. Subtle layer behind the homepage hero (blended with aurora gradient)
 *   2. A full-bleed editorial band on the homepage
 *   3. An atmospheric wash behind page-hero headers on subpages
 */

/* ============================================================ */
/* === Facility band: editorial 2-column with duotone image === */
/* ============================================================ */

/*
 * The facility image has strong colored illumination (red/green/blue/pink
 * radomes). Dropping it into the layout raw fights the brand. The fix is
 * a proper editorial treatment: one framed placement, duotoned to brand
 * purple via filter + mix-blend-mode, paired with generous text.
 */

.facility-band {
    position: relative;
    padding: 7rem 0;
    background:
        radial-gradient(ellipse at 0% 40%, rgba(124, 58, 237, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 60%, rgba(167, 139, 250, 0.06) 0%, transparent 50%),
        var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.facility-band__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
}

.facility-band__text {
    max-width: 500px;
}

.facility-band__meta {
    display: inline-block;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    color: var(--accent-light);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.facility-band__meta::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--accent);
}

.facility-band__title {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.facility-band__title em {
    font-style: normal;
    background: var(--arctic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.facility-band__body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

/* The framed duotone image panel — soft edges, no hard borders */
.facility-band__figure {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    isolation: isolate;
    margin: 0;
    /* Soft purple halo instead of a hard frame */
    filter: drop-shadow(0 30px 60px rgba(76, 29, 149, 0.35))
            drop-shadow(0 0 40px rgba(167, 139, 250, 0.08));
}

.facility-band__figure__inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
    /* Feather the rectangular edges into the surrounding dark space */
    mask-image: radial-gradient(
        ellipse 115% 115% at 50% 45%,
        black 55%,
        rgba(0, 0, 0, 0.85) 78%,
        transparent 100%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 115% 115% at 50% 45%,
        black 55%,
        rgba(0, 0, 0, 0.85) 78%,
        transparent 100%
    );
}

.facility-band__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keep the natural colors of the illuminated radomes */
}

/* Gentle radial vignette only — no color tint */
.facility-band__figure__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 55%,
        transparent 35%,
        rgba(10, 14, 26, 0.25) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Caption lives below the figure, minimal */
.facility-band__figcaption {
    margin-top: 1.1rem;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 900px) {
    .facility-band { padding: 5rem 0; }
    .facility-band__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .facility-band__figure {
        aspect-ratio: 4 / 3;
    }
}

/* Shared duotone treatment — reusable utility for any purple-branded image.
 * Apply by wrapping an image in <figure class="duotone">.
 */
.duotone {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.duotone > img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(1) contrast(1.08) brightness(0.9);
}

.duotone::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 45%, #a78bfa 100%);
    mix-blend-mode: color;
    pointer-events: none;
    z-index: 1;
}

/* Founder pull-quote (About page) */
.founder-quote {
    max-width: 760px;
    margin: 3.5rem auto 0;
    padding: 2.25rem 2.5rem 2rem;
    border-left: 3px solid var(--accent);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, transparent 100%);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    position: relative;
}

.founder-quote::before {
    content: '\201C';
    position: absolute;
    top: -0.4rem;
    left: 1.4rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.35;
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
}

.founder-quote p {
    font-size: 1.25rem;
    line-height: 1.55;
    color: var(--text-primary);
    margin: 0 0 1.25rem;
    font-style: italic;
    letter-spacing: -0.005em;
}

.founder-quote footer {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.founder-quote cite {
    font-style: normal;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================ */
/* === People grid (Leadership) — editorial portrait cards   === */
/* ============================================================ */

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.person-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.person-card:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: var(--shadow-soft);
}

.person-card__photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #161224 0%, #0c0a18 100%);
}

.person-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: saturate(0.95) contrast(1.02);
}

/* Anchor the crop to the top of the source image (keeps the head, trims the */
/* bottom) for portraits where the subject sits high in the frame. */
.person-card__photo--top img {
    object-position: center top;
}

/* Designed monogram placeholder for missing photos */
.person-card__photo--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(167, 139, 250, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse at 50% 100%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.012) 0px,
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px,
            transparent 14px
        ),
        linear-gradient(180deg, #1a1530 0%, #0c0a18 100%);
    position: relative;
}

.person-card__photo--placeholder::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(167, 139, 250, 0.18);
    border-radius: var(--radius-sm);
    pointer-events: none;
}

.person-card__monogram {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    background: var(--arctic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.person-card__placeholder-label {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.person-card__body {
    padding: 1rem 1.1rem 1.25rem;
}

.person-card__body h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    margin-bottom: 0.3rem;
}

.person-card__role {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.person-card__email {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    word-break: break-word;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.person-card__email:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

/* ============================================================ */
/* === Cosmic bands — cinematic photo sections, brand-tinted === */
/* ============================================================ */

/*
 * A `.cosmic-band` is a full-bleed section with a photographic background
 * (cosmos / Earth / aurora) layered under a deep purple gradient so the
 * photo reads as atmospheric brand imagery, not pasted-in stock.
 *
 * Variants:
 *   .cosmic-band--earth    Earth curvature from high altitude (deep space above)
 *   .cosmic-band--orbit    Earth from orbit with satellite visible
 *   .cosmic-band--aurora   Aurora borealis over Arctic forest
 */

.cosmic-band {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 8rem 0;
    text-align: center;
    color: var(--text-primary);
}

.cosmic-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cosmic-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(10, 14, 26, 0.55) 60%, var(--bg-dark) 100%),
        linear-gradient(180deg, rgba(10, 14, 26, 0.5) 0%, rgba(10, 14, 26, 0.7) 100%),
        radial-gradient(ellipse at 30% 30%, rgba(124, 58, 237, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(167, 139, 250, 0.10) 0%, transparent 50%);
    z-index: -1;
}

.cosmic-band:hover::before {
    transform: scale(1.08);
}

.cosmic-band--earth::before {
    background-image: url('/static/cosmos-earth.jpg');
}

.cosmic-band--orbit::before {
    background-image: url('/static/cosmos-orbit.jpg');
}

.cosmic-band--aurora::before {
    background-image: url('/static/aurora-arctic.jpg');
}

.cosmic-band__container {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cosmic-band__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    color: var(--accent-light);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.4rem 0.95rem;
    border: 1px solid rgba(216, 180, 254, 0.3);
    border-radius: var(--radius-pill);
    background: rgba(124, 58, 237, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cosmic-band__title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.cosmic-band__title em {
    font-style: normal;
    background: var(--arctic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cosmic-band__body {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cosmic-band__body em {
    color: var(--accent-light);
    font-style: italic;
}

.cosmic-band__signature {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .cosmic-band { padding: 5rem 0; }
    .cosmic-band__body { font-size: 1rem; }
}

/* Contact page map hero — OpenStreetMap embed with dark-mode filter */
.contact-map-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    background: var(--bg-dark);
}

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

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Light OSM tiles → dark-mode look that fits our brand */
    filter: invert(0.92) hue-rotate(180deg) saturate(0.65) brightness(0.95) contrast(1.05);
}

.contact-map-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 26, 0.55) 0%, rgba(10, 14, 26, 0.85) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(167, 139, 250, 0.10) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.contact-map__overlay {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-map__overlay h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.85rem;
}

.contact-map__overlay .hero-subtitle {
    margin: 0 auto;
}

@media (max-width: 640px) {
    .contact-map-hero { min-height: 380px; padding: 6rem 0 4rem; }
}

/* ============================================================ */
/* === Trusted by — partner logos infinite marquee          === */
/* ============================================================ */

.trusted-by {
    padding: 4rem 0 4.5rem;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(124, 58, 237, 0.06) 0%, transparent 60%),
        var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trusted-by__label {
    display: block;
    text-align: center;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* Viewport: clips overflow + fades edges so logos slide in/out smoothly */
.trusted-by__viewport {
    position: relative;
    overflow: hidden;
    /* Fade edges into the bg so logos don't pop in/out abruptly */
    mask-image: linear-gradient(
        90deg,
        transparent 0,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        black 8%,
        black 92%,
        transparent 100%
    );
}

/* Track contains FOUR identical copies of the logo set, animated by exactly */
/* one set width (-25% of the 4-copy track). Because every copy is identical */
/* and we shift by exactly one, the reset is invisible; the extra copies keep */
/* the track filling the viewport at all times (seamless up to ~5000px wide). */
.trusted-by__track {
    display: flex;
    width: max-content;
    animation: trusted-scroll 38s linear infinite;
}

.trusted-by:hover .trusted-by__track {
    animation-play-state: paused;
}

@keyframes trusted-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-25%); }
}

.trusted-by__set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 4rem;
    padding-right: 4rem;
}

.trusted-by__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    flex-shrink: 0;
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
    /* Default: desaturated white tone so dark-bg looks unified */
    filter: brightness(0) invert(1);
    opacity: 0.55;
}

.trusted-by__logo:hover {
    opacity: 1;
    /* Restore real colors on hover */
    filter: none;
    transform: translateY(-2px);
}

.trusted-by__logo img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
    .trusted-by__track {
        animation: none;
        transform: translateX(0);
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
    }
    .trusted-by__set:nth-child(2) {
        display: none;
    }
}

/* Team intro band on Contact — editorial split with team duo photo */
.team-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-intro__content {
    max-width: 520px;
}

.team-intro__content h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 1rem 0 1rem;
}

.team-intro__content .lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.team-intro__content p:not(.lead) {
    color: var(--text-secondary);
    line-height: 1.65;
}

.team-intro__figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-lift);
    position: relative;
    isolation: isolate;
}

.team-intro__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 900px) {
    .team-intro { grid-template-columns: 1fr; gap: 2.5rem; }
    .team-intro__figure { aspect-ratio: 4 / 3; max-width: 500px; margin: 0 auto; }
}

/* Pill above page-hero h1 (e.g., "Groundstation + Datacenter") */
.hero-pill {
    display: inline-block;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.74rem;
    letter-spacing: 0.24em;
    color: var(--accent-light);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding: 0.4rem 0.95rem;
    border: 1px solid rgba(216, 180, 254, 0.32);
    border-radius: var(--radius-pill);
    background: rgba(124, 58, 237, 0.1);
}

/* The Sweet Spot — editorial 2-column with antenna visual */
.sweet-spot {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sweet-spot__content {
    max-width: 540px;
}

.sweet-spot__content .lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 1rem 0 1.75rem;
    line-height: 1.55;
}

.sweet-spot__content h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.sweet-spot__figure {
    position: relative;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lift);
}

.sweet-spot__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) contrast(1.02);
}

.sweet-spot__figure figcaption {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: var(--text-primary);
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    background: rgba(10, 14, 26, 0.55);
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 900px) {
    .sweet-spot {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .sweet-spot__figure {
        aspect-ratio: 4 / 3;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* === Video Hero — cinematic ops-feed treatment for /locations === */
.video-hero {
    position: relative;
    min-height: 88vh;
    min-height: 88svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    isolation: isolate;
    background: var(--bg-dark);
    padding: 10rem 0 0;
}

.video-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    animation: videoHeroKenBurns 48s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes videoHeroKenBurns {
    0%   { transform: scale(1.02) translate3d(0, 0, 0); }
    100% { transform: scale(1.09) translate3d(-0.5%, -0.8%, 0); }
}

.video-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg,
            rgba(10, 14, 26, 0.88) 0%,
            rgba(10, 14, 26, 0.42) 14%,
            rgba(10, 14, 26, 0.22) 42%,
            rgba(10, 14, 26, 0.60) 82%,
            rgba(10, 14, 26, 0.98) 100%),
        radial-gradient(ellipse at 50% 55%,
            transparent 45%,
            rgba(76, 29, 149, 0.22) 100%);
}

.video-hero__grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 3px 3px, 5px 5px;
    background-position: 0 0, 1px 2px;
    mix-blend-mode: overlay;
    opacity: 0.55;
    pointer-events: none;
}

.video-hero__bracket {
    position: absolute;
    width: 32px;
    height: 32px;
    border-color: rgba(216, 180, 254, 0.55);
    border-style: solid;
    border-width: 0;
    pointer-events: none;
    z-index: 2;
}
.video-hero__bracket--tl { top: 1.75rem; left: 1.75rem; border-top-width: 1px; border-left-width: 1px; }
.video-hero__bracket--tr { top: 1.75rem; right: 1.75rem; border-top-width: 1px; border-right-width: 1px; }
.video-hero__bracket--bl { bottom: 1.75rem; left: 1.75rem; border-bottom-width: 1px; border-left-width: 1px; }
.video-hero__bracket--br { bottom: 1.75rem; right: 1.75rem; border-bottom-width: 1px; border-right-width: 1px; }

.video-hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: 3.5rem;
}

.video-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.74rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-light);
    padding: 0.5rem 1rem 0.5rem 0.85rem;
    border: 1px solid rgba(216, 180, 254, 0.32);
    border-radius: var(--radius-pill);
    background: rgba(10, 14, 26, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: videoHeroReveal 0.9s ease-out 0.15s both;
}

.video-hero__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-ice);
    box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.7);
    animation: videoHeroPulse 2.4s ease-out infinite;
}

@keyframes videoHeroPulse {
    0%   { box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.6); }
    80%  { box-shadow: 0 0 0 10px rgba(125, 211, 252, 0); }
    100% { box-shadow: 0 0 0 0 rgba(125, 211, 252, 0); }
}

.video-hero__title {
    font-size: clamp(2.5rem, 6.2vw, 4.75rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 1.75rem;
    max-width: 16ch;
    opacity: 0;
    animation: videoHeroReveal 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}

.video-hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    max-width: 580px;
    line-height: 1.55;
    opacity: 0;
    animation: videoHeroReveal 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

@keyframes videoHeroReveal {
    0%   { opacity: 0; transform: translateY(14px); }
    100% { opacity: 1; transform: translateY(0); }
}

.video-hero__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    flex-wrap: wrap;
    padding: 0 1.5rem 1.75rem;
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(232, 237, 245, 0.75);
    opacity: 0;
    animation: videoHeroReveal 1.2s ease-out 0.8s both;
}

.video-hero__coord { color: var(--accent-ice); }
.video-hero__mode  { color: var(--accent-light); }

.video-hero__divider {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 180, 254, 0.4), transparent);
}

@media (prefers-reduced-motion: reduce) {
    .video-hero__media,
    .video-hero__eyebrow,
    .video-hero__title,
    .video-hero__subtitle,
    .video-hero__footer,
    .video-hero__pulse {
        animation: none;
    }
    .video-hero__eyebrow,
    .video-hero__title,
    .video-hero__subtitle,
    .video-hero__footer {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 768px) {
    .video-hero {
        min-height: 78vh;
        min-height: 78svh;
        padding: 8rem 0 0;
    }
    .video-hero__bracket {
        width: 20px;
        height: 20px;
    }
    .video-hero__bracket--tl,
    .video-hero__bracket--tr { top: 1rem; }
    .video-hero__bracket--bl,
    .video-hero__bracket--br { bottom: 1rem; }
    .video-hero__bracket--tl,
    .video-hero__bracket--bl { left: 1rem; }
    .video-hero__bracket--tr,
    .video-hero__bracket--br { right: 1rem; }
    .video-hero__content { padding-bottom: 2.5rem; }
    .video-hero__title { max-width: 100%; }
    .video-hero__subtitle { font-size: 1.05rem; }
    .video-hero__footer {
        font-size: 0.62rem;
        gap: 0.65rem;
        padding-bottom: 1.25rem;
    }
    .video-hero__divider { width: 20px; }
}


/* FAQ (used on home, services, locations, products) ------------------- */
.faq {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 1.5rem;
    transition: border-color 0.2s ease;
}
.faq-item[open] {
    border-color: var(--border-hover);
}
.faq-item__q {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    padding: 1.25rem 2.5rem 1.25rem 0;
    position: relative;
}
.faq-item__q::-webkit-details-marker {
    display: none;
}
.faq-item__q::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 1.1rem;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
    color: var(--accent);
}
.faq-item[open] .faq-item__q::after {
    content: "\2212";
}
.faq-item__a {
    padding: 0 0 1.4rem;
    color: var(--text-secondary);
}
.faq-item__a p {
    margin: 0;
}
