:root {
    --primary-color: #0F766E;
    --secondary-color: #5EEAD4;
    --accent-color: #FB7185;
    --background-color: #F8FAFC;
    --text-color: #0F172A;
    --text-secondary: #475569;
    --muted: #94A3B8;
    --white: #FFFFFF;
    --gray: #475569;
    --light-gray: #E5E7EB;
    --border: #E5E7EB;
    --card-bg: #FFFFFF;
}

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

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    scroll-behavior: smooth;
}

input,
textarea,
select {
    max-width: 100%;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.brand-logo {
    display: block;
    width: auto;
}

.brand-logo--hero {
    height: 72px;
}

.brand-logo--nav {
    height: 64px;
}

body.page-is-exiting {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-shell-header {
    text-align: left;
}

.page-shell-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
}

.page-shell-header-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
}

.page-shell-header h2,
.page-shell-header p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .page-shell-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Header */
header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.student-header {
    padding: 1rem 1rem 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 20%),
        linear-gradient(110deg, #0f766e 0%, #14b8a6 52%, #5eead4 100%);
    position: relative;
    z-index: 40;
}

.student-nav {
    padding: 0 0 0.35rem;
    background: transparent;
    color: var(--text-color);
}

.student-nav .container {
    max-width: 1520px;
    padding: 1rem 1.2rem;
    background: rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.student-brand,
.company-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.student-badge,
.company-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.student-badge {
    padding: 0.35rem 0.8rem;
    letter-spacing: 0.08em;
    color: #ccfbf1;
    border: 1px solid rgba(204, 251, 241, 0.35);
    background: rgba(15, 23, 42, 0.2);
}

.student-nav .nav-btn-primary {
    border-color: rgba(204, 251, 241, 0.32) !important;
    background: rgba(15, 23, 42, 0.14) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
}

.student-nav .nav-btn-primary.active,
.student-nav .nav-btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.72) !important;
    background: rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

.company-header {
    background: linear-gradient(110deg, #0f172a 0%, #1d4ed8 52%, #0ea5e9 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
    position: relative;
    z-index: 40;
}

.company-nav {
    padding: 0.75rem 0;
}

.company-badge {
    padding: 0.25rem 0.65rem;
    letter-spacing: 0.06em;
    color: #dbeafe;
    border: 1px solid rgba(219, 234, 254, 0.35);
    background: rgba(15, 23, 42, 0.35);
}

.company-header .nav-btn-primary {
    border-color: rgba(219, 234, 254, 0.45) !important;
    background: rgba(15, 23, 42, 0.2) !important;
}

.company-header .nav-btn-primary.active,
.company-header .nav-btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.75) !important;
    background: rgba(255, 255, 255, 0.18) !important;
}

nav {
    padding: 1rem 0;
    position: relative;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

nav h1 {
    margin: 0;
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 968px) {
    .student-nav,
    .company-nav,
    nav .container {
        overflow: visible;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.12);
        border: 1.5px solid rgba(255, 255, 255, 0.28);
        border-radius: 8px;
        backdrop-filter: blur(8px);
        font-size: 1.25rem;
        transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        z-index: 220;
    }

    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.22);
        border-color: rgba(255, 255, 255, 0.5);
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        position: absolute;
        top: calc(100% + 10px);
        right: 12px;
        left: auto;
        width: min(320px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        max-height: min(70vh, 520px);
        box-sizing: border-box;
        padding: 0.55rem 0.5rem;
        background: linear-gradient(145deg, rgba(10, 89, 82, 0.98) 0%, rgba(7, 65, 60, 0.98) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        box-shadow:
            0 12px 40px rgba(0, 0, 0, 0.35),
            0 4px 12px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
        z-index: 230;
        overflow-y: auto;
        overscroll-behavior: contain;

        /* Estado oculto — animación de entrada */
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px) scale(0.96);
        pointer-events: none;
        transition:
            opacity 0.22s ease,
            transform 0.22s ease,
            visibility 0s linear 0.22s;
    }

    nav ul.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        transition:
            opacity 0.22s ease,
            transform 0.22s ease,
            visibility 0s linear 0s;
    }

    nav ul li {
        width: auto;
    }

    .nav-btn {
        width: 100% !important;
        white-space: nowrap !important;
        justify-content: flex-start !important;
        font-size: 0.88rem !important;
        padding: 0.5rem 0.85rem !important;
    }

    .student-header {
        padding: 0.8rem 0.8rem 0;
    }

    .student-nav .container {
        padding-right: 4.4rem;
    }

    .student-menu-toggle {
        background: rgba(15, 23, 42, 0.2);
        border-color: rgba(204, 251, 241, 0.35);
        color: #ffffff;
    }

    .student-nav #mobile-menu {
        background: linear-gradient(145deg, rgba(11, 89, 81, 0.98) 0%, rgba(13, 148, 136, 0.98) 100%);
        border: 1px solid rgba(204, 251, 241, 0.16);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
    }

    .company-menu-toggle {
        background: rgba(15, 23, 42, 0.42);
        border-color: rgba(219, 234, 254, 0.45);
        color: #fff;
    }

    .company-header #company-mobile-menu {
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 64, 175, 0.98) 100%);
    }
}

@media (max-width: 640px) {
    .student-header,
    .company-header {
        z-index: 60;
    }

    .brand-logo--nav {
        height: 56px;
    }

    .student-badge,
    .company-badge {
        display: none;
    }
}

/* Premium Navigation Buttons - Professional Styling */
.nav-btn {
    display: flex !important;
    align-items: center;
    padding: 0.65rem 1.1rem !important;
    border-radius: 6px !important;
    margin: 0 !important;
    font-weight: 500 !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    border: 1.5px solid transparent !important;
    position: relative;
    letter-spacing: 0.3px;
}

/* Primary Navigation Buttons (Ghost style) */
.nav-btn-primary {
    color: var(--white) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
}

.nav-btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateX(2px) !important;
    color: var(--white) !important;
}

