@import '_base.css';
@import '_effects.css';

/* === Vortex — Neural Interface Cyberpunk === */

/* --- Global layout --- */
.trz60-body {
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, hsl(var(--accent-h) 55% 10% / 0.45), transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 85%, hsl(var(--accent-h) 40% 8% / 0.35), transparent 60%),
        radial-gradient(ellipse at top, hsl(var(--bg-1)), hsl(var(--bg-0)));
    color: hsl(var(--fg-1));
    font-family: var(--font-body);
    min-height: 100vh;
    position: relative;
}

.trz60-body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        linear-gradient(hsl(var(--accent-h) 40% 50% / 0.03) 1px, transparent 1px),
        linear-gradient(90deg, hsl(var(--accent-h) 40% 50% / 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mix-blend-mode: screen;
}

.trz60-matrix-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
}

main, .trz60-header, .trz60-footer { position: relative; z-index: 2; }

section {
    padding: 6rem 0;
    position: relative;
}

@media (min-width: 900px) {
    section { padding: 8rem 0; }
}

.trz60-section-index {
    display: inline-block;
    font-family: 'JetBrains Mono', var(--font-body), monospace;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: hsl(var(--accent));
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border: 1px solid hsl(var(--accent) / 0.35);
    border-radius: 999px;
    background: hsl(var(--accent) / 0.06);
    margin-bottom: 1.25rem;
    text-shadow: 0 0 12px hsl(var(--accent) / 0.5);
}

.trz60-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    line-height: 1.08;
    color: hsl(var(--fg-1));
    letter-spacing: -0.02em;
    max-width: 22ch;
    margin-bottom: 1.25rem;
}

.trz60-section-lede {
    font-size: 1.125rem;
    line-height: 1.65;
    color: hsl(var(--fg-2));
    max-width: 65ch;
}

/* --- Header / Nav --- */
.trz60-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 0;
    background: linear-gradient(180deg, hsl(var(--bg-0) / 0.85), hsl(var(--bg-0) / 0.55));
    backdrop-filter: blur(14px) saturate(1.3);
    -webkit-backdrop-filter: blur(14px) saturate(1.3);
    border-bottom: 1px solid hsl(var(--line-1) / 0.5);
}

.trz60-nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trz60-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: hsl(var(--fg-1));
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.015em;
}

.trz60-brand-mark {
    display: inline-flex;
    color: hsl(var(--accent));
    filter: drop-shadow(0 0 8px hsl(var(--accent) / 0.7));
    animation: trz60-rotate-slow 24s linear infinite;
}

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

.trz60-brand-word { font-weight: 500; }
.trz60-brand-dot {
    color: hsl(var(--accent));
    text-shadow: 0 0 10px hsl(var(--accent) / 0.8);
    animation: trz60-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes trz60-dot-pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px hsl(var(--accent) / 0.8); }
    50% { opacity: 0.6; text-shadow: 0 0 16px hsl(var(--accent) / 1); }
}

.trz60-nav-list {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    margin: 0 auto 0 1rem;
    padding: 0;
    flex-wrap: wrap;
}

.trz60-nav-list a {
    display: inline-block;
    padding: 0.5rem 0.95rem;
    color: hsl(var(--fg-2));
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-out-3);
}

.trz60-nav-list a:hover {
    color: hsl(var(--fg-1));
    background: hsl(var(--accent) / 0.08);
    border-color: hsl(var(--accent) / 0.3);
}

.trz60-nav-list a.trz60-nav-active {
    color: hsl(var(--accent));
    background: hsl(var(--accent) / 0.1);
    border-color: hsl(var(--accent) / 0.4);
    box-shadow: 0 0 12px hsl(var(--accent) / 0.25);
}

.trz60-nav-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: hsl(var(--fg-2));
    padding: 0.4rem 0.85rem;
    border: 1px solid hsl(var(--line-1));
    border-radius: 999px;
    background: hsl(var(--bg-1) / 0.6);
}

.trz60-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsl(var(--accent));
    box-shadow: 0 0 10px hsl(var(--accent) / 0.7);
    animation: trz60-dot-pulse 1.8s ease-in-out infinite;
}

.trz60-status-dot.trz60-status-live {
    background: hsl(var(--link-live));
    box-shadow: 0 0 10px hsl(var(--link-live) / 0.7);
}

/* --- Hero --- */
.trz60-hero {
    min-height: 88vh;
    padding: 8rem 0 6rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid hsl(var(--line-1) / 0.4);
}

.trz60-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    mix-blend-mode: screen;
    mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, #000 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, #000 30%, transparent 90%);
    z-index: 0;
}

.trz60-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle at 22% 28%, hsl(var(--accent)) 1.5px, transparent 2.5px),
        radial-gradient(circle at 78% 22%, hsl(var(--accent)) 1.5px, transparent 2.5px),
        radial-gradient(circle at 12% 72%, hsl(var(--accent)) 1.5px, transparent 2.5px),
        radial-gradient(circle at 88% 70%, hsl(var(--accent)) 1.5px, transparent 2.5px),
        radial-gradient(circle at 50% 50%, hsl(var(--accent)) 2px, transparent 3px);
    background-size: 100% 100%;
    opacity: 0.45;
    filter: drop-shadow(0 0 6px hsl(var(--accent) / 0.8));
    animation: trz60-synapse 6s ease-in-out infinite;
}

@keyframes trz60-synapse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.6; }
}

.trz60-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    position: relative;
    z-index: 3;
    width: 100%;
}

.trz60-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: hsl(var(--fg-2));
    padding: 0.55rem 1.1rem;
    background: hsl(var(--bg-1) / 0.55);
    border: 1px solid hsl(var(--line-1));
    border-radius: 999px;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.trz60-hero-tag { color: hsl(var(--fg-1)); }
