@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
    --bg-primary: #0b0f14;
    --bg-secondary: #111824;
    --bg-tertiary: #182233;
    --text-primary: #e6f0ff;
    --text-secondary: #a6b4c8;
    --text-muted: #7d8aa3;
    --accent: #33d69f;
    --accent-hover: #5fe3b6;
    --border: #22314a;
    --border-subtle: #1a2638;
    --terminal: #0f151f;
    --glow: rgba(51, 214, 159, 0.2);
    --fs-page-label: 13px;
    --fs-page-title: clamp(38px, 5vw, 56px);
    --fs-page-subtitle: 20px;
    --fs-section-title: 32px;
    --fs-section-intro: 16px;
    --fs-content-text: 16px;
    --fs-timeline-company: 20px;
    --fs-timeline-description: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(51, 214, 159, 0.08), transparent 60%),
        radial-gradient(800px 600px at 90% 10%, rgba(92, 170, 255, 0.08), transparent 60%),
        var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(51, 214, 159, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51, 214, 159, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.25;
    pointer-events: none;
    z-index: -1;
}

.page-rail {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(180deg, rgba(51, 214, 159, 0.0), rgba(51, 214, 159, 0.35), rgba(51, 214, 159, 0.0));
    box-shadow: 0 0 18px rgba(51, 214, 159, 0.2);
    z-index: 0;
    pointer-events: none;
}

.rail-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, rgba(51, 214, 159, 0.9), rgba(95, 227, 182, 0.2));
    box-shadow: 0 0 14px rgba(51, 214, 159, 0.45);
}

::selection {
    background: var(--accent);
    color: #fff;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 15, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono', monospace;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-item.dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 18px 40px rgba(10, 15, 25, 0.35);
    z-index: 1001;
}

.nav-item.dropdown:hover .nav-dropdown,
.nav-item.dropdown:focus-within .nav-dropdown {
    display: flex;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
}

.nav-dropdown a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    display: block;
    white-space: nowrap;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    font-family: 'IBM Plex Mono', monospace;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

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

.breadcrumb span {
    opacity: 0.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Page Hero */
.page-hero {
    padding: 130px 0 64px;
}

.page-label {
    display: inline-block;
    font-size: var(--fs-page-label);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-family: 'IBM Plex Mono', monospace;
    padding: 6px 12px;
    border: 1px solid rgba(51, 214, 159, 0.4);
    border-radius: 999px;
    background: rgba(51, 214, 159, 0.08);
}

.page-label::before {
    content: ">_";
    margin-right: 10px;
    color: var(--accent);
}

.page-title {
    font-size: var(--fs-page-title);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: var(--fs-page-subtitle);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    font-weight: 400;
}

/* Sections */
.section {
    padding: 64px 0;
}

#workshops,
#volunteer,
#awards {
    scroll-margin-top: 110px;
}

.section-title {
    font-size: var(--fs-section-title);
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: "//";
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    color: var(--accent);
    letter-spacing: 2px;
}

.section-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.stat-card {
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 1px rgba(51, 214, 159, 0.06);
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.media-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 18px 32px rgba(8, 12, 20, 0.25);
}

.media-img {
    width: 100%;
    border-radius: 12px;
}

.media-caption {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1.5;
}

.media-stack {
    display: grid;
    gap: 28px;
    margin-top: 24px;
}

.media-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 18px 34px rgba(8, 12, 20, 0.28);
}

.media-panel.large {
    padding: 22px;
}

.media-img-large {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    background: #0d131d;
}

.media-panel a {
    display: block;
}

.media-hero {
    margin-top: 24px;
}

.verofy-evidence-hero {
    margin-top: 14px;
}

.verofy-evidence-link {
    display: block;
    text-decoration: none;
}

.media-duo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.content-text {
    font-size: var(--fs-content-text);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.ai-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.ai-point {
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'IBM Plex Mono', monospace;
}

/* Sidebar */
.sidebar-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px rgba(51, 214, 159, 0.04);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.story-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 18px 32px rgba(8, 12, 20, 0.25);
}

.story-card.highlight {
    border-color: rgba(51, 214, 159, 0.6);
    box-shadow: 0 18px 38px rgba(51, 214, 159, 0.18);
}

.story-step {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--accent);
    margin-bottom: 10px;
}

.content-single {
    max-width: 900px;
}

.section-intro {
    margin-bottom: 20px;
    max-width: 760px;
    color: var(--text-secondary);
    font-size: var(--fs-section-intro);
    line-height: 1.7;
}

.section-subtitle {
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 18px;
    color: var(--text-primary);
}

.showcase {
    margin-top: 28px;
    display: grid;
    gap: 20px;
}

.showcase-header {
    text-align: center;
    display: grid;
    gap: 10px;
    justify-items: center;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(51, 214, 159, 0.35);
    color: var(--text-primary);
    font-size: 12px;
    font-family: 'IBM Plex Mono', monospace;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(51, 214, 159, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.showcase-header h3 {
    font-size: 28px;
    margin: 0;
}

.showcase-header p {
    color: var(--text-secondary);
    max-width: 720px;
}

.showcase-video {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}

.showcase-video-link {
    position: relative;
    display: block;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #4a4a4a;
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.showcase-video-link img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-video-link:hover {
    transform: scale(1.01);
}

.showcase-video-link:hover img {
    filter: brightness(0.85);
}

.showcase-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-play-outer {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(65, 162, 164, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.showcase-play-inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #41a2a4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.showcase-play-inner svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.showcase-video-link:hover .showcase-play-outer {
    transform: scale(1.05);
}

.showcase-video-link:hover .showcase-play-inner {
    transform: scale(1.1);
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    padding: 24px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
}

.video-modal-close {
    position: absolute;
    top: -56px;
    right: 0;
    background: rgba(10, 15, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 999px;
    padding: 8px;
    cursor: pointer;
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.video-modal-frame {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #fff;
    background: #000;
}

.video-modal-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

body.image-zoom-open {
    overflow: hidden;
}

.zoomable-image {
    cursor: zoom-in;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.zoomable-image:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.image-zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(4, 8, 12, 0.78);
    backdrop-filter: blur(6px);
}

.image-zoom-modal.active {
    display: flex;
}

.image-zoom-figure {
    margin: 0;
    max-width: min(94vw, 1400px);
    max-height: 88vh;
    display: grid;
    gap: 10px;
    justify-items: center;
}

.image-zoom-modal-img {
    max-width: 100%;
    max-height: calc(88vh - 34px);
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 12, 16, 0.82);
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.42);
}

.image-zoom-caption {
    margin: 0;
    padding: 0 6px;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(233, 242, 250, 0.85);
    font-family: 'IBM Plex Mono', monospace;
    text-align: center;
}

.image-zoom-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(8, 12, 16, 0.55);
    color: #fff;
    cursor: pointer;
}

.image-zoom-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.hero-meta-clean {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    max-width: 820px;
}

.hero-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
    gap: clamp(20px, 3vw, 42px);
    align-items: center;
}

.hero-main-pane {
    min-width: 0;
    padding-right: 4px;
}

.hero-side-pane {
    min-width: 0;
    display: flex;
    align-items: center;
}

.hero-side-pane .hero-innovation-hook {
    margin-top: 0;
    max-width: none;
    width: 100%;
}

.hero-innovation-hook {
    margin-top: 0;
    max-width: none;
    position: relative;
    overflow: hidden;
    padding: 22px 24px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    background: linear-gradient(140deg, rgba(51, 214, 159, 0.1), rgba(24, 34, 51, 0.76) 45%, rgba(11, 15, 20, 0.96));
    box-shadow: 0 14px 30px rgba(8, 12, 20, 0.28);
}

.hero-innovation-hook::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -85px;
    right: -60px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(95, 227, 182, 0.22) 0%, rgba(95, 227, 182, 0) 70%);
    pointer-events: none;
}

.hero-innovation-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(51, 214, 159, 0.4);
    background: rgba(11, 15, 20, 0.6);
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero-innovation-hook p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.hero-innovation-hook p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.proconvey-part-section {
    position: relative;
}

#part-1-banner,
#part-2-proconvey,
#part-3-leadership {
    scroll-margin-top: 88px;
}

.part-two-section {
    padding-top: 50px;
}

.part-three-section {
    border-top: 1px solid var(--border-subtle);
}

.part-header {
    margin-bottom: 24px;
}

.part-title {
    margin: 0;
    font-size: 34px;
    letter-spacing: -0.8px;
    line-height: 1.2;
    color: var(--text-primary);
}

.part-intro {
    margin-top: 12px;
    max-width: 920px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
}

.section-subtitle-tight {
    margin-top: 0;
}

.product-innovation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 18px;
}

.product-overview-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
}

.impact-inline-wrap {
    margin-bottom: 16px;
}

.impact-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.impact-compact-item {
    display: grid;
    gap: 4px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 10px 12px;
}

.impact-compact-value {
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    line-height: 1.2;
}

.impact-compact-label {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.45;
}

.linkedin-updates-panel {
    margin-top: 22px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
}

.github-evidence-panel {
    margin-top: 22px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.github-evidence-panel .section-intro {
    max-width: none;
    margin-bottom: 8px;
}

.github-links {
    margin-top: 6px;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.github-media-grid {
    margin-top: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 16px;
}

.github-media-item {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 10px;
    border-bottom: 1px dashed var(--border-subtle);
}

.github-media-item .media-caption {
    margin-top: 8px;
    font-size: 12px;
}

.github-media-item .figma-flow-link::after {
    content: "Open full-size";
}

.github-media-item .figma-flow-link img {
    border-radius: 10px;
}

.github-stats-wrap {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed var(--border-subtle);
}

.github-stats-wrap .mini-title {
    margin-bottom: 8px;
}

.github-stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
}

.github-stat-item {
    display: grid;
    grid-template-columns: minmax(92px, 110px) minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-subtle);
}