.nav-btn-primary:active {
    transform: translateX(0) !important;
}

/* Logout Button (CTA) - Premium Red */
.nav-btn-logout {
    background: linear-gradient(135deg, #FB7185 0%, #FB923C 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(251, 113, 133, 0.25);
    border: none !important;
    font-weight: 600;
}

.nav-btn-logout:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(251, 113, 133, 0.35) !important;
    color: var(--white) !important;
}

.nav-btn-logout:active {
    transform: translateY(0) !important;
}

/* Keep backward compatibility with logout-btn class */
.logout-btn {
    display: flex !important;
    align-items: center;
    padding: 0.65rem 1.1rem !important;
    background: linear-gradient(135deg, #FB7185 0%, #FB923C 100%) !important;
    color: var(--white) !important;
    border-radius: 6px !important;
    margin: 0 !important;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 15px rgba(251, 113, 133, 0.25);
    border: none !important;
}

.logout-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(251, 113, 133, 0.35) !important;
    color: var(--white) !important;
}

.logout-btn:active {
    transform: translateY(0) !important;
}

/* Logout Modal */
.logout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.logout-modal.active {
    opacity: 1;
}

.logout-modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logout-modal.active .logout-modal-content {
    transform: scale(1);
}

.logout-modal-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logout-modal-header svg {
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logout-modal-content h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.logout-modal-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.logout-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.logout-btn-cancel,
.logout-btn-confirm {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    min-width: 120px;
}

.logout-btn-cancel {
    background-color: var(--light-gray);
    color: var(--text-color);
}

.logout-btn-cancel:hover {
    background-color: #D1D5DB;
    transform: translateY(-2px);
}

.logout-btn-confirm {
    background: linear-gradient(135deg, #FB7185 0%, #FB923C 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(251, 113, 133, 0.3);
}

.logout-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 113, 133, 0.4);
}

.logout-btn-confirm:active {
    transform: translateY(0);
}

.logout-modal.logging-out .logout-modal-content {
    animation: fadeOutUp 0.3s ease-out forwards;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
}