.trz60-hero-pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: hsl(var(--accent));
    box-shadow: 0 0 10px hsl(var(--accent));
    animation: trz60-dot-pulse 1.2s ease-in-out infinite;
}
.trz60-hero-rev { color: hsl(var(--accent)); }

.trz60-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7.5vw, 6.5rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 500;
    margin: 0 0 2rem;
    color: hsl(var(--fg-1));
    max-width: 18ch;
}

.trz60-h1-line {
    display: block;
}

.trz60-h1-accent {
    position: relative;
    color: hsl(var(--accent));
    text-shadow:
        0 0 20px hsl(var(--accent) / 0.5),
        0 0 40px hsl(var(--accent) / 0.25);
    font-style: italic;
    font-weight: 600;
}

.trz60-hero-lede {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.6;
    color: hsl(var(--fg-2));
    max-width: 58ch;
    margin: 0 0 2.5rem;
}

.trz60-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* --- Primary Pod (organic link pod) --- */
.trz60-primary-pod {
    position: relative;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, hsl(var(--bg-1) / 0.9), hsl(var(--bg-2) / 0.75));
    border: 1px solid hsl(var(--accent) / 0.35);
    border-radius: 2rem 2rem 2rem 0.5rem;
    backdrop-filter: blur(16px);
    box-shadow:
        0 0 0 1px hsl(var(--accent) / 0.1),
        0 20px 40px -20px hsl(var(--accent) / 0.35),
        inset 0 1px 0 hsl(var(--fg-1) / 0.06);
    max-width: 640px;
    flex: 1 1 420px;
    overflow: hidden;
}

.trz60-primary-pod::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle at top right, hsl(var(--accent) / 0.4), transparent 70%);
    pointer-events: none;
}

.trz60-pod-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trz60-pod-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: hsl(var(--accent));
}

.trz60-pod-freshness {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: hsl(var(--fg-2));
}

.trz60-pod-code {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.72rem, 1.25vw, 0.92rem);
    color: hsl(var(--fg-1));
    line-height: 1.5;
    padding: 0.75rem;
    background: hsl(var(--bg-0) / 0.65);
    border: 1px solid hsl(var(--line-1));
    border-radius: 0.5rem;
    word-break: break-all;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px hsl(var(--accent) / 0.2);
}

.trz60-pod-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    background: hsl(var(--accent));
    color: hsl(var(--bg-0));
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.2s var(--ease-out-3), box-shadow 0.3s var(--ease-out-3);
    box-shadow: 0 0 0 0 hsl(var(--accent) / 0.5);
    width: 100%;
}

.trz60-pod-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px hsl(var(--accent) / 0.4), 0 0 0 4px hsl(var(--accent) / 0.15);
}

.trz60-pod-copy:active { transform: translateY(0); }

.trz60-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--fg-1));
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    padding: 0.9rem 1.2rem;
    border: 1px solid hsl(var(--line-2));
    border-radius: 999px;
    transition: all 0.3s var(--ease-out-3);
}

.trz60-secondary-cta:hover {
    border-color: hsl(var(--accent));
    color: hsl(var(--accent));
    padding-right: 1.5rem;
}

.trz60-cta-arrow { transition: transform 0.3s var(--ease-out-3); }
.trz60-secondary-cta:hover .trz60-cta-arrow { transform: translateX(4px); }

.trz60-hero-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 1.25rem 1.5rem;
    background: hsl(var(--bg-1) / 0.5);
    border: 1px solid hsl(var(--line-1));
    border-radius: 1rem;
    max-width: 780px;
    backdrop-filter: blur(8px);
}

.trz60-hero-trust li {
    font-size: 0.85rem;
    color: hsl(var(--fg-2));
    line-height: 1.3;
}

.trz60-hero-trust strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    color: hsl(var(--accent));
    text-shadow: 0 0 12px hsl(var(--accent) / 0.35);
    margin-bottom: 0.15rem;
}

/* --- Intel section --- */
.trz60-intel {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
}

.trz60-intel-head {
    max-width: 780px;
    margin-bottom: 3rem;
}

.trz60-intel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trz60-intel-card {
    padding: 2rem;
    background: linear-gradient(145deg, hsl(var(--bg-1) / 0.85), hsl(var(--bg-2) / 0.6));
    border: 1px solid hsl(var(--line-1));
    border-radius: 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px -30px hsl(0 0% 0% / 0.6);
    transition: border-color 0.4s var(--ease-out-3), transform 0.4s var(--ease-out-3);
    position: relative;
    overflow: hidden;
}

.trz60-intel-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, hsl(var(--accent) / 0.5), transparent 55%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-3);
    pointer-events: none;
}

.trz60-intel-card:hover::before { opacity: 1; }
.trz60-intel-card:hover { transform: translateY(-4px); }

.trz60-intel-card-wide {
    grid-column: 1 / -1;
}

@media (min-width: 900px) {
    .trz60-intel-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    .trz60-intel-card-wide {
        grid-column: 1 / -1;
    }
}

.trz60-intel-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.trz60-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: hsl(var(--accent));
    box-shadow: 0 0 8px hsl(var(--accent) / 0.7);
    flex-shrink: 0;
}

.trz60-intel-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: hsl(var(--fg-1));
    letter-spacing: -0.01em;
}

.trz60-intel-card p {
    color: hsl(var(--fg-2));
    line-height: 1.65;
    font-size: 0.98rem;
    max-width: 60ch;
}

.trz60-intel-card p + p { margin-top: 0.85rem; }

.trz60-intel-image {
    margin: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid hsl(var(--line-1));
    box-shadow: 0 30px 60px -30px hsl(var(--accent) / 0.3);
}

.trz60-intel-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 460px;
    object-fit: cover;
}

.trz60-intel-image figcaption {
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, hsl(var(--bg-0) / 0) 0%, hsl(var(--bg-0) / 0.9) 100%);
    color: hsl(var(--fg-2));
    font-size: 0.9rem;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    backdrop-filter: blur(6px);
}

