:root {
        --text-color: #180728;
        --background-color: #f5feff;
        --color-pink: #FF1493;
        --neon-cyan: #00c5db;
        --neon-purple: #7C4DFF;
        --neon-yellow: #FFEA00;
        --surface-color: #B2EBF2;
        --surface-contrast: #0A001A;
    }

    body.dark-mode {
        --text-color: #F8F1FF;
        --background-color: #002a2f;
        --color-pink: #FF4DD2;
        --neon-cyan: #00E5FF;
        --neon-purple: #B388FF;
        --neon-yellow: #FFEA00;
        --surface-color: #002a2f;
        --surface-contrast: #F8F1FF;
    }

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

    html {
        font-size: 16px;
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Figtree', sans-serif;
        font-size: 1.1rem;
        background-color: var(--background-color);
        color: var(--text-color);
        line-height: 1.6;
    }

    /* NAVIGATION */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 2rem 2rem;
        background: #f5feffbb;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-bottom: 2px solid var(--neon-purple);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    body.dark-mode nav {
        background: rgba(0, 42, 47, 0.6);
    }

    nav .logo {
        font-family: 'Economica', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--neon-cyan);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    nav .logo img {
        width: 300px;
        height: auto;
        object-fit: contain;
    }

    nav a {
        font-family: 'Figtree', sans-serif;
        font-size: 0.9rem;
        color: var(--text-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s ease;
    }

    nav a:hover {
        color: var(--neon-purple);
    }

    nav .material-icons-outlined {
        font-size: 1.2rem;
    }

    /* MAIN CONTENT */
    main {
        max-width: 900px;
        margin: 0 auto;
        padding: 11rem 2rem 4rem;
        padding-bottom: calc(4rem + 50px);
    }

    /* HERO */
    .hero {
        margin-bottom: 3rem;
    }

    .hero .tag {
        display: inline-block;
        font-family: 'Economica', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--neon-cyan);
        margin-bottom: 1rem;
        padding: 0.4rem 1rem;
        border: 2px solid var(--neon-purple);
        border-radius: 25px;
    }

    .hero h1 {
        font-family: 'Economica', sans-serif;
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
        color: var(--neon-purple);
        font-weight: 500;
        max-width: 700px;
        line-height: 1.5;
    }

    /* META GRID */
    .meta-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 1rem;
        padding: 2rem;
        background: var(--surface-color);
        border-radius: 12px;
        margin-bottom: 3rem;
        border-left: 4px solid var(--neon-yellow);
    }

    .meta-grid dt {
        font-family: 'Economica', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--neon-cyan);
        margin-bottom: 0.5rem;
    }

    .meta-grid dd {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-color);
    }

    @media (max-width: 768px) {
        .meta-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
    }

    /* SECTIONS */
    section {
        margin-bottom: 3rem;
    }

    section h2 {
        font-family: 'Economica', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--neon-purple);
        margin-bottom: 1.5rem;
        border-bottom: 2px solid var(--neon-yellow);
        padding-bottom: 0.75rem;
    }

    section h3 {
        font-family: 'Economica', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--neon-cyan);
        margin-top: 2rem;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    p {
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }

    p:last-child {
        margin-bottom: 0;
    }

    strong {
        font-weight: 700;
        color: var(--neon-purple);
    }

    /* CALLOUT */
    .callout {
        background: var(--surface-color);
        border-left: 4px solid var(--color-pink);
        padding: 1.5rem;
        border-radius: 0 8px 8px 0;
        margin: 2rem 0;
    }

    .callout strong {
        font-family: 'Economica', sans-serif;
        display: block;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--color-pink);
        margin-bottom: 0.75rem;
    }

    /* GOALS LIST */
    .goals {
        list-style: none;
        counter-reset: goal-counter;
    }

    .goals li {
        counter-increment: goal-counter;
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--neon-yellow);
        display: flex;
        gap: 1.5rem;
    }

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

    .goals li::before {
        content: "0" counter(goal-counter);
        font-family: 'Economica', sans-serif;
        font-weight: 700;
        font-size: 1.8rem;
        color: var(--color-pink);
        flex-shrink: 0;
        min-width: 50px;
    }

    .goals li strong {
        display: block;
        font-size: 1.1rem;
        color: var(--text-color);
        margin-bottom: 0.3rem;
    }

    .goals li span {
        display: block;
        color: var(--text-color);
        opacity: 0.8;
        font-size: 0.95rem;
    }

    /* CARDS GRID */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .card {
        background: var(--surface-color);
        border: 2px solid var(--neon-purple);
        border-radius: 12px;
        padding: 1.75rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 197, 219, 0.15);
        border-color: var(--neon-cyan);
    }

    .card h4 {
        font-family: 'Economica', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--neon-cyan);
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .card p {
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.6;
    }

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

    /* DIVIDER */
    .divider {
        width: 60px;
        height: 3px;
        background: var(--neon-purple);
        margin: 4rem 0;
    }

    /* FOOTER */
    footer {
        max-width: 900px;
        margin: 0 auto;
        padding: 3rem 2rem;
        border-top: 2px solid var(--neon-purple);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    footer a {
        color: var(--neon-cyan);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: var(--neon-purple);
    }

    /* BOTTOM NAV */
    .bottom-nav {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5feffbb;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-top: 2px solid var(--neon-purple);
        z-index: 1000;
    }

    body.dark-mode .bottom-nav {
        background: rgba(0, 42, 47, 0.6);
    }

    .bottom-nav a {
        font-family: 'Figtree', sans-serif;
        font-size: 0.9rem;
        color: var(--text-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s ease;
    }

    .bottom-nav a:hover {
        color: var(--neon-purple);
    }

    /* DARK MODE TOGGLE */
    .toggle {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        z-index: 1001;
        box-sizing: border-box;
    }
    .toggle input[type="checkbox"] {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 10;
        width: 100%;
        height: 100%;
        cursor: pointer;
        opacity: 0;
    }
    .toggle label {
        position: relative;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
    .toggle label:before {
        content: '';
        width: 70px;
        height: 40px;
        background: #fff;
        border: 2px solid #DDD;
        box-shadow: inset -30px 0 0 #666;
        position: relative;
        display: inline-block;
        border-radius: 20px;
        box-sizing: border-box;
        transition: 0.25s ease-in;
    }
    .toggle label:after {
        content: '';
        width: 20px;
        height: 20px;
        position: absolute;
        left: 10px;
        top: 10px;
        border-radius: 50%;
        background: #FFF;
        box-shadow: inset -8px -5px #333;
        transition: 0.2s ease-in-out;
    }
    .toggle input[type="checkbox"]:checked + label:before {
        box-shadow: inset 30px 0 0 var(--neon-yellow);
    }
    .toggle input[type="checkbox"]:checked + label:after {
        box-shadow: inset 0 0 0 2px #FFF;
        background: #ffbc00;
        left: 39px;
        top: 8px;
        border: 2px dashed #FFF;
    }

    figcaption {
        font-size: 0.8rem;
    }

    img.imgPadding {
        padding: 1rem 0 2rem;
        width: 100%;
        object-fit: cover;
    }

    img.imgNoPadding {
        padding: 0 2rem;
        width: 300px;
        transform: rotate(5deg);
        border-radius: 0px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        filter: drop-shadow(0 0 5px #000000aa);
    }

    .flex-image-container {
        display: flex;
        gap: 45px;
        padding: 20px;
    }

    .flex-image {
        min-width: 0;
        flex: 1;
        height: auto;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        main {
            padding: 8rem 1.5rem 2rem;
        }
        nav {
            padding: 1rem 1.5rem;
        }
        .hero h1 {
            font-size: 2rem;
        }
        section h2 {
            font-size: 1.5rem;
        }
        .toggle {
            position: fixed;
            top: 0.85rem;
            right: 1.5rem;
            bottom: auto;
        }
    }