/* Marketing Pages */
.marketing-page {
    background:
        radial-gradient(circle at top left, rgba(94, 234, 212, 0.14), transparent 22%),
        linear-gradient(180deg, #ecfdf5 0%, #f8fafc 28%, #f8fafc 100%);
}

.marketing-page main {
    padding: 0;
}

.marketing-page section {
    padding: 0;
}

.marketing-header {
    padding: 1rem 1rem 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 20%),
        linear-gradient(110deg, #0f766e 0%, #14b8a6 52%, #5eead4 100%);
}

.marketing-nav {
    padding: 0 0 0.35rem;
    background: transparent;
}

.marketing-nav .container {
    max-width: 1520px;
    padding: 1rem 1.2rem;
    background: rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.marketing-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.marketing-nav ul {
    gap: 0.75rem;
    align-items: center;
}

.marketing-nav ul a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.marketing-nav ul a:hover,
.marketing-nav ul a.active-link {
    opacity: 1;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.marketing-nav-login {
    border-color: rgba(255, 255, 255, 0.34) !important;
    background: rgba(15, 23, 42, 0.3) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 24px rgba(15, 23, 42, 0.12);
}

.marketing-nav-cta {
    color: var(--primary-color) !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.marketing-nav-cta:hover {
    color: var(--primary-color) !important;
    background: #f0fdfa !important;
}

.marketing-main {
    display: block;
}

.hero-home {
    padding: 2.25rem 0 4.5rem;
}

.hero-home .container,
.home-value-strip .container,
.home-audience-section .container,
.home-platform-section .container,
.home-journey-section .container,
.home-social-proof .container {
    width: min(1240px, 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 1.25rem;
    align-items: stretch;
}

.hero-copy,
.hero-visual {
    min-width: 0;
}

.hero-copy {
    padding: 1rem 0;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-home h2 {
    margin: 1rem 0 0.85rem;
    font-size: clamp(2.8rem, 5.2vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    text-align: left;
    color: #ffffff;
    max-width: 11ch;
}

.hero-home p {
    margin: 0;
    max-width: 58ch;
    font-size: 1.06rem;
    line-height: 1.72;
    color: rgba(240, 253, 250, 0.9);
    text-align: left;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(15, 23, 42, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-secondary-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.42);
}

.hero-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.6rem;
}

.hero-proof-list span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(204, 251, 241, 0.28);
    color: #ecfeff;
    font-size: 0.86rem;
    font-weight: 600;
}

.hero-visual {
    display: grid;
    gap: 1rem;
}

.hero-showcase {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-showcase-primary {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.94);
}

.hero-showcase-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(15, 23, 42, 0.2);
    color: #ffffff;
}

.hero-showcase-label,
.hero-showcase-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-showcase-label {
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary-color);
}

.hero-showcase-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #ccfbf1;
}

.hero-showcase h3 {
    margin: 1rem 0 0.45rem;
    font-size: 1.7rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.hero-showcase p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.hero-showcase-secondary p {
    color: rgba(240, 253, 250, 0.92);
    max-width: 28ch;
}

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

.hero-mini-stats div {
    padding: 0.95rem;
    border-radius: 20px;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}

.hero-mini-stats strong {
    display: block;
    margin-bottom: 0.28rem;
    font-size: 1rem;
    color: #f8fafc;
}

.hero-mini-stats span {
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.85rem;
    line-height: 1.45;
}

.home-value-strip {
    padding: 0.35rem 0 1.4rem;
}

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

.value-pill {
    padding: 1rem 1.15rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
}

.value-pill strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #0f172a;
    font-size: 1rem;
}

.value-pill span {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.55;
}

.home-audience-section,
.home-platform-section,
.home-journey-section,
.home-social-proof {
    padding: 5.4rem 0;
}

.home-audience-section-students {
    background: transparent;
    padding-top: 6rem;
    padding-bottom: 6.15rem;
}

.home-audience-section-companies {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
    padding-top: 6rem;
    padding-bottom: 6.15rem;
}

.home-platform-section {
    background: #ffffff;
}

.home-journey-section {
    background: linear-gradient(160deg, #0f172a 0%, #111827 100%);
}

.home-journey-section .section-kicker,
.home-social-proof .section-kicker {
    background: rgba(15, 118, 110, 0.1);
}

.home-journey-section .container,
.home-social-proof .container,
.home-platform-section .container,
.home-audience-section .container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-audience-section .container {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.home-platform-section .container,
.home-journey-section .container,
.home-social-proof .container,
.home-value-strip .container {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.home-social-proof {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.home-section-head {
    text-align: center;
    padding-top: 0.4rem;
    margin-bottom: 3rem;
}

.home-audience-section .home-section-head {
    margin-bottom: 3.35rem;
}

.home-platform-section .home-section-head,
.home-social-proof .home-section-head {
    margin-bottom: 3.15rem;
}

.home-section-head .section-kicker {
    margin-bottom: 0.95rem;
}

.home-section-head h2 {
    margin: 0 auto 0.9rem;
    max-width: 14ch;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.home-section-head .section-intro {
    margin: 0 auto;
    max-width: 60ch;
    color: #475569;
    font-size: 1rem;
    line-height: 1.72;
}

.home-journey-section .home-section-head {
    padding-top: 0;
    margin-bottom: 3.1rem;
}

.home-journey-section .home-section-head h2 {
    color: #ffffff;
    max-width: 13ch;
}

.home-journey-section .home-section-head .section-intro {
    color: rgba(226, 232, 240, 0.8);
}

.section-kicker-dark {
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
}

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

.home-audience-section .feature-cards-home {
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
}

.home-platform-section .feature-cards-home {
    margin-top: 0.25rem;
    margin-bottom: 0.45rem;
}

.home-card {
    position: relative;
    overflow: hidden;
    padding: 1.55rem;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
    text-align: left;
}

.home-card::after {
    content: "";
    position: absolute;
    inset: auto 1.55rem 1rem;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f766e 0%, #5eead4 100%);
    opacity: 0.88;
}

.home-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 118, 110, 0.16);
}

.home-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    margin-bottom: 1rem;
    background: rgba(15, 118, 110, 0.1);
    font-size: 1.55rem;
}

.home-card h3 {
    margin: 0 0 0.45rem;
    color: #0f172a;
    font-size: 1.22rem;
    line-height: 1.25;
}

.home-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.68;
}

.home-card-visual {
    align-items: flex-start;
}

.home-card-visual img {
    height: 66px;
    margin-bottom: 1rem;
}

.home-step {
    padding: 1.9rem 1.45rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-step span {
    width: 56px;
    height: 56px;
    line-height: 56px;
    background: rgba(94, 234, 212, 0.14);
    color: #ccfbf1;
}

.home-step h3 {
    color: #ffffff;
}

.home-step p {
    color: rgba(226, 232, 240, 0.82);
}

.home-journey-section .steps {
    align-items: stretch;
    margin-top: 0.4rem;
    margin-bottom: 0.35rem;
}

.home-social-proof .testimonial-cards {
    margin-top: 0.2rem;
    margin-bottom: 0.6rem;
}

.testimonial-card {
    min-height: 100%;
}

.testimonial-card p {
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
}

.home-final-cta {
    margin-top: 2.4rem;
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(94, 234, 212, 0.08));
    border: 1px solid rgba(15, 118, 110, 0.14);
    text-align: center;
}

.home-final-cta h3 {
    margin: 0 0 1rem;
    color: #0f172a;
    font-size: 1.5rem;
    line-height: 1.3;
}

.public-footer {
    background: #0f172a;
    color: #ffffff;
    padding: 2rem 0;
}

.public-footer .container {
    width: min(1240px, 100%);
}

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

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #0D9488;
    transform: translateY(-2px);
}

/* Main Content */
main {
    padding: 4rem 0;
}

section {
    padding: 4rem 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Features Section */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.card img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--white);
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    text-align: center;
}

.step span {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonial-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonials .card {
    text-align: left;
}

.testimonials .card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonials .card span {
    font-weight: 600;
    color: var(--primary-color);
}


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

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

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        width: 100%;
    }

    nav h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        gap: 1rem;
    }

    footer ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Dashboard responsive */
    .dashboard-layout {
        flex-direction: column;
        padding: 1rem;
    }

    .dashboard-sidebar.left,
    .dashboard-sidebar.right {
        width: 100%;
        margin-bottom: 1rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .main-content-grid {
        grid-template-columns: 1fr;
    }

    /* Auth pages responsive */
    .auth-container {
        padding: 1rem;
    }

    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-aside {
        padding: 1.8rem 1.5rem;
    }

    .auth-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .auth-card h2 {
        font-size: 1.5rem;
    }

    .marketing-nav .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        align-items: center;
        padding-right: 4.6rem;
    }

    .marketing-nav #mobile-menu {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        order: 3;
        width: 100%;
        max-width: none;
        max-height: 0;
        margin-top: 0;
        padding: 0;
        gap: 0.55rem;
        border-radius: 24px;
        background: #0b5f58 !important;
        background-image: none !important;
        background-color: #0b5f58 !important;
        border: 0 solid transparent;
        box-shadow:
            0 24px 54px rgba(15, 23, 42, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        z-index: 120;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 1 !important;
        overflow: hidden;
        isolation: isolate;
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        transform: none;
        transition:
            opacity 0.2s ease,
            max-height 0.25s ease,
            margin-top 0.25s ease,
            padding 0.25s ease,
            border-width 0.25s ease;
    }

    .marketing-nav #mobile-menu.active {
        max-height: 520px;
        margin-top: 0.9rem;
        padding: 0.8rem;
        border-width: 1px;
        border-color: #167f76;
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
    }

    .marketing-nav #mobile-menu li {
        width: 100%;
    }

    .marketing-nav #mobile-menu a {
        width: 100%;
        display: flex !important;
        flex: 0 0 auto;
        min-height: 50px;
        justify-content: flex-start;
        padding: 0.85rem 1rem !important;
        text-align: left;
        border-radius: 16px;
        background: #257c75 !important;
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        position: relative;
        z-index: 1;
    }

    .marketing-nav #mobile-menu a:hover,
    .marketing-nav #mobile-menu a.active-link {
        background: #2b8880 !important;
        border-color: rgba(255, 255, 255, 0.24);
        transform: translateY(-1px);
    }

    .marketing-nav #mobile-menu .marketing-nav-cta {
        width: 100% !important;
        background: #ffffff !important;
        border-color: #ffffff !important;
        color: var(--primary-color) !important;
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
        justify-content: center;
        text-align: center;
        padding: 0.95rem 1rem !important;
        min-height: 54px;
        font-weight: 800 !important;
    }

    .marketing-nav #mobile-menu .marketing-nav-login {
        width: 100% !important;
        background: #124944 !important;
        border-color: rgba(204, 251, 241, 0.3) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 10px 22px rgba(15, 23, 42, 0.18);
        justify-content: center;
        text-align: center;
        padding: 0.95rem 1rem !important;
        min-height: 54px;
        font-weight: 800 !important;
    }
}