/* --- Feature Matrix --- */
.trz60-matrix-section {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
    position: relative;
}

.trz60-matrix-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, hsl(var(--accent) / 0.05), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.trz60-matrix-head {
    max-width: 780px;
    margin-bottom: 3rem;
}

.trz60-feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trz60-feature {
    padding: 1.75rem;
    background: linear-gradient(160deg, hsl(var(--bg-1) / 0.9) 0%, hsl(var(--bg-2) / 0.7) 100%);
    border-radius: 2rem 0.5rem 2rem 0.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-3);
}

.trz60-feature:hover { transform: translateY(-6px); }

.trz60-feature-visual {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
    position: relative;
    border: 1px solid hsl(var(--line-1));
}

.trz60-feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-3);
}

.trz60-feature:hover .trz60-feature-visual img { transform: scale(1.05); }

.trz60-feature-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, hsl(var(--bg-0) / 0.7) 100%);
    pointer-events: none;
}

.trz60-feature h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: hsl(var(--fg-1));
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.trz60-feature p {
    color: hsl(var(--fg-2));
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    max-width: 58ch;
}

.trz60-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.trz60-feature-pills li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    background: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
    border: 1px solid hsl(var(--accent) / 0.3);
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.trz60-matrix-table-wrap {
    padding: 2rem;
    background: hsl(var(--bg-1) / 0.6);
    border: 1px solid hsl(var(--line-1));
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
}

.trz60-table-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: hsl(var(--fg-1));
    margin-bottom: 1.25rem;
}

.trz60-matrix-table,
.trz60-link-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.trz60-matrix-table th,
.trz60-matrix-table td,
.trz60-link-table th,
.trz60-link-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid hsl(var(--line-1));
    color: hsl(var(--fg-2));
}

.trz60-matrix-table thead th,
.trz60-link-table thead th {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: hsl(var(--accent));
    border-bottom: 1px solid hsl(var(--accent) / 0.4);
    background: hsl(var(--accent) / 0.04);
}

.trz60-matrix-table tbody th,
.trz60-link-table tbody th {
    color: hsl(var(--fg-1));
    font-weight: 600;
}

.trz60-matrix-table tbody tr:hover,
.trz60-link-table tbody tr:hover { background: hsl(var(--accent) / 0.04); }

/* --- Field Reports --- */
.trz60-reports {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
}

.trz60-reports-head {
    max-width: 780px;
    margin-bottom: 3rem;
}

.trz60-reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trz60-report {
    padding: 2rem;
    background: linear-gradient(145deg, hsl(var(--bg-1) / 0.85), hsl(var(--bg-2) / 0.55));
    border: 1px solid hsl(var(--line-1));
    border-left: 2px solid hsl(var(--accent));
    border-radius: 0.25rem 1.5rem 1.5rem 0.25rem;
    backdrop-filter: blur(8px);
    margin: 0;
    position: relative;
}

.trz60-report::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: hsl(var(--accent) / 0.2);
    pointer-events: none;
}

.trz60-report p {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(var(--fg-1));
    margin-bottom: 1rem;
    max-width: 55ch;
    font-style: italic;
}

.trz60-report footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--line-1) / 0.5);
    font-style: normal;
}

.trz60-report cite {
    font-family: 'JetBrains Mono', monospace;
    color: hsl(var(--accent));
    font-size: 0.88rem;
    font-style: normal;
}

.trz60-report-meta {
    color: hsl(var(--fg-3));
    font-size: 0.82rem;
}

.trz60-report-stars {
    margin-left: auto;
    display: inline-flex;
    gap: 0.1rem;
}

.trz60-star {
    color: hsl(var(--accent));
    font-size: 1rem;
    text-shadow: 0 0 6px hsl(var(--accent) / 0.5);
}

.trz60-star-partial {
    background: linear-gradient(90deg, hsl(var(--accent)) 80%, hsl(var(--fg-3) / 0.5) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trz60-reports-footer {
    padding: 1.5rem 2rem;
    background: hsl(var(--accent) / 0.06);
    border: 1px solid hsl(var(--accent) / 0.2);
    border-radius: 1rem;
    color: hsl(var(--fg-2));
    font-size: 0.95rem;
    line-height: 1.6;
}

.trz60-reports-footer strong {
    color: hsl(var(--accent));
    font-weight: 600;
}

/* --- Community Pulse --- */
.trz60-pulse {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
}

.trz60-pulse-head {
    max-width: 780px;
    margin-bottom: 3rem;
}

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

.trz60-pulse-card {
    padding: 1.75rem;
    background: linear-gradient(180deg, hsl(var(--bg-1) / 0.8), hsl(var(--bg-0) / 0.6));
    border: 1px solid hsl(var(--line-1));
    border-radius: 1.25rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.trz60-pulse-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, hsl(var(--accent)), transparent);
    transform: translateX(-100%);
    animation: trz60-scan-line 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes trz60-scan-line {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
}

.trz60-pulse-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: hsl(var(--fg-2));
    display: block;
    margin-bottom: 0.5rem;
}

.trz60-pulse-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: hsl(var(--accent));
    text-shadow: 0 0 18px hsl(var(--accent) / 0.5);
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 1rem;
}

.trz60-pulse-bar {
    width: 100%;
    height: 8px;
    background: hsl(var(--bg-0));
    border: 1px solid hsl(var(--line-1));
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.trz60-pulse-fill {
    display: block;
    height: 100%;
    width: var(--fill, 50%);
    background: linear-gradient(90deg, hsl(var(--accent) / 0.7), hsl(var(--accent)));
    border-radius: 999px;
    box-shadow: 0 0 8px hsl(var(--accent) / 0.5);
    position: relative;
    transform-origin: left center;
}

.trz60-pulse-fill::after {
    content: '';
    position: absolute;
    right: 0; top: -2px; bottom: -2px;
    width: 6px;
    background: hsl(var(--accent));
    border-radius: 999px;
    box-shadow: 0 0 10px hsl(var(--accent));
    animation: trz60-dot-pulse 1.5s ease-in-out infinite;
}

.trz60-pulse-card p {
    font-size: 0.88rem;
    color: hsl(var(--fg-2));
    line-height: 1.55;
    max-width: 40ch;
}

/* --- Privacy Library (steps) --- */
.trz60-library {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
}

.trz60-library-head {
    max-width: 780px;
    margin-bottom: 4rem;
}

.trz60-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin-bottom: 4rem;
}