.github-stat-item:last-child {
    border-bottom: 0;
}

.github-stat-value {
    font-size: 20px;
    line-height: 1.1;
}

.github-stat-label {
    font-size: 13px;
    line-height: 1.5;
}

.linkedin-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.linkedin-post-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 14px;
}

.linkedin-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
}

.linkedin-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.linkedin-post-link img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.linkedin-post-summary {
    margin-top: 12px;
}

.linkedin-post-summary h4 {
    margin: 0 0 8px;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.4;
}

.linkedin-post-summary .content-text {
    margin-bottom: 10px;
}

.linkedin-stats-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.linkedin-stats-list strong {
    color: var(--text-primary);
}

.innovation-validation-card {
    background: linear-gradient(140deg, rgba(51, 214, 159, 0.08), rgba(24, 34, 51, 0.72) 42%, rgba(17, 24, 36, 1));
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: 0 18px 36px rgba(8, 12, 20, 0.28);
}

.innovation-validation-title {
    margin-bottom: 18px;
}

.innovation-validation-intro {
    max-width: none;
    margin-bottom: 12px;
}

.innovation-validation-intro strong,
.innovation-validation-list strong {
    color: var(--text-primary);
}

.innovation-validation-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.innovation-validation-list li {
    position: relative;
    padding: 10px 12px 10px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    background: rgba(11, 15, 20, 0.45);
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

.innovation-validation-list li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 11px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(51, 214, 159, 0.12);
}

.innovation-validation-links {
    margin-top: 14px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.innovation-validation-links a {
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.innovation-validation-links a:hover {
    color: var(--accent-hover);
    border-color: rgba(95, 227, 182, 0.6);
}

.innovation-link-divider {
    color: var(--text-muted);
    font-size: 11px;
}

.hero-meta-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.hero-meta-row span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-meta-row a:not(.inline-link) {
    color: var(--text-primary);
    text-decoration: none;
}

.hero-meta-row a:not(.inline-link):hover {
    color: var(--accent);
}

.hero-meta-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-meta-links a {
    font-size: 14px;
}

.hero-meta-divider {
    color: var(--text-muted);
    font-size: 12px;
}

.hero-profile-links {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(51, 214, 159, 0.35);
    background: rgba(17, 24, 36, 0.72);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    line-height: 1;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-profile-chip:hover {
    border-color: var(--accent);
    background: rgba(51, 214, 159, 0.2);
    color: #ffffff;
}

.hero-profile-chip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--accent);
}

.hero-terminal-card {
    margin-top: 28px;
}

.content-text-top-md {
    margin-top: 16px;
}

.content-text-no-margin {
    margin-bottom: 0;
}

.badge-muted {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.table-scroll {
    overflow-x: auto;
}

.stats-grid-wide {
    min-width: 600px;
}

.sidebar-card-tight {
    margin-bottom: 24px;
}

.metric-chips-tight {
    margin-top: 18px;
}

.oc1-impact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.oc1-impact-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}

.oc1-impact-value {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 24px;
    line-height: 1.2;
    color: var(--accent);
    margin-bottom: 8px;
}

.oc1-impact-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.oc1-supporting-metrics {
    margin-top: 16px;
}

.oc1-impact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.oc1-impact-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}

.oc1-impact-value {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 24px;
    line-height: 1.2;
    color: var(--accent);
    margin-bottom: 8px;
}

.oc1-impact-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.oc1-supporting-metrics {
    margin-top: 16px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
    gap: 28px;
    margin-top: 24px;
    align-items: start;
}

.leadership-story .content-text + .content-text {
    margin-top: 14px;
}

.leadership-metrics {
    border-left: 1px solid var(--border);
    padding-left: 24px;
}