@media (max-width: 480px) {
    nav h1 {
        font-size: 1.25rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.25rem;
    }

    .form-grid-two {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .account-type-toggle {
        gap: 0.5rem;
    }

    .toggle-option {
        padding: 0.85rem 0.6rem;
    }

    .auth-card {
        padding: 1.5rem 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Auth Pages */
.auth-container {
    --auth-accent: #0f766e;
    --auth-accent-strong: #0b5d57;
    --auth-accent-soft: #5eead4;
    --auth-accent-rgb: 15, 118, 110;
    --auth-link: #0f766e;
    --auth-surface-tint: #f0fdfa;
    --auth-text-soft: rgba(236, 254, 255, 0.88);
    --auth-point-text: rgba(236, 254, 255, 0.76);
    --auth-icon-bg: rgba(204, 251, 241, 0.14);
    --auth-card-top: linear-gradient(90deg, #0f766e 0%, #5eead4 100%);
    min-height: 100vh;
    padding: 2rem;
    background:
        radial-gradient(circle at top left, rgba(94, 234, 212, 0.14), transparent 22%),
        linear-gradient(135deg, #0a4f48 0%, #0f766e 38%, #0d9488 70%, #5eead4 100%);
}

.auth-container.company-mode {
    --auth-accent: #1d4ed8;
    --auth-accent-strong: #0f172a;
    --auth-accent-soft: #60a5fa;
    --auth-accent-rgb: 29, 78, 216;
    --auth-link: #1d4ed8;
    --auth-surface-tint: #eff6ff;
    --auth-text-soft: rgba(219, 234, 254, 0.9);
    --auth-point-text: rgba(219, 234, 254, 0.78);
    --auth-icon-bg: rgba(191, 219, 254, 0.16);
    --auth-card-top: linear-gradient(90deg, #0f172a 0%, #1d4ed8 54%, #60a5fa 100%);
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 24%),
        linear-gradient(135deg, #0f172a 0%, #1d4ed8 48%, #0ea5e9 100%);
}

.auth-shell {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.auth-aside {
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(160deg, rgba(8, 59, 55, 0.96) 0%, rgba(11, 95, 88, 0.94) 100%);
}

.auth-container.company-mode .auth-aside {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(160deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 64, 175, 0.94) 62%, rgba(14, 165, 233, 0.86) 100%);
}

.auth-aside::after {
    content: "";
    position: absolute;
    inset: auto -10% -12% auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.22), transparent 72%);
    pointer-events: none;
}

.auth-container.company-mode .auth-aside::after {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.24), transparent 72%);
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    text-decoration: none;
}

.auth-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--auth-text-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-aside h1 {
    margin: 1rem 0 0.85rem;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.auth-aside p {
    margin: 0;
    max-width: 34ch;
    color: var(--auth-text-soft);
    font-size: 1rem;
    line-height: 1.72;
}

.auth-aside-points {
    display: grid;
    gap: 0.9rem;
    margin-top: 2rem;
}

.auth-aside-point {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-aside-point strong {
    display: block;
    margin-bottom: 0.18rem;
    color: #ffffff;
    font-size: 0.96rem;
}

.auth-aside-point span {
    color: var(--auth-point-text);
    font-size: 0.88rem;
    line-height: 1.5;
}

.auth-aside-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--auth-icon-bg);
    font-size: 1.1rem;
}

.auth-card {
    width: 100%;
    max-width: none;
    padding: 2.6rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: none;
    border-radius: 0;
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--auth-card-top);
}

.auth-form-header {
    margin-bottom: 1.6rem;
}

.auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
    color: var(--auth-link);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.auth-back-link:hover {
    opacity: 0.8;
}

.auth-card {
    position: relative;
}

.auth-card h2 {
    margin: 0 0 0.4rem;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.auth-card p {
    color: var(--gray);
    margin: 0;
    line-height: 1.65;
}

.auth-message {
    display: none;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    font-size: 0.92rem;
    font-weight: 600;
}

.auth-message.is-visible {
    display: block;
}

.auth-message-error {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
}

.auth-message-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #15803d;
}

.auth-section-label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--auth-link);
    margin-bottom: 0.85rem;
    display: block;
}

.form-group {
    text-align: left;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.92rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: rgba(248, 250, 252, 0.96);
    color: #0f172a;
    font-family: inherit;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--auth-accent);
    box-shadow: 0 0 0 4px rgba(var(--auth-accent-rgb), 0.12);
}