.trz60-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, hsl(var(--accent) / 0.5) 10%, hsl(var(--accent) / 0.5) 90%, transparent 100%);
    display: none;
}

@media (min-width: 900px) {
    .trz60-steps::before { display: block; }
}

.trz60-step {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem;
    background: linear-gradient(145deg, hsl(var(--bg-1) / 0.75), hsl(var(--bg-2) / 0.5));
    border: 1px solid hsl(var(--line-1));
    border-radius: 1.5rem;
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
}

@media (min-width: 900px) {
    .trz60-step { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.trz60-step-visual {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid hsl(var(--line-1));
    aspect-ratio: 1;
}

.trz60-step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trz60-step-num {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: hsl(var(--accent));
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.75rem;
    border: 1px solid hsl(var(--accent) / 0.4);
    border-radius: 999px;
    background: hsl(var(--accent) / 0.08);
}

.trz60-step-body h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    color: hsl(var(--fg-1));
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.trz60-step-body p {
    color: hsl(var(--fg-2));
    font-size: 1rem;
    line-height: 1.7;
    max-width: 58ch;
}

.trz60-library-pillars {
    padding: 2.5rem;
    background: linear-gradient(145deg, hsl(var(--bg-1) / 0.9), hsl(var(--bg-2) / 0.7));
    border: 1px solid hsl(var(--accent) / 0.25);
    border-radius: 1.5rem;
    box-shadow: 0 30px 60px -30px hsl(var(--accent) / 0.3);
    margin-bottom: 2rem;
}

.trz60-pillars-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: hsl(var(--fg-1));
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.trz60-pillars-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: pillar;
    display: grid;
    gap: 1.25rem;
}

.trz60-pillars-list li {
    counter-increment: pillar;
    padding: 1.25rem 1.5rem 1.25rem 3.75rem;
    position: relative;
    background: hsl(var(--bg-0) / 0.5);
    border: 1px solid hsl(var(--line-1));
    border-radius: 1rem;
    color: hsl(var(--fg-2));
    font-size: 0.98rem;
    line-height: 1.6;
}

.trz60-pillars-list li::before {
    content: counter(pillar, decimal-leading-zero);
    position: absolute;
    left: 1.25rem;
    top: 1.1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: hsl(var(--accent));
    font-weight: 700;
    text-shadow: 0 0 8px hsl(var(--accent) / 0.5);
}

.trz60-pillars-list strong {
    display: block;
    color: hsl(var(--fg-1));
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.trz60-code {
    padding: 1.5rem 1.75rem;
    background: hsl(var(--bg-0));
    border: 1px solid hsl(var(--accent) / 0.3);
    border-radius: 1rem;
    overflow-x: auto;
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    color: hsl(var(--fg-1));
    line-height: 1.7;
    text-shadow: 0 0 8px hsl(var(--accent) / 0.2);
    position: relative;
}

.trz60-code::before {
    content: '~ terminal';
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    font-size: 0.72rem;
    color: hsl(var(--accent));
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trz60-code code { color: inherit; background: none; padding: 0; }

/* --- Threat model (inside privacy-library) --- */
.trz60-threat-model {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid hsl(var(--line-1) / 0.6);
}

.trz60-threat-intro {
    color: hsl(var(--fg-2));
    font-size: 1rem;
    line-height: 1.7;
    max-width: 65ch;
    margin-bottom: 2rem;
}

.trz60-threat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.trz60-threat-card {
    padding: 1.5rem 1.75rem;
    background: hsl(var(--bg-1) / 0.6);
    border: 1px solid hsl(var(--line-1));
    border-radius: 1.25rem;
    backdrop-filter: blur(6px);
    transition: border-color 0.3s, transform 0.3s;
}

.trz60-threat-card:hover {
    border-color: hsl(var(--accent) / 0.4);
    transform: translateY(-3px);
}

.trz60-threat-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: hsl(var(--fg-1));
    margin-bottom: 0.65rem;
    letter-spacing: -0.005em;
}

.trz60-threat-card p {
    color: hsl(var(--fg-2));
    font-size: 0.94rem;
    line-height: 1.65;
    max-width: 60ch;
}

/* --- Vendor tiers section --- */
.trz60-vendor-tiers {
    padding: 6rem 0;
    position: relative;
}

.trz60-tiers-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.trz60-tiers-inner .trz60-section-title,
.trz60-tiers-inner .trz60-section-lede {
    max-width: 780px;
    margin-bottom: 1.25rem;
}

.trz60-tiers-inner .trz60-section-lede { margin-bottom: 3rem; }

.trz60-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.trz60-tier-card {
    padding: 1.75rem;
    background: linear-gradient(160deg, hsl(var(--bg-1) / 0.9), hsl(var(--bg-2) / 0.7));
    border: 1px solid hsl(var(--line-1));
    border-radius: 1.5rem;
    position: relative;
    backdrop-filter: blur(8px);
    transition: transform 0.4s var(--ease-out-3), border-color 0.4s;
}

.trz60-tier-card:hover {
    transform: translateY(-5px);
    border-color: hsl(var(--accent) / 0.4);
}

.trz60-tier-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: hsl(var(--accent) / 0.15);
    color: hsl(var(--accent));
    border: 1px solid hsl(var(--accent) / 0.4);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.trz60-tier-core { opacity: 0.7; }
.trz60-tier-trusted { background: hsl(var(--accent) / 0.2); }
.trz60-tier-signature {
    background: hsl(var(--accent) / 0.3);
    box-shadow: 0 0 16px hsl(var(--accent) / 0.35);
}

.trz60-tier-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: hsl(var(--fg-1));
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.trz60-tier-card p {
    color: hsl(var(--fg-2));
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    max-width: 58ch;
}

.trz60-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.trz60-tier-list li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: hsl(var(--fg-3));
    padding-left: 1.1rem;
    position: relative;
}

.trz60-tier-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: hsl(var(--accent));
}

