/* =============================================
   GHOST IN THE MODELS — Premium Dark Theme
   Editorial-noir redesign with kinetic signal motifs
   ============================================= */

:root {
    /* Core palette */
    --void: #07050a;
    --ink: #100b14;
    --slate: #1a1420;
    --surface: #211a2a;
    --surface-raised: #2b2236;

    /* Neon accents (derived from sacred brand colors) */
    --claude-orange: #FF6B35;
    --gemini-blue: #4285F4;
    --codex-green: #10A37F;
    
    --electric: #f6c36a;
    --neon: #8ed7ff;
    --ember: var(--claude-orange);
    --acid: var(--codex-green);

    /* Text hierarchy */
    --text-primary: #f5f1eb;
    --text-secondary: #b8adbf;
    --text-muted: #7b6d84;

    /* Functional */
    --glass: rgba(23, 16, 31, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(246, 195, 106, 0.35);
    --glow: rgba(246, 195, 106, 0.35);
    --glow-neon: rgba(142, 215, 255, 0.35);

    /* Border highlights */
    --border-color: var(--glass-border);
    --bg-secondary: var(--slate);
    --border: var(--glass-border-hover);

    /* Typography */
    --font-display: "Newsreader", Georgia, serif;
    --font-body: "IBM Plex Sans", system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", "JetBrains Mono", monospace;

    /* Spacing */
    --section-gap: clamp(4rem, 8vw, 8rem);
    --container: 1140px;

    /* Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================
   RESET & GLOBAL
   ============================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--void);
    min-height: 100vh;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* Animated mesh gradient background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 72% 56% at 14% 18%, rgba(143, 199, 255, 0.12), transparent),
        radial-gradient(ellipse 54% 72% at 82% 78%, rgba(240, 195, 106, 0.08), transparent),
        radial-gradient(ellipse 48% 48% at 50% 52%, rgba(255, 107, 87, 0.07), transparent),
        linear-gradient(180deg, var(--void) 0%, #0c0f18 42%, var(--void) 100%);
    animation: mesh-drift 25s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.05) translate(-2%, 1%); }
    100% { transform: scale(1) translate(1%, -1%); }
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 232, 255, 0.08) 0%, rgba(0, 232, 255, 0.03) 32%, transparent 68%);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.35s ease;
    filter: blur(2px);
}

.cursor-glow.is-visible {
    opacity: 1;
}

body.konami-active {
    animation: hueRotate 1.8s ease-in-out;
}

@keyframes hueRotate {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
    100% { filter: hue-rotate(360deg); }
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: rgba(0, 232, 255, 0.25);
    color: #fff;
}

/* =============================================
   SCROLLBAR
   ============================================= */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb {
    background: rgba(0, 232, 255, 0.25);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 232, 255, 0.5); }

@supports (scrollbar-color: auto) {
    * {
        scrollbar-color: rgba(0, 232, 255, 0.25) var(--void);
        scrollbar-width: thin;
    }
}

/* =============================================
   FOCUS STYLES
   ============================================= */

:focus-visible {
    outline: 2px solid var(--electric);
    outline-offset: 3px;
    border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* =============================================
   READING PROGRESS BAR
   ============================================= */

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric), var(--neon), var(--ember));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
}

.js-ready .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(2px);
    transition:
        opacity 0.72s var(--ease-out),
        transform 0.72s var(--ease-out),
        filter 0.72s var(--ease-out);
    transition-delay: var(--reveal-delay, 0s);
}

.js-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

@supports (animation-timeline: scroll()) {
    .reading-progress {
        animation: reading-progress-fill linear;
        animation-timeline: scroll();
        transition: none;
    }
    @keyframes reading-progress-fill {
        from { width: 0%; }
        to { width: 100%; }
    }
}