.form-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-button {
    width: 100%;
    margin-top: 0.4rem;
    border: none;
    cursor: pointer;
    min-height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--auth-accent), var(--auth-accent-strong));
    box-shadow: 0 18px 30px rgba(var(--auth-accent-rgb), 0.2);
}

.auth-links {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.45rem;
}

.auth-links p {
    margin: 0;
    color: #64748b;
}

.auth-links a {
    color: var(--auth-link);
    text-decoration: none;
    font-weight: 700;
}

.auth-links a:hover {
    text-decoration: underline;
}

.account-type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
}

.toggle-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.96);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    color: #64748b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.toggle-option:hover {
    border-color: rgba(var(--auth-accent-rgb), 0.24);
    background: var(--auth-surface-tint);
    transform: translateY(-1px);
}

.toggle-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.25s ease;
}

.toggle-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

#type-student:checked ~ label[for="type-student"],
#type-company:checked ~ label[for="type-company"],
#reg-type-student:checked ~ label[for="reg-type-student"],
#reg-type-company:checked ~ label[for="reg-type-company"] {
    border-color: var(--auth-accent);
    background: linear-gradient(135deg, var(--auth-accent) 0%, var(--auth-accent-soft) 100%);
    color: white;
    box-shadow: 0 14px 26px rgba(var(--auth-accent-rgb), 0.18);
    transform: translateY(-1px);
}

#type-student:checked ~ label .toggle-icon,
#type-company:checked ~ label .toggle-icon,
#reg-type-student:checked ~ label .toggle-icon,
#reg-type-company:checked ~ label .toggle-icon {
    transform: scale(1.06);
}

.auth-container.company-mode #company-form {
    position: relative;
}

.auth-container.company-mode #company-form::before {
    content: "Company onboarding";
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.registration-form {
    margin-top: 0.2rem;
}

/* Dashboard */
main.dashboard {
    background-color: var(--background-color);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

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

.dashboard-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.dashboard-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.5rem;
}

.goal-list,
.deadline-list,
.recommended-resources ul {
    list-style: none;
    padding: 0;
}

.goal-list li,
.deadline-list li,
.recommended-resources li {
    margin-bottom: 1rem;
}

.goal-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.goal-list strong {
    flex-basis: 100%;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 12px;
    background-color: var(--light-gray);
    border-radius: 6px;
    flex-grow: 1;
    margin-right: 1rem;
}

.progress {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 6px;
}

.goal-list span {
    font-weight: 600;
    color: var(--secondary-color);
}

.deadline-list strong {
    color: var(--primary-color);
}

.recommended-resources a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.recommended-resources a:hover {
    text-decoration: underline;
}

.card-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.card-link:hover {
    text-decoration: underline;
}

/* Dashboard Layout */
.dashboard-layout {
    display: flex;
    gap: 1.5rem;
    width: min(1520px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.15rem 0 3rem;
    align-items: flex-start;
    position: relative;
}

.dashboard-sidebar,
main.dashboard {
    position: relative;
    z-index: 1;
}

.dashboard-sidebar {
    border-radius: 30px;
    border: 1px solid rgba(15, 118, 110, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 250, 0.92) 100%);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    padding: 1.25rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.dashboard-sidebar.left {
    width: 260px;
}

.dashboard-sidebar.right {
    width: 300px;
}

.dashboard-sidebar.right h4,
.dashboard-sidebar.right p {
    margin: 0;
}

.dashboard-sidebar.right h4 {
    margin-bottom: 0.85rem;
    color: #0f172a;
    font-size: 1rem;
}

.dashboard-sidebar.right p {
    color: var(--text-secondary);
    line-height: 1.65;
}

.sidebar-menu h4 {
    font-size: 0.82rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
    padding: 0 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
}

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

.sidebar-menu li {
    margin-bottom: 0.75rem;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.95rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 22px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(148, 163, 184, 0.18);
    background-color: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
}

.sidebar-menu li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    color: var(--primary-color);
    background-color: #fff;
}

.sidebar-menu li a::before {
    content: '';
    position: absolute;
    inset: auto 1rem 0.5rem;
    height: 4px;
    border-radius: 999px;
    background-color: var(--primary-color);
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sidebar-menu li a:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.sidebar-menu li a.active {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(94, 234, 212, 0.1)), #ffffff;
    color: var(--primary-color);
    border-color: rgba(15, 118, 110, 0.16);
    box-shadow: 0 18px 32px rgba(15, 118, 110, 0.12);
}

.sidebar-menu li a.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(15, 118, 110, 0.16);
}

.sidebar-menu li a.active .sidebar-icon {
    color: var(--primary-color);
}

.sidebar-icon {
    width: 20px;
    height: 20px;
    margin-right: 0;
    color: var(--gray);
    transition: color 0.25s ease;
}