.trz60-tiers-image {
    max-height: 380px;
}

/* --- Links section --- */
.trz60-links {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
}

.trz60-links-head {
    max-width: 780px;
    margin-bottom: 3rem;
}

.trz60-link-pods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.trz60-link-pod {
    padding: 1.75rem;
    background: linear-gradient(135deg, hsl(var(--bg-1) / 0.9), hsl(var(--bg-2) / 0.7));
    border: 1px solid hsl(var(--accent) / 0.25);
    border-radius: 2rem 0.5rem 2rem 0.5rem;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-3), border-color 0.4s;
}

.trz60-link-pod:hover {
    transform: translateY(-4px);
    border-color: hsl(var(--accent) / 0.6);
    box-shadow: 0 0 0 1px hsl(var(--accent) / 0.2), 0 25px 40px -20px hsl(var(--accent) / 0.4);
}

.trz60-link-pod header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trz60-link-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: hsl(var(--accent));
}

.trz60-link-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: hsl(var(--fg-2));
}

.trz60-link-pod code {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: hsl(var(--fg-1));
    line-height: 1.5;
    padding: 0.8rem;
    background: hsl(var(--bg-0) / 0.7);
    border: 1px solid hsl(var(--line-1));
    border-radius: 0.5rem;
    word-break: break-all;
    margin-bottom: 1rem;
}

.trz60-link-copy {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    color: hsl(var(--accent));
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid hsl(var(--accent) / 0.5);
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s var(--ease-out-3);
    margin-bottom: 0.75rem;
}

.trz60-link-copy:hover {
    background: hsl(var(--accent));
    color: hsl(var(--bg-0));
    box-shadow: 0 8px 20px hsl(var(--accent) / 0.35);
}

.trz60-link-pod footer {
    font-size: 0.78rem;
    color: hsl(var(--fg-3));
    padding-top: 0.75rem;
    border-top: 1px solid hsl(var(--line-1) / 0.5);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.trz60-link-table {
    width: 100%;
    padding: 2rem;
    background: hsl(var(--bg-1) / 0.5);
    border: 1px solid hsl(var(--line-1));
    border-radius: 1.25rem;
    backdrop-filter: blur(8px);
    margin-bottom: 2.5rem;
    display: table;
}

.trz60-link-table caption {
    caption-side: top;
    text-align: left;
    padding-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: hsl(var(--fg-2));
    letter-spacing: 0.05em;
}

.trz60-links-warn {
    padding: 1.75rem 2rem;
    background: linear-gradient(145deg, hsl(var(--status-warn) / 0.08), hsl(var(--bg-1) / 0.6));
    border: 1px solid hsl(var(--status-warn) / 0.4);
    border-radius: 1.25rem;
    box-shadow: inset 0 0 0 1px hsl(var(--status-warn) / 0.1);
}

.trz60-links-warn h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: hsl(var(--status-warn));
    margin-bottom: 0.5rem;
}

.trz60-links-warn p {
    color: hsl(var(--fg-2));
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
    max-width: 70ch;
}

/* --- CTA section --- */
.trz60-cta {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.trz60-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, hsl(var(--accent) / 0.12), transparent 70%),
        linear-gradient(180deg, transparent, hsl(var(--bg-0) / 0.6));
    pointer-events: none;
    z-index: -1;
}

.trz60-cta-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    text-align: center;
}

.trz60-cta-inner .trz60-section-index { margin-bottom: 1.5rem; }

.trz60-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.05;
    color: hsl(var(--fg-1));
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.trz60-cta-inner p {
    font-size: 1.1rem;
    color: hsl(var(--fg-2));
    line-height: 1.6;
    max-width: 58ch;
    margin: 0 auto 2.5rem;
}

.trz60-cta-pod {
    padding: 2rem;
    background: linear-gradient(135deg, hsl(var(--bg-1) / 0.95), hsl(var(--bg-2) / 0.75));
    border: 1px solid hsl(var(--accent) / 0.4);
    border-radius: 2rem;
    backdrop-filter: blur(16px);
    box-shadow:
        0 0 0 1px hsl(var(--accent) / 0.1),
        0 30px 60px -20px hsl(var(--accent) / 0.3);
    margin-bottom: 2.5rem;
    text-align: left;
}

.trz60-cta-pod code {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.7rem, 1.2vw, 0.88rem);
    color: hsl(var(--fg-1));
    padding: 1rem;
    background: hsl(var(--bg-0) / 0.8);
    border: 1px solid hsl(var(--line-1));
    border-radius: 0.5rem;
    word-break: break-all;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    text-align: center;
}

.trz60-cta-button {
    width: 100%;
    padding: 1rem 1.75rem;
    background: hsl(var(--accent));
    color: hsl(var(--bg-0));
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 0 0 0 hsl(var(--accent) / 0.5);
}

.trz60-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px hsl(var(--accent) / 0.45), 0 0 0 4px hsl(var(--accent) / 0.15);
}

.trz60-cta-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.trz60-cta-links a {
    color: hsl(var(--fg-2));
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    padding: 0.5rem 1rem;
    border: 1px solid hsl(var(--line-1));
    border-radius: 999px;
    transition: all 0.3s var(--ease-out-3);
}

