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

:root {
    /* Primary */
    --primary: #440099;
    --primary-dark: #350077;
    
    /* Secondary */
    --secondary-purple: #ECE3FF;
    --secondary-yellow: #FFFBEE;
    --secondary-blue: #F2F5FF;
    
    /* Highlights */
    --dark-blue: #0C1A3D;
    --light-cyan: #E7FCFF;
    --teal: #33BBC3;
    --light-pink: #FFEBEA;
    --coral: #F8848C;
    --yellow: #FFD643;
    
    /* Headline highlights */
    --highlight-light-1: #9068FE;
    --highlight-light-2: #4E71DE;
    --highlight-dark-1: #B69BFF;
    --highlight-dark-2: #7CB1FF;
    
    /* UI */
    --secondary: #0C1A3D;
    --bg-light: #F2F5FF;
    --bg-alt: #ECE3FF;
    --text: #0C1A3D;
    --text-light: #64748b;
    --white: #ffffff;
    --success: #33BBC3;
    --warning: #FFD643;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(68, 0, 153, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(68, 0, 153, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-light);
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1600px;
    padding: 0 1.5rem;
}

.container--wide {
    max-width: 1200px;
    padding-left: 1rem;
    padding-right: 1rem;
}


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

.alt-bg {
    background: var(--bg-alt);
}

/* Hero / Intro */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.nh-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.nh-badge img {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.provet-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero .tagline {
    color: var(--white);
}

.date-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.tagline {
    margin-top: 2rem;
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Section Headers */
h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.impact-headline {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0 0 2rem;
}

/* Curved Dashed Road */
.road-wrapper {
    padding: 2rem 0;
    max-width: 100%;
}

.road-container {
    position: relative;
    margin: 0 auto;
    padding: 2rem 6rem;
    width: 100%;
    max-width: 1400px;
    height: 340px;
}

.road-path {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    transform: translateY(-50%);
}

.road-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 6;
    stroke-dasharray: 20, 12;
    stroke-linecap: round;
}

.road-stop {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 2;
}

.road-stop.above {
    flex-direction: column-reverse;
}

.road-stop:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.stop-marker {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.stop-icon {
    font-size: 1.6rem;
}

.stop-sign {
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 150px;
    border-bottom: 4px solid var(--primary);
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom: 0.5rem;
}

.road-stop:not(.above) .stop-sign {
    border-bottom: none;
    border-top: 4px solid var(--primary);
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.road-stop:hover .stop-sign {
    box-shadow: var(--shadow-lg);
}

.stop-number {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0.25rem;
}

.stop-title {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.stop-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.road-start,
.road-end {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--teal);
    color: var(--dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 1;
}

.road-start {
    left: 0;
}

.road-end {
    right: 0;
    background: var(--primary);
    color: var(--white);
}

/* Responsive Curved Road */
@media (max-width: 900px) {
    .road-container {
        padding: 2rem 2rem;
        height: 280px;
    }
    
    .stop-marker {
        width: 46px;
        height: 46px;
    }
    
    .stop-icon {
        font-size: 1.3rem;
    }
    
    .stop-sign {
        min-width: 110px;
        padding: 0.5rem 0.75rem;
    }
    
    .stop-title {
        font-size: 0.8rem;
    }
    
    .stop-desc {
        font-size: 0.65rem;
    }
}

/* Accomplishments */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.onboarding-text {
    text-align: center;
    color: var(--secondary);
    font-size: 1.1rem;
    margin: 0 0 2rem;
}

.subsection-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin: 2rem 0 1rem;
    text-align: center;
}

/* All four accomplishment subsection titles: same font, size, style as "Tools that I developed..." */
.accomplishments-subsection-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin: 2rem 0 1rem;
    text-align: center;
    font-weight: 700;
    font-family: inherit;
}

.onboarding-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.frameworks-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0 0 1rem;
}

.frameworks-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Migration Cards */
.migrations-deck {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.migration-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.migration-flag {
    font-size: 1.8rem;
    line-height: 1;
}

.migration-info {
    flex: 1;
    min-width: 0;
}

.migration-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.migration-tool {
    font-size: 0.8rem;
    color: var(--primary);
    background: var(--secondary-purple);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.25rem;
}

/* Tools List */
.tools-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.tool-item {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    transition: background 0.2s, color 0.2s;
}

.tool-item:hover {
    background: var(--primary);
}

.tool-item:hover .tool-name {
    color: var(--white);
}

.tool-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
}

.placeholder {
    opacity: 0.6;
    border-style: dashed;
}

/* Growth Section - 3 cards in one row */
.growth-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.growth-card {
    min-width: 0;
    min-height: 400px;
    background: var(--white);
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: var(--shadow);
    text-align: center;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.growth-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-purple);
}

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