main.dashboard {
    flex: 1;
    min-width: 0;
    padding: 1.15rem;
    background:
        radial-gradient(circle at top left, rgba(94, 234, 212, 0.16), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 32px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.dashboard-container {
    padding: 2rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-item {
    flex-wrap: wrap;
    gap: 0.75rem;
}

.job-status {
    white-space: nowrap;
}

.option-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) {
    .dashboard-layout {
        gap: 1.5rem;
        width: min(100%, calc(100% - 1.5rem));
        padding: 1rem 0 2rem;
    }

    .dashboard-sidebar.left {
        width: 220px;
    }

    .dashboard-sidebar.right {
        width: 240px;
    }

    .sidebar-menu h4 {
        font-size: 1rem;
        padding: 0 0.75rem;
    }

    .sidebar-menu li a {
        padding: 0.75rem 1rem;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .sidebar-icon {
        width: 18px;
        height: 18px;
        margin-right: 0.75rem;
    }
}

/* Tablet portrait - Hide sidebar */
@media (max-width: 768px) {
    .auth-container {
        padding: 1rem 0.9rem;
        align-items: flex-start;
    }

    .auth-shell {
        display: block;
        border-radius: 26px;
        overflow: visible;
        box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
    }

    .auth-aside {
        display: none;
    }

    .auth-card {
        padding: 1.5rem 1.15rem;
        border-radius: 26px;
        background: rgba(255, 255, 255, 0.98);
    }

    .auth-form-header {
        margin-bottom: 1.25rem;
    }

    .auth-card h2 {
        font-size: 1.8rem;
    }

    .auth-card p {
        font-size: 0.95rem;
    }

    .auth-back-link {
        margin-bottom: 0.85rem;
    }

    .account-type-toggle {
        gap: 0.6rem;
    }

    .toggle-option {
        padding: 0.9rem 0.7rem;
        border-radius: 18px;
    }

    .toggle-text {
        font-size: 0.88rem;
    }

    .dashboard-layout {
        flex-direction: column;
        gap: 1.5rem;
        width: min(100%, calc(100% - 1rem));
        padding: 0.75rem 0 1.5rem;
        align-items: stretch;
    }

    .dashboard-sidebar.left,
    .dashboard-sidebar.right {
        width: 100%;
        display: none;
    }

    main.dashboard {
        padding: 0;
    }

    .dashboard-container {
        padding: 1rem;
    }

    .profile-grid,
    .results-grid,
    .roadmaps-grid,
    .resources-grid,
    .communities-grid {
        grid-template-columns: 1fr;
    }

    .job-board-container {
        grid-template-columns: 1fr;
    }

    .search-panel {
        position: static;
        margin-bottom: 1.5rem;
    }

    .sidebar-menu {
        margin-bottom: 1.5rem;
    }

    .job-item {
        align-items: flex-start;
    }
}

/* Mobile - Hide sidebar completely */
@media (max-width: 480px) {
    .auth-container {
        padding: 0.85rem 0.75rem;
    }

    .auth-card {
        padding: 1.25rem 0.95rem;
        border-radius: 22px;
    }

    .auth-card h2 {
        font-size: 1.6rem;
    }

    .account-type-toggle {
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
    }

    .toggle-option {
        padding: 0.8rem 0.55rem;
    }

    .toggle-icon {
        width: 20px;
        height: 20px;
    }

    .toggle-text {
        font-size: 0.8rem;
    }

    .dashboard-layout {
        flex-direction: column;
        gap: 1rem;
        width: min(100%, calc(100% - 0.75rem));
        padding: 0.65rem 0 1rem;
    }

    .dashboard-sidebar.left,
    .dashboard-sidebar.right {
        width: 100%;
        display: none;
    }

    main.dashboard {
        padding: 0;
        min-width: 0;
    }

    .roadmaps-container,
    .resources-container,
    .communities-container {
        padding: 0.75rem;
    }

    .dashboard-container {
        padding: 0.75rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-card {
        padding: 0.75rem;
    }

    .stat-value,
    .stat-card .number {
        font-size: 1.5rem;
    }

    .content-card {
        padding: 0.75rem;
    }

    .sidebar-menu h4 {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .sidebar-menu li a {
        padding: 0.5rem 0.75rem;
        margin-bottom: 0.25rem;
        font-size: 0.85rem;
    }

    .sidebar-icon {
        width: 16px;
        height: 16px;
        margin-right: 0.5rem;
    }
}

/* ========================================
   About Page — Polished Design System
   ======================================== */

/* ---- Base ---- */
.about-page {
    background-color: var(--background-color);
}

.about-page h2,
.about-page h3 {
    margin: 0;
}

/* ---- Button System ---- */
.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    letter-spacing: 0.2px;
}

.about-btn--primary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.about-btn--primary:hover {
    background: #f0fdfa;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    color: var(--primary-color);
}

.about-btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.about-btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    color: var(--white);
}

.about-btn--white {
    background: var(--white);
    color: #0f172a;
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.about-btn--white:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: #0f172a;
}

/* ---- Section Eyebrow Labels ---- */
.section-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.section-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 0.5rem auto 0;
    border-radius: 1px;
}

.section-eyebrow--light {
    color: var(--secondary-color);
}

.section-eyebrow--light::after {
    background: var(--secondary-color);
}

/* ---- Consistent Icon Circles ---- */
.evc-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0fdfa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.evc-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.about-feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ede9fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.about-feature-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.outcome-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0fdfa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outcome-icon {
    font-size: 1.5rem;
    line-height: 1;
}

/* ========== HERO ========== */
.about-hero {
    background: linear-gradient(160deg, #0a4f48 0%, var(--primary-color) 40%, #0d9488 70%, #14b8a6 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0 5rem;
}

.about-hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    max-width: 780px;
    letter-spacing: -0.75px;
    line-height: 1.15;
}

.about-tagline {
    font-size: 1.2rem;
    opacity: 0.92;
    font-weight: 400;
    margin: 0 auto 2.5rem;
    max-width: 600px;
    line-height: 1.65;
}

.hero-dual-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== SECTIONS — Consistent Spacing ========== */
.about-section {
    padding: 5rem 0;
}

.about-section-alt {
    background-color: #f8fafc;
}

.about-section h2 {
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.about-section .section-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.about-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-section blockquote {
    background: linear-gradient(135deg, var(--primary-color), #0d9488);
    color: var(--white);
    border: none;
    border-radius: 14px;
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    max-width: 560px;
    margin: 2.5rem auto 0;
    box-shadow: 0 4px 24px rgba(15, 118, 110, 0.2);
}

/* ========== STATS / PROBLEM CARDS ========== */
.about-section--stats {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.about-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0 2rem;
}

.problem-card {
    background: var(--background-color);
    border-radius: 14px;
    padding: 2.25rem 1.75rem 2rem;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.problem-card--clickable {
    cursor: pointer;
    position: relative;
    user-select: none;
}

.problem-card--clickable:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 118, 110, 0.12);
    border-color: rgba(15, 118, 110, 0.25);
}

.problem-card--clickable:active {
    transform: translateY(-2px);
}

.problem-card--clickable:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.problem-card__source-hint {
    display: block;
    margin-top: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.problem-card--clickable:hover .problem-card__source-hint {
    opacity: 1;
    transform: translateY(0);
}

.problem-stat {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    line-height: 1;
    letter-spacing: -1px;
}

.problem-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.problem-conclusion {
    font-size: 1.1rem !important;
    font-weight: 700;
    color: var(--text-color) !important;
    margin-top: 1.75rem !important;
}

/* ========== REFERENCE MODAL ========== */
.ref-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.ref-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0s linear 0s;
}

.ref-modal {
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    width: calc(100% - 2rem);
    padding: 2rem 2rem 1.5rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: scale(0.92) translateY(12px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ref-modal-backdrop.active .ref-modal {
    transform: scale(1) translateY(0);
}

.ref-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.ref-modal__close:hover {
    background: #f1f5f9;
    color: var(--text-color);
}

.ref-modal__close:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.ref-modal__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #0d9488);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ref-modal__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem;
    line-height: 1.4;
    padding-right: 1.5rem;
}

.ref-modal__body {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
}

.ref-modal__body p {
    margin: 0 0 0.6rem;
    text-align: left;
}

.ref-modal__body p:last-child {
    margin-bottom: 0;
}

.ref-modal__body strong {
    color: var(--text-color);
}

.ref-modal__footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ref-modal__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.15s ease;
}

.ref-modal__link:hover {
    color: #0d9488;
    transform: translateX(2px);
}

.ref-modal__link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

.ref-modal__inline-link {
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ref-modal__inline-link:hover {
    color: #0d9488;
    text-decoration: underline;
}

.ref-modal__btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.ref-modal__btn:hover {
    background: #0d9488;
    transform: translateY(-1px);
}

.ref-modal__btn:active {
    transform: translateY(0);
}

.ref-modal__btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* ========== EMPLOYER VALUE SECTION ========== */
.about-section-employer {
    background: linear-gradient(180deg, #f0fdfa 0%, #f8fafc 100%);
    border-top: 3px solid var(--primary-color);
}

.employer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #0d9488);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-section-employer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section .container .employer-badge,
.about-section .container .student-badge {
    display: inline-block;
    margin: 0 auto 1rem;
    text-align: center;
}

.student-badge {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
}

.employer-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    width: 100%;
}

.employer-value-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.employer-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(15, 118, 110, 0.2);
}

.employer-value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.employer-value-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

/* ========== ROI COMPARISON ========== */
.about-roi {
    background: #0f172a;
    padding: 5rem 0;
}

.about-roi .section-eyebrow--light {
    margin-bottom: 0.5rem;
}

.about-roi h2 {
    color: var(--white) !important;
    margin-bottom: 3rem;
}

.roi-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
}

.roi-column {
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
}

.roi-traditional {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.roi-compass {
    background: linear-gradient(145deg, rgba(15, 118, 110, 0.2), rgba(94, 234, 212, 0.06));
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 48px rgba(15, 118, 110, 0.15);
}

.roi-recommended {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #0d9488);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 0.35rem 1.1rem;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.roi-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    text-align: center;
}

.roi-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roi-column ul li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    padding: 0.55rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.roi-column ul li:last-child {
    border-bottom: none;
}

.roi-x {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.roi-check {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

/* ========== FRAMEWORK OUTCOMES ========== */
.about-section--framework {
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, #f0fdfa 0%, #f8fafc 100%);
}

.about-section--framework .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 860px;
}

.framework-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.framework-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(15, 118, 110, 0.2);
}

.framework-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.framework-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

.framework-disclaimer {
    margin-top: 2.25rem !important;
    font-size: 0.85rem !important;
    font-style: italic;
    color: var(--muted) !important;
    text-align: center;
    letter-spacing: 0.15px;
}

/* ========== EMPLOYER OUTCOMES ========== */
.about-section--outcomes {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-outcomes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.employer-outcomes .outcome-item {
    text-align: left;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.employer-outcomes .outcome-item p {
    text-align: left;
    margin: 0;
}

.outcome-item {
    background: var(--background-color);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    transition: transform 0.25s ease;
}

.outcome-item:hover {
    transform: translateY(-2px);
}

.outcome-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
    line-height: 1.55;
}

/* ========== STUDENT FEATURES ========== */
.about-section-alt .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    width: 100%;
}

.about-feature {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(15, 118, 110, 0.2);
}

.about-feature h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.about-feature p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

/* ========== PHILOSOPHY ========== */
.about-section--philosophy {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.about-philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.philosophy-item {
    background: var(--background-color);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
}

.philosophy-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    text-align: left;
}

.philosophy-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.philosophy-item ul li {
    padding: 0.45rem 0;
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.philosophy-positive {
    border-left: 3px solid var(--primary-color);
}

.philosophy-negative {
    border-left: 3px solid var(--accent-color);
}

/* ========== STUDENTS SECTION ========== */
.about-section--students {
    background: linear-gradient(180deg, #f5f3ff 0%, #f8fafc 100%);
    border-top: 3px solid #8b5cf6;
}

/* ========== DUAL CTA ========== */
.about-dual-cta {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dual-cta-card {
    border-radius: 16px;
    padding: 2.75rem 2.25rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.dual-cta-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.dual-cta-employer {
    background: linear-gradient(145deg, rgba(15, 118, 110, 0.15), rgba(94, 234, 212, 0.05));
    border: 1px solid rgba(15, 118, 110, 0.25);
}

.dual-cta-employer .dual-cta-label {
    color: var(--secondary-color);
}

.dual-cta-student {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.dual-cta-student .dual-cta-label {
    color: #a5b4fc;
}

.dual-cta-card h2 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    line-height: 1.25;
}

.dual-cta-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.dual-cta-card .about-btn {
    align-self: flex-start;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.dual-cta-card .about-btn:hover {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Active link in nav */
.active-link {
    border-bottom: 2px solid var(--white);
    padding-bottom: 2px;
}

.marketing-about .about-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(160deg, #0a4f48 0%, var(--primary-color) 42%, #0d9488 72%, #14b8a6 100%);
    padding: 6.5rem 0 5.25rem;
}

.marketing-about .about-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -20% auto;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
    pointer-events: none;
}

.marketing-about .about-hero h1 {
    max-width: 900px;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.marketing-about .about-tagline {
    max-width: 680px;
    font-size: 1.08rem;
}

.marketing-about .about-btn {
    border-radius: 18px;
}

.marketing-about .problem-card,
.marketing-about .employer-value-card,
.marketing-about .framework-card,
.marketing-about .about-feature,
.marketing-about .outcome-item,
.marketing-about .philosophy-item {
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.marketing-about .problem-card,
.marketing-about .employer-value-card,
.marketing-about .framework-card,
.marketing-about .about-feature {
    position: relative;
    overflow: hidden;
}

.marketing-about .problem-card::after,
.marketing-about .employer-value-card::after,
.marketing-about .framework-card::after,
.marketing-about .about-feature::after {
    content: "";
    position: absolute;
    inset: auto 1.6rem 1rem;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f766e 0%, #5eead4 100%);
    opacity: 0.88;
}

.marketing-about .about-section {
    padding: 5.5rem 0;
}

.marketing-about .about-section h2 {
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.marketing-about .section-eyebrow {
    font-weight: 800;
    letter-spacing: 0.14em;
}

.marketing-about .about-section--stats,
.marketing-about .about-section--outcomes,
.marketing-about .about-section--philosophy {
    background: rgba(255, 255, 255, 0.66);
}

.marketing-about .about-section-employer,
.marketing-about .about-section--framework {
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.88) 0%, rgba(248, 250, 252, 0.96) 100%);
    border-top: 0;
}

.marketing-about .about-section--students {
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.88) 0%, rgba(248, 250, 252, 0.96) 100%);
    border-top: 0;
}

.marketing-about .student-badge {
    background: linear-gradient(135deg, #0f766e, #14b8a6) !important;
}

.marketing-about .about-roi {
    background:
        radial-gradient(circle at top right, rgba(94, 234, 212, 0.12), transparent 22%),
        linear-gradient(160deg, #0f172a 0%, #111827 100%);
}

.marketing-about .roi-column,
.marketing-about .dual-cta-card {
    border-radius: 24px;
}

.marketing-about .dual-cta-employer {
    background: linear-gradient(145deg, rgba(15, 118, 110, 0.18), rgba(94, 234, 212, 0.08));
}

.marketing-about .dual-cta-student {
    background: linear-gradient(145deg, rgba(15, 118, 110, 0.14), rgba(45, 212, 191, 0.06));
    border: 1px solid rgba(45, 212, 191, 0.25);
}

.marketing-about .dual-cta-student .dual-cta-label {
    color: #99f6e4;
}

/* ========== RESPONSIVE — ABOUT ========== */
@media (max-width: 1024px) {
    .employer-value-grid,
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid,
    .value-strip-grid,
    .feature-cards-home {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .marketing-header {
        padding: 0.8rem 0.8rem 0;
    }

    .marketing-nav .container {
        padding-right: 4.4rem;
    }

    .marketing-nav .mobile-menu-toggle {
        background: rgba(15, 23, 42, 0.2);
        border-color: rgba(204, 251, 241, 0.35);
        color: #ffffff;
    }

    .marketing-nav #mobile-menu {
        background: linear-gradient(145deg, rgba(11, 89, 81, 0.98) 0%, rgba(13, 148, 136, 0.98) 100%);
        border: 1px solid rgba(204, 251, 241, 0.16);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
    }

    .hero-home {
        padding: 1.5rem 0 3rem;
    }

    .hero-home h2 {
        font-size: 2.4rem;
        max-width: 12ch;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-secondary-link,
    .marketing-home .cta-button {
        width: 100%;
        justify-content: center;
    }

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

    .home-audience-section,
    .home-platform-section,
    .home-journey-section,
    .home-social-proof {
        padding: 3.7rem 0;
    }

    .home-section-head h2 {
        max-width: none;
        font-size: 2.05rem;
    }

    .home-section-head {
        margin-bottom: 2.25rem;
    }

    .home-audience-section-students,
    .home-audience-section-companies {
        padding-top: 4.15rem;
        padding-bottom: 4.25rem;
    }

    .home-audience-section .home-section-head {
        margin-bottom: 2.55rem;
    }

    .home-platform-section .home-section-head,
    .home-social-proof .home-section-head {
        margin-bottom: 2.4rem;
    }

    .home-journey-section .home-section-head {
        margin-bottom: 2.35rem;
    }

    .value-strip-grid,
    .feature-cards-home,
    .steps {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 4rem 0 3.5rem;
    }

    .about-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .about-tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-dual-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-section {
        padding: 3.5rem 0;
    }

    .about-section h2 {
        font-size: 1.65rem;
    }

    .about-section .section-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .about-problem-grid,
    .employer-value-grid,
    .about-features-grid,
    .framework-grid {
        grid-template-columns: 1fr;
    }

    .about-outcomes {
        grid-template-columns: 1fr;
    }

    .roi-comparison {
        grid-template-columns: 1fr;
    }

    .about-philosophy {
        grid-template-columns: 1fr;
    }

    .dual-cta-grid {
        grid-template-columns: 1fr;
    }

    .about-roi {
        padding: 3.5rem 0;
    }

    .about-dual-cta {
        padding: 3.5rem 0;
    }

    .problem-stat {
        font-size: 2.5rem;
    }

    .dual-cta-card {
        padding: 2rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    .dual-cta-card .about-btn {
        align-self: center;
    }

    .dual-cta-card h2 {
        font-size: 1.35rem;
    }

    .roi-column {
        padding: 2rem 1.5rem;
    }

    .employer-outcomes .outcome-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .employer-outcomes .outcome-item p {
        text-align: center;
    }
}