.trz60-cta-links a:hover {
    color: hsl(var(--accent));
    border-color: hsl(var(--accent) / 0.6);
    background: hsl(var(--accent) / 0.06);
}

/* --- FAQ --- */
.trz60-faq {
    max-width: 860px;
    margin: 0 auto;
    padding: 6rem clamp(1rem, 3vw, 2.5rem);
}

.trz60-faq-head {
    margin-bottom: 3rem;
    text-align: left;
}

.trz60-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trz60-faq-item {
    background: linear-gradient(145deg, hsl(var(--bg-1) / 0.85), hsl(var(--bg-2) / 0.6));
    border: 1px solid hsl(var(--line-1));
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
    backdrop-filter: blur(8px);
}

.trz60-faq-item[open] {
    border-color: hsl(var(--accent) / 0.4);
    box-shadow: 0 0 0 1px hsl(var(--accent) / 0.15);
}

.trz60-faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: hsl(var(--fg-1));
    padding: 0.25rem 0;
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.3;
}

.trz60-faq-item summary::-webkit-details-marker { display: none; }

.trz60-faq-plus {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
}

.trz60-faq-plus::before,
.trz60-faq-plus::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: hsl(var(--accent));
    transition: transform 0.3s var(--ease-out-3);
}

.trz60-faq-plus::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.trz60-faq-plus::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.trz60-faq-item[open] .trz60-faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.trz60-faq-item p {
    margin-top: 1rem;
    color: hsl(var(--fg-2));
    line-height: 1.65;
    font-size: 0.98rem;
    max-width: 68ch;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--line-1) / 0.5);
}

/* --- Footer --- */
.trz60-footer {
    padding: 5rem 0 2rem;
    background: linear-gradient(180deg, hsl(var(--bg-0) / 0.5), hsl(var(--bg-1)));
    border-top: 1px solid hsl(var(--line-1));
    position: relative;
}

.trz60-footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, hsl(var(--accent) / 0.6), transparent);
}

.trz60-footer-grid {
    max-width: 1280px;
    margin: 0 auto 3rem;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.trz60-footer-brand p {
    color: hsl(var(--fg-3));
    font-size: 0.9rem;
    line-height: 1.65;
    margin-top: 1rem;
    max-width: 40ch;
}

.trz60-footer-col h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: hsl(var(--accent));
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.trz60-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trz60-footer-col a {
    color: hsl(var(--fg-2));
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-block;
    position: relative;
}

.trz60-footer-col a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: hsl(var(--accent));
    transition: width 0.3s var(--ease-out-3);
}

.trz60-footer-col a:hover { color: hsl(var(--accent)); }
.trz60-footer-col a:hover::after { width: 100%; }

.trz60-footer-base {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem clamp(1rem, 3vw, 2.5rem) 0;
    border-top: 1px solid hsl(var(--line-1));
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: hsl(var(--fg-3));
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
}

.trz60-footer-base p { margin: 0; max-width: none; }

/* --- Inner pages extra styles --- */
.trz60-inner-hero {
    padding: 9rem 0 4rem;
    position: relative;
    border-bottom: 1px solid hsl(var(--line-1) / 0.4);
}

.trz60-inner-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.trz60-breadcrumb {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: hsl(var(--fg-3));
    margin-bottom: 1.5rem;
}

.trz60-breadcrumb a {
    color: hsl(var(--fg-2));
    text-decoration: none;
    transition: color 0.2s;
}

.trz60-breadcrumb a:hover { color: hsl(var(--accent)); }
.trz60-breadcrumb span { color: hsl(var(--accent)); }

.trz60-inner-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: hsl(var(--fg-1));
    margin-bottom: 1.25rem;
    max-width: 22ch;
}

.trz60-inner-lede {
    font-size: 1.15rem;
    color: hsl(var(--fg-2));
    line-height: 1.6;
    max-width: 60ch;
}

.trz60-inner-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem clamp(1rem, 3vw, 2.5rem);
}

.trz60-inner-grid-7030 {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .trz60-inner-grid-7030 {
        grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    }
}

.trz60-inner-sidebar {
    padding: 1.5rem;
    background: hsl(var(--bg-1) / 0.55);
    border: 1px solid hsl(var(--line-1));
    border-radius: 1.25rem;
    backdrop-filter: blur(8px);
    position: sticky;
    top: 6rem;
    align-self: start;
}

.trz60-inner-sidebar h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: hsl(var(--accent));
    margin-bottom: 0.75rem;
}

.trz60-inner-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.trz60-inner-sidebar a {
    color: hsl(var(--fg-2));
    text-decoration: none;
    font-size: 0.92rem;
    padding: 0.3rem 0;
    transition: color 0.2s, padding 0.2s;
    display: inline-block;
}

.trz60-inner-sidebar a:hover { color: hsl(var(--accent)); padding-left: 0.3rem; }

.trz60-prose h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: hsl(var(--fg-1));
    margin: 2.5rem 0 1rem;
}

.trz60-prose h2:first-child { margin-top: 0; }

.trz60-prose h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: hsl(var(--fg-1));
    margin: 2rem 0 0.75rem;
}

.trz60-prose p {
    color: hsl(var(--fg-2));
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    max-width: 68ch;
}

.trz60-prose a { color: hsl(var(--accent)); text-decoration: underline; text-decoration-color: hsl(var(--accent) / 0.4); text-underline-offset: 3px; }
.trz60-prose a:hover { text-decoration-color: hsl(var(--accent)); }

.trz60-prose ul, .trz60-prose ol { color: hsl(var(--fg-2)); padding-left: 1.5rem; margin-bottom: 1.25rem; line-height: 1.7; }
.trz60-prose ul li, .trz60-prose ol li { margin-bottom: 0.5rem; max-width: 60ch; }

.trz60-prose strong { color: hsl(var(--fg-1)); font-weight: 600; }

.trz60-prose hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(var(--line-1)), transparent);
    margin: 2.5rem 0;
}