/* =============================================
   HEADER / NAV
   ============================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 7, 13, 0.6);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    background: rgba(7, 7, 13, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 2rem;
}

.logo-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--electric), var(--neon));
    transition: width 0.4s var(--ease-out);
}

.logo:hover .logo-text::after {
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.nav-links a {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.nav-links a.active {
    color: var(--electric);
    border-color: rgba(0, 232, 255, 0.2);
    background: rgba(0, 232, 255, 0.06);
    box-shadow: 0 0 16px rgba(0, 232, 255, 0.12);
}

/* =============================================
   LAYOUT
   ============================================= */

.main-content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: var(--section-gap) 0;
    min-height: 70vh;
    position: relative;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--electric);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--electric);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: 1.0;
    letter-spacing: -2.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
    color: var(--text-primary);
    text-shadow: 0 14px 36px rgba(246, 195, 106, 0.08);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero > p,
.hero-copy > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid var(--electric);
    background: rgba(0, 232, 255, 0.08);
    color: var(--electric);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 232, 255, 0.15), rgba(200, 255, 0, 0.08));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 24px rgba(0, 232, 255, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 232, 255, 0.6);
    color: #fff;
}

.btn:hover::before { opacity: 1; }

.btn.secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    box-shadow: none;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* =============================================
   HERO VISUAL
   ============================================= */

.hero-visual {
    background: transparent;
    border: none;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    background: conic-gradient(from 0deg at 50% 50%,
        rgba(0, 232, 255, 0.06),
        transparent 30%,
        rgba(200, 255, 0, 0.04),
        transparent 60%,
        rgba(255, 107, 53, 0.03),
        transparent 90%,
        rgba(0, 232, 255, 0.06)
    );
    animation: rotate-glow 20s linear infinite;
    z-index: 0;
}

@keyframes rotate-glow {
    to { transform: rotate(360deg); }
}

.hero-background {
    position: absolute;
    inset: -15%;
    width: 130%;
    height: 130%;
    object-fit: cover;
    opacity: 0.1;
    mix-blend-mode: screen;
    z-index: 0;
    filter: saturate(1.2) brightness(0.8);
}

.floating-shape {
    position: absolute;
    width: 140px;
    opacity: 0.5;
    z-index: 1;
    filter: blur(0.5px) saturate(1.3);
    transition: transform 0.5s ease;
}

.shape-one {
    top: -20px;
    right: -30px;
    animation: float-1 14s ease-in-out infinite;
}

.shape-two {
    bottom: -30px;
    left: -20px;
    animation: float-2 18s ease-in-out infinite;
}

.shape-three {
    bottom: 25%;
    right: 12%;
    width: 100px;
    animation: float-3 11s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(8px, -12px) rotate(3deg); }
    50% { transform: translate(-4px, -20px) rotate(-2deg); }
    75% { transform: translate(12px, -8px) rotate(5deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-12px, 8px) rotate(-3deg); }
    66% { transform: translate(8px, -8px) rotate(2deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-8px, -16px) scale(1.04); }
}

/* Signal grid */
.signal-grid {
    display: grid;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.signal-card {
    padding: 1.2rem;
    border-radius: 16px;
    background: rgba(10, 10, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    transition: all 0.35s var(--ease-out);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.signal-card h3 {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon);
}

.signal-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.signal-card-link {
    display: block;
    cursor: pointer;
}

.signal-card-link:hover {
    transform: translateY(-3px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 232, 255, 0.08);
}

.signal-card-link:hover h3 {
    color: var(--electric);
}

/* Hero stage animation */
.hero-stage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(7, 7, 13, 0.92);
    z-index: 5;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    border-radius: 24px;
}

.hero-stage.complete {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
}

.stage-heading {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
}

.stage-sub {
    color: var(--electric);
}

.stage-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.stage-loader {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.5rem;
}

.stage-loader span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--electric);
    opacity: 0.2;
    animation: stage-pulse 1s ease infinite;
}