.mini-title {
    margin: 0 0 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.external-links {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.diagram-card {
    margin-top: 18px;
    padding: 20px;
    border-radius: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(8, 12, 20, 0.2);
}

.diagram-card .mermaid {
    font-size: 16px;
}

.diagram-card svg {
    width: 100%;
    height: auto;
}

.topology-diagram-card .mermaid {
    overflow-x: auto;
}

.topology-diagram-card .mermaid svg {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.diagram-card.compact {
    margin-top: 12px;
    padding: 16px;
}

.diagram-caption {
    font-size: 13px;
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.diagram-attribution-line {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 11px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: block;
    width: 100%;
    text-align: right;
}

.section-intro-compact {
    margin-top: 0;
    margin-bottom: 10px;
}

.section-bridge-text {
    margin-top: 12px;
}

.architecture-diagram-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.architecture-diagram-grid .diagram-card {
    margin-top: 0;
    overflow-x: auto;
}

.architecture-diagram-grid .diagram-card svg {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.architecture-diagram-grid .diagram-card .diagram-zoom-toolbar {
    display: flex !important;
    visibility: visible;
    opacity: 1;
}


.feature-stack {
    display: grid;
    gap: 28px;
    margin-top: 24px;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

.feature-block {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 22px;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.feature-header h3 {
    margin-bottom: 12px;
}

.feature-block + .feature-block {
    margin-top: 4px;
}

.feature-block .diagram-card {
    background: transparent;
    border: 1px dashed var(--border);
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.official-feature {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(51, 214, 159, 0.35);
    background: rgba(51, 214, 159, 0.08);
    display: grid;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.official-badge {
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(51, 214, 159, 0.15);
    border: 1px solid rgba(51, 214, 159, 0.35);
    color: var(--accent);
    font-size: 11px;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.official-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.official-link {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.official-feature:hover {
    border-color: rgba(51, 214, 159, 0.7);
    box-shadow: 0 10px 24px rgba(8, 12, 20, 0.2);
    transform: translateY(-2px);
}

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

.official-desc {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 18px 32px rgba(8, 12, 20, 0.2);
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-points {
    margin: 0 0 14px 18px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.pr-evidence {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
}

.pr-evidence-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
}

.pr-evidence-badges {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pr-evidence-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(51, 214, 159, 0.35);
    background: rgba(51, 214, 159, 0.12);
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    line-height: 1.3;
}

.feature-stack-clean {
    gap: 20px;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

.feature-stack-clean .feature-block {
    border-color: var(--border);
    background: var(--bg-secondary);
    padding: 20px 22px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.feature-stack-clean .feature-block h4 {
    margin-bottom: 10px;
}

.feature-stack-clean .feature-points {
    margin-bottom: 10px;
}

.feature-story {
    margin-bottom: 10px;
}

.feature-story .content-text {
    margin-bottom: 14px;
}

.recapx-flow-alignment {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 6px 0 18px;
}

.recapx-flow-column {
    min-width: 0;
}

.recapx-flow-column + .recapx-flow-column {
    border-left: 1px dashed var(--border-subtle);
    padding-left: 18px;
}

.recapx-flow-column h5 {
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
}

.recapx-flow-list {
    margin: 0 0 0 18px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.recapx-flow-list li + li {
    margin-top: 6px;
}

.recapx-proof-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 22px;
    margin: 12px 0 18px;
    align-items: start;
}

.recapx-proof-copy {
    min-width: 0;
    display: grid;
    gap: 12px;
}

.recapx-proof-block h5 {
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
}

.recapx-proof-list {
    margin: 0 0 0 18px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.recapx-proof-list li + li {
    margin-top: 6px;
}

.recapx-proof-diagram {
    border-left: 0;
    padding-left: 0;
    min-width: 0;
}

.recapx-proof-diagram .recapx-reference-card {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.feature-stack-clean .feature-block .recapx-proof-diagram .recapx-reference-card {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.recapx-source-note {
    margin: -2px 0 10px;
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.25px;
    text-transform: uppercase;
}

.recapx-proof-diagram .recapx-reference-figure {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.recapx-reference-figure {
    margin: 0;
}

.recapx-reference-figure .figma-flow-link {
    display: block;
    overflow: visible;
}

.recapx-reference-figure .figma-flow-link img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.replace-metric {
    display: inline-block;
    margin: 2px 0;
    padding: 2px 8px;
    border-radius: 8px;
    border: 1px dashed rgba(255, 196, 84, 0.58);
    background: rgba(255, 196, 84, 0.12);
    color: #ffd88a;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.15px;
}

.feature-stack-clean .feature-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.feature-stack-clean .feature-heading-row h4 {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.feature-stack-clean .feature-heading-row.feature-heading-row-partner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 18px;
    row-gap: 4px;
    margin-bottom: 0;
}

.feature-stack-clean .feature-heading-row.feature-heading-row-partner h4 {
    margin: 0;
}

.feature-stack-clean .feature-heading-row.feature-heading-row-summary .feature-heading-main {
    min-width: 0;
}

.feature-stack-clean .feature-heading-row.feature-heading-row-summary .feature-heading-main h4 {
    margin: 0 0 6px;
}

.feature-heading-summary {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.feature-stack-clean .feature-block > .feature-story,
.feature-stack-clean .feature-block > .connect-feature-layout {
    margin-top: 12px;
}

.feature-heading-meta-partner {
    min-width: 320px;
    display: grid;
    gap: 7px;
    justify-items: end;
    align-content: start;
    padding-left: 14px;
    border-left: 1px dashed var(--border-subtle);
}

.feature-heading-meta-partner .feature-partner-logos,
.feature-heading-meta-partner .feature-partner-links {
    justify-content: flex-end;
}

.feature-heading-meta-partner .feature-partner-links .inline-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2px;
}

.feature-stack-clean .feature-heading-meta-partner .pr-evidence {
    margin: 0;
    max-width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
}

.feature-stack-clean .feature-heading-meta-partner .pr-evidence-corner {
    align-items: flex-end;
    text-align: right;
}

.feature-stack-clean .feature-heading-meta-partner .pr-evidence-label {
    font-size: 10px;
}

.feature-stack-clean .feature-heading-meta-partner .pr-evidence-badges {
    justify-content: flex-end;
    margin-top: 6px;
    gap: 5px;
}

.feature-stack-clean .feature-heading-meta-partner .pr-evidence-badge {
    padding: 3px 8px;
    font-size: 10px;
}

.feature-partner-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.feature-partner-logo {
    display: block;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}

.feature-partner-logo-verofy {
    height: 16px;
}

.feature-partner-logo-recapx {
    height: 14px;
}

.feature-partner-logo-connect {
    height: 16px;
    max-width: 16px;
    border-radius: 3px;
}

.feature-partner-join {
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    line-height: 1;
}

.feature-partner-chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.feature-partner-chip-connect {
    padding: 2px 7px;
    font-size: 9px;
    letter-spacing: 0.25px;
    line-height: 1.2;
}

.feature-partner-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-stack-clean .official-feature {
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(51, 214, 159, 0.28);
    border-left: 3px solid rgba(51, 214, 159, 0.62);
    border-radius: 10px;
    background: rgba(51, 214, 159, 0.05);
    box-shadow: inset 0 0 0 1px rgba(51, 214, 159, 0.04);
    gap: 6px;
    cursor: pointer;
}

.feature-stack-clean .official-feature + .official-feature {
    margin-top: 8px;
}

.feature-stack-clean .official-feature-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.feature-stack-clean .official-feature-grid .official-feature {
    margin-top: 0;
    height: 100%;
}

.feature-stack-clean .official-feature-grid .official-feature + .official-feature {
    margin-top: 0;
}

.feature-stack-clean .official-badge {
    padding: 2px 8px;
    border: 1px solid rgba(51, 214, 159, 0.36);
    background: rgba(51, 214, 159, 0.14);
    color: var(--accent);
    font-size: 10px;
}

.feature-stack-clean .official-link {
    font-size: 14px;
    text-decoration: underline;
    text-decoration-color: rgba(51, 214, 159, 0.35);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.feature-stack-clean .official-link::after {
    content: " \2197";
    color: var(--accent);
    font-size: 12px;
}

.feature-stack-clean .official-feature:hover {
    border-color: rgba(51, 214, 159, 0.62);
    box-shadow: 0 8px 18px rgba(8, 12, 20, 0.2);
    transform: translateY(-1px);
    background: rgba(51, 214, 159, 0.1);
}

.feature-stack-clean .official-feature:hover .official-link {
    color: var(--accent);
}

.feature-stack-clean .official-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.feature-stack-clean .official-feature::after {
    content: "Open official feature page \2197";
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.3px;
    opacity: 0.95;
}

.feature-stack-clean .pr-evidence {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.feature-stack-clean .pr-evidence-label {
    font-size: 10px;
    white-space: nowrap;
}

.feature-stack-clean .pr-evidence-badges {
    margin-top: 0;
    gap: 6px;
}

.feature-stack-clean .pr-evidence-badge {
    padding: 4px 9px;
    border-color: rgba(51, 214, 159, 0.28);
    background: rgba(51, 214, 159, 0.08);
    font-size: 11px;
}

.feature-stack-clean .pr-evidence-corner {
    margin-top: 0;
    justify-content: flex-end;
    flex-shrink: 0;
}

.feature-stack-clean .pr-evidence-corner .pr-evidence-badges {
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.feature-stack-clean .pr-evidence-corner .pr-evidence-badge {
    white-space: nowrap;
}

.feature-stack-clean .feature-block .diagram-card {
    margin-top: 12px;
    padding: 12px 0 0;
    border: 0;
    border-top: 1px solid var(--border-subtle);
    border-radius: 0;
    background: transparent;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.feature-stack-clean .feature-block .diagram-caption {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pr-evidence {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
}

.pr-evidence-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
}

.pr-evidence-badges {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pr-evidence-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(51, 214, 159, 0.35);
    background: rgba(51, 214, 159, 0.12);
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    line-height: 1.3;
}

.feature-stack-clean {
    gap: 20px;
}

.feature-stack-clean .feature-block {
    border-color: var(--border);
    background: var(--bg-secondary);
    padding: 20px 22px;
}

.feature-stack-clean .feature-block h4 {
    margin-bottom: 10px;
}

.feature-stack-clean .feature-points {
    margin-bottom: 10px;
}

.feature-stack-clean .feature-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.feature-stack-clean .feature-heading-row h4 {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.feature-stack-clean .official-feature {
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(51, 214, 159, 0.28);
    border-left: 3px solid rgba(51, 214, 159, 0.62);
    border-radius: 10px;
    background: rgba(51, 214, 159, 0.05);
    box-shadow: inset 0 0 0 1px rgba(51, 214, 159, 0.04);
    gap: 6px;
    cursor: pointer;
}

.feature-stack-clean .official-feature + .official-feature {
    margin-top: 8px;
}

.feature-stack-clean .official-feature-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.feature-stack-clean .official-feature-grid .official-feature {
    margin-top: 0;
    height: 100%;
}

.feature-stack-clean .official-feature-grid .official-feature + .official-feature {
    margin-top: 0;
}

.feature-stack-clean .official-badge {
    padding: 2px 8px;
    border: 1px solid rgba(51, 214, 159, 0.36);
    background: rgba(51, 214, 159, 0.14);
    color: var(--accent);
    font-size: 10px;
}

.feature-stack-clean .official-link {
    font-size: 14px;
    text-decoration: underline;
    text-decoration-color: rgba(51, 214, 159, 0.35);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.feature-stack-clean .official-link::after {
    content: " \2197";
    color: var(--accent);
    font-size: 12px;
}

.feature-stack-clean .official-feature:hover {
    border-color: rgba(51, 214, 159, 0.62);
    box-shadow: 0 8px 18px rgba(8, 12, 20, 0.2);
    transform: translateY(-1px);
    background: rgba(51, 214, 159, 0.1);
}

.feature-stack-clean .official-feature:hover .official-link {
    color: var(--accent);
}

.feature-stack-clean .official-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.feature-stack-clean .official-feature::after {
    content: "Open official feature page \2197";
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.3px;
    opacity: 0.95;
}

.feature-stack-clean .pr-evidence {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.feature-stack-clean .pr-evidence-label {
    font-size: 10px;
    white-space: nowrap;
}

.feature-stack-clean .pr-evidence-badges {
    margin-top: 0;
    gap: 6px;
}

.feature-stack-clean .pr-evidence-badge {
    padding: 4px 9px;
    border-color: rgba(51, 214, 159, 0.28);
    background: rgba(51, 214, 159, 0.08);
    font-size: 11px;
}

.feature-stack-clean .pr-evidence-corner {
    margin-top: 0;
    justify-content: flex-end;
    flex-shrink: 0;
}

.feature-stack-clean .pr-evidence-corner .pr-evidence-badges {
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.feature-stack-clean .pr-evidence-corner .pr-evidence-badge {
    white-space: nowrap;
}

.feature-stack-clean .feature-block .diagram-card {
    margin-top: 12px;
    padding: 12px 0 0;
    border: 0;
    border-top: 1px solid var(--border-subtle);
    border-radius: 0;
    background: transparent;
}

.feature-stack-clean .feature-block .diagram-caption {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.clean-list {
    margin-left: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.external-links-list {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.external-links-list a {
    color: var(--text-primary);
    text-decoration: none;
}

.external-links-list a:hover {
    color: var(--accent);
}

.stats-table-clean table {
    border-radius: 10px;
    box-shadow: none;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    min-width: 560px;
}

.stats-table-clean th,
.stats-table-clean td {
    padding: 14px 18px;
}

.stats-table-clean {
    overflow-x: auto;
}

.stats-row {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(360px, 1.2fr);
    gap: 16px;
    align-items: start;
}

.stats-row .stats-table {
    margin-bottom: 0;
}

.stats-row-clean {
    margin-top: 10px;
    gap: 18px;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.stats-row-clean .stats-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stats-row-clean .mini-title {
    margin: 0;
}

.stats-row-clean .table-wrap {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

.stats-row-clean .stats-table-clean {
    overflow: visible;
}

.stats-row-clean .stats-table-clean table {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
    table-layout: fixed;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.stats-row-clean .stats-table-clean th,
.stats-row-clean .stats-table-clean td {
    padding: 11px 12px;
    font-size: 13px;
    line-height: 1.5;
    vertical-align: top;
    word-break: break-word;
}

.stats-row-clean .stats-summary-table th:first-child,
.stats-row-clean .stats-summary-table td:first-child {
    width: 72px;
}

.stats-row-clean .stats-summary-table th:not(:first-child),
.stats-row-clean .stats-summary-table td:not(:first-child) {
    text-align: center;
}

.stats-row-clean .verofy-stats-summary-table th,
.stats-row-clean .verofy-stats-summary-table td {
    text-align: left;
}

.stats-row-clean .stats-summary-table.verofy-stats-summary-table th:not(:first-child),
.stats-row-clean .stats-summary-table.verofy-stats-summary-table td:not(:first-child) {
    text-align: left;
}

.stats-row-clean .verofy-stats-summary-table th:nth-child(1),
.stats-row-clean .verofy-stats-summary-table td:nth-child(1) {
    width: 220px;
    min-width: 220px;
    white-space: nowrap;
}

.stats-row-clean .verofy-stats-summary-table th:nth-child(2),
.stats-row-clean .verofy-stats-summary-table td:nth-child(2) {
    width: 110px;
    white-space: nowrap;
}

.stats-row-clean .stats-registry-table th:nth-child(1),
.stats-row-clean .stats-registry-table td:nth-child(1) {
    width: 90px;
}

.stats-row-clean .stats-registry-table th:nth-child(2),
.stats-row-clean .stats-registry-table td:nth-child(2) {
    width: 24%;
}

.stats-row-clean .stats-registry-table th:nth-child(3),
.stats-row-clean .stats-registry-table td:nth-child(3) {
    width: 38%;
}

.stats-row-clean .stats-registry-table th:nth-child(4),
.stats-row-clean .stats-registry-table td:nth-child(4) {
    width: 28%;
}

.evidence-narrative-card {
    margin-top: 18px;
}

.evidence-snapshot-grid {
    margin-top: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.evidence-links-cloud {
    margin-top: 14px;
}

.evidence-register-row {
    margin-top: 18px;
}

.verofy-evidence-register-table th,
.verofy-evidence-register-table td {
    text-align: left;
}

.verofy-evidence-register-table th:nth-child(1),
.verofy-evidence-register-table td:nth-child(1) {
    width: 62px;
    min-width: 62px;
    white-space: nowrap;
}

.verofy-evidence-register-table th:nth-child(2),
.verofy-evidence-register-table td:nth-child(2) {
    width: 220px;
    min-width: 220px;
}

.verofy-evidence-register-table th:nth-child(3),
.verofy-evidence-register-table td:nth-child(3) {
    width: 290px;
    min-width: 290px;
}

.verofy-evidence-register-table th:nth-child(4),
.verofy-evidence-register-table td:nth-child(4) {
    width: 300px;
    min-width: 300px;
}

.verofy-evidence-register-table th:nth-child(5),
.verofy-evidence-register-table td:nth-child(5) {
    width: 110px;
    min-width: 110px;
    white-space: nowrap;
}

.evidence-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.evidence-status.ready {
    border-color: rgba(51, 214, 159, 0.45);
    background: rgba(51, 214, 159, 0.12);
    color: var(--accent);
}

.evidence-status.progress {
    border-color: rgba(255, 196, 84, 0.5);
    background: rgba(255, 196, 84, 0.12);
    color: #ffd88a;
}

.evidence-status.todo {
    border-color: rgba(255, 148, 148, 0.52);
    background: rgba(255, 148, 148, 0.12);
    color: #ffb2b2;
}

.evidence-support-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.evidence-support-grid .narrative-card {
    margin-top: 0;
}

.verofy-onboarding-flow {
    margin-top: 14px;
}

@media (max-width: 1100px) {
    .evidence-snapshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .evidence-support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .evidence-snapshot-grid {
        grid-template-columns: 1fr;
    }

    .verofy-evidence-register-table th:nth-child(2),
    .verofy-evidence-register-table td:nth-child(2),
    .verofy-evidence-register-table th:nth-child(3),
    .verofy-evidence-register-table td:nth-child(3),
    .verofy-evidence-register-table th:nth-child(4),
    .verofy-evidence-register-table td:nth-child(4) {
        min-width: 220px;
    }
}

.icon-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
}

.icon-link .icon {
    font-size: 16px;
}

.icon-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

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

.stack-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.stack-item {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
}

.stack-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 6px;
}

.stack-value {
    font-size: 14px;
    color: var(--text-primary);
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.evidence-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.evidence-card img {
    display: block;
    width: 100%;
    height: auto;
}

.evidence-card figcaption {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.evidence-card figcaption strong {
    color: var(--text-primary);
}

.evidence-links {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.evidence-links a {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(51, 214, 159, 0.35);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.evidence-links a::after {
    content: " \2197";
    color: var(--accent);
    font-size: 12px;
}

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

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

.markdown-doc {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.markdown-doc h1,
.markdown-doc h2,
.markdown-doc h3 {
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.markdown-doc h1 {
    font-size: 28px;
}

.markdown-doc h2 {
    font-size: 22px;
    margin-top: 14px;
}

.markdown-doc h3 {
    font-size: 18px;
    margin-top: 10px;
}

.markdown-doc p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 12px;
}

.markdown-doc code {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-primary);
    background: rgba(51, 214, 159, 0.12);
    border: 1px solid rgba(51, 214, 159, 0.3);
    border-radius: 6px;
    padding: 1px 6px;
}

.markdown-list {
    margin: 0 0 12px 18px;
    color: var(--text-secondary);
}

.markdown-list li {
    margin-bottom: 6px;
}

.markdown-table-wrap {
    margin: 10px 0 16px;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(11, 15, 20, 0.35);
}

.markdown-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.markdown-table th,
.markdown-table td {
    text-align: left;
    vertical-align: top;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.55;
}

.markdown-table th {
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: rgba(51, 214, 159, 0.08);
}

.markdown-table tbody tr:last-child td {
    border-bottom: 0;
}

.markdown-doc .markdown-table th:nth-child(4),
.markdown-doc .markdown-table td:nth-child(4) {
    width: 170px;
    min-width: 170px;
    white-space: nowrap;
}

.markdown-doc .markdown-table th:nth-child(3),
.markdown-doc .markdown-table td:nth-child(3) {
    width: 190px;
    min-width: 190px;
    white-space: nowrap;
}

.figma-flow-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.figma-flow-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.figma-flow-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.figma-flow-link::after {
    content: "Open full-size";
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(51, 214, 159, 0.45);
    background: rgba(11, 15, 20, 0.78);
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3px;
}

.figma-flow-link img {
    display: block;
    width: 100%;
    height: auto;
}

.figma-flow-card figcaption {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.figma-flow-card .diagram-attribution-line {
    margin-top: 0;
    padding: 10px 14px 0;
}

.figma-flow-card figcaption strong {
    color: var(--text-primary);
}

.figma-contribution-note {
    display: block;
    margin-top: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid rgba(51, 214, 159, 0.4);
    background: rgba(51, 214, 159, 0.08);
    color: var(--text-primary);
    font-size: 13px;
    line-height: 1.55;
}

.figma-contribution-note strong {
    color: var(--accent);
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.quote-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 16px 30px rgba(8, 12, 20, 0.28);
}

.founder-quote-card {
    margin-top: 16px;
    border-color: rgba(51, 214, 159, 0.45);
    background: linear-gradient(145deg, rgba(51, 214, 159, 0.08), rgba(17, 24, 36, 0.95));
}

.quote-text {
    margin-bottom: 12px;
}

.quote-interpretation {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.quote-placeholder {
    border-style: dashed;
}

.quote-meta {
    margin-bottom: 12px;
}

.quote-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.quote-title {
    font-size: 13px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
}

.narrative-card {
    margin-top: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}

.narrative-card .content-text {
    margin-bottom: 0;
}

.narrative-card {
    margin-top: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}

.narrative-card .content-text {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    gap: 16px;
    align-items: flex-start;
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-label {
    font-size: 13px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.fact-value {
    line-height: 1.5;
}

.fact-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.skill-tag {
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: left;
    transition: all 0.2s ease;
    font-family: 'IBM Plex Mono', monospace;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.skill-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.skill-logo {
    width: 16px;
    height: 16px;
    display: inline-flex;
    filter: brightness(0) saturate(100%) invert(69%) sepia(27%) saturate(861%) hue-rotate(108deg) brightness(92%) contrast(92%);
}

/* Timeline */
.timeline {
    margin-top: 48px;
}

.timeline-item {
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 24px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item:hover {
    border-color: var(--accent);
}

.timeline-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(51, 214, 159, 0.12), transparent 40%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.timeline-item:hover::before {
    opacity: 1;
}

.timeline-header {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.timeline-head-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.timeline-head-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.timeline-company {
    font-size: var(--fs-timeline-company);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-role {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-product {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-period {
    font-size: 13px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
}

.timeline-description {
    font-size: var(--fs-timeline-description);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.timeline-body {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 20px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.timeline-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.timeline-panel {
    padding: 0;
    border: none;
    background: transparent;
}

.product-panel {
    background: transparent;
    border: none;
    box-shadow: none;
}

.panel-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 12px;
}

.experience-block {
    min-width: 0;
}

.product-stack {
    display: grid;
    gap: 16px;
}

.timeline-item .tech-tags {
    margin-bottom: 0;
}

.product-block {
    padding: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.product-block::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 1px solid rgba(51, 214, 159, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.product-block:hover::before {
    opacity: 1;
}

.product-window {
    background: rgba(15, 21, 31, 0.9);
    border: 1px solid rgba(51, 214, 159, 0.35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.product-panel .product-block:last-child {
    margin-bottom: 0;
}

.product-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 6px;
}

.product-bar-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.product-bar {
    width: 18px;
    height: 2px;
    background: var(--accent);
    opacity: 0.8;
    border-radius: 999px;
}

.product-bar-text {
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

@media (max-width: 900px) {
    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .hero-main-pane {
        padding-right: 0;
    }

    .hero-side-pane {
        display: block;
    }

    .hero-side-pane .hero-innovation-hook {
        margin-top: 0;
        max-width: 760px;
    }

    .part-title {
        font-size: 30px;
    }

    .part-intro {
        margin-top: 10px;
        font-size: 14px;
    }

    .product-innovation-grid {
        grid-template-columns: 1fr;
    }

    .linkedin-posts-grid {
        grid-template-columns: 1fr;
    }

    .impact-compact-grid {
        grid-template-columns: 1fr;
    }

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

    .evidence-card-wide {
        grid-column: auto;
    }

    .timeline-body {
        grid-template-columns: 1fr;
    }

    .timeline-split {
        grid-template-columns: 1fr;
    }

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

    .leadership-metrics {
        border-left: 0;
        padding-left: 0;
    }

    .oc1-impact-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .innovation-validation-card {
        padding: 22px;
    }

    .product-overview-panel,
    .linkedin-updates-panel {
        padding: 20px;
    }

    .github-evidence-panel {
        padding: 0;
    }

    .github-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .github-stat-item {
        grid-template-columns: minmax(84px, 100px) minmax(0, 1fr);
        gap: 12px;
    }

    .feature-stack-clean .feature-heading-row {
        flex-direction: column;
        gap: 8px;
    }

    .architecture-diagram-grid {
        grid-template-columns: 1fr;
    }

    .feature-stack-clean .pr-evidence-corner {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .feature-stack-clean .pr-evidence-corner .pr-evidence-badges {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .feature-stack-clean .official-feature-grid {
        grid-template-columns: 1fr;
    }

    .figma-flow-grid {
        grid-template-columns: 1fr;
    }

    .recapx-flow-alignment {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .recapx-flow-column + .recapx-flow-column {
        border-left: 0;
        border-top: 1px dashed var(--border-subtle);
        padding-left: 0;
        padding-top: 12px;
    }

    .recapx-proof-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .recapx-proof-diagram {
        border-left: 0;
        border-top: 0;
        padding-left: 0;
        padding-top: 0;
    }

    .stats-row-clean .stats-card {
        padding: 0;
    }

    .stats-row-clean .stats-registry-table th:nth-child(2),
    .stats-row-clean .stats-registry-table td:nth-child(2),
    .stats-row-clean .stats-registry-table th:nth-child(3),
    .stats-row-clean .stats-registry-table td:nth-child(3),
    .stats-row-clean .stats-registry-table th:nth-child(4),
    .stats-row-clean .stats-registry-table td:nth-child(4) {
        width: auto;
    }

    .markdown-doc {
        padding: 18px;
    }

    .markdown-table {
        min-width: 640px;
    }
}

@media (max-width: 600px) {
    .part-title {
        font-size: 26px;
    }

    .hero-innovation-hook {
        padding: 16px 14px 14px;
    }

    .hero-innovation-kicker {
        font-size: 10px;
        margin-bottom: 9px;
    }

    .impact-compact-item {
        padding: 9px 10px;
    }

    .github-media-grid {
        grid-template-columns: 1fr;
    }

    .github-stat-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .image-zoom-modal {
        padding: 12px;
    }

    .image-zoom-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .impact-compact-value {
        font-size: 16px;
    }

    .pr-evidence-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .feature-stack-clean .pr-evidence-badge {
        width: auto;
        justify-content: flex-start;
        text-align: left;
    }

    .stats-table-clean th,
    .stats-table-clean td {
        padding: 11px 10px;
        font-size: 12px;
    }

    .stats-table-clean table {
        min-width: 500px;
    }

    .markdown-doc {
        padding: 14px;
    }

    .markdown-table {
        min-width: 520px;
    }

    .stats-row-clean .stats-table-clean table {
        min-width: 0;
    }

    .stats-row-clean .stats-table-clean th,
    .stats-row-clean .stats-table-clean td {
        padding: 10px 9px;
        font-size: 12px;
    }

    .stats-row-clean .stats-registry-table th:nth-child(1),
    .stats-row-clean .stats-registry-table td:nth-child(1) {
        width: 78px;
    }

    .linkedin-post-card {
        padding: 10px;
    }

    .innovation-validation-card {
        padding: 18px 16px;
    }

    .innovation-validation-list li {
        padding: 10px 10px 10px 22px;
        font-size: 13px;
    }

    .innovation-validation-links {
        gap: 8px;
    }

    .innovation-link-divider {
        display: none;
    }
}

.product-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 4px 12px;
    background: rgba(51, 214, 159, 0.1);
    border: 1px solid rgba(51, 214, 159, 0.2);
    border-radius: 4px;
    font-size: 12px;
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tech-logo {
    width: 16px;
    height: 16px;
    display: inline-flex;
    filter: brightness(0) saturate(100%) invert(69%) sepia(27%) saturate(861%) hue-rotate(108deg) brightness(92%) contrast(92%);
}

/* Ensure project + experience tech tags stay uniform */
.project-card .tech-tag,
.timeline-item .tech-tag {
    color: var(--accent);
}

.project-card .tech-tag .tech-logo,
.timeline-item .tech-tag .tech-logo {
    filter: brightness(0) saturate(100%) invert(69%) sepia(27%) saturate(861%) hue-rotate(108deg) brightness(92%) contrast(92%);
}


.timeline-icon {
    display: none;
}

/* Projects */
.projects-list {
    margin-top: 48px;
}

.project-card {
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 24px;
    transition: all 0.2s ease;
    box-shadow: 0 16px 40px rgba(10, 15, 25, 0.25);
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.project-period {
    font-size: 13px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
}

.project-company {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'IBM Plex Mono', monospace;
}

.inline-link {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, text-decoration-color 0.2s ease, border-bottom-color 0.2s ease;
}

.inline-link:hover,
.inline-link:focus-visible {
    color: var(--accent-hover);
    text-decoration-color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

.inline-link.inline-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.inline-link.inline-link-arrow::after {
    content: "\2197";
    color: var(--accent);
    font-size: 12px;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.inline-link.inline-link-arrow:hover::after,
.inline-link.inline-link-arrow:focus-visible::after {
    color: var(--accent-hover);
    transform: translate(1px, -1px);
}

.project-icon {
    font-size: 32px;
}

.project-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.project-stats {
    display: flex;
    gap: 32px;
    padding: 20px 0;
    margin: 16px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Education */
.education-card {
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 24px;
    transition: all 0.2s ease;
    box-shadow: 0 16px 40px rgba(10, 15, 25, 0.25);
}

.education-card:hover {
    border-color: var(--accent);
}

.education-degree {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.education-school {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.education-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-family: 'IBM Plex Mono', monospace;
}

.education-gallery {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-subtle);
}

.education-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.education-gallery-item {
    margin: 0;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(24, 34, 51, 0.7), rgba(17, 24, 36, 0.9));
    box-shadow: 0 8px 20px rgba(8, 12, 20, 0.22);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.education-gallery-item:hover {
    transform: translateY(-3px);
    border-color: rgba(51, 214, 159, 0.5);
    box-shadow: 0 12px 28px rgba(8, 12, 20, 0.28);
}

.education-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.education-gallery-item figcaption {
    padding: 8px 2px 0;
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.2px;
}

@media (max-width: 980px) {
    .education-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .education-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}

.cert-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: linear-gradient(180deg, rgba(24, 34, 51, 0.68), rgba(17, 24, 36, 0.94));
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 28px rgba(10, 15, 25, 0.24);
}

.cert-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(51, 214, 159, 0), rgba(51, 214, 159, 0.75), rgba(51, 214, 159, 0));
    opacity: 0.6;
}

.cert-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(10, 15, 25, 0.32);
}

.cert-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.45;
    margin-bottom: 10px;
    min-height: 44px;
}

.cert-issuer-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.cert-issuer-line .cert-logo {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    object-fit: contain;
    filter: none;
}

.cert-issuer {
    font-size: 13px;
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
}

.cert-date {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 10px;
}

.cert-proof {
    order: -1;
    margin: 0 0 12px;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    aspect-ratio: 4 / 3;
    padding: 0;
}

.cert-proof img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.cert-card .meta-links {
    margin-top: auto;
}

.cert-card .link-button {
    width: auto;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-size: 12px;
    font-family: 'IBM Plex Mono', monospace;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease, transform 0.2s ease;
}

.cert-card .link-button::after {
    content: " \2197";
    font-size: 12px;
    line-height: 1;
    color: var(--accent);
}

.cert-card .link-button:hover {
    color: var(--accent-hover);
    text-decoration-color: var(--accent-hover);
    transform: translateX(1px);
}

.cert-card .link-button:hover::after {
    color: var(--accent-hover);
}

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

    .cert-title {
        min-height: 0;
    }

    .cert-proof {
        aspect-ratio: 16 / 11;
    }
}

/* Recommendations */
.recommendation-card {
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 24px;
}

.rec-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.rec-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
}

.rec-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.rec-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.rec-position {
    font-size: 13px;
    color: var(--text-secondary);
}

.rec-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    margin-top: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(10, 15, 25, 0.25);
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-form {
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(10, 15, 25, 0.25);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--terminal);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'IBM Plex Mono', monospace;
    transition: border-color 0.2s ease;
}

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

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.btn {
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: 'IBM Plex Mono', monospace;
}

.btn:hover {
    background: var(--accent-hover);
}

.btn-full {
    width: 100%;
}

/* Footer */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-size: 14px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    text-decoration: none;
}

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

.social-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-label {
    font-size: 11px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.social-label.personal {
    border-color: rgba(92, 170, 255, 0.6);
    color: #9fc7ff;
}

.social-label.pro {
    border-color: rgba(51, 214, 159, 0.6);
    color: #7feac3;
}

.social-divider {
    width: 1px;
    height: 22px;
    background: var(--border);
    display: inline-block;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Terminal Cards */
.terminal-card {
    background: var(--terminal);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.code-panel {
    margin-top: 32px;
    background: var(--terminal);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.code-panel .terminal-header {
    margin-bottom: 18px;
}

.code-lines {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.code-lines span {
    color: var(--accent);
}

.typing-line {
    overflow: hidden;
    border-right: 2px solid rgba(51, 214, 159, 0.7);
    width: 0;
    animation: typing 2.4s steps(34, end) forwards, blink 0.8s infinite;
}

.typing-line.delay-1 {
    animation-delay: 0.2s;
}

.typing-line.delay-2 {
    animation-delay: 0.8s;
}

.typing-line.delay-3 {
    animation-delay: 1.4s;
}

.typing-line.delay-4 {
    animation-delay: 2s;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: rgba(51, 214, 159, 0.7); }
}

.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.7;
}

.terminal-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Sidebar Fact Card */
.sidebar-card {
    background: var(--terminal);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.sidebar-card .terminal-text {
    margin-bottom: 16px;
}

.fact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
}

.fact-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Mini Timeline */
.mini-timeline {
    margin-top: 40px;
    border-left: 2px solid var(--border);
    padding-left: 24px;
}

.mini-timeline.horizontal {
    border-left: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.mini-timeline.horizontal .mini-timeline-item {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-secondary);
}

.mini-timeline.horizontal .mini-timeline-item::before {
    display: none;
}

.mini-timeline.horizontal .mini-timeline-title {
    font-size: 13px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-timeline.horizontal .mini-timeline-desc {
    font-size: 11px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.terminal-card .mini-timeline {
    margin-top: 16px;
}

.terminal-section-title {
    margin-top: 18px;
    margin-bottom: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.link-card {
    display: block;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.link-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.link-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.link-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.workshop-media-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.workshop-event-layout {
    margin-top: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
    gap: 16px;
    align-items: start;
}

.workshop-event-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.workshop-event-embed {
    min-width: 0;
}

.workshop-event-layout > :last-child {
    border-left: 1px solid var(--border-subtle);
    padding-left: 16px;
}

.text-only-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 1fr);
}

.text-only-layout > :last-child {
    background: rgba(11, 15, 20, 0.42);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 14px 14px 12px;
}

.workshop-info-list {
    display: grid;
    gap: 8px;
}

.workshop-info-row {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.workshop-info-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-muted);
}

.workshop-info-value {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
}

.workshop-note {
    margin: 0;
    padding-top: 8px;
    border-top: 1px dashed var(--border);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.workshop-event-layout .learning-list.compact-list {
    margin-top: 2px;
}

.workshop-media-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.workshop-event-brand {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: rgba(11, 15, 20, 0.5);
}

.workshop-event-brand img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.workshop-event-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.workshop-issued-text {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1.45;
}

.workshop-mini-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(95, 227, 182, 0.35);
    background: rgba(95, 227, 182, 0.1);
    color: var(--accent-hover);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.workshop-media-card {
    margin: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.workshop-media-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.workshop-media-face-focus {
    object-position: center 18%;
}

.workshop-media-card figcaption {
    padding: 10px 12px;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-subtle);
}

.workshop-media-embed iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    background: #fff;
}

.community-highlight-item .timeline-header {
    margin-bottom: 16px;
}

.community-highlight-item .workshop-event-layout {
    margin-top: 12px;
    gap: 16px;
}

.community-highlight-item .workshop-media-row {
    margin-top: 14px;
    gap: 14px;
}

.community-extra-highlights {
    margin-top: 0;
}

body[data-menu-active="community"] #workshops .timeline {
    margin-top: 20px;
}

body[data-menu-active="community"] #workshops.section {
    padding-bottom: 24px;
}

body[data-menu-active="community"] #volunteer.section {
    padding-top: 0;
}

.community-clean-block {
    border-top: 1px solid var(--border-subtle);
}

.community-clean-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.community-clean-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.45;
}

.community-clean-meta {
    margin-top: 3px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.community-clean-summary {
    margin: 6px 0 4px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.community-inline-label {
    display: inline-block;
    margin-right: 8px;
    padding: 1px 6px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: rgba(11, 15, 20, 0.5);
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    vertical-align: 1px;
}

.community-clean-block.no-top-divider {
    border-top: 0;
}

@media (max-width: 900px) {
    .timeline-head-top {
        flex-direction: column;
        gap: 6px;
    }

    .workshop-event-layout {
        grid-template-columns: 1fr;
    }

    .workshop-event-layout > :last-child {
        border-left: 0;
        padding-left: 0;
    }

    .text-only-layout > :last-child {
        border: 0;
        border-top: 1px solid var(--border-subtle);
        border-radius: 0;
        background: transparent;
        padding: 12px 0 0;
    }

    .workshop-info-row {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .workshop-media-row {
        grid-template-columns: 1fr;
    }

    .workshop-media-grid {
        grid-template-columns: 1fr;
    }

    .workshop-media-card img {
        height: 220px;
    }
}

.meta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(51, 214, 159, 0.12);
    border: 1px solid rgba(51, 214, 159, 0.35);
    color: var(--accent);
    font-size: 12px;
    font-family: 'IBM Plex Mono', monospace;
    text-decoration: none;
    transition: all 0.2s ease;
}

.link-button:hover {
    border-color: var(--accent);
    color: #ffffff;
    background: rgba(51, 214, 159, 0.3);
}

.link-button.link-button-arrow {
    background: rgba(51, 214, 159, 0.2);
    border-color: rgba(51, 214, 159, 0.65);
    color: var(--text-primary);
    font-weight: 600;
}

.link-button.link-button-arrow::after {
    content: " \2197";
    color: var(--accent);
    font-size: 12px;
    line-height: 1;
}

.link-button.link-button-arrow:hover::after {
    color: #ffffff;
}

.product-click-hint {
    margin-top: 10px;
    margin-bottom: 0;
    padding: 8px 10px;
    border-left: 3px solid rgba(51, 214, 159, 0.65);
    border-radius: 8px;
    background: rgba(51, 214, 159, 0.08);
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.5;
    font-family: 'IBM Plex Mono', monospace;
}

.is-hidden {
    display: none;
}

/* Option 1: Signal Console */
.signal-console {
    background: var(--terminal);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.signal-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 12px;
}

.signal-lines {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Option 2: Timeline Chips */
.timeline-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.timeline-chip {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text-secondary);
}

.chip-year {
    color: var(--accent);
    font-weight: 600;
}

/* Option 3: Impact Tiles */
.impact-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.impact-tile {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.impact-prefix {
    color: var(--accent);
    font-weight: 700;
}

.impact-num {
    font-weight: 700;
    color: var(--text-primary);
}

.impact-label {
    color: var(--text-secondary);
}

/* Metric Chips */
.metric-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.metric-chip {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(51, 214, 159, 0.12);
    border: 1px solid rgba(51, 214, 159, 0.35);
    color: var(--text-primary);
    font-size: 12px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.4px;
}

.mini-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.mini-info-card {
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.mini-info-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    font-family: 'IBM Plex Mono', monospace;
}

.mini-info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.stack-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
}

.stack-row {
    justify-content: flex-start;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    white-space: nowrap;
}

.stack-row::-webkit-scrollbar {
    display: none;
}

.stack-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(51, 214, 159, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.stack-icon:hover {
    transform: translateY(-2px);
}

.stack-logo {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) saturate(100%) invert(69%) sepia(27%) saturate(861%) hue-rotate(108deg) brightness(92%) contrast(92%);
}

.code-key {
    color: var(--accent);
}

.code-value {
    color: var(--text-primary);
}

.mini-timeline-item {
    position: relative;
    padding: 12px 0 12px 0;
}

.mini-timeline-item::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px var(--glow);
}

.mini-timeline-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mini-timeline-desc {
    font-size: 13px;
    color: var(--text-secondary);
    font-family: 'IBM Plex Mono', monospace;
}

/* Responsive */
/* Custom Table Styles for Stats & PRs */
.stats-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    margin-bottom: 32px;
}
.stats-table th, .stats-table td {
    padding: 16px 18px;
    text-align: left;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
}
.stats-table th {
    background: var(--bg-tertiary);
    color: var(--accent);
    font-weight: 700;
    border-bottom: 2px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stats-table td {
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-subtle);
}
.stats-table tr:last-child td {
    border-bottom: none;
}
.stats-table tr:hover td {
    background: rgba(51,214,159,0.04);
    transition: background 0.2s;
}
.stats-table table {
    border-radius: 10px;
    overflow: hidden;
}
.stats-table thead th:first-child {
    border-top-left-radius: 10px;
}
.stats-table thead th:last-child {
    border-top-right-radius: 10px;
}
.stats-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.stats-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

/* Fintech Workshop Page */
#presenter,
#concepts-architecture,
#demo,
#workshop,
#code-steps,
#run-execution {
    scroll-margin-top: 110px;
}

.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 1fr);
    gap: 44px;
    align-items: start;
}

.hero-main .content-text {
    max-width: 860px;
}

.hero-main .hero-meta-clean {
    margin-top: 22px;
    margin-bottom: 20px;
}

.hero-side {
    padding-top: 2px;
}

.hero-side .section-title {
    margin-bottom: 14px;
    font-size: 24px;
}

.hero-side .presenter-card {
    margin-bottom: 14px;
    padding: 14px;
    display: block;
}

.hero-side .presenter-photo {
    width: 88px;
    height: 88px;
}

.hero-side .presenter-head {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.hero-side .section-subtitle-tight {
    margin: 0 0 4px;
}

.hero-side .presenter-role {
    margin: 0 0 6px;
}

.hero-side .presenter-tagline {
    margin: 0 0 6px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
}

.hero-side .presenter-copy {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.65;
}

.hero-side .sidebar-card.plain-panel {
    margin-bottom: 0;
}

.hero-focus-flow {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.hero-focus-block {
    padding: 8px 0 4px;
    border-top: 1px solid var(--border-subtle);
}

.hero-focus-block .section-subtitle-tight {
    margin-bottom: 4px;
    font-size: 16px;
}

.hero-list {
    margin-top: 6px;
    gap: 7px;
    padding-left: 18px;
}

.hero-list li {
    line-height: 1.62;
}

.hero-mini-note {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 13px;
    font-style: italic;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--text-muted);
}

.presenter-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: start;
    padding: 22px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.presenter-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 999px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(8, 12, 20, 0.24);
}

.presenter-role {
    margin-bottom: 10px;
}

.presenter-copy {
    margin-bottom: 0;
}

.presenter-focus-list {
    margin-top: 12px;
    margin-bottom: 10px;
    padding-left: 18px;
    gap: 8px;
}

.presenter-social-links {
    margin-top: 14px;
}

.workshop-code-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.workshop-code-card {
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.workshop-code-card h3 {
    margin-bottom: 12px;
}

.workshop-code {
    margin: 0;
    padding: 14px 16px;
    background: var(--terminal);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-secondary);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.workshop-step-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 16px;
}

.workshop-step {
    margin: 0;
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.workshop-step h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.step-note {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.workshop-diagram {
    margin: 0;
    padding: 16px;
    border-radius: 10px;
    border: 1px dashed var(--border);
    background: rgba(11, 15, 20, 0.55);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
    overflow: hidden;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.visual-note {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.clean-diagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.clean-diagram-card {
    padding: 20px;
    border-radius: 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(8, 12, 20, 0.18);
}

.clean-diagram-card h4 {
    margin-bottom: 12px;
    font-size: 17px;
}

.container > .clean-diagram-card + .clean-diagram-card {
    margin-top: 24px;
}

.diagram-pack-stack {
    display: grid;
    gap: 24px;
}

.diagram-pack-page .clean-diagram-card {
    margin: 0;
    padding: 24px;
    overflow: hidden;
}

.diagram-zoom-toolbar {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin: 0 0 8px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
}

.diagram-zoom-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

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

.diagram-zoom-btn.auto-fit {
    width: auto;
    height: 28px;
    padding: 0 10px;
    font-size: 12px;
    letter-spacing: 0.25px;
}

.diagram-zoom-level {
    margin-left: 2px;
    min-width: 52px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid var(--border-subtle);
    border-radius: 7px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    line-height: 1;
}

html.diagram-zoom-page,
body.diagram-zoom-page {
    overflow-x: hidden;
}

.diagram-zoom-viewport {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    box-sizing: border-box;
    position: relative;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    scrollbar-color: rgba(138, 154, 177, 0.7) transparent;
}

.diagram-zoom-viewport.has-overflow {
    overflow-x: auto;
}

.diagram-zoom-viewport.no-overflow {
    overflow-x: hidden;
}

.diagram-zoom-viewport > .mermaid.diagram-zoom-enabled {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
}

.diagram-zoom-viewport::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.diagram-zoom-viewport::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 999px;
}

.diagram-zoom-viewport::-webkit-scrollbar-thumb {
    background: rgba(138, 154, 177, 0.7);
    border-radius: 999px;
    border: 1px solid transparent;
}

.diagram-zoom-viewport::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 154, 177, 0.9);
}

.mermaid .edgeLabel:empty,
.mermaid span.edgeLabel:empty,
.mermaid .edgeLabel tspan:empty {
    display: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
}

.diagram-card,
.clean-diagram-card {
    min-width: 0;
}

.diagram-pack-page .clean-diagram-card .mermaid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.diagram-pack-page .clean-diagram-card .mermaid svg {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    display: block;
    margin: 0;
}

.mermaid.no-overflow,
.mermaid.has-overflow {
    overflow: visible;
}

body.diagram-pack-page {
    overflow-x: hidden;
}

.clean-diagram {
    margin: 0;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px dashed var(--border);
    background: rgba(11, 15, 20, 0.58);
    color: var(--text-secondary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    line-height: 1.7;
    overflow: hidden;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.clean-diagram code {
    display: block;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: inherit;
}

.code-step-stack {
    margin-top: 18px;
    display: grid;
    gap: 16px;
}

.code-step-card {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

.code-step-card h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

/* Fintech workshop clean layout */
.fintech-workshop-page .section {
    border-top: 1px solid var(--border-subtle);
}

.fintech-workshop-page .section .section-title::before {
    content: "//";
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 2px;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
}

.fintech-workshop-page .section .sidebar-card.plain-panel,
.fintech-workshop-page .section .presenter-card,
.fintech-workshop-page .section .learning-steps .workshop-step,
.fintech-workshop-page .section .code-step-card {
    border-left-color: var(--border-subtle);
}

.fintech-workshop-page .section .workshop-code,
.fintech-workshop-page .section .terminal-card,
.fintech-workshop-page .section .clean-diagram {
    border-color: var(--border-subtle);
    background: rgba(9, 15, 24, 0.58);
}

.fintech-workshop-page #presenter .presenter-card,
.fintech-workshop-page #presenter .sidebar-card.plain-panel {
    border-left-style: solid;
}

.fintech-workshop-page #concepts-architecture .concepts-matrix {
    border-top-style: double;
    border-top-width: 3px;
}

.fintech-workshop-page #concepts-architecture .concepts-pillar {
    border-top-style: dashed;
}

.fintech-workshop-page #demo .ai-point {
    border-style: dashed;
}

.fintech-workshop-page #run-execution .terminal-card {
    border-style: solid;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.fintech-workshop-page .sidebar-card.plain-panel {
    background: transparent;
    border: 0;
    border-left: 2px solid var(--border-subtle);
    border-radius: 0;
    box-shadow: none;
    padding: 2px 0 2px 16px;
}

.learning-list {
    margin: 10px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fintech-workshop-page .concepts-matrix {
    margin-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.fintech-workshop-page .concepts-matrix-row {
    display: grid;
    grid-template-columns: minmax(140px, 0.85fr) minmax(160px, 0.8fr) minmax(220px, 1.35fr);
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: start;
}

.fintech-workshop-page .matrix-area {
    color: var(--text-primary);
    font-weight: 600;
}

.fintech-workshop-page .matrix-general,
.fintech-workshop-page .matrix-fintech {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.fintech-workshop-page .matrix-kicker {
    display: block;
    margin-bottom: 3px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.fintech-workshop-page .concepts-pillars {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.fintech-workshop-page .concepts-pillar {
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.fintech-workshop-page .concepts-pillar:first-child {
    padding-top: 0;
    border-top: 0;
}

.fintech-workshop-page .concepts-pillar h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.concepts-architecture-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.concepts-column {
    border-right: 1px solid var(--border-subtle);
    padding-right: 18px;
}

.architecture-column .section-subtitle {
    margin-top: 0;
}

.diagram-caption {
    margin-top: 10px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    font-family: 'IBM Plex Mono', monospace;
}

.fintech-workshop-page .compact-list {
    margin-top: 0;
    gap: 6px;
}

.demo-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 28px;
    align-items: start;
}

.demo-main .content-text {
    margin-bottom: 12px;
}

.inline-project-link {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.demo-feature-list {
    margin-top: 0;
    padding-left: 18px;
    gap: 9px;
}

.demo-side .sidebar-card.plain-panel {
    margin-bottom: 14px;
}

.endpoint-comparison-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    align-items: start;
    margin-top: 8px;
}

.endpoint-flow {
    padding-top: 10px;
    border-top: 1px dotted var(--border-subtle);
}

.endpoint-comparison-split .endpoint-flow + .endpoint-flow {
    border-left: 1px dotted var(--border-subtle);
    padding-left: 18px;
}

.endpoint-flow h4 {
    margin: 0 0 4px;
    font-size: 18px;
}

.endpoint-title {
    margin: 0;
}

.endpoint-flow-list {
    margin-top: 6px;
    gap: 8px;
}

.endpoint-list {
    padding-left: 0;
    list-style: none;
}

.endpoint-list li + li {
    margin-top: 6px;
}

.endpoint-url {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--text-secondary);
}

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

.fintech-workshop-page .workshop-code-grid {
    gap: 32px;
}

.fintech-workshop-page .workshop-code-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.fintech-workshop-page .workshop-step-list.learning-steps {
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;
}

.fintech-workshop-page .learning-steps .workshop-step {
    background: transparent;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.fintech-workshop-page .code-step-stack {
    gap: 24px;
}

.workshop-pair-list {
    position: relative;
    display: grid;
    gap: 24px;
}

.workshop-pair-list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--border-subtle);
    pointer-events: none;
}

.workshop-pair-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.fintech-workshop-page .code-step-card {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 12px 0 4px;
}

.fintech-workshop-page .clean-diagram-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.fintech-workshop-page .clean-diagram-card h4 {
    margin-bottom: 10px;
}

.workshop-pair-row .clean-diagram-card {
    border-top: 1px solid var(--border-subtle);
    padding-top: 12px;
}

.workshop-pair-list .workshop-pair-row:first-child .code-step-card,
.workshop-pair-list .workshop-pair-row:first-child .clean-diagram-card {
    border-top: 0;
    padding-top: 0;
}

.workshop-pair-row .mermaid {
    max-width: 100%;
    overflow-x: hidden;
}

.workshop-pair-row .mermaid svg {
    max-width: 100% !important;
    height: auto !important;
    max-height: 260px;
}

.fintech-workshop-page .clean-diagram {
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.fintech-workshop-page .presenter-card {
    background: transparent;
    border: 0;
    border-left: 2px solid var(--border-subtle);
    border-radius: 0;
    padding: 2px 0 2px 16px;
}

.fintech-workshop-page .presenter-photo {
    box-shadow: none;
}
/* Custom Table Styles for Stats & PRs */
@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .page-rail {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .diagram-pack-page .clean-diagram-card {
        padding: 18px;
    }

    .nav-container {
        padding: 16px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 32px 20px;
        gap: 24px;
        transition: left 0.3s ease;
        border-bottom: 1px solid var(--border);
        align-items: flex-start;
    }

    .nav-item.dropdown {
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        display: flex;
        padding: 8px 0 0 12px;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .nav-links.active {
        left: 0;
    }

    .page-title {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .presenter-card {
        grid-template-columns: 1fr;
    }

    .presenter-photo {
        width: 96px;
        height: 96px;
    }

    .workshop-code-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        margin-top: 28px;
        gap: 22px;
    }

    .sidebar-card {
        padding: 18px;
        margin-bottom: 16px;
    }

    .hero-meta-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .hero-meta-links {
        gap: 8px;
    }

    .mini-timeline {
        margin-top: 22px;
        padding-left: 16px;
    }

    .mini-timeline-item {
        padding: 10px 0;
    }

    .mini-timeline-item::before {
        left: -21px;
        top: 16px;
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 4px var(--glow);
    }

    .mini-timeline-title {
        font-size: 14px;
        line-height: 1.45;
    }

    .stack-row {
        flex-wrap: wrap !important;
        overflow-x: visible;
        white-space: normal;
        padding-bottom: 0;
        gap: 8px;
    }

    .stack-icon {
        width: 36px;
        height: 36px;
    }

    .stack-logo {
        width: 18px;
        height: 18px;
    }

    .fintech-workshop-page .presenter-card {
        border-left: 0;
        padding-left: 0;
    }

    .fintech-workshop-page .sidebar-card.plain-panel,
    .fintech-workshop-page .learning-steps .workshop-step,
    .fintech-workshop-page .code-step-card {
        border-left: 0;
        padding-left: 0;
    }

    .fintech-workshop-page .concepts-matrix-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px 0;
    }

    .fintech-workshop-page .concepts-pillars {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .concepts-architecture-split {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .workshop-pair-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .workshop-pair-list::before {
        display: none;
    }

    .demo-split {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fintech-workshop-page .workshop-step-list.learning-steps {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .endpoint-comparison-split {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .endpoint-comparison-split .endpoint-flow + .endpoint-flow {
        border-left: 0;
        padding-left: 0;
    }

    .concepts-column {
        border-right: 0;
        padding-right: 0;
        padding-bottom: 6px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .clean-diagram-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Site-wide uniformity baseline */
:root {
    --uniform-section-space: 64px;
    --uniform-stack-gap: 24px;
    --uniform-card-radius: 14px;
    --uniform-card-padding: 20px;
}

.page-hero {
    padding: 130px 0 64px;
}

.section {
    padding: var(--uniform-section-space) 0;
    background: transparent;
}

.section .container {
    min-width: 0;
}

.section-title {
    margin-bottom: 28px;
    line-height: 1.25;
}

.section-intro {
    margin-bottom: 18px;
    max-width: 780px;
}

.content-grid {
    margin-top: 28px;
    gap: 32px;
    align-items: start;
}

.stats-grid {
    margin: 36px 0;
    gap: 20px;
}

.media-grid,
.media-stack,
.clean-diagram-grid,
.feature-stack,
.feature-stack-clean,
.code-step-stack,
.workshop-media-row {
    margin-top: var(--uniform-stack-gap);
}

.stat-card,
.sidebar-card,
.media-card,
.workshop-media-card,
.evidence-card,
.timeline-item,
.project-card,
.diagram-card,
.clean-diagram-card {
    border-radius: var(--uniform-card-radius);
}

.diagram-card,
.clean-diagram-card {
    padding: var(--uniform-card-padding);
    margin-top: 18px;
}

.diagram-caption {
    margin-bottom: 10px;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.media-img,
.media-img-large,
.workshop-media-card img,
.figma-flow-link img,
.evidence-card img,
.linkedin-post-link img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.meta-links.meta-links-compact {
    margin-top: 14px;
}

body[data-menu-active="community"] #workshops.section,
body[data-menu-active="community"] #volunteer.section {
    padding-top: var(--uniform-section-space);
    padding-bottom: var(--uniform-section-space);
}

.section.part-two-section {
    padding-top: var(--uniform-section-space);
}

.feature-block,
.feature-stack-clean .feature-block,
.stats-row-clean .stats-card,
.stats-row-clean .table-wrap {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.diagram-zoom-toolbar {
    justify-content: flex-end;
    gap: 8px;
}

.diagram-zoom-level {
    margin-left: 0;
}

@media (max-width: 768px) {
    .section {
        padding: 52px 0;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .content-grid {
        margin-top: 20px;
        gap: 22px;
    }

    .stats-grid {
        margin: 24px 0;
    }
}

/* ProConvey + Verofy: keep diagram and feature surfaces consistent */
body[data-menu-active*="proconvey"] .feature-block,
body[data-menu-active*="verofy"] .feature-block,
body[data-menu-active*="proconvey"] .diagram-card,
body[data-menu-active*="verofy"] .diagram-card {
    background: var(--bg-secondary);
}

body[data-menu-active*="proconvey"] .diagram-card,
body[data-menu-active*="verofy"] .diagram-card {
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 16px;
}

/* Verofy Connect: Orders feature presentation */
.connect-feature-layout {
    display: grid;
    gap: 16px;
}

.connect-feature-layout > .content-text {
    margin: 0;
}

.connect-section {
    min-width: 0;
}

.connect-section + .connect-section {
    border-top: 1px solid var(--border-subtle);
    padding-top: 12px;
}

.connect-section .section-subtitle-tight {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: 0.1px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: none;
}

.connect-uniform-table {
    border-top: 1px solid var(--border-subtle);
}

.connect-uniform-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 10px;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.connect-uniform-row:last-child {
    border-bottom: 0;
}

.connect-uniform-label {
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
}

.connect-uniform-content {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.connect-uniform-stack {
    display: grid;
    gap: 4px;
}

.connect-uniform-stack p {
    margin: 0;
}

.connect-uniform-links {
    display: grid;
    gap: 8px;
}

.connect-uniform-links .inline-link {
    font-size: 14px;
    font-weight: 500;
}

.connect-evidence-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--border-subtle);
}

.connect-evidence-pane {
    min-width: 0;
    padding: 8px 0;
}

.connect-evidence-pane + .connect-evidence-pane {
    border-left: 1px solid var(--border-subtle);
    padding-left: 12px;
}

.connect-evidence-kicker {
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 4px;
}

.connect-evidence-links {
    display: grid;
    gap: 6px;
}

.connect-evidence-links .inline-link {
    font-size: 14px;
    font-weight: 500;
}

.connect-reference-card {
    margin-top: 12px;
}

.connect-source-note {
    margin: -2px 0 10px;
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.25px;
    text-transform: uppercase;
}

.connect-reference-figure {
    margin: 0;
}

.connect-tech-mermaid {
    font-size: 13px;
    overflow-x: hidden;
}

.connect-tech-mermaid svg {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
}

.pr-evidence-links-inline {
    margin-top: 6px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.pr-evidence-links-inline .inline-link {
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .feature-partner-logo-verofy {
        height: 16px;
    }

    .feature-partner-logo-recapx {
        height: 14px;
    }

    .feature-partner-logo-connect {
        height: 16px;
        max-width: 16px;
    }

    .feature-stack-clean .feature-heading-row.feature-heading-row-partner {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .feature-heading-meta-partner {
        width: 100%;
        justify-items: start;
        min-width: 0;
        padding-left: 0;
        padding-top: 10px;
        border-left: 0;
        border-top: 1px dashed var(--border-subtle);
    }

    .feature-heading-meta-partner .feature-partner-logos,
    .feature-heading-meta-partner .feature-partner-links {
        justify-content: flex-start;
    }

    .feature-heading-meta-partner .pr-evidence-corner {
        align-items: flex-start;
        text-align: left;
    }

    .feature-heading-meta-partner .pr-evidence-badges {
        justify-content: flex-start;
    }

    .pr-evidence-links-inline {
        justify-content: flex-start;
    }

    .connect-uniform-row {
        grid-template-columns: 1fr;
        row-gap: 3px;
    }

    .connect-evidence-split {
        grid-template-columns: 1fr;
    }

    .connect-evidence-pane + .connect-evidence-pane {
        border-left: 0;
        border-top: 1px solid var(--border-subtle);
        padding-left: 0;
        margin-top: 10px;
        padding-top: 10px;
    }

    .connect-tech-mermaid {
        font-size: 12px;
    }
}