.trz60-prose blockquote {
    border-left: 2px solid hsl(var(--accent));
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 1.5rem 0;
    color: hsl(var(--fg-1));
    font-style: italic;
    max-width: 62ch;
}

.trz60-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.93rem;
}

.trz60-prose th, .trz60-prose td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid hsl(var(--line-1));
    color: hsl(var(--fg-2));
}

.trz60-prose thead th {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: hsl(var(--accent));
    border-bottom: 1px solid hsl(var(--accent) / 0.3);
}

/* --- Responsive tweaks --- */
@media (max-width: 720px) {
    .trz60-nav { gap: 0.75rem; }
    .trz60-nav-list { margin: 0; width: 100%; justify-content: flex-start; }
    .trz60-nav-list a { padding: 0.35rem 0.7rem; font-size: 0.85rem; }
    .trz60-nav-status { display: none; }
    .trz60-hero { min-height: auto; padding: 6rem 0 4rem; }
    .trz60-hero-title { font-size: clamp(2rem, 11vw, 3.5rem); }
    .trz60-primary-pod { padding: 1.25rem; }
    .trz60-footer-grid { gap: 2rem; }
    .trz60-footer-base { flex-direction: column; gap: 0.5rem; }
    .trz60-report::before { font-size: 3.5rem; }
    .trz60-intel-card { padding: 1.5rem; }
    .trz60-intel-card-wide { grid-column: auto; }
}

/* --- Scroll-driven progressive enhancement --- */
@supports (animation-timeline: view()) {
    .trz60-intel-card,
    .trz60-feature,
    .trz60-report,
    .trz60-pulse-card,
    .trz60-step,
    .trz60-link-pod {
        animation: trz60-reveal linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
    }
    @keyframes trz60-reveal {
        from { opacity: 0.3; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* --- prefers-reduced-motion --- */
@media (prefers-reduced-motion: reduce) {
    .trz60-hero-grid,
    .trz60-pulse-card::before,
    .trz60-brand-mark,
    .trz60-brand-dot,
    .trz60-status-dot { animation: none; }
    *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* === About page — editorial layout === */

.trz60-about-editorial-hero { padding-bottom: 5rem; }

.trz60-about-hero-split {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-top: 1.75rem;
}

@media (min-width: 900px) {
    .trz60-about-hero-split {
        grid-template-columns: 1.3fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

.trz60-about-hero-fig {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid hsl(var(--line-1));
    box-shadow:
        0 30px 60px -30px hsl(var(--accent) / 0.3),
        0 0 0 1px hsl(var(--accent) / 0.08);
    margin: 0;
    position: relative;
}

.trz60-about-hero-fig img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 440px;
    object-fit: cover;
}

.trz60-about-hero-fig figcaption {
    padding: 0.65rem 1rem;
    background: hsl(var(--bg-0) / 0.88);
    color: hsl(var(--fg-3));
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    border-top: 1px solid hsl(var(--line-1));
}

.trz60-about-hero-meta-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.75rem;
    padding: 1.25rem;
    background: hsl(var(--bg-1) / 0.5);
    border: 1px solid hsl(var(--line-1));
    border-radius: 1rem;
    margin-top: 2rem;
    backdrop-filter: blur(8px);
}

.trz60-about-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trz60-about-meta-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: hsl(var(--fg-3));
}

.trz60-about-meta-item strong {
    font-family: var(--font-display);
    font-size: 0.98rem;
    color: hsl(var(--accent));
    font-weight: 600;
    text-shadow: 0 0 8px hsl(var(--accent) / 0.3);
    letter-spacing: -0.01em;
}

/* Pull quote */
blockquote.trz60-about-pull {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    line-height: 1.38;
    color: hsl(var(--fg-1));
    padding: 1.75rem 2rem 1.75rem 2.25rem;
    border-left: 3px solid hsl(var(--accent));
    margin: 2.5rem 0;
    position: relative;
    font-style: italic;
    letter-spacing: -0.01em;
    max-width: 60ch;
    background: linear-gradient(135deg, hsl(var(--accent) / 0.05), transparent);
    border-radius: 0 1rem 1rem 0;
    box-shadow: inset 0 0 0 1px hsl(var(--accent) / 0.08);
}

.trz60-about-pull cite {
    display: block;
    margin-top: 0.9rem;
    font-size: 0.83rem;
    color: hsl(var(--accent));
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
}

/* Wide image below story */
.trz60-about-image-block {
    margin: 3rem 0 0;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid hsl(var(--line-1));
    box-shadow: 0 30px 60px -30px hsl(var(--accent) / 0.22);
    position: relative;
}

.trz60-about-wide-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.trz60-about-image-block figcaption {
    padding: 0.65rem 1.25rem;
    background: linear-gradient(180deg, hsl(var(--bg-0) / 0) 0%, hsl(var(--bg-0) / 0.9) 100%);
    color: hsl(var(--fg-3));
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    letter-spacing: 0.04em;
}

/* Philosophy section */
.trz60-about-philosophy-section {
    background: radial-gradient(ellipse 70% 50% at 50% 0%, hsl(var(--accent) / 0.04), transparent 70%);
    border-top: 1px solid hsl(var(--line-1) / 0.4);
}

.trz60-about-phi-head {
    max-width: 780px;
    margin-bottom: 3rem;
}

.trz60-about-phi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .trz60-about-phi-grid { grid-template-columns: 1fr 1fr; }
}

.trz60-about-phi-card {
    padding: 2rem;
    background: linear-gradient(145deg, hsl(var(--bg-1) / 0.9), hsl(var(--bg-2) / 0.65));
    border: 1px solid hsl(var(--line-1));
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-3), border-color 0.4s;
}

.trz60-about-phi-card:hover {
    transform: translateY(-4px);
    border-color: hsl(var(--accent) / 0.4);
}

.trz60-about-phi-card h3 {
    font-family: var(--font-display);
    font-size: 1.22rem;
    color: hsl(var(--fg-1));
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.trz60-about-phi-card p {
    color: hsl(var(--fg-2));
    font-size: 0.97rem;
    line-height: 1.7;
    max-width: 58ch;
    margin-bottom: 0.8rem;
}

.trz60-about-phi-card a {
    color: hsl(var(--accent));
    text-decoration: underline;
    text-decoration-color: hsl(var(--accent) / 0.4);
    text-underline-offset: 3px;
}

.trz60-about-phi-card a:hover { text-decoration-color: hsl(var(--accent)); }

.trz60-about-phi-img {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid hsl(var(--line-1));
    background: hsl(var(--bg-0));
    margin: 0 0 1.5rem;
}

.trz60-about-phi-img img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 260px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-3);
}