.growth-image {
    margin-bottom: 0.75rem;
}

.growth-caption-accent {
    color: var(--primary);
    font-weight: 600;
}

.growth-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.growth-text {
    min-width: 0;
    overflow-wrap: break-word;
}

.growth-text h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.degree-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.15rem;
}

.specialisation {
    font-size: 0.85rem;
    color: var(--highlight-light-1);
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.university {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.degree-dates {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Responsive Growth */
@media (max-width: 900px) {
    .growth-columns {
        grid-template-columns: 1fr;
    }
}

/* Values */
.velocity-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    overflow: visible;
}

.velocity-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.formula {
    font-family: 'Courier New', monospace;
    opacity: 0.9;
    color: var(--white);
    overflow: visible;
}

.formula-term {
    position: relative;
    cursor: default;
    text-decoration: underline;
    text-decoration-style: dotted;
}

.formula-term-note {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: 280px;
    padding: 0.75rem 1rem;
    background: var(--dark-blue);
    color: var(--white);
    font-size: 0.8rem;
    line-height: 1.4;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    text-align: left;
    font-family: inherit;
    white-space: normal;
}

.formula-term:hover .formula-term-note {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.values-grid .migration-card {
    flex: 0 0 220px;
    min-width: 220px;
    max-width: 280px;
}

.values-grid .migration-name {
    white-space: normal;
    line-height: 1.3;
}

.value-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.value-card > p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Value example sections (same template as AI in Action) */
.value-example-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.value-example-section h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-purple);
}

.value-example-card {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px dashed var(--border);
}

.value-example-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-example-card p {
    color: var(--text);
    margin-bottom: 1rem;
}

.value-example-list {
    list-style: disc;
    padding-left: 1.25rem;
    color: var(--text);
    margin: 0;
}

.value-example-list > li {
    margin-bottom: 1rem;
}

.value-example-list > li:last-child {
    margin-bottom: 0;
}

.value-example-list ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.35rem;
    font-weight: normal;
}

.value-example-list ul li {
    margin-bottom: 0.25rem;
    font-weight: normal;
}

.value-example-list strong {
    font-weight: 700;
}

.value-example-list u {
    text-decoration: underline;
    font-weight: normal;
}

.value-example-list strong u {
    text-decoration: underline;
    font-weight: 700;
}

.value-example-list-divider {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.value-example-image {
    background: var(--border);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
}

/* AI Section */
.ai-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.ai-section h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.ai-section > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.mcp-card {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px dashed var(--border);
}

.mcp-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.mcp-image-placeholder {
    background: var(--border);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Feedback */
.feedback-columns {
    display: flex;
    justify-content: center;
}

.feedback-column {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 800px;
}

.feedback-column h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.reflection-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reflection-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    background: var(--bg-alt);
    transition: transform 0.2s, box-shadow 0.2s;
}

.reflection-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.reflection-item .emoji {
    font-size: 1.25rem;
}

.reflection-item .text {
    color: var(--text);
}

.reflection-item.positive {
    border-left: 3px solid var(--teal);
}

.reflection-item.improvement {
    border-left: 3px solid var(--coral);
}

.reflection-item-secondary {
    background: #e2d9f5;
    border-left: 3px solid var(--teal);
}

.manager-feedback {
    border: 2px solid var(--primary);
}

.feedback-invite {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.feedback-prompt {
    text-align: center;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: 8px;
}

.feedback-prompt p {
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    background: var(--dark-blue);
    color: var(--white);
}

.footer p {
    color: var(--white);
}

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-nh-logo {
    height: 1.25em;
    width: auto;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .growth-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .growth-image {
        order: -1;
    }
    
    .feedback-columns {
        max-width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}