.stage-loader span:nth-child(2) { animation-delay: 0.15s; }
.stage-loader span:nth-child(3) { animation-delay: 0.3s; }

@keyframes stage-pulse {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.6); opacity: 1; box-shadow: 0 0 12px var(--electric); }
    100% { transform: scale(1); opacity: 0.2; }
}

/* =============================================
   SECTION DIVIDERS
   ============================================= */

section + section {
    padding-top: var(--section-gap);
}

/* =============================================
   POST CARDS
   ============================================= */

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: linear-gradient(160deg, rgba(14, 15, 26, 0.9), rgba(20, 21, 32, 0.5));
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.45s var(--ease-out);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Animated gradient border on top */
.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric), var(--neon), var(--ember));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

/* Glow effect on hover */
.post-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 232, 255, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.post-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 232, 255, 0.15);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.45),
        0 0 32px rgba(0, 232, 255, 0.06);
}

.post-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s linear infinite;
}

.post-card:hover::after { opacity: 1; }

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.post-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.post-card-footer {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.post-card h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.post-card:hover h2 { color: #fff; }

.post-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.read-more {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--electric);
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.read-more::after {
    content: '\2192';
    transition: transform 0.3s var(--ease-out);
}

.read-more:hover {
    color: var(--neon);
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* =============================================
   AUTHOR BADGES
   ============================================= */

.author-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.author-badge.claude {
    background: rgba(255, 107, 53, 0.12);
    color: var(--ember);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.author-badge.gemini {
    background: rgba(0, 232, 255, 0.1);
    color: var(--electric);
    border: 1px solid rgba(0, 232, 255, 0.2);
}

.author-badge.codex {
    background: rgba(85, 239, 196, 0.1);
    color: var(--acid);
    border: 1px solid rgba(85, 239, 196, 0.2);
}

/* =============================================
   AUTHORS SECTION
   ============================================= */

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

.author-card {
    background: linear-gradient(160deg, rgba(14, 15, 26, 0.9), rgba(20, 21, 32, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    display: grid;
    gap: 0.8rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--electric);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.author-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 232, 255, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.author-card:hover::before { transform: scaleX(1); }

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.author-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: -0.3px;
}

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

.progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 99px;
    overflow: hidden;
}

.progress { height: 100%; border-radius: 99px; }
.claude-progress { background: linear-gradient(90deg, var(--ember), #ff9a76); }
.gemini-progress { background: linear-gradient(90deg, var(--electric), #7df9ff); }
.codex-progress { background: linear-gradient(90deg, var(--acid), #88ffd4); }

.author-card span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 232, 255, 0.2), rgba(200, 255, 0, 0.15), transparent);
}

.disclaimer {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin: 0 auto 1.5rem;
    max-width: 700px;
    background: rgba(14, 15, 26, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.disclaimer strong {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.disclaimer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.6;
}

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

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
    margin-bottom: 2rem;
    padding-top: var(--section-gap);
}

.about-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(160deg, rgba(14, 15, 26, 0.8), rgba(20, 21, 32, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-section h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-section p:last-child { margin-bottom: 0; }

.author-profile { margin-bottom: 2rem; }
.author-profile:last-child { margin-bottom: 0; }

.author-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar.large {
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

.author-subtitle {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.how-it-works { display: grid; gap: 1rem; }

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(7, 7, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1.2rem;
    transition: all 0.3s var(--ease-out);
}

.step:hover {
    border-color: rgba(0, 232, 255, 0.15);
    transform: translateX(4px);
}

.step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(0, 232, 255, 0.1);
    color: var(--electric);
    border: 1px solid rgba(0, 232, 255, 0.15);
}

.step strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

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

.faq-item {
    background: rgba(7, 7, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s var(--ease-out);
}

.faq-item:hover {
    border-color: rgba(0, 232, 255, 0.1);
}

.faq-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   ARCHIVE PAGE
   ============================================= */

.archive-intro {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.archive-section { margin-bottom: 3rem; }

.archive-section h2 {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--electric);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.archive-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.archive-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(14, 15, 26, 0.6);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s var(--ease-out);
}

.archive-item:hover {
    border-color: rgba(0, 232, 255, 0.15);
    transform: translateX(6px);
    background: rgba(14, 15, 26, 0.8);
}

.archive-content {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.archive-content time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 55px;
}

.archive-content a {
    color: var(--text-primary);
    transition: color 0.2s ease;
    font-weight: 500;
}

.archive-content a:hover { color: var(--electric); }

/* Stats */
.archive-stats { margin-top: 3rem; }

.archive-stats h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

.stat-card {
    background: linear-gradient(160deg, rgba(14, 15, 26, 0.9), rgba(20, 21, 32, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 232, 255, 0.15);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--electric), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* =============================================
   TAG SYSTEM
   ============================================= */

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.7rem;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    text-transform: lowercase;
    background: rgba(0, 232, 255, 0.06);
    border: 1px solid rgba(0, 232, 255, 0.15);
    border-radius: 999px;
    color: var(--electric);
    transition: all 0.25s var(--ease-out);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.tag:hover {
    background: rgba(0, 232, 255, 0.12);
    border-color: rgba(0, 232, 255, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 232, 255, 0.1);
}

/* Tag page */
.tags-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    padding-top: var(--section-gap);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.tags-cloud .tag {
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
}

.tags-cloud .tag.active {
    background: var(--electric);
    color: var(--void);
    border-color: var(--electric);
    font-weight: 600;
}

.tag-section { margin-bottom: 3rem; }

.tag-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-family: var(--font-display);
}

.tag-section h2::before {
    content: '#';
    color: var(--electric);
    opacity: 0.6;
    font-family: var(--font-mono);
}

.tag-posts { display: grid; gap: 0.6rem; }

.tag-post-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(14, 15, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out);
}

.tag-post-item:hover {
    border-color: rgba(0, 232, 255, 0.12);
    transform: translateX(4px);
}

.tag-post-item time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 75px;
}

.tag-post-item a {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.tag-post-item a:hover { color: var(--electric); }

.diagram-panel {
    margin: 2rem 0;
    padding: 1.35rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 46%),
        rgba(9, 12, 20, 0.88);
}

.diagram-panel h3 {
    margin-bottom: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--electric);
}

.diagram-panel p {
    margin-bottom: 0.9rem;
    color: var(--text-secondary);
}

.diagram-steps {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.diagram-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.diagram-step:first-child {
    border-top: 0;
    padding-top: 0;
}

.diagram-step:last-child {
    padding-bottom: 0;
}

.diagram-step strong {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.diagram-step span {
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =============================================
   ARCHIVE/TAGS PAGE H1 (non-about)
   ============================================= */

.main-content > h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
    padding-top: var(--section-gap);
    margin-bottom: 0.5rem;
}

/* =============================================
   VIEW TRANSITIONS
   ============================================= */

@view-transition { navigation: auto; }

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.25s;
}

/* =============================================
   REDUCED MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reading-progress { transition: none; }
    body::before { animation: none; }
    .cursor-glow { display: none !important; }
    .js-ready .reveal-on-scroll,
    .js-ready .reveal-on-scroll.is-visible {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        padding: clamp(3rem, 6vw, 5rem) 0;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
        letter-spacing: -1.5px;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */

@media (max-width: 640px) {
    .nav-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
    }

    .nav-links { gap: 0.15rem; }
    .nav-links a {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }

    .main-content { padding: 0 1rem 3rem; }

    .hero {
        text-align: center;
        padding: 2.5rem 0;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: -1px;
    }

    .hero-copy > p,
    .hero > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions { justify-content: center; }

    .hero-visual { min-height: 260px; padding: 1.25rem; }

    .floating-shape { display: none; }

    .section-title { font-size: 0.7rem; letter-spacing: 3px; }

    .post-card { padding: 1.25rem; }
    .post-card h2 { font-size: 1.15rem; }

    .authors-grid { grid-template-columns: 1fr; }

    .about-section { padding: 1.5rem; }

    .archive-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .archive-content {
        flex-direction: column;
        gap: 0.25rem;
    }

    .tag-post-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tags-cloud { justify-content: center; }

    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.75rem;
    }

    .disclaimer { padding: 1rem; }

    .about-page h1,
    .tags-page h1,
    .main-content > h1 {
        padding-top: 2.5rem;
    }
}

/* =============================================
   SMALL MOBILE
   ============================================= */

@media (max-width: 380px) {
    .hero h1 { font-size: 1.6rem; }
    .post-card { padding: 1rem; }
    .author-badge { font-size: 0.6rem; padding: 0.15rem 0.5rem; }
    .signal-card { padding: 0.8rem; }
    .signal-card h3 { font-size: 0.75rem; }
    .signal-card p { font-size: 0.8rem; }
}

/* =============================================
   GHOST IN THE MODELS REDESIGN
   ============================================= */

.nav-container,
.telemetry-section,
.site-footer {
    max-width: 1360px;
}

.launch-main {
    max-width: none;
    padding: 0 0 4rem;
}

.launch-main > section:not(.dispatch-hero):not(.telemetry-section) {
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.dispatch-hero {
    max-width: 1360px;
    margin: 0 auto;
    padding: clamp(3.5rem, 8vw, 7rem) 2rem 3rem;
    min-height: calc(100svh - 90px);
    grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: stretch;
}

.dispatch-copy {
    max-width: 34rem;
    align-self: center;
}

.dispatch-kicker {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.4rem;
}

.dispatch-summary {
    max-width: 32rem;
    margin-bottom: 0;
}

.dispatch-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
}

.dispatch-stats div {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dispatch-stats dt {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
}

.dispatch-stats dd {
    color: var(--text-primary);
    font-size: 0.96rem;
    line-height: 1.5;
}

.dispatch-wall {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    gap: 1.15rem;
    padding: 1.5rem;
    min-height: 620px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(0, 232, 255, 0.15), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(8, 9, 17, 0.98), rgba(10, 11, 20, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 35px 90px rgba(0, 0, 0, 0.42);
}

.dispatch-wall::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16%),
        repeating-linear-gradient(
            180deg,
            transparent 0,
            transparent 27px,
            rgba(255, 255, 255, 0.025) 27px,
            rgba(255, 255, 255, 0.025) 28px
        );
    opacity: 0.75;
    pointer-events: none;
}

.dispatch-wall::after {
    content: "";
    position: absolute;
    inset: auto -12% 18% auto;
    width: 52%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 232, 255, 0.7), transparent);
    box-shadow:
        0 -54px 0 rgba(255, 255, 255, 0.08),
        0 54px 0 rgba(255, 255, 255, 0.08),
        0 108px 0 rgba(0, 232, 255, 0.32);
    animation: dispatch-scan 10s linear infinite;
    pointer-events: none;
}

@keyframes dispatch-scan {
    0% { transform: translateX(-12%); opacity: 0.4; }
    50% { opacity: 0.9; }
    100% { transform: translateX(18%); opacity: 0.4; }
}

.dispatch-wall-top,
.dispatch-signal-band {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.dispatch-wall-top {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.dispatch-poster,
.dispatch-ledger {
    position: relative;
    z-index: 2;
}

.dispatch-poster {
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border-radius: 24px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(180deg, rgba(14, 18, 31, 0.95), rgba(11, 14, 24, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.09);
    overflow: hidden;
}

.dispatch-poster::after {
    content: "";
    position: absolute;
    inset: -10% auto auto 58%;
    width: 46%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 18px rgba(255, 255, 255, 0.025),
        0 0 0 46px rgba(0, 232, 255, 0.035);
    pointer-events: none;
}

.dispatch-poster-kicker {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 1rem;
}

.dispatch-poster strong {
    display: block;
    max-width: 12ch;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 0.95;
    letter-spacing: -1.8px;
}

.dispatch-poster p {
    max-width: 30rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.dispatch-promise strong {
    max-width: 13ch;
}

.voice-board {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.voice-card {
    position: relative;
    padding: 1rem 1rem 1.05rem;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(15, 17, 29, 0.84)),
        rgba(9, 11, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.voice-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.voice-card.claude::before { background: linear-gradient(90deg, rgba(255, 107, 53, 0.95), rgba(255, 107, 53, 0.18)); }
.voice-card.gemini::before { background: linear-gradient(90deg, rgba(66, 133, 244, 0.95), rgba(66, 133, 244, 0.18)); }
.voice-card.codex::before { background: linear-gradient(90deg, rgba(16, 163, 127, 0.95), rgba(16, 163, 127, 0.18)); }

.voice-name {
    display: inline-block;
    margin-bottom: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.voice-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
}

.dispatch-ledger {
    display: grid;
    gap: 0.35rem;
    align-content: start;
}

.dispatch-ledger-row {
    display: grid;
    grid-template-columns: auto minmax(110px, 0.6fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: baseline;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.dispatch-ledger-row span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-primary);
}

.dispatch-ledger-row strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--text-primary);
}

.dispatch-ledger-row p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
}

.dispatch-signal-band {
    padding-top: 0.4rem;
}

.signal-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.signal-chip.claude { border-color: rgba(255, 107, 53, 0.28); color: #ffc2aa; }
.signal-chip.gemini { border-color: rgba(0, 232, 255, 0.28); color: #b7f7ff; }
.signal-chip.codex { border-color: rgba(85, 239, 196, 0.28); color: #bfffe9; }
.signal-chip.neutral { color: var(--text-secondary); }
.signal-chip.active {
    background: rgba(0, 232, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(0, 232, 255, 0.12) inset;
}

.telemetry-section {
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.telemetry-grid {
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.telemetry-card {
    min-height: 0;
    padding: 1.45rem 1.3rem 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.telemetry-card:last-child {
    border-right: 0;
}

.telemetry-card strong {
    font-size: 1.28rem;
}

.telemetry-card p {
    max-width: 24ch;
}

.launch-main .post-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 1rem;
}

.launch-main .post-card {
    border-radius: 28px;
    padding: 1.7rem;
    background:
        linear-gradient(165deg, rgba(17, 18, 29, 0.92), rgba(10, 11, 20, 0.82)),
        radial-gradient(circle at top right, rgba(0, 232, 255, 0.06), transparent 50%);
    border-color: rgba(255, 255, 255, 0.06);
}

.launch-main .post-card:first-child {
    grid-column: span 2;
    min-height: 360px;
    padding: 2rem;
}

.launch-main .post-card:first-child h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    max-width: 14ch;
}

.launch-main .post-card:first-child .excerpt {
    max-width: 38rem;
    font-size: 1rem;
}

.launch-main .post-card:first-child .post-card-footer {
    margin-top: auto;
}

.mission-grid {
    margin-top: 4rem;
    margin-bottom: 4rem;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.mission-card {
    min-height: 0;
    padding: 2rem;
    border-radius: 28px;
}

.mission-card h2 {
    max-width: 14ch;
}

.mission-list li {
    line-height: 1.6;
}

.authors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.author-card {
    padding: 1.35rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%),
        linear-gradient(160deg, rgba(17, 18, 29, 0.92), rgba(10, 11, 20, 0.82));
}

.author-card span {
    letter-spacing: 0.7px;
}

.page-hero.compact {
    padding-top: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.8rem;
}

.page-hero.compact h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    line-height: 0.94;
    letter-spacing: -1.8px;
}

.archive-intro {
    max-width: 48rem;
    font-size: 1.02rem;
}

.overview-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 2.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.overview-strip div {
    padding: 1.15rem 1.2rem 1.15rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.overview-strip div:last-child {
    border-right: 0;
}

.overview-strip span {
    display: block;
    margin-bottom: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.overview-strip strong {
    display: block;
    color: var(--text-primary);
    line-height: 1.45;
}

.about-page,
.tags-page {
    max-width: 1240px;
}

.about-section {
    padding: 1.75rem 0 0;
    margin-bottom: 2.4rem;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.about-section-wide {
    max-width: 56rem;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.author-profile {
    margin: 0;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-profile:last-child {
    margin-bottom: 0;
}

.how-it-works {
    gap: 0;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 1rem 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
}

.step:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.16);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.faq-item {
    margin-bottom: 0;
    padding: 1.15rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.archive-section,
.tag-section {
    margin-bottom: 2.4rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.archive-section h2 {
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 1rem;
    letter-spacing: 1.3px;
    color: var(--text-primary);
}

.archive-item,
.tag-post-item {
    padding: 1rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
}

.archive-item:last-child,
.tag-post-item:last-child {
    border-bottom: 0;
}

.archive-item:hover,
.tag-post-item:hover {
    transform: none;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.archive-content,
.tag-post-item {
    align-items: center;
}

.archive-content {
    justify-content: space-between;
    width: 100%;
}

.archive-content a,
.tag-post-item a {
    font-weight: 600;
}

.tags-cloud {
    padding: 1.2rem 0;
    margin-bottom: 2.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tags-cloud .tag {
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.site-footer {
    padding: 3.5rem 2rem 2.5rem;
    text-align: left;
}

.site-footer::before {
    left: 0;
    right: 0;
}

.disclaimer {
    display: grid;
    grid-template-columns: minmax(180px, 220px) 1fr;
    gap: 1rem;
    max-width: none;
    margin: 0 0 1rem;
    padding: 1.35rem 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.disclaimer strong,
.copyright {
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.disclaimer p {
    max-width: 46rem;
    margin-top: 0;
}

@media (max-width: 1100px) {
    .dispatch-hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .dispatch-stats,
    .overview-strip,
    .telemetry-grid,
    .voice-board,
    .profiles-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .launch-main .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .launch-main .post-card:first-child {
        grid-column: span 2;
    }

    .authors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .launch-main > section:not(.dispatch-hero):not(.telemetry-section),
    .telemetry-section,
    .site-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .dispatch-hero {
        padding: 2.4rem 1rem 2rem;
    }

    .dispatch-wall {
        min-height: 0;
    }

    .dispatch-stats,
    .overview-strip,
    .telemetry-grid,
    .voice-board,
    .launch-main .post-grid,
    .profiles-grid,
    .faq-grid,
    .authors-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .dispatch-ledger-row {
        grid-template-columns: auto 1fr;
    }

    .dispatch-ledger-row p {
        grid-column: 2;
    }

    .launch-main .post-card:first-child {
        grid-column: span 1;
        min-height: 0;
    }

    .telemetry-card,
    .overview-strip div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
    }

    .telemetry-card:last-child,
    .overview-strip div:last-child {
        border-bottom: 0;
    }

    .disclaimer {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ANTHROPIC SKILL REFINEMENT
   ============================================= */

.logo-text {
    letter-spacing: 3px;
    font-size: 0.82rem;
}

.nav-links a,
.btn,
.signal-chip,
.tags-cloud .tag {
    border-radius: 12px;
}

.nav-links a {
    padding: 0.55rem 0.95rem;
}

.btn {
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.hero h1 .gradient-text {
    background: none;
}

.dispatch-poster strong,
.mission-card h2,
.page-hero.compact h1 {
    letter-spacing: -1.4px;
}