.trz60-about-phi-card:hover .trz60-about-phi-img img { transform: scale(1.04); }

/* Community voices */
.trz60-about-voices-section { border-top: 1px solid hsl(var(--line-1) / 0.4); }

.trz60-about-voices-head {
    max-width: 780px;
    margin-bottom: 3rem;
}

.trz60-about-interview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .trz60-about-interview-grid { grid-template-columns: repeat(3, 1fr); }
}

.trz60-about-interview {
    padding: 2rem;
    background: linear-gradient(145deg, hsl(var(--bg-1) / 0.85), hsl(var(--bg-2) / 0.6));
    border: 1px solid hsl(var(--line-1));
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s;
}

.trz60-about-interview:hover {
    border-color: hsl(var(--accent) / 0.4);
    transform: translateY(-3px);
}

.trz60-about-interview::before {
    content: '"';
    position: absolute;
    top: -0.75rem; right: 1.25rem;
    font-family: var(--font-display);
    font-size: 9rem;
    line-height: 1;
    color: hsl(var(--accent) / 0.1);
    pointer-events: none;
    user-select: none;
}

.trz60-about-interview-q {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.73rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: hsl(var(--accent));
    margin-bottom: 0.75rem;
}

.trz60-about-interview-a {
    color: hsl(var(--fg-1));
    font-size: 0.97rem;
    line-height: 1.68;
    margin-bottom: 1.5rem;
    font-style: italic;
    max-width: 55ch;
}

.trz60-about-interview-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid hsl(var(--line-1) / 0.5);
    flex-wrap: wrap;
}

.trz60-about-interview-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    color: hsl(var(--accent));
    font-weight: 600;
}

.trz60-about-interview-since {
    font-size: 0.78rem;
    color: hsl(var(--fg-3));
    flex: 1 1 auto;
}

/* Comparison section */
.trz60-about-compare-section { border-top: 1px solid hsl(var(--line-1) / 0.4); }
.trz60-about-compare-wrap { margin: 2rem 0; }

.trz60-prose-p {
    color: hsl(var(--fg-2));
    font-size: 1rem;
    line-height: 1.75;
    max-width: 70ch;
    margin-bottom: 1.25rem;
}

.trz60-prose-p a {
    color: hsl(var(--accent));
    text-decoration: underline;
    text-decoration-color: hsl(var(--accent) / 0.4);
    text-underline-offset: 3px;
}

.trz60-prose-p a:hover { text-decoration-color: hsl(var(--accent)); }
.trz60-about-compare-conclusion { margin-top: 1.5rem; }

/* Security block */
.trz60-about-security-block { border-top: 1px solid hsl(var(--line-1) / 0.4); }

.trz60-about-security-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    align-items: start;
}

@media (min-width: 900px) {
    .trz60-about-security-grid { grid-template-columns: 1fr 1.4fr; }
}

.trz60-about-sec-fig {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid hsl(var(--line-1));
    box-shadow: 0 20px 40px -20px hsl(var(--accent) / 0.28);
    margin: 0;
    position: relative;
}

.trz60-about-sec-fig img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 440px;
    object-fit: cover;
}

.trz60-about-sec-fig figcaption {
    padding: 0.65rem 1.25rem;
    background: linear-gradient(180deg, hsl(var(--bg-0) / 0) 0%, hsl(var(--bg-0) / 0.9) 100%);
    color: hsl(var(--fg-3));
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    letter-spacing: 0.04em;
}

/* Sidebar CTA */
.trz60-about-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 500;
    border: 1px solid hsl(var(--accent) / 0.35);
    border-radius: 0.75rem;
    transition: all 0.3s var(--ease-out-3);
    margin-top: 1.25rem;
}

.trz60-about-sidebar-cta:hover {
    background: hsl(var(--accent) / 0.18);
    box-shadow: 0 0 12px hsl(var(--accent) / 0.25);
    padding-right: 1.4rem;
}

/* Scroll-driven animation — about page cards */
@supports (animation-timeline: view()) {
    .trz60-about-phi-card,
    .trz60-about-interview {
        animation: trz60-reveal linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
    }
}


/* ── Mobile burger nav ── */
.trz60-burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:40px;height:40px;padding:8px;background:transparent;border:none;cursor:pointer;color:hsl(var(--fg-1));z-index:101;flex-shrink:0}
.trz60-burger span{display:block;width:22px;height:2px;background:currentColor;border-radius:1px;transition:transform .3s ease,opacity .3s ease}
.trz60-burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.trz60-burger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.trz60-burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media(max-width:700px){
  .trz60-nav-list{display:none!important}
  .trz60-nav-list.open{display:flex!important;position:fixed;inset:0;background:hsl(var(--bg-0)/.97);backdrop-filter:blur(8px);flex-direction:column;align-items:center;justify-content:center;gap:2rem;z-index:100}
  .trz60-nav-list.open a{font-size:1.25rem;padding:.75rem 2rem;text-align:center}
  .trz60-nav-status{display:none!important}
  .trz60-burger{display:flex}
}