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

/* Variables - Clean Corporate Theme */
:root {
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-accent: #f1f5f9;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --accent: #0066cc;
    --accent-light: #e0f2fe;
    --accent-dark: #004999;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --max-content-width: 1440px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg: #0f172a;
    --bg-light: #1e293b;
    --bg-accent: #334155;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --text-light: #64748b;
    --accent: #60a5fa;
    --accent-light: #1e3a5f;
    --accent-dark: #93c5fd;
    --border: #334155;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .photo-card {
    background: #1e293b;
}

[data-theme="dark"] .card-10.featured {
    box-shadow: 0 25px 80px rgba(96, 165, 250, 0.15);
}

[data-theme="dark"] .section-accent {
    background: linear-gradient(135deg, #0c1929 0%, #0a1121 100%);
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
}

[data-theme="dark"] .hero-right {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-accent) 100%);
}

[data-theme="dark"] .nav {
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: var(--border);
}

[data-theme="dark"] .focus-header.delivery {
    background: linear-gradient(135deg, #1e3a5f 0%, #1e3a5f 100%);
}

[data-theme="dark"] .focus-header.codify {
    background: linear-gradient(135deg, #422006 0%, #451a03 100%);
}

[data-theme="dark"] .focus-header.social {
    background: linear-gradient(135deg, #4a1942 0%, #3b0764 100%);
}

[data-theme="dark"] .focus-header.genai {
    background: linear-gradient(135deg, #713f12 0%, #854d0e 100%);
}

[data-theme="dark"] .btn-primary {
    box-shadow: 0 4px 14px rgba(96, 165, 250, 0.3);
}

/* Skip to Content (Accessibility) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Edit Bar */
.edit-bar {
    display: none;
}

/* Nav Actions Container */
.nav-actions {
    /* Edit button hidden on the public site */
    display: none !important;
    align-items: center;
    gap: 0.5rem;
}

/* Edit Mode Button */
.edit-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-toggle-btn .pencil-icon,
.edit-toggle-btn .check-icon {
    width: 16px;
    height: 16px;
}

.edit-toggle-btn:hover {
    background: var(--accent);
    color: white;
}

.edit-toggle-btn.editing {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.edit-toggle-btn.editing:hover {
    background: #059669;
    border-color: #059669;
}

/* Edit Mode Styles */
body.edit-mode [data-editable] {
    outline: 2px dashed rgba(0, 102, 204, 0.3);
    outline-offset: 4px;
    cursor: text;
    transition: outline-color 0.2s ease;
}

body.edit-mode [data-editable]:hover {
    outline-color: rgba(0, 102, 204, 0.6);
}

body.edit-mode [data-editable]:focus {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    background: rgba(0, 102, 204, 0.02);
}

/* Edit Mode Banner */
.edit-mode-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

body.edit-mode .edit-mode-banner {
    display: block;
}

/* Dynamic Edit Controls - Add/Remove Buttons */
.dynamic-controls {
    display: none;
}

body.edit-mode .dynamic-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Row Controls (per item) */
.row-controls {
    display: none;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

body.edit-mode .editable-row {
    position: relative;
}

body.edit-mode .editable-row .row-controls {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.row-remove-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.row-remove-btn:hover {
    background: #dc2626;
    color: white;
    opacity: 1;
    transform: scale(1.1);
}

/* Add Row Button */
.add-row-btn {
    display: none;
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 2px dashed rgba(0, 102, 204, 0.3);
    border-radius: 6px;
    background: rgba(0, 102, 204, 0.02);
    color: #0066cc;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

body.edit-mode .add-row-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-row-btn:hover {
    background: rgba(0, 102, 204, 0.08);
    border-color: #0066cc;
}

/* Add Section Button */
.add-section-btn {
    display: none;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    border: 2px dashed rgba(0, 102, 204, 0.3);
    border-radius: 8px;
    background: rgba(0, 102, 204, 0.02);
    color: #0066cc;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

body.edit-mode .add-section-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.add-section-btn:hover {
    background: rgba(0, 102, 204, 0.08);
    border-color: #0066cc;
}

/* Section Remove Button */
.section-remove-btn {
    display: none;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    z-index: 10;
    transition: all 0.2s ease;
}

body.edit-mode .editable-section {
    position: relative;
}

body.edit-mode .editable-section .section-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-remove-btn:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

/* Tag Remove Button (for inline tags/items) */
.tag-remove-btn {
    display: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: none;
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    margin-left: 6px;
    padding: 0;
    vertical-align: middle;
    line-height: 1;
    transition: all 0.2s ease;
}

body.edit-mode .editable-row .tag-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tag-remove-btn:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

/* Add Tag Button (for tag lists) */
.add-tag-btn {
    display: none;
    width: 32px;
    height: 32px;
    border: 2px dashed rgba(0, 102, 204, 0.3);
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.02);
    color: #0066cc;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.2s ease;
    margin: 0.25rem;
}

body.edit-mode .add-tag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.add-tag-btn:hover {
    background: rgba(0, 102, 204, 0.08);
    border-color: #0066cc;
    transform: scale(1.1);
}

/* Adjust tag containers in edit mode */
body.edit-mode .growth-tags,
body.edit-mode .traits-grid,
body.edit-mode .certs-grid,
body.edit-mode .mottos-grid {
    padding-right: 40px;
}

body.edit-mode .growth-tag,
body.edit-mode .trait-tag,
body.edit-mode .value-tag {
    padding-right: 8px;
}

body.edit-mode .mottos-grid blockquote {
    padding-right: 30px;
    position: relative;
}

body.edit-mode .mottos-grid blockquote .tag-remove-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

/* Adjust Quick Facts for controls */
body.edit-mode .quick-facts ul {
    padding-right: 35px;
}

body.edit-mode .focus-tasks {
    padding-right: 35px;
}

/* Reset Button */
.reset-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    margin-left: 0.75rem;
    transition: all 0.2s ease;
}

.reset-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
}

/* Banner Buttons (Export, Import, Download) */
.banner-btn {
    background: #fff;
    border: 1px solid #d97706;
    color: #92400e;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.banner-btn:hover {
    background: #92400e;
    color: #fff;
    border-color: #92400e;
}

/* Hero - Split Layout */
.hero {
    position: relative;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding-top: 70px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
}

.nav-links .edit-toggle-btn {
    margin-left: 0.5rem;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem;
}

.hero-content {
    max-width: 600px;
}

.greeting {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--accent-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.name {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.role-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.role-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    padding: 0.4rem 0.8rem 0.4rem 1.8rem;
    border: 1px solid var(--accent);
    border-radius: 20px;
    background: rgba(99, 102, 241, 0.1);
    position: relative;
    font-weight: 500;
}

.role-label::before {
    content: '';
    position: absolute;
    left: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateY(-50%) scale(1.2); }
}

.role {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

.intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

/* Hero Right - Photo Gallery */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-accent) 100%);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    max-height: 80vh;
}

/* Photo Universe */
.photo-universe {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}


/* Photo Cards */
.photo-card {
    position: absolute;
    width: 140px;
    max-height: 20vh;
    background: #fff;
    padding: 4px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-lg);
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 0.7;
    filter: blur(2px);
}

.photo-card .card-inner {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    line-height: 0;
    max-height: calc(20vh - 8px);
}

.photo-card img {
    width: 100%;
    height: auto;
    max-height: calc(20vh - 8px);
    object-fit: contain;
    display: block;
    filter: saturate(0.95);
    transition: filter 0.4s ease;
}

.photo-card .card-caption {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Caveat', cursive, 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

/* Card positions */
.card-1 { top: 8%; left: 5%; transform: rotate(-12deg); z-index: 2; }
.card-2 { top: 5%; left: 35%; transform: rotate(8deg); z-index: 1; }
.card-3 { top: 12%; right: 8%; transform: rotate(-5deg); z-index: 3; }
.card-4 { top: 38%; left: 2%; transform: rotate(15deg); z-index: 2; }
.card-5 { top: 35%; right: 5%; transform: rotate(-18deg); z-index: 1; }
.card-6 { bottom: 25%; left: 8%; transform: rotate(-8deg); z-index: 3; }
.card-7 { bottom: 30%; left: 38%; transform: rotate(12deg); z-index: 2; }
.card-8 { bottom: 8%; left: 15%; transform: rotate(6deg); z-index: 1; }
.card-9 { bottom: 5%; right: 15%; transform: rotate(-10deg); z-index: 2; }

.card-10.featured {
    width: 80%;
    max-width: 480px;
    max-height: 70vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 20;
    padding: 6px;
    box-shadow: 0 25px 80px rgba(0, 102, 204, 0.25);
    opacity: 1;
    filter: none;
}

.card-10.featured .card-inner {
    max-height: calc(70vh - 12px);
}

.card-10.featured img {
    height: auto;
    max-height: calc(70vh - 12px);
    object-fit: contain;
}

.card-10.featured .card-caption {
    opacity: 1;
    bottom: -24px;
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
}

/* Hover Effects */
.photo-card:not(.featured):hover {
    z-index: 15 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 1;
    filter: blur(0);
    transform: scale(1.1);
}

.photo-card:hover img {
    filter: saturate(1.1);
}

.photo-card:hover .card-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation */
.card-1 { animation: float1 6s ease-in-out infinite; }
.card-2 { animation: float2 7s ease-in-out infinite 0.5s; }
.card-3 { animation: float1 5.5s ease-in-out infinite 1s; }
.card-4 { animation: float2 6.5s ease-in-out infinite 0.3s; }
.card-5 { animation: float1 7s ease-in-out infinite 0.8s; }
.card-6 { animation: float2 6s ease-in-out infinite 1.2s; }
.card-7 { animation: float1 5s ease-in-out infinite 0.6s; }
.card-8 { animation: float2 6.5s ease-in-out infinite 0.9s; }
.card-9 { animation: float1 5.5s ease-in-out infinite 0.4s; }

@keyframes float1 {
    0%, 100% { transform: var(--base-transform, rotate(0deg)) translateY(0); }
    50% { transform: var(--base-transform, rotate(0deg)) translateY(-8px); }
}

@keyframes float2 {
    0%, 100% { transform: var(--base-transform, rotate(0deg)) translateY(0); }
    50% { transform: var(--base-transform, rotate(0deg)) translateY(-10px); }
}

.photo-card:hover {
    animation-play-state: paused !important;
}

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

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

.section-accent {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
    color: white;
}

.section-accent .section-header h2,
.section-accent .section-number {
    color: white;
}

.section-accent .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.section-number {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 1.1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-sidebar {
    margin-top: -6.5rem;
}

.about-main .lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 500;
}

.about-main p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.quick-facts {
    background: var(--bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.quick-facts h4 {
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-facts ul {
    list-style: none;
}

.quick-facts li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.quick-facts li:last-child {
    border-bottom: none;
}

.quick-facts strong {
    color: var(--text);
}

/* Current Focus Section */
.current-focus {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.current-focus h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-focus h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.focus-category {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.focus-category:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.focus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.focus-header.delivery {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}

.focus-header.codify {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.focus-header.social {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.focus-header.genai {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
}

.focus-icon {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.focus-priority {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}

.focus-priority.high {
    background: #fee2e2;
    color: #dc2626;
}

.focus-priority.medium {
    background: #fef3c7;
    color: #d97706;
}

.focus-priority.fun {
    background: #fce7f3;
    color: #db2777;
}

.focus-tasks {
    list-style: none;
    padding: 1rem 1.25rem;
    margin: 0;
}

.focus-tasks li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.25rem;
}

.focus-tasks li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

.focus-tasks li:not(:last-child) {
    border-bottom: 1px dashed var(--border);
}

/* Strengths Section */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.strength-card {
    background: var(--bg);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow);
}

.strength-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.1);
}

.strength-icon {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

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

.strength-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.growth-areas {
    background: var(--accent-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.2);
    text-align: center;
}

.growth-areas h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.growth-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.growth-tag {
    padding: 0.5rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

.motivation-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.motivation-card:hover {
    border-color: var(--border);
    box-shadow: none;
    transform: none;
}

.motivation-icon {
    display: none;
}

.avoid-icon {
    color: #dc2626;
    font-weight: 600;
}

.avoid-card:hover {
    border-color: #dc2626;
}

.motivation-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

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

/* Professional Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.highlights-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-card {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

.highlight-period {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.highlight-role {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.highlight-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.highlight-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.highlights-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
}

.sidebar-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

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

.sidebar-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    padding-left: 0.75rem;
    position: relative;
}

.sidebar-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.sidebar-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Experience */
.experience-list {
    max-width: 800px;
}

/* Education Header */
.education-header {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.education-header h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0;
}

.education-list {
    margin-top: 0.5rem;
}

.exp-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

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

.exp-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.exp-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.exp-company {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.exp-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.exp-highlights {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.exp-highlights span {
    padding: 0.35rem 0.75rem;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.impact-box {
    background: var(--bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.impact-emoji {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--accent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.impact-header h3 {
    font-size: 1.2rem;
}

.impact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.impact-item strong {
    display: block;
    color: var(--accent);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.impact-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.leadership-principles {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-light) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.15);
}

.leadership-principles h4 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.principle {
    text-align: center;
    padding: 1rem;
}

.principle-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    opacity: 0.6;
    font-weight: 700;
}

.principle p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Avoid Section */
.avoid-list {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.avoid-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avoid-x {
    font-size: 1.25rem;
    color: #ff6b6b;
    font-weight: bold;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: rgba(255, 107, 107, 0.15);
    border-radius: 50%;
}

.avoid-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: white;
}

.avoid-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Goals */
.goals-triple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.goals-box {
    background: var(--bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.goals-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.goals-box ul {
    list-style: none;
}

.goals-box li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.goals-box li:last-child {
    border-bottom: none;
}

.goals-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.goals-box li strong {
    color: var(--text);
}

.career-goals { border-top: 3px solid #0066cc; }
.dev-goals { border-top: 3px solid #7c3aed; }
.life-goals { border-top: 3px solid #059669; }

/* Values/Skills Marquee */
.values-marquee {
    overflow: hidden;
    padding: 2rem 0;
}

.values-track {
    display: flex;
    gap: 1rem;
    animation: marquee 25s linear infinite;
}

.certs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem 0;
}

.cert-category {
    margin-bottom: 2.5rem;
}

.cert-category-title {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid;
}

.cert-category-title.architect { color: #dc2626; border-color: #dc2626; }
.cert-category-title.consultant { color: #0066cc; border-color: #0066cc; }
.cert-category-title.specialist { color: #059669; border-color: #059669; }
.cert-category-title.developer { color: #7c3aed; border-color: #7c3aed; }
.cert-category-title.admin { color: #ea580c; border-color: #ea580c; }

.cert-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cert-card.architect:hover { border-color: #dc2626; }
.cert-card.consultant:hover { border-color: #0066cc; }
.cert-card.specialist:hover { border-color: #059669; }
.cert-card.developer:hover { border-color: #7c3aed; }
.cert-card.admin:hover { border-color: #ea580c; }

.cert-badge {
    width: 32px;
    height: 35px;
    flex-shrink: 0;
}

.cert-badge text {
    font-family: 'Space Grotesk', sans-serif;
}

.cert-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cert-dot.architect { background: #dc2626; }
.cert-dot.consultant { background: #0066cc; }
.cert-dot.specialist { background: #059669; }
.cert-dot.developer { background: #7c3aed; }
.cert-dot.admin { background: #ea580c; }

.value-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.5rem 1.25rem 0.5rem 0.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-weight: 500;
}

.value-tag img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.value-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Business Chemistry Section */
.chemistry-summary {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.chemistry-summary strong {
    color: var(--text);
}

.chemistry-summary em {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

.chemistry-intro {
    margin-bottom: 3rem;
}

/* Orbs Container - Beautiful Spheres */
.chemistry-orbs-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3rem;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.chemistry-orbs-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(0,102,204,0.05) 0%, transparent 70%);
    pointer-events: none;
}

[data-theme="dark"] .chemistry-orbs-container {
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-light) 100%);
}

.chemistry-orb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chemistry-orb:hover {
    transform: translateY(-8px);
}

/* Sphere Sizes - Results Breakdown: 26/24/25/25 - near equal, Pioneer slightly larger */
.chemistry-orb.pioneer .orb-sphere {
    width: 140px;
    height: 140px;
}

.chemistry-orb.guardian .orb-sphere {
    width: 125px;
    height: 125px;
}

.chemistry-orb.driver .orb-sphere {
    width: 130px;
    height: 130px;
}

.chemistry-orb.integrator .orb-sphere {
    width: 130px;
    height: 130px;
}

.orb-sphere {
    position: relative;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.chemistry-orb.integrator .orb-sphere {
    animation-delay: -1.5s;
}
.chemistry-orb.driver .orb-sphere {
    animation-delay: -3s;
}
.chemistry-orb.guardian .orb-sphere {
    animation-delay: -4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.orb-layer {
    position: absolute;
    border-radius: 50%;
    opacity: 0.85;
}

/* Pioneer - Yellow/Orange */
.chemistry-orb.pioneer .orb-layer.layer-1 {
    width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 30%, #fde047 0%, #facc15 50%, #eab308 100%);
    top: 0; left: 0;
}
.chemistry-orb.pioneer .orb-layer.layer-2 {
    width: 70%; height: 70%;
    background: radial-gradient(circle at 50% 50%, #fef08a 0%, transparent 70%);
    top: 5%; left: 5%;
}
.chemistry-orb.pioneer .orb-layer.layer-3 {
    width: 50%; height: 50%;
    background: radial-gradient(circle at 60% 40%, #a3e635 0%, transparent 60%);
    top: 20%; left: 30%;
}
.chemistry-orb.pioneer .orb-layer.layer-4 {
    width: 60%; height: 60%;
    background: radial-gradient(circle at 40% 60%, #fb923c 0%, transparent 60%);
    bottom: 10%; right: 10%;
}

/* Guardian - Blue/Purple */
.chemistry-orb.guardian .orb-layer.layer-1 {
    width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 30%, #818cf8 0%, #6366f1 40%, #4f46e5 100%);
    top: 0; left: 0;
}
.chemistry-orb.guardian .orb-layer.layer-2 {
    width: 75%; height: 75%;
    background: radial-gradient(circle at 40% 30%, #c4b5fd 0%, transparent 60%);
    top: 5%; left: 10%;
}
.chemistry-orb.guardian .orb-layer.layer-3 {
    width: 60%; height: 60%;
    background: radial-gradient(circle at 60% 60%, #f0abfc 0%, #e879f9 30%, transparent 70%);
    bottom: 10%; right: 5%;
}
.chemistry-orb.guardian .orb-layer.layer-4 {
    width: 50%; height: 50%;
    background: radial-gradient(circle at 30% 70%, #38bdf8 0%, transparent 60%);
    bottom: 20%; left: 15%;
}

/* Driver - Red/Orange */
.chemistry-orb.driver .orb-layer.layer-1 {
    width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 30%, #f87171 0%, #ef4444 50%, #dc2626 100%);
    top: 0; left: 0;
}
.chemistry-orb.driver .orb-layer.layer-2 {
    width: 65%; height: 65%;
    background: radial-gradient(circle at 50% 40%, #fca5a5 0%, transparent 60%);
    top: 10%; left: 5%;
}
.chemistry-orb.driver .orb-layer.layer-3 {
    width: 50%; height: 50%;
    background: radial-gradient(circle at 60% 50%, #fdba74 0%, transparent 60%);
    top: 15%; right: 10%;
}
.chemistry-orb.driver .orb-layer.layer-4 {
    width: 40%; height: 40%;
    background: radial-gradient(circle at 50% 60%, #fb7185 0%, transparent 70%);
    bottom: 20%; left: 30%;
}

/* Integrator - Green/Teal */
.chemistry-orb.integrator .orb-layer.layer-1 {
    width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 30%, #4ade80 0%, #22c55e 40%, #16a34a 100%);
    top: 0; left: 0;
}
.chemistry-orb.integrator .orb-layer.layer-2 {
    width: 70%; height: 70%;
    background: radial-gradient(circle at 35% 35%, #86efac 0%, transparent 60%);
    top: 5%; left: 5%;
}
.chemistry-orb.integrator .orb-layer.layer-3 {
    width: 55%; height: 55%;
    background: radial-gradient(circle at 70% 50%, #2dd4bf 0%, #14b8a6 30%, transparent 70%);
    top: 20%; right: 10%;
}
.chemistry-orb.integrator .orb-layer.layer-4 {
    width: 60%; height: 60%;
    background: radial-gradient(circle at 40% 70%, #a3e635 0%, #84cc16 30%, transparent 60%);
    bottom: 5%; left: 20%;
}

/* Shine effect */
.orb-shine {
    position: absolute;
    width: 30%;
    height: 30%;
    top: 12%;
    left: 15%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.3) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Orb Info */
.orb-info {
    text-align: center;
}

.orb-percent {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.orb-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.orb-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    max-width: 200px;
    line-height: 1.4;
}

/* Type Cards */
.chemistry-type-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.type-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.type-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.primary-card::before {
    background: linear-gradient(90deg, #facc15, #fb923c, #eab308);
}

.secondary-card::before {
    background: linear-gradient(90deg, #22c55e, #2dd4bf, #14b8a6);
}

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

.pioneer-badge {
    background: linear-gradient(135deg, #fef9c3, #fde68a);
    color: #a16207;
}

.integrator-badge {
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    color: #16a34a;
}

.guardian-badge {
    background: linear-gradient(135deg, #e0e7ff, #ede9fe);
    color: #6366f1;
}

[data-theme="dark"] .pioneer-badge {
    background: linear-gradient(135deg, #713f12, #854d0e);
    color: #fde047;
}

[data-theme="dark"] .integrator-badge {
    background: linear-gradient(135deg, #064e3b, #065f46);
    color: #4ade80;
}

[data-theme="dark"] .guardian-badge {
    background: linear-gradient(135deg, #312e81, #3730a3);
    color: #a5b4fc;
}

.type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.type-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Type Subtypes */
.type-subtypes {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.subtype-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.subtype-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

.subtype-bars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.subtype-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.subtype-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    min-width: 80px;
}

.subtype-track {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.subtype-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--secondary);
    transition: width 1s ease;
}

.subtype-fill.highlight {
    background: linear-gradient(90deg, var(--secondary), #2dd4bf);
}

.subtype-fill.driver-fill {
    background: #ef4444;
}

.subtype-fill.driver-fill.highlight {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.subtype-pct {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    min-width: 36px;
    text-align: right;
}

/* Non-core Patterns */
.chemistry-noncore {
    margin-bottom: 2rem;
}

.chemistry-noncore h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.noncore-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.noncore-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
}

.noncore-header {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.noncore-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.noncore-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem;
}

.noncore-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Defining Traits */
.chemistry-traits {
    margin-bottom: 3rem;
}

.chemistry-traits h4,
.chemistry-decisions h4,
.chemistry-mottos h4,
.chemistry-extremes h4,
.chemistry-words h4,
.chemistry-interactions h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.traits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trait-tag {
    padding: 0.5rem 1.25rem;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.trait-tag.trait-top {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    font-weight: 600;
}

[data-theme="dark"] .trait-tag {
    border-color: rgba(96, 165, 250, 0.3);
}

[data-theme="dark"] .trait-tag.trait-top {
    border-color: var(--primary);
}

/* Extreme Responses */
.chemistry-extremes {
    margin-bottom: 3rem;
}

.extremes-note {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.extremes-col {
    background: var(--bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.extremes-col h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.extremes-vs {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.extremes-agree {
    border-top: 3px solid #059669;
}

.extremes-disagree {
    border-top: 3px solid #dc2626;
}

.extremes-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.extremes-col li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.extremes-col li:last-child {
    border-bottom: none;
}

.extreme-pct {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 42px;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    text-align: center;
}

.extremes-agree .extreme-pct {
    background: #ecfdf5;
    color: #059669;
}

.extremes-disagree .extreme-pct {
    background: #fef2f2;
    color: #dc2626;
}

[data-theme="dark"] .extremes-agree .extreme-pct {
    background: #064e3b;
    color: #6ee7b7;
}

[data-theme="dark"] .extremes-disagree .extreme-pct {
    background: #450a0a;
    color: #fca5a5;
}

/* How I Make Decisions */
.chemistry-decisions {
    margin-bottom: 3rem;
}

.decision-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.decision-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.decision-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Engage/Lose Grid */
.chemistry-engage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.engage-box {
    background: var(--bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.engage-box h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.engage-do h4::before {
    content: '✓';
    color: #059669;
    font-weight: bold;
}

.engage-dont h4::before {
    content: '×';
    color: #dc2626;
    font-weight: bold;
}

.engage-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.engage-box li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    padding-left: 1rem;
    position: relative;
}

.engage-box li:last-child {
    border-bottom: none;
}

.engage-do li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #059669;
    border-radius: 50%;
}

.engage-dont li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #dc2626;
    border-radius: 50%;
}

/* Words That Woo Me */
.chemistry-words {
    margin-bottom: 3rem;
}

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

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

.woo-pioneer {
    border-top: 3px solid #eab308;
}

.woo-integrator {
    border-top: 3px solid #22c55e;
}

.woo-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.woo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

.woo-word {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.woo-word:hover {
    transform: scale(1.1);
}

.woo-pioneer .woo-word {
    background: #fef9c3;
    color: #a16207;
}

.woo-integrator .woo-word {
    background: #dcfce7;
    color: #15803d;
}

[data-theme="dark"] .woo-pioneer .woo-word {
    background: #422006;
    color: #fde047;
}

[data-theme="dark"] .woo-integrator .woo-word {
    background: #052e16;
    color: #86efac;
}

.woo-md { font-size: 0.82rem; }
.woo-lg { font-size: 0.95rem; font-weight: 600; }
.woo-xl { font-size: 1.1rem; font-weight: 700; }

/* Mottos */
.chemistry-mottos {
    text-align: center;
    margin-bottom: 3rem;
}

.mottos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mottos-grid blockquote {
    background: var(--bg-light);
    border-left: 3px solid var(--accent);
    padding: 1.5rem;
    margin: 0;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--text);
    border-radius: 0 8px 8px 0;
}

/* Interaction Cards */
.chemistry-interactions {
    margin-bottom: 2rem;
}

.interaction-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.interaction-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    transition: box-shadow 0.3s ease;
}

.interaction-card:hover {
    box-shadow: var(--shadow-md);
}

.interaction-card h5 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.interaction-card h5 span {
    font-weight: 700;
}

.interact-pioneer h5 span { color: #ca8a04; }
.interact-guardian h5 span { color: #6366f1; }
.interact-driver h5 span { color: #dc2626; }
.interact-integrator h5 span { color: #16a34a; }

.interact-pioneer { border-top: 3px solid #eab308; }
.interact-guardian { border-top: 3px solid #6366f1; }
.interact-driver { border-top: 3px solid #ef4444; }
.interact-integrator { border-top: 3px solid #22c55e; }

.interact-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.interact-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.interact-do .interact-label {
    background: #ecfdf5;
    color: #059669;
}

.interact-dont .interact-label {
    background: #fef2f2;
    color: #dc2626;
}

[data-theme="dark"] .interact-do .interact-label {
    background: #064e3b;
    color: #6ee7b7;
}

[data-theme="dark"] .interact-dont .interact-label {
    background: #450a0a;
    color: #fca5a5;
}

.interact-cols ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.interact-cols li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.35rem 0;
    line-height: 1.5;
}

/* Contact */
.section-contact {
    text-align: center;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
}

.contact-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    color: var(--bg);
    background: var(--accent);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.3);
}

.contact-email:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

/* Footer */
footer {
    padding: 2rem 0 3.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        padding: 6rem 2rem 4rem;
    }
    
    .hero-right {
        min-height: 450px;
    }
    
    .name {
        font-size: 2.75rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-sidebar {
        margin-top: 0;
    }
    
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .motivation-grid,
    .goals-triple,
    .impact-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .exp-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chemistry-orbs-container {
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .chemistry-orb.pioneer .orb-sphere {
        width: 110px;
        height: 110px;
    }
    .chemistry-orb.integrator .orb-sphere {
        width: 100px;
        height: 100px;
    }
    .chemistry-orb.driver .orb-sphere {
        width: 85px;
        height: 85px;
    }
    .chemistry-orb.guardian .orb-sphere {
        width: 80px;
        height: 80px;
    }
    
    .chemistry-type-cards,
    .chemistry-engage-grid,
    .extremes-grid,
    .woo-cards,
    .interaction-cards,
    .noncore-cards {
        grid-template-columns: 1fr;
    }
    
    .decision-cards,
    .mottos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hamburger {
        display: flex;
    }

    .nav-inner {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        z-index: 100;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-links .edit-toggle-btn {
        margin-left: 0;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .growth-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content h2 {
        font-size: 2.25rem;
    }
    
    .contact-email {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .decision-cards,
    .mottos-grid {
        grid-template-columns: 1fr;
    }
    
    .chemistry-orbs-container {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .chemistry-orb.pioneer .orb-sphere {
        width: 85px;
        height: 85px;
    }
    .chemistry-orb.integrator .orb-sphere {
        width: 80px;
        height: 80px;
    }
    .chemistry-orb.driver .orb-sphere {
        width: 70px;
        height: 70px;
    }
    .chemistry-orb.guardian .orb-sphere {
        width: 65px;
        height: 65px;
    }
    
    .orb-percent {
        font-size: 1.2rem;
    }
    
    .orb-name {
        font-size: 0.7rem;
    }
    
    .type-card {
        padding: 1.5rem;
    }
    
    .traits-grid {
        gap: 0.5rem;
    }
    
    .trait-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .interact-cols {
        grid-template-columns: 1fr;
    }
    
    .chemistry-summary {
        padding: 1.5rem;
    }
}

/* ==========================================
   PRESENTATION MODE
   ========================================== */

/* Present Button in Nav */
.present-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.present-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.present-btn svg {
    fill: currentColor;
    stroke: none;
}

/* Presentation Overlay */
.presentation-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f1a 100%);
    z-index: 10000;
    display: none;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.presentation-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.presentation-overlay.active {
    display: flex;
    opacity: 1;
}

/* Header - Floating */
.presentation-header {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}

.presentation-header > * {
    pointer-events: auto;
}

.presentation-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.presentation-controls-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.slide-counter {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
    font-weight: 300;
}

.presentation-close {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.presentation-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: scale(1.05);
}

/* Slide Container - 80% of screen */
.presentation-container {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1500px;
}

/* Individual Slides - Full container */
.presentation-slide {
    position: absolute;
    inset: 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 30px 60px -30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(100%) scale(0.95);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    overflow: hidden;
}

.presentation-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.presentation-slide.prev {
    opacity: 0;
    transform: translateY(-100%) scale(0.95);
}

.presentation-slide.next {
    opacity: 0;
    transform: translateY(100%) scale(0.95);
}

/* Slide Inner Content */
.presentation-slide .slide-inner {
    height: 100%;
    overflow-y: auto;
    padding: 3rem 4rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.3) transparent;
}

.presentation-slide .slide-inner::-webkit-scrollbar {
    width: 6px;
}

.presentation-slide .slide-inner::-webkit-scrollbar-track {
    background: transparent;
}

.presentation-slide .slide-inner::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 3px;
}

/* Slide Header */
.presentation-slide .slide-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.presentation-slide .slide-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
}

.presentation-slide .slide-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* Slide Content Area */
.presentation-slide .slide-content {
    display: grid;
    gap: 1.5rem;
}

/* Content Blocks */
.presentation-slide .content-block {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.presentation-slide .content-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
}

.presentation-slide .content-block p,
.presentation-slide .content-block li {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

.presentation-slide .content-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.presentation-slide .content-block li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.presentation-slide .content-block li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 500;
}

/* Hero Slide with Photo - Split Layout */
.presentation-slide.hero-slide .slide-inner.hero-layout {
    display: flex;
    flex-direction: row;
    height: 100%;
    padding: 0;
    gap: 0;
}

.presentation-slide.hero-slide .hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem 3rem 4rem;
    overflow-y: auto;
}

.presentation-slide.hero-slide .hero-right {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.presentation-slide.hero-slide .hero-content {
    max-width: 100%;
}

.presentation-slide.hero-slide .greeting {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.presentation-slide.hero-slide .name {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.presentation-slide.hero-slide .role-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.presentation-slide.hero-slide .role-label {
    font-size: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.presentation-slide.hero-slide .role {
    font-size: 1rem;
    color: #6366f1;
    font-weight: 500;
}

.presentation-slide.hero-slide .intro {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.presentation-slide.hero-slide .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.presentation-slide.hero-slide .btn-primary,
.presentation-slide.hero-slide .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.presentation-slide.hero-slide .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.presentation-slide.hero-slide .btn-secondary {
    background: #f1f5f9;
    color: #334155;
}

/* Photo Universe in Slide */
.presentation-slide .photo-universe {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.presentation-slide .photo-card {
    position: absolute;
    transform: scale(0.7);
    max-height: 18vh;
}

.presentation-slide .photo-card.card-1 { top: 5%; left: 10%; }
.presentation-slide .photo-card.card-2 { top: 15%; right: 5%; }
.presentation-slide .photo-card.card-3 { top: 40%; left: 5%; }
.presentation-slide .photo-card.card-4 { top: 35%; right: 15%; transform: scale(0.8); }
.presentation-slide .photo-card.card-5 { bottom: 25%; left: 15%; }
.presentation-slide .photo-card.card-6 { bottom: 15%; right: 10%; }
.presentation-slide .photo-card.card-7 { bottom: 5%; left: 40%; }

.presentation-slide .card-inner {
    background: white;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    line-height: 0;
    overflow: hidden;
    max-height: calc(18vh - 8px);
}

.presentation-slide .card-inner img {
    width: 100px;
    height: auto;
    max-height: calc(18vh - 8px);
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.presentation-slide .card-caption {
    font-size: 0.6rem;
    color: #64748b;
    text-align: center;
    display: block;
    margin-top: 0.25rem;
}

.presentation-slide .ambient-glow {
    display: none;
}

/* Combined Slide (Certifications + Contact) */
.presentation-slide .slide-content.combined-slide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.presentation-slide .combined-slide .container {
    padding: 0;
}

/* Grid layouts for specific slides */
.presentation-slide .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.presentation-slide .card-item {
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.presentation-slide .card-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.presentation-slide .card-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.presentation-slide .card-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Cloned Content Adjustments - Keep original CSS but scale for slides */
.presentation-slide .slide-content .container {
    padding: 0;
    max-width: 100%;
    display: block;
    visibility: visible;
    opacity: 1;
}

.presentation-slide .slide-content .section-header {
    display: none;
}

.presentation-slide .slide-content .about-grid,
.presentation-slide .slide-content .strengths-grid,
.presentation-slide .slide-content .motivation-grid,
.presentation-slide .slide-content .avoid-grid,
.presentation-slide .slide-content .experience-list,
.presentation-slide .slide-content .impact-grid,
.presentation-slide .slide-content .chemistry-section,
.presentation-slide .slide-content .goals-triple,
.presentation-slide .slide-content .cert-categories {
    margin-top: 0;
}

/* Scale down for better fit */
.presentation-slide .slide-content .about-main,
.presentation-slide .slide-content .about-sidebar {
    font-size: 0.9em;
}

.presentation-slide .slide-content .lead-text {
    font-size: 1.1rem;
}

.presentation-slide .slide-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.presentation-slide .slide-content h3 {
    font-size: 1.1rem;
}

/* Cards styling in slides */
.presentation-slide .slide-content .strength-card,
.presentation-slide .slide-content .motivation-card {
    padding: 1.25rem;
}

.presentation-slide .slide-content .strength-card h3,
.presentation-slide .slide-content .motivation-card h3 {
    font-size: 1rem;
}

.presentation-slide .slide-content .strength-card p,
.presentation-slide .slide-content .motivation-card p {
    font-size: 0.85rem;
}

/* Experience timeline in slides */
.presentation-slide .slide-content .experience-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.presentation-slide .slide-content .exp-item {
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid #6366f1;
}

.presentation-slide .slide-content .exp-item .exp-period {
    font-size: 0.8rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.presentation-slide .slide-content .exp-item h3 {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.presentation-slide .slide-content .exp-item .exp-company {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.presentation-slide .slide-content .exp-item .exp-desc {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
}

.presentation-slide .slide-content .exp-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.presentation-slide .slide-content .exp-highlights span {
    font-size: 0.7rem;
    background: #e0e7ff;
    color: #4338ca;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Goals section in slides */
.presentation-slide .slide-content .goals-triple {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.presentation-slide .slide-content .goals-box {
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.presentation-slide .slide-content .goals-box.career-goals { border-top: 3px solid #0066cc; }
.presentation-slide .slide-content .goals-box.dev-goals { border-top: 3px solid #7c3aed; }
.presentation-slide .slide-content .goals-box.life-goals { border-top: 3px solid #059669; }

.presentation-slide .slide-content .goals-box h3 {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #6366f1;
}

.presentation-slide .slide-content .goals-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.presentation-slide .slide-content .goals-box li {
    font-size: 0.85rem;
    color: #475569;
    padding: 0.4rem 0;
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.presentation-slide .slide-content .goals-box li:last-child {
    border-bottom: none;
}

.presentation-slide .slide-content .goals-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6366f1;
}

.presentation-slide .slide-content .goals-box li strong {
    color: #334155;
}

/* Override dark section backgrounds for slides */
.presentation-slide .slide-content .section-dark,
.presentation-slide .slide-content .section-accent {
    background: transparent;
    color: inherit;
}

/* Ensure all text is visible */
.presentation-slide .slide-content * {
    color: inherit;
}

.presentation-slide .slide-content h3 {
    color: #1e293b;
}

.presentation-slide .slide-content p {
    color: #475569;
}

.presentation-slide .slide-content strong {
    color: #334155;
}

/* Impact section in slides */
.presentation-slide .slide-content .impact-box {
    padding: 1.25rem;
}

/* Chemistry section in slides */
.presentation-slide .slide-content .type-card {
    padding: 1.25rem;
}

/* Certifications in slides */
.presentation-slide .slide-content .cert-category {
    margin-bottom: 1rem;
}

.presentation-slide .slide-content .value-tag {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
}

/* Contact section in combined slide */
.presentation-slide .combined-slide .contact-inner {
    padding: 1.5rem;
    text-align: center;
}

/* Navigation - Bottom floating */
.presentation-nav {
    position: absolute;
    bottom: calc(10% + 1rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-arrow:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-arrow:active:not(:disabled) {
    transform: scale(0.95);
}

.nav-arrow:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* Dots */
.presentation-dots {
    display: flex;
    gap: 8px;
    padding: 0 1rem;
}

.presentation-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.presentation-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.presentation-dot.active {
    background: white;
    width: 24px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Progress Bar - Top */
.presentation-progress {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    z-index: 5;
    margin-top: -1px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
    border-radius: 1px;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Keyboard Hints */
.presentation-overlay::after {
    content: '← → Navigate  •  Esc Exit  •  Space Next';
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Content animations on slide entry */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeInScale {
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.presentation-slide.active .slide-header {
    animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

.presentation-slide.active .content-block,
.presentation-slide.active .card-item {
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.presentation-slide.active .content-block:nth-child(1),
.presentation-slide.active .card-item:nth-child(1) { animation-delay: 0.3s; }
.presentation-slide.active .content-block:nth-child(2),
.presentation-slide.active .card-item:nth-child(2) { animation-delay: 0.4s; }
.presentation-slide.active .content-block:nth-child(3),
.presentation-slide.active .card-item:nth-child(3) { animation-delay: 0.5s; }
.presentation-slide.active .content-block:nth-child(4),
.presentation-slide.active .card-item:nth-child(4) { animation-delay: 0.6s; }
.presentation-slide.active .content-block:nth-child(5),
.presentation-slide.active .card-item:nth-child(5) { animation-delay: 0.7s; }
.presentation-slide.active .content-block:nth-child(6),
.presentation-slide.active .card-item:nth-child(6) { animation-delay: 0.8s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .side-nav {
        display: none;
    }

    .present-btn span {
        display: none;
    }
    
    .present-btn {
        padding: 0.5rem;
    }
    
    .presentation-container {
        top: 5%;
        left: 5%;
        right: 5%;
        bottom: 15%;
    }
    
    .presentation-header {
        top: 5%;
        left: 5%;
        right: 5%;
    }
    
    .presentation-progress {
        top: 5%;
        left: 5%;
        right: 5%;
    }
    
    .presentation-slide {
        inset: 1rem;
        border-radius: 16px;
    }
    
    .presentation-slide .slide-inner {
        padding: 1.5rem;
    }
    
    .presentation-slide .slide-title {
        font-size: 1.5rem;
    }
    
    .presentation-slide .slide-number {
        font-size: 2rem;
    }
    
    /* Hero slide mobile - stack layout */
    .presentation-slide.hero-slide .slide-inner.hero-layout {
        flex-direction: column;
    }
    
    .presentation-slide.hero-slide .hero-left {
        padding: 1.5rem;
        flex: none;
    }
    
    .presentation-slide.hero-slide .hero-right {
        flex: 1;
        min-height: 200px;
    }
    
    .presentation-slide.hero-slide .name {
        font-size: 2rem;
    }
    
    .presentation-slide.hero-slide .intro {
        font-size: 0.9rem;
    }
    
    .presentation-slide .photo-card {
        transform: scale(0.5);
    }
    
    /* Goals responsive */
    .presentation-slide .slide-content .goals-triple {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FLOATING SIDE NAV
   ========================================== */

.side-nav {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    align-items: center;
}

.side-nav-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

/* The vertical track line behind dots */
.side-nav-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: var(--border);
    border-radius: 1px;
    z-index: 1;
    overflow: hidden;
}

.side-nav-progress {
    width: 100%;
    height: 0%;
    background: var(--accent);
    border-radius: 1px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.side-nav-progress::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 102, 204, 0.5);
    opacity: 0.8;
}

.side-nav-dot {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--text-light);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    z-index: 2;
}

.side-nav-dot:hover {
    border-color: var(--accent);
    background: var(--accent);
    transform: scale(1.5);
    box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.12);
}

.side-nav-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.15);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.15); }
    50% { box-shadow: 0 0 0 9px rgba(0, 102, 204, 0.06); }
}

/* Dots that have been passed (visited) */
.side-nav-dot.visited {
    border-color: var(--accent);
    background: var(--accent);
}

.side-nav-label {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%) translateX(10px) scale(0.9);
    white-space: nowrap;
    background: rgba(15, 23, 42, 0.75);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    color: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    pointer-events: none;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 0.5px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.side-nav-label::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(15, 23, 42, 0.75);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.side-nav-dot:hover .side-nav-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
}

[data-theme="dark"] .side-nav-label {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(148, 163, 184, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 0.5px 0 rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
}

[data-theme="dark"] .side-nav-label::after {
    background: rgba(30, 41, 59, 0.8);
    border-right-color: rgba(148, 163, 184, 0.15);
    border-bottom-color: rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .side-nav-dot {
    background: var(--bg-light);
    border-color: var(--text-light);
}

[data-theme="dark"] .side-nav-dot.active,
[data-theme="dark"] .side-nav-dot.visited {
    background: var(--accent);
    border-color: var(--accent);
}

[data-theme="dark"] .side-nav-dot:hover {
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
}

[data-theme="dark"] .side-nav-dot.active {
    animation: dotPulseDark 2s ease-in-out infinite;
}

@keyframes dotPulseDark {
    0%, 100% { box-shadow: 0 0 0 5px rgba(96, 165, 250, 0.15); }
    50% { box-shadow: 0 0 0 9px rgba(96, 165, 250, 0.06); }
}

[data-theme="dark"] .side-nav-progress::after {
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.3);
    z-index: 90;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ==========================================
   DARK MODE TOGGLE
   ========================================== */

.dark-mode-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 90;
}

.dark-mode-toggle:hover {
    background: var(--bg-accent);
    transform: scale(1.1);
}

/* ==========================================
   PRINT STYLESHEET
   ========================================== */

@media print {
    .nav,
    .edit-mode-banner,
    .edit-toggle-btn,
    .back-to-top,
    .dark-mode-toggle,
    .side-nav,
    .present-btn,
    .presentation-overlay,
    .hero-cta,
    .hero-right,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .section {
        padding: 1.5rem 0;
        page-break-inside: avoid;
    }

    .section-accent {
        background: #f5f5f5 !important;
        color: #000 !important;
    }

    .section-accent h2,
    .section-accent h3,
    .section-accent p,
    .section-accent li,
    .section-accent .section-number {
        color: #000 !important;
    }

    .container {
        max-width: 100%;
        padding: 0 1rem;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .hero {
        display: block;
        padding-top: 1rem;
    }

    .hero-left {
        padding: 1rem;
    }

    .photo-card {
        display: none;
    }

    .card-10.featured {
        display: block;
        position: static;
        transform: none;
        width: 200px;
        max-height: none;
    }
}

/* ==================== */
/* Achievements Section  */
/* ==================== */

.achievement-year {
    margin-bottom: 3rem;
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
}

.achievement-year-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.achievement-months {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.achievement-month {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.3s ease;
}

.achievement-month:hover {
    border-color: var(--accent);
}

.month-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.month-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.month-items li {
    font-size: 0.95rem;
    color: var(--text);
    padding: 0.3rem 0;
    line-height: 1.5;
}

.month-items li + li {
    border-top: 1px solid var(--border);
    margin-top: 0.3rem;
    padding-top: 0.5rem;
}

@media (max-width: 600px) {
    .achievement-row {
        grid-template-columns: 1fr;
    }

    .achievement-year {
        padding-left: 1rem;
    }

    .achievement-year-label {
        font-size: 1.4rem;
    }
}

/* ========================
   VIEW TABS
   ======================== */
.view-tabs {
    display: flex;
    gap: 0.25rem;
    background: var(--bg-accent);
    border-radius: 8px;
    padding: 3px;
    margin-left: 1rem;
}

.view-tab {
    padding: 0.35rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.view-tab:hover {
    color: var(--text);
}

.view-tab.active {
    background: var(--bg);
    color: var(--accent);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.view-content {
    display: none;
}

.view-content.active {
    display: block;
}

/* ========================
   YEAR END REPORT
   ======================== */
.yearend-wrapper {
    padding: 4rem 0;
    min-height: 100vh;
}

.yearend-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.yearend-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.yearend-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.yearend-section {
    margin-bottom: 2.5rem;
}

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

.yearend-section-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 10px;
    flex-shrink: 0;
}

.yearend-section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
}

.yearend-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    line-height: 1.7;
    color: var(--text);
    font-size: 0.95rem;
}

.yearend-card p {
    margin-bottom: 0.5rem;
}

.yearend-card p:last-child {
    margin-bottom: 0;
}

/* ============================
   Snapshot — Promotion Case
   ============================ */

.snap-wrapper {
    padding: 4rem 2rem;
    min-height: 100vh;
    max-width: 960px;
    margin: 0 auto;
}

/* Hero Header */
.snap-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 16px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.snap-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.snap-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.snap-hero-name {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    letter-spacing: -0.5px;
}

.snap-hero-role {
    font-size: 1.15rem;
    margin: 0 0 0.3rem;
    opacity: 0.95;
}

.snap-hero-role strong {
    border-bottom: 2px solid rgba(255,255,255,0.6);
    font-weight: 700;
}

.snap-hero-period {
    font-size: 0.85rem;
    opacity: 0.75;
    margin: 0;
}

/* Section Titles */
.snap-section {
    margin-bottom: 2.5rem;
}

.snap-section-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--accent);
}

.snap-section-icon {
    font-size: 1.3rem;
}

/* KPI Grid */
.snap-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.snap-kpi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.snap-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.snap-kpi-highlight {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.snap-kpi-highlight .snap-kpi-detail {
    color: rgba(255,255,255,0.75);
}

.snap-kpi-value {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.1;
}

.snap-kpi-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.snap-kpi-detail {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* Pillar Cards */
.snap-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.snap-pillar {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.snap-pillar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.snap-pillar-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.snap-pillar h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.snap-pillar p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Timeline */
.snap-timeline {
    position: relative;
    padding-left: 2rem;
}

.snap-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: var(--border);
}

.snap-timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.snap-timeline-item:last-child {
    margin-bottom: 0;
}

.snap-timeline-marker {
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid var(--accent);
    z-index: 1;
}

.snap-marker-active {
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.snap-marker-small {
    width: 12px;
    height: 12px;
    border-width: 2px;
    left: calc(-2rem + 2px);
    top: 6px;
}

.snap-timeline-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.snap-timeline-period {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.snap-timeline-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem;
}

.snap-timeline-role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 0 0.6rem;
}

.snap-timeline-content ul {
    margin: 0;
    padding-left: 1.2rem;
}

.snap-timeline-content li {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.snap-timeline-supporting .snap-timeline-content {
    border-style: dashed;
}

.snap-timeline-supporting .snap-timeline-content p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Quote Cards */
.snap-quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.snap-quote-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.snap-quote-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 0.75rem;
    font-style: italic;
}

.snap-quote-author {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
}

.snap-quote-author strong {
    color: var(--text);
}

.snap-quote-author span {
    color: var(--text-muted);
    font-size: 0.72rem;
}

/* Initiative Cards */
.snap-initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.snap-initiative-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.snap-initiative-status {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.snap-status-active {
    background: #dcfce7;
    color: #166534;
}

[data-theme="dark"] .snap-status-active,
.dark-mode .snap-status-active {
    background: rgba(34,197,94,0.15);
    color: #4ade80;
}

.snap-initiative-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.4rem;
}

.snap-initiative-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* People Development */
.snap-people-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.snap-person-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.snap-person-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.snap-person-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem;
}

.snap-person-outcome {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    margin-bottom: 0.35rem;
}

.snap-outcome-promoted {
    background: #dbeafe;
    color: #1e40af;
}

[data-theme="dark"] .snap-outcome-promoted,
.dark-mode .snap-outcome-promoted {
    background: rgba(59,130,246,0.15);
    color: #60a5fa;
}

.snap-outcome-growing {
    background: #fef3c7;
    color: #92400e;
}

[data-theme="dark"] .snap-outcome-growing,
.dark-mode .snap-outcome-growing {
    background: rgba(251,191,36,0.15);
    color: #fbbf24;
}

.snap-person-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

.snap-people-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.25rem;
    background: var(--bg-accent);
    border-radius: 12px;
}

.snap-people-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.snap-people-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.snap-people-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Growth Cards */
.snap-growth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.snap-growth-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.snap-growth-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.75rem;
}

.snap-growth-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.snap-growth-card li {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.35rem;
}

/* Closing Statement */
.snap-closing {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-accent);
    border: 2px solid var(--accent);
    border-radius: 16px;
}

.snap-closing-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.snap-closing h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.75rem;
}

.snap-closing p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
}

/* Snapshot Responsive */
@media (max-width: 768px) {
    .snap-wrapper {
        padding: 2rem 1rem;
    }
    .snap-hero {
        padding: 2rem 1.25rem;
    }
    .snap-hero-name {
        font-size: 2rem;
    }
    .snap-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .snap-pillars,
    .snap-quotes-grid,
    .snap-initiatives-grid,
    .snap-people-grid,
    .snap-growth-grid {
        grid-template-columns: 1fr;
    }
    .snap-people-summary {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .snap-kpi-grid {
        grid-template-columns: 1fr;
    }
    .snap-hero-name {
        font-size: 1.6rem;
    }
}

/* Time Reporting Dashboard */
.tr-dashboard {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    color: var(--text);
}

.tr-header {
    background: var(--bg-accent);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.tr-header-left h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.tr-header-left p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.tr-header-right {
    display: flex;
    gap: 2rem;
}

.tr-header-stat {
    text-align: center;
}

.tr-header-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.tr-header-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tr-body {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
}

/* KPI Tiles (left column) */
.tr-kpi-tiles {
    background: var(--bg-accent);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border-right: 1px solid var(--border);
}

.tr-tile {
    background: var(--bg);
    padding: 1rem 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.tr-tile-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
}

.tr-tile-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: capitalize;
    line-height: 1.3;
}

/* Table Area (right column) */
.tr-table-area {
    padding: 1.25rem;
}

.tr-table-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.tr-overview-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.tr-overview-table thead th {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.72rem;
    padding: 0.5rem 0.6rem;
    text-align: right;
    white-space: nowrap;
}

.tr-overview-table thead th:first-child {
    text-align: left;
}

.tr-overview-table tbody td {
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.tr-overview-table tbody td:first-child {
    text-align: left;
    color: var(--text-muted);
}

.tr-overview-table tbody td:empty {
    background: transparent;
}

.tr-total-row td {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 700;
}

.tr-total-row td strong {
    color: #fff;
}

/* Charts Row */
.tr-charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.tr-chart-box {
    background: var(--bg-accent);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
}

.tr-chart-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.tr-chart-legend {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.tr-legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.tr-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.tr-legend-chg { background: var(--accent); }
.tr-legend-int { background: var(--text-muted); }
.tr-legend-abs { background: var(--border); }

.tr-legend-line {
    width: 14px;
    height: 2px;
    background: var(--text-muted);
    display: inline-block;
}

/* Bar Charts */
.tr-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 120px;
    padding: 0 0.25rem;
}

.tr-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    height: 100%;
    justify-content: flex-end;
}

.tr-bar {
    width: 100%;
    border-radius: 2px 2px 0 0;
    min-height: 0;
    transition: height 0.3s ease;
}

.tr-bar-chg { background: var(--accent); }
.tr-bar-int { background: var(--text-muted); }
.tr-bar-abs { background: var(--border); }
.tr-bar-staffing { background: var(--accent); }

.tr-bar-label {
    font-size: 0.55rem;
    color: var(--text);
    text-align: center;
    margin-top: 2px;
}

.tr-chart-axis {
    display: flex;
    gap: 3px;
    padding: 0.25rem 0.25rem 0;
}

.tr-chart-axis span {
    flex: 1;
    text-align: center;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.tr-chart-months {
    display: flex;
    gap: 3px;
    padding: 0 0.25rem;
}

.tr-chart-months span {
    flex: 1;
    text-align: center;
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* KPI Table */
.kpi-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.kpi-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    background: var(--bg-accent);
    color: var(--text);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    border-bottom: 2px solid var(--border);
}

.kpi-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    line-height: 1.6;
}

.kpi-table td ul {
    margin: 0.3rem 0 0.1rem;
    padding-left: 1.25rem;
    list-style: disc;
}

.kpi-table td li {
    margin-bottom: 0.2rem;
    line-height: 1.55;
}

.kpi-table td ul ul {
    margin-top: 0.15rem;
}

.kpi-table th:first-child {
    width: 30%;
}

.kpi-table td:first-child {
    font-weight: 500;
}

.kpi-table tbody tr:hover {
    background: var(--bg-light);
}

/* Verdict Column Styles */
.kpi-table th.verdict-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #e2e8f0;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.kpi-table td.verdict-cell {
    font-size: 0.82rem;
    line-height: 1.55;
    border-left: 3px solid var(--accent);
    padding: 0.65rem 0.85rem;
}

.verdict-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
}

.verdict-badge.verdict-met {
    background: #dcfce7;
    color: #166534;
}

.verdict-badge.verdict-partial {
    background: #fef9c3;
    color: #854d0e;
}

.verdict-badge.verdict-gap {
    background: #fee2e2;
    color: #991b1b;
}

.verdict-comparison {
    margin: 0.35rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.8rem;
}

.verdict-comparison li {
    margin-bottom: 0.35rem;
    padding-left: 0.1rem;
    line-height: 1.5;
}

.verdict-comparison li strong {
    color: var(--accent);
}

.verdict-comparison .sa-req,
.verdict-comparison .ssa-req {
    display: block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.25rem;
    font-size: 0.78rem;
}

.verdict-comparison .sa-req {
    background: #f1f5f9;
    border-left: 2px solid #94a3b8;
}

.verdict-comparison .ssa-req {
    background: #eff6ff;
    border-left: 2px solid #3b82f6;
}

.verdict-action {
    margin-top: 0.35rem;
    padding: 0.3rem 0.55rem;
    background: #fefce8;
    border-left: 2px solid #eab308;
    border-radius: 4px;
    font-size: 0.78rem;
    color: #713f12;
}

/* Promotion Readiness Summary */
.promo-readiness-summary {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.promo-readiness-summary h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.promo-meter {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.promo-meter-bar {
    flex: 1;
    height: 12px;
    background: var(--bg-accent);
    border-radius: 999px;
    overflow: hidden;
}

.promo-meter-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #86efac);
    transition: width 0.5s ease;
}

.promo-meter-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #166534;
    min-width: 48px;
    text-align: right;
}

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

.promo-verdict-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    background: var(--bg-card);
    font-size: 0.82rem;
    line-height: 1.45;
}

.promo-verdict-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.promo-verdict-item strong {
    color: var(--text);
}

.kpi-card {
    margin-bottom: 1.5rem;
}

.kpi-card:last-child {
    margin-bottom: 0;
}

.kpi-group-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-light);
}

/* KPI Edit Controls */
.kpi-row-remove-btn {
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    border: none;
    font-size: 0.75rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 5;
}

body.edit-mode .kpi-row-remove-btn {
    display: flex;
}

body.edit-mode .kpi-table tbody tr:hover .kpi-row-remove-btn {
    display: flex;
}

body.edit-mode .yearend-card[data-editable] {
    min-height: 100px;
    outline: 2px dashed var(--accent-light);
    outline-offset: -2px;
}

/* Snapshot Entries */
.snapshot-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Snapshot Overview Stats */
.snapshot-overview {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-accent);
    border-radius: 12px;
    border: 1px solid var(--border);
    align-items: flex-start;
    flex-wrap: wrap;
}

.snapshot-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.snapshot-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.snapshot-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.2rem;
}

.snapshot-stat-projects {
    flex: 1;
    align-items: flex-start;
    min-width: 200px;
}

.snapshot-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.snapshot-project-tag {
    font-size: 0.78rem;
    color: var(--text);
    background: var(--bg);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    white-space: nowrap;
}

.snapshot-entry {
    margin-bottom: 0;
}

.snapshot-entry:last-child {
    margin-bottom: 0;
}

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

.snapshot-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.snapshot-meta strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--text);
}

.snapshot-project {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-accent);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.snapshot-status {
    font-size: 0.7rem;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.snapshot-feedback {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.snapshot-feedback ul {
    margin: 0.3rem 0 0.4rem;
    padding-left: 1.25rem;
}

.snapshot-feedback li {
    margin-bottom: 0.2rem;
    line-height: 1.6;
}

.snapshot-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.snapshot-rating {
    font-size: 0.78rem;
    color: var(--text-muted);
    background: var(--bg-accent);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    line-height: 1.4;
}

.snapshot-rating strong {
    color: var(--accent);
}

.snapshot-pending {
    opacity: 0.6;
    border-style: dashed;
}

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

/* Year End Responsive */
@media (max-width: 768px) {
    .view-tabs {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .yearend-header h1 {
        font-size: 1.75rem;
    }

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

    .tr-kpi-tiles {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

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

    .tr-header {
        flex-direction: column;
        text-align: center;
    }

    .tr-header-right {
        justify-content: center;
    }

    .tr-overview-table {
        font-size: 0.7rem;
    }

    .tr-overview-table thead th {
        font-size: 0.6rem;
        padding: 0.35rem 0.3rem;
    }

    .kpi-table th:first-child {
        width: 40%;
    }

    .kpi-table td.verdict-cell,
    .kpi-table th.verdict-header {
        font-size: 0.75rem;
    }

    .verdict-comparison .sa-req,
    .verdict-comparison .ssa-req {
        font-size: 0.72rem;
    }

    .promo-verdict-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tr-kpi-tiles {
        grid-template-columns: 1fr 1fr;
    }

    .tr-tile-value {
        font-size: 1.2rem;
    }
}

/* ========================================
   AI CHATBOT — Expandable Bottom Bar
   ======================================== */

/* The single bar container — expands in place */
.chatbot-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 1000px;
    z-index: 9999;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: width 0.4s cubic-bezier(0.32, 0.72, 0, 1),
                max-width 0.4s cubic-bezier(0.32, 0.72, 0, 1),
                height 0.4s cubic-bezier(0.32, 0.72, 0, 1),
                border-radius 0.4s cubic-bezier(0.32, 0.72, 0, 1),
                box-shadow 0.4s ease;
    height: auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-bottom: none;
    box-shadow: 0 -4px 24px rgba(0, 102, 204, 0.25);
}

/* Expanded state — keep same width as collapsed bar */
body.chatbot-open .chatbot-bar {
    width: 70%;
    max-width: 1000px;
    height: 85vh;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
}

/* Bar header — always visible, acts as the collapsed trigger */
.chatbot-bar-header {
    background: linear-gradient(135deg, #0066cc 0%, #4f46e5 100%);
    padding: 0.95rem 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

[data-theme="dark"] .chatbot-bar-header {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}

.chatbot-bar-header:hover {
    filter: brightness(1.1);
}

.chatbot-bar-header-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.chatbot-bar-header-inner svg {
    color: #ffffff;
    flex-shrink: 0;
}

.chatbot-bar-header .chatbot-status {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Collapse button — only visible when expanded */
.chatbot-collapse-btn {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    transition: background 0.2s;
}

.chatbot-collapse-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

body.chatbot-open .chatbot-collapse-btn {
    display: flex;
}

/* Chat body — hidden when collapsed */
.chatbot-body {
    display: none;
    flex: 1;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

body.chatbot-open .chatbot-body {
    display: flex;
}

/* Overlay Backdrop */
.chatbot-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

body.chatbot-open .chatbot-overlay {
    display: block;
}

.chatbot-status {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.chatbot-status.connected {
    color: #10b981;
}

.chatbot-status.offline {
    color: #f59e0b;
}

/* Messages Area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
}

.chatbot-msg {
    display: flex;
    gap: 0.6rem;
    max-width: 95%;
    animation: chatMsgIn 0.3s ease;
}

@keyframes chatMsgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-msg-bot { align-self: flex-start; }
.chatbot-msg-user { align-self: flex-end; flex-direction: row-reverse; }

.chatbot-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark, #4f46e5));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.chatbot-msg-user .chatbot-msg-avatar {
    background: var(--bg-accent);
    color: var(--text);
}

.chatbot-msg-content {
    background: var(--bg-accent);
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    border-top-left-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text);
}

.chatbot-msg-user .chatbot-msg-content {
    background: var(--accent);
    color: #fff;
    border-top-left-radius: 12px;
    border-top-right-radius: 4px;
}

.chatbot-msg-content p { margin: 0 0 0.5rem 0; }
.chatbot-msg-content p:last-child { margin-bottom: 0; }
.chatbot-msg-content strong { font-weight: 600; }
.chatbot-msg-content em { font-style: italic; opacity: 0.85; }
.chatbot-msg-content code {
    background: rgba(0,0,0,0.06);
    padding: 0.1em 0.35em;
    border-radius: 4px;
    font-size: 0.82em;
    font-family: 'SF Mono', Menlo, monospace;
}
.chatbot-msg-content h3,
.chatbot-msg-content h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0.7rem 0 0.3rem 0;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.01em;
}
.chatbot-msg-content h3:first-child,
.chatbot-msg-content h4:first-child { margin-top: 0; }
.chatbot-msg-content h4 {
    font-size: 0.82rem;
    border-bottom: none;
    color: var(--accent);
}
.chatbot-msg-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0.6rem 0;
}
.chatbot-msg-content ul { margin: 0.3rem 0 0.5rem 0; padding-left: 1.2rem; }
.chatbot-msg-content li {
    margin-bottom: 0.3rem;
    line-height: 1.55;
}
.chatbot-msg-content li:last-child { margin-bottom: 0; }

/* Typing indicator */
.chatbot-typing {
    display: flex;
    gap: 4px;
    padding: 0.65rem 0.9rem;
    align-items: center;
}

.chatbot-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: chatTyping 1.4s ease-in-out infinite;
}

.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chatTyping {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* Suggestions */
.chatbot-suggestions {
    padding: 0.5rem 1.25rem;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.chatbot-suggestion {
    padding: 0.35rem 0.7rem;
    background: var(--bg-accent);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.chatbot-suggestion:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Input Area */
.chatbot-input-area {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
    flex-shrink: 0;
    align-items: flex-end;
}

.chatbot-input {
    flex: 1;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    background: var(--bg);
    color: var(--text);
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
    min-height: 56px;
    max-height: 120px;
    resize: none;
    line-height: 1.5;
    overflow-y: auto;
}

.chatbot-input:focus {
    border-color: var(--accent);
}

/* Voice / Mic button */
.chatbot-voice-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-accent);
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    align-self: flex-end;
}

.chatbot-voice-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.chatbot-voice-btn.listening {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
    animation: voicePulse 1.2s ease-in-out infinite;
}

@keyframes voicePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}

.chatbot-send {
    width: 38px;
    height: 38px;
    align-self: flex-end;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.chatbot-send:hover { opacity: 0.85; }
.chatbot-send:disabled { opacity: 0.5; cursor: not-allowed; }

/* Popup open — lock body scroll */
body.chatbot-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .chatbot-bar {
        width: 92%;
    }

    body.chatbot-open .chatbot-bar {
        width: 95%;
        max-width: none;
    }

    .chatbot-bar-header-inner span:first-of-type {
        font-size: 0.82rem;
    }
}

/* ============================
   Talent Standards Tables
   ============================ */
.ts-table {
    font-size: 0.85rem;
}

.ts-table th {
    font-size: 0.8rem;
    white-space: nowrap;
}

.ts-table td {
    vertical-align: top;
    font-size: 0.84rem;
}

.ts-category-row td {
    background: var(--bg-accent);
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    border-bottom: 2px solid var(--border);
}

.ts-pov-select {
    width: 100%;
    padding: 0.5rem 2.2rem 0.5rem 0.75rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background-color: var(--bg);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230066cc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    background-size: 14px;
    line-height: 1.4;
}

.ts-pov-select:hover {
    border-color: var(--accent);
    background-color: rgba(0, 102, 204, 0.03);
}

.ts-pov-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}

.ts-pov-select option[value="Disagree"] { color: #dc2626; }
.ts-pov-select option[value="Partially Agree"] { color: #d97706; }
.ts-pov-select option[value="Agree"] { color: #2563eb; }
.ts-pov-select option[value="Strongly Agree"] { color: #059669; }
.ts-pov-select option[value="Very Strongly Agree"] { color: #047857; font-weight: 600; }

/* Color the select itself based on current value — use background-color to preserve the arrow */
.ts-pov-select.pov-disagree { border-color: #fca5a5; background-color: #fef2f2; color: #dc2626; }
.ts-pov-select.pov-partially-agree { border-color: #fcd34d; background-color: #fffbeb; color: #d97706; }
.ts-pov-select.pov-agree { border-color: #93c5fd; background-color: #eff6ff; color: #2563eb; }
.ts-pov-select.pov-strongly-agree { border-color: #6ee7b7; background-color: #ecfdf5; color: #059669; }
.ts-pov-select.pov-very-strongly-agree { border-color: #34d399; background-color: #d1fae5; color: #047857; font-weight: 600; }

[data-theme="dark"] .ts-pov-select.pov-disagree { border-color: #991b1b; background-color: rgba(220, 38, 38, 0.1); color: #fca5a5; }
[data-theme="dark"] .ts-pov-select.pov-partially-agree { border-color: #92400e; background-color: rgba(217, 119, 6, 0.1); color: #fcd34d; }
[data-theme="dark"] .ts-pov-select.pov-agree { border-color: #1e40af; background-color: rgba(37, 99, 235, 0.1); color: #93c5fd; }
[data-theme="dark"] .ts-pov-select.pov-strongly-agree { border-color: #065f46; background-color: rgba(5, 150, 105, 0.1); color: #6ee7b7; }
[data-theme="dark"] .ts-pov-select.pov-very-strongly-agree { border-color: #047857; background-color: rgba(52, 211, 153, 0.15); color: #34d399; font-weight: 600; }

/* TS bullet list styling */
.ts-table td ul {
    margin: 0;
    padding-left: 1.1rem;
    list-style: disc;
}
.ts-table td ul li {
    padding: 0.15rem 0;
    line-height: 1.45;
}
.ts-table td ul li::marker {
    color: var(--accent);
}

/* TS Save Bar */
.ts-save-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 1.2rem;
    margin: 0.75rem 0 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1.5px solid #6ee7b7;
    border-radius: 10px;
    animation: tsSaveSlide 0.3s ease;
}
[data-theme="dark"] .ts-save-bar {
    background: linear-gradient(135deg, rgba(5,150,105,0.1) 0%, rgba(52,211,153,0.12) 100%);
    border-color: #065f46;
}
.ts-save-bar.visible {
    display: flex;
}
.ts-save-bar-text {
    font-size: 0.82rem;
    font-weight: 500;
    color: #065f46;
}
[data-theme="dark"] .ts-save-bar-text {
    color: #6ee7b7;
}
.ts-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.ts-save-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}
.ts-save-btn:active {
    transform: translateY(0);
}
@keyframes tsSaveSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Editable TS cells */
.ts-table td.ts-editable {
    cursor: text;
    position: relative;
    transition: background 0.15s, box-shadow 0.15s;
}
.ts-table td.ts-editable:hover {
    background: rgba(99, 102, 241, 0.04);
}
.ts-table td.ts-editable:focus {
    outline: none;
    background: rgba(99, 102, 241, 0.07);
    box-shadow: inset 0 0 0 2px var(--accent);
}
[data-theme="dark"] .ts-table td.ts-editable:hover {
    background: rgba(99, 102, 241, 0.08);
}
[data-theme="dark"] .ts-table td.ts-editable:focus {
    background: rgba(99, 102, 241, 0.12);
}
.ts-table td.ts-editable:empty::before {
    content: 'Click to add...';
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.5;
}

/* ============================
   Year End Tab Navigation
   ============================ */
.ye-tabs {
    display: flex;
    gap: 0.35rem;
    margin: 1.5rem 0 0;
    padding: 0.35rem 0.35rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: var(--bg-accent);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.ye-tabs::-webkit-scrollbar {
    display: none;
}
.ye-tab {
    padding: 0.6rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    background: transparent;
    border: none;
    border-radius: 9px;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.ye-tab:hover {
    color: var(--text);
    background: rgba(0, 102, 204, 0.06);
}
.ye-tab.active {
    color: var(--accent);
    background: var(--bg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}
[data-theme="dark"] .ye-tab.active {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Sub-tabs */
.ye-subtabs {
    display: none;
    gap: 0.25rem;
    padding: 0.55rem 0;
    margin: 0.75rem 0 1.2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-bottom: 1.5px solid var(--border);
}
.ye-subtabs::-webkit-scrollbar {
    display: none;
}
.ye-subtabs.active {
    display: flex;
}
.ye-subtab {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: 20px;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.ye-subtab:hover {
    color: var(--text);
    background: var(--bg-accent);
    border-color: var(--border);
}
.ye-subtab.active {
    color: var(--accent);
    background: var(--accent-light);
    border-color: var(--accent);
    font-weight: 600;
}

/* Panels */
.ye-panel {
    display: none;
}
.ye-panel.active {
    display: block;
    animation: yePanelFade 0.3s ease;
}
@keyframes yePanelFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .ye-tabs {
        gap: 0.2rem;
        padding: 0.25rem;
        border-radius: 10px;
    }
    .ye-tab {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
        border-radius: 7px;
    }
    .ye-subtab {
        padding: 0.35rem 0.75rem;
        font-size: 0.74rem;
    }
}

/* ========================================
   Upward Feedback Dashboard
   ======================================== */
.uf-dashboard {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    color: var(--text);
}

.uf-header {
    background: var(--bg-accent);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.uf-header-left h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.uf-header-left p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.uf-header-right {
    display: flex;
    gap: 2rem;
}

.uf-header-stat {
    text-align: center;
}

.uf-header-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.uf-header-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Section title */
.uf-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

/* Overall Rating Section */
.uf-overall {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.uf-overall-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2rem;
    align-items: center;
}

.uf-overall-score {
    text-align: center;
    padding: 1.25rem;
    background: var(--bg-accent);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.uf-big-score {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
}

.uf-big-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.35rem;
}

.uf-overall-bars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Rating bars (shared between overall & detail cards) */
.uf-rating-row {
    display: grid;
    grid-template-columns: 140px 1fr 50px;
    align-items: center;
    gap: 0.75rem;
}

.uf-rating-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: right;
    white-space: nowrap;
}

.uf-bar-track {
    height: 22px;
    background: var(--bg-accent);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.uf-bar-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.uf-bar-talent { background: #3b82f6; }
.uf-bar-self { background: #ef4444; }
.uf-bar-others { background: #84cc16; }
.uf-bar-all { background: #ec4899; }

.uf-rating-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Question Summary Grid */
.uf-summary-chart {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.uf-summary-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.uf-summary-item {
    display: grid;
    grid-template-columns: 1fr 44px minmax(0, 280px);
    align-items: center;
    gap: 0.6rem;
}

.uf-summary-bar-wrap {
    height: 18px;
    background: var(--bg-accent);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.uf-summary-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.uf-summary-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.uf-summary-label {
    font-size: 0.76rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Detailed Question Cards */
.uf-details {
    padding: 1.5rem;
}

.uf-question-card {
    background: var(--bg-accent);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

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

.uf-question-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem 0.75rem;
}

.uf-q-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--accent);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 50%;
}

.uf-q-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin: 0;
    padding-top: 0.15rem;
}

.uf-q-ratings {
    padding: 0.5rem 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.uf-q-comment {
    padding: 0.85rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.uf-comment-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    background: var(--bg-accent);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.4rem;
}

.uf-q-comment p {
    font-size: 0.84rem;
    color: var(--text);
    line-height: 1.65;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .uf-overall-grid {
        grid-template-columns: 1fr;
    }
    .uf-rating-row {
        grid-template-columns: 110px 1fr 44px;
    }
    .uf-summary-item {
        grid-template-columns: 1fr 40px 200px;
    }
    .uf-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .uf-header-right {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* ── Promotion Roadmap Styles ── */
.promo-hero-banner {
    background: linear-gradient(135deg, #86BC25 0%, #5a9a12 100%);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 8px 32px rgba(134, 188, 37, 0.2);
    margin-bottom: 2rem;
}

.promo-hero-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-hero-icon {
    font-size: 2rem;
}

.promo-hero-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.promo-hero-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.2rem;
}

.promo-hero-meta {
    display: flex;
    gap: 0.5rem;
}

.promo-meta-badge {
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.promo-meta-fy {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(4px);
}

.promo-meta-status {
    background: #fff;
    color: #5a9a12;
}

/* ── Deep Dive Pillar Cards ── */
.promo-deep-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
    transition: box-shadow 0.2s ease;
}

.promo-deep-card:hover {
    box-shadow: var(--shadow-lg);
}

.promo-deep-header {
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-deep-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.promo-deep-icon {
    font-size: 1.5rem;
}

.promo-deep-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.promo-deep-subtitle {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: 0.1rem;
}

/* Header gradients */
.promo-dh-prof { background: linear-gradient(135deg, #86BC25 0%, #5a9a12 100%); }
.promo-dh-mgr  { background: linear-gradient(135deg, #0076A8 0%, #005580 100%); }
.promo-dh-lead { background: linear-gradient(135deg, #ED8B00 0%, #c97600 100%); }

/* Joy Meter */
.promo-joy-meter {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.promo-joy-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.promo-joy-bar {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    overflow: hidden;
}

.promo-joy-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}

.promo-joy-high { background: #a8e063; }
.promo-joy-mid  { background: #FFD54F; }

.promo-joy-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    min-width: 32px;
}

/* Deep body */
.promo-deep-body {
    padding: 1.5rem;
    background: var(--bg);
}

.promo-deep-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

.promo-deep-col {
    min-width: 0;
}

.promo-col-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid;
}

.promo-col-required { color: var(--text-muted); border-color: var(--border); }
.promo-col-evidence { color: #2e7d32; border-color: #86BC25; }
.promo-col-develop  { color: #0076A8; border-color: #0076A8; }

.promo-deep-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.promo-deep-list li {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    background: var(--bg-light);
    border: 1px solid transparent;
    transition: border-color 0.15s;
}

.promo-deep-list li:hover {
    border-color: var(--border);
}

.promo-check {
    color: #2e7d32;
    font-weight: 700;
    margin-right: 0.35rem;
}

.promo-partial {
    color: #ED8B00;
    font-weight: 700;
    margin-right: 0.35rem;
}

.promo-arrow {
    color: #0076A8;
    font-weight: 700;
    margin-right: 0.35rem;
}

/* Reflection blocks */
.promo-deep-reflection {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.promo-deep-reflection p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

.promo-reflect-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.promo-reflect-happy  { background: #f0f9e8; border: 1px solid #c5e1a5; }
.promo-reflect-tension { background: #fff3e0; border: 1px solid #ffcc80; }
.promo-reflect-warm   { background: #fffde7; border: 1px solid #fff59d; }

[data-theme="dark"] .promo-reflect-happy  { background: rgba(134, 188, 37, 0.08); border-color: rgba(134, 188, 37, 0.2); }
[data-theme="dark"] .promo-reflect-tension { background: rgba(237, 139, 0, 0.08); border-color: rgba(237, 139, 0, 0.2); }
[data-theme="dark"] .promo-reflect-warm   { background: rgba(255, 245, 157, 0.06); border-color: rgba(255, 245, 157, 0.15); }

/* ── The Honest Truth Grid ── */
.promo-truth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

.promo-truth-card {
    border-radius: 14px;
    padding: 1.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-truth-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.promo-truth-emoji {
    font-size: 1.3rem;
}

.promo-truth-header h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.promo-truth-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.promo-truth-card li {
    font-size: 0.82rem;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    line-height: 1.45;
    color: var(--text);
}

.promo-truth-love {
    background: #f0f9e8;
}
.promo-truth-love li { background: rgba(255, 255, 255, 0.7); }

.promo-truth-tension {
    background: #fff8e1;
}
.promo-truth-tension li { background: rgba(255, 255, 255, 0.7); }

.promo-truth-resolve {
    background: #e8f4fd;
}
.promo-truth-resolve li { background: rgba(255, 255, 255, 0.7); }

[data-theme="dark"] .promo-truth-love    { background: rgba(134, 188, 37, 0.08); }
[data-theme="dark"] .promo-truth-tension { background: rgba(255, 193, 7, 0.08); }
[data-theme="dark"] .promo-truth-resolve { background: rgba(0, 118, 168, 0.08); }
[data-theme="dark"] .promo-truth-love li,
[data-theme="dark"] .promo-truth-tension li,
[data-theme="dark"] .promo-truth-resolve li { background: rgba(255, 255, 255, 0.05); }

.promo-truth-quote {
    margin-top: 1.5rem;
    text-align: center;
}

.promo-truth-quote blockquote {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--text-muted);
    font-style: italic;
    border: none;
    padding: 1rem 2rem;
    position: relative;
    display: inline-block;
}

.promo-truth-quote blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* ── Promotion Case Dual Layout ── */
.promo-case-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.promo-case-block {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.promo-case-block-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.promo-case-block-num {
    font-size: 1.5rem;
    font-weight: 700;
}

.promo-case-block-header h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.promo-case-done .promo-case-block-header {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.promo-case-future .promo-case-block-header {
    background: linear-gradient(135deg, #0076A8 0%, #005580 100%);
}

.promo-case-block-body {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--bg);
}

.promo-case-item {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.promo-case-cat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    display: block;
    margin-bottom: 0.3rem;
}

.promo-case-item p {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

/* ── Summary Table ── */
.promo-summary-table {
    background: var(--bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

.promo-summary-table th {
    background: var(--bg-accent);
    color: var(--text);
    padding: 0.85rem 1.25rem;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    border-bottom: 1.5px solid var(--border);
    white-space: nowrap;
}

.promo-summary-table td {
    padding: 0.85rem 1.25rem;
    font-size: 0.82rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.promo-summary-table tr:last-child td {
    border-bottom: none;
}

.promo-pillar-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
}

.promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.promo-dot-green  { background: #86BC25; }
.promo-dot-blue   { background: #0076A8; }
.promo-dot-orange { background: #ED8B00; }

.promo-readiness {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
}

.promo-ready-strong  { background: #e8f5e9; color: #2e7d32; }
.promo-ready-growing { background: #fff3e0; color: #e65100; }
.promo-ready-caution { background: #fff8e1; color: #f57f17; }

[data-theme="dark"] .promo-ready-strong  { background: rgba(46, 125, 50, 0.15); color: #81c784; }
[data-theme="dark"] .promo-ready-growing { background: rgba(230, 81, 0, 0.15); color: #ffb74d; }
[data-theme="dark"] .promo-ready-caution { background: rgba(245, 127, 23, 0.12); color: #ffd54f; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .promo-deep-columns {
        grid-template-columns: 1fr;
    }
    .promo-truth-grid {
        grid-template-columns: 1fr;
    }
    .promo-case-dual {
        grid-template-columns: 1fr;
    }
    .promo-hero-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .promo-summary-table {
        overflow-x: auto;
    }
}

@media (max-width: 600px) {
    .promo-hero-banner {
        padding: 1.25rem;
    }
    .promo-hero-content h2 {
        font-size: 1.15rem;
    }
    .promo-deep-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .promo-joy-meter {
        width: 100%;
    }
    .promo-joy-bar {
        flex: 1;
    }
    .promo-truth-quote blockquote {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
}


/* ── Whiteboard Mind Map Section ── */
.promo-whiteboard-section {
    margin-top: 3rem;
}
.promo-whiteboard-section .promo-section-header {
    margin-bottom: 2rem;
}
.promo-whiteboard-section .promo-section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.promo-whiteboard-section .promo-section-subtitle {
    color: var(--text);
    opacity: 0.65;
    font-size: 0.95rem;
}

.wb-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Photo frame */
.wb-photo-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--bg);
    max-width: 800px;
    margin: 0 auto;
}
.wb-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.wb-photo-caption {
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    color: var(--text);
    opacity: 0.5;
    font-style: italic;
    background: var(--bg);
}

/* Digitized mind map */
.wb-mindmap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}
.wb-node-center {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(134, 90, 226, 0.12), rgba(59, 130, 246, 0.12));
    border: 2px solid rgba(134, 90, 226, 0.3);
    border-radius: 50%;
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(134, 90, 226, 0.15);
}
[data-theme="dark"] .wb-node-center {
    background: linear-gradient(135deg, rgba(134, 90, 226, 0.2), rgba(59, 130, 246, 0.2));
    border-color: rgba(134, 90, 226, 0.4);
}
.wb-node-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}
.wb-node-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}
.wb-node-sub {
    font-size: 0.75rem;
    opacity: 0.5;
    color: var(--text);
}

/* Branch cards */
.wb-branch {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wb-branch:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.wb-branch-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid transparent;
}
.wb-branch-icon {
    font-size: 1.4rem;
}
.wb-branch-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

/* Branch accent colors */
.wb-branch-professional .wb-branch-header { border-color: #22c55e; }
.wb-branch-manager .wb-branch-header { border-color: #3b82f6; }
.wb-branch-leadership .wb-branch-header { border-color: #f59e0b; }

.wb-branch-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.wb-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.wb-item-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}
.wb-dot-green { background: #22c55e; }
.wb-dot-blue { background: #3b82f6; }
.wb-dot-orange { background: #f59e0b; }

.wb-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.15rem;
}
.wb-item p {
    font-size: 0.8rem;
    color: var(--text);
    opacity: 0.65;
    line-height: 1.4;
    margin: 0;
}
.wb-item-star {
    position: relative;
}
.wb-item-star::before {
    content: '\2605';
    position: absolute;
    right: 0;
    top: 0;
    color: #f59e0b;
    font-size: 0.85rem;
}

/* Questions row */
.wb-questions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.wb-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.wb-q-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #865ae2, #3b82f6);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.wb-question h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.3rem;
}
.wb-question p {
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.6;
    line-height: 1.4;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .wb-mindmap {
        grid-template-columns: 1fr;
    }
    .wb-node-center {
        width: 130px;
        height: 130px;
    }
    .wb-questions {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .wb-node-center {
        width: 110px;
        height: 110px;
    }
    .wb-node-label {
        font-size: 0.95rem;
    }
    .wb-branch {
        padding: 1rem;
    }
}
