:root {
        --color-twilight-blue: #0A0A1F;
        --color-cosmic-purple: #2C0B4D;
        --color-muted-grey: #4A4A5A;
        --color-charcoal-black: #1A1A1A;
        --color-glowing-gold: #FFD700;
        --color-luminous-silver: #C0C0C0;
        --color-deep-emerald: #0F5E48;
        --color-ruby: #8A0720;
        --color-white-transparent: rgba(255, 255, 255, 0.85);
        --color-white-transparent-light: rgba(255, 255, 255, 0.6);
        --color-gradient-bg: linear-gradient(135deg, var(--color-twilight-blue) 0%, var(--color-cosmic-purple) 50%, var(--color-charcoal-black) 100%);
        --font-primary: 'Montserrat', sans-serif;
        --font-display: 'Orbitron', sans-serif;
    }

    /* Base Styles */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-primary);
        line-height: 1.6;
        color: var(--color-white-transparent);
        background: var(--color-gradient-bg);
        min-height: 100vh;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    /* Accessibility */
    :focus-visible {
        outline: 2px solid var(--color-glowing-gold);
        outline-offset: 3px;
    }

    /* Header */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem 2rem;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1000;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .brand-name {
        font-family: var(--font-display);
        font-size: 2.5rem;
        color: var(--color-glowing-gold);
        letter-spacing: 0.15rem;
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
        transition: color 0.3s ease;
    }

    .brand-name:hover {
        color: var(--color-luminous-silver);
        text-shadow: 0 0 20px rgba(192, 192, 192, 0.8), 0 0 40px rgba(192, 192, 192, 0.4);
    }

    /* Main Sections */
    section {
        position: relative;
        padding: 6rem 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh; /* Default to full height */
        overflow: hidden; /* Ensure content doesn't break out of specific sections */
    }

    .section-full-height {
        min-height: 100vh;
    }

    .section-padding {
        padding: 6rem 2rem;
    }

    .section-title {
        font-family: var(--font-display);
        font-size: 3.5rem;
        text-align: center;
        margin-bottom: 3rem;
        color: var(--color-luminous-silver);
        text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
        letter-spacing: 0.1rem;
        position: relative;
        z-index: 2;
        padding: 0.5rem 0;
    }

    /* Section Fade-in Animation */
    .fade-in {
        opacity: 1;
        transform: translateY(30px);
        transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Essence Blueprint */
    .essence-blueprint {
        background: linear-gradient(45deg, var(--color-twilight-blue), var(--color-cosmic-purple), var(--color-charcoal-black));
        color: var(--color-white-transparent);
        text-align: center;
        perspective: 1000px;
        position: relative;
        overflow: hidden;
    }

    .blueprint-container {
        position: relative;
        z-index: 1;
        max-width: 1000px;
        margin: auto;
        padding: 4rem 2rem;
        background: rgba(10, 10, 31, 0.5);
        border-radius: 15px;
        box-shadow: 0 0 60px rgba(44, 11, 77, 0.7);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform: rotateX(5deg) scale(0.95);
        transform-style: preserve-3d;
        animation: blueprint-enter 2s ease-out forwards;
    }

    @keyframes blueprint-enter {
        from { opacity: 1; transform: rotateX(20deg) scale(0.8); }
        to { opacity: 1; transform: rotateX(5deg) scale(0.95); }
    }

    .parametric-text-sculpture {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 4rem;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 2rem;
    }

    .core-value {
        font-family: var(--font-display);
        font-size: 4.5rem;
        font-weight: 700;
        color: var(--color-glowing-gold);
        letter-spacing: 0.2rem;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.4);
        line-height: 1;
        grid-column: span 2;
        transition: all 0.4s ease;
    }

    .core-value:nth-child(even) {
        color: var(--color-luminous-silver);
        text-shadow: 0 0 20px rgba(192, 192, 192, 0.7), 0 0 40px rgba(192, 192, 192, 0.4);
    }

    .core-value:hover {
        transform: scale(1.05) translateY(-5px);
        text-shadow: 0 0 25px rgba(255, 215, 0, 1), 0 0 50px rgba(255, 215, 0, 0.6);
    }

    .core-value:nth-child(even):hover {
        transform: scale(1.05) translateY(-5px);
        text-shadow: 0 0 25px rgba(192, 192, 192, 1), 0 0 50px rgba(192, 192, 192, 0.6);
    }

    .supporting-text {
        font-size: 1.1rem;
        color: var(--color-white-transparent-light);
        line-height: 1.8;
        max-width: 450px;
        margin: 0 auto;
        position: relative;
        grid-column: span 2;
        opacity: 1;.9;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .supporting-text:hover {
        opacity: 1;
        transform: translateY(-3px);
    }

    .parametric-text-sculpture .core-value:nth-of-type(1) + .supporting-text { grid-row: 2; grid-column: 1 / span 2; margin-bottom: 2rem; }
    .parametric-text-sculpture .core-value:nth-of-type(2) { grid-row: 3; grid-column: 1 / span 2; }
    .parametric-text-sculpture .core-value:nth-of-type(2) + .supporting-text { grid-row: 4; grid-column: 1 / span 2; margin-bottom: 2rem; }
    .parametric-text-sculpture .core-value:nth-of-type(3) { grid-row: 5; grid-column: 1 / span 2; }
    .parametric-text-sculpture .core-value:nth-of-type(3) + .supporting-text { grid-row: 6; grid-column: 1 / span 2; margin-bottom: 2rem; }
    .parametric-text-sculpture .core-value:nth-of-type(4) { grid-row: 7; grid-column: 1 / span 2; }
    .parametric-text-sculpture .core-value:nth-of-type(4) + .supporting-text { grid-row: 8; grid-column: 1 / span 2; margin-bottom: 2rem; }
    .parametric-text-sculpture .core-value:nth-of-type(5) { grid-row: 9; grid-column: 1 / span 2; }
    .parametric-text-sculpture .core-value:nth-of-type(5) + .supporting-text { grid-row: 10; grid-column: 1 / span 2; }


    /* Growth Arc Gallery */
    .growth-arc-gallery {
        background: var(--color-charcoal-black);
        padding: 0; /* Full background image */
    }

    .data-art-canvas {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 6rem 2rem;
        overflow: hidden; /* Prevent text overflow */
    }

    .data-art-canvas::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(10, 10, 31, 0.7), rgba(44, 11, 77, 0.7), rgba(10, 10, 31, 0.7));
        z-index: 1;
    }

    .growth-arc-gallery .section-title {
        color: var(--color-glowing-gold);
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        z-index: 2;
        margin-bottom: 2rem;
    }

    .scrollable-content {
        max-width: 800px;
        max-height: 60vh;
        overflow-y: auto;
        padding: 2rem;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 2;
        position: relative;
        text-align: center;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
        transition: all 0.5s ease;
    }

    .scrollable-content:hover {
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.9), 0 0 60px rgba(44, 11, 77, 0.8);
    }

    .scrollable-content p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        color: var(--color-white-transparent);
        line-height: 1.7;
        transition: color 0.3s ease;
    }

    .scrollable-content p:hover {
        color: var(--color-luminous-silver);
    }

    /* Custom Scrollbar for Webkit browsers */
    .scrollable-content::-webkit-scrollbar {
        width: 8px;
    }

    .scrollable-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .scrollable-content::-webkit-scrollbar-thumb {
        background: var(--color-cosmic-purple);
        border-radius: 10px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .scrollable-content::-webkit-scrollbar-thumb:hover {
        background: var(--color-glowing-gold);
    }

    /* Skill Constellations */
    .skill-constellations {
        background: linear-gradient(180deg, var(--color-cosmic-purple), var(--color-twilight-blue));
        position: relative;
        padding: 0;
    }

    .constellation-map-container {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6rem 2rem;
    }

    .constellation-map-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Dark overlay */
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        z-index: 1;
    }

    .skill-constellations .section-title {
        color: var(--color-deep-emerald);
        text-shadow: 0 0 15px rgba(15, 94, 72, 0.6);
        z-index: 2;
        margin-bottom: 3rem;
    }

    .map-overlay {
        position: relative;
        width: 700px;
        height: 700px;
        max-width: 90%;
        max-height: 90vh;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.1);
        background: radial-gradient(circle at center, rgba(15, 94, 72, 0.3) 0%, rgba(10, 10, 31, 0.7) 70%, transparent 100%);
        box-shadow: 0 0 80px rgba(15, 94, 72, 0.4), inset 0 0 50px rgba(15, 94, 72, 0.3);
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        transition: all 0.6s ease;
    }

    .map-overlay:hover {
        box-shadow: 0 0 100px rgba(15, 94, 72, 0.6), inset 0 0 70px rgba(15, 94, 72, 0.5);
        transform: scale(1.02);
    }

    .central-node {
        font-family: var(--font-display);
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--color-glowing-gold);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 1rem 2rem;
        background: rgba(44, 11, 77, 0.8);
        border-radius: 50px;
        border: 2px solid var(--color-glowing-gold);
        transition: all 0.3s ease;
    }

    .central-node:hover {
        background: var(--color-cosmic-purple);
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 20px var(--color-glowing-gold);
    }

    .skill-cluster {
        position: absolute;
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(10, 10, 31, 0.7);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.5s ease;
    }

    .skill-cluster:hover {
        background: rgba(10, 10, 31, 0.9);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    .skill-orb {
        font-size: 0.9rem;
        color: var(--color-luminous-silver);
        background: var(--color-muted-grey);
        padding: 0.7rem 1.2rem;
        border-radius: 25px;
        white-space: nowrap;
        box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
        transition: all 0.3s ease;
        cursor: default; /* Emphasize non-interactivity */
    }

    .skill-orb:hover {
        background: var(--color-deep-emerald);
        color: white;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 0 20px var(--color-deep-emerald);
    }

    .cluster-one { top: 10%; left: 50%; transform: translateX(-50%); }
    .cluster-two { bottom: 10%; left: 50%; transform: translateX(-50%); }
    .cluster-three { top: 50%; left: 5%; transform: translateY(-50%) rotate(-15deg); }
    .cluster-four { top: 50%; right: 5%; transform: translateY(-50%) rotate(15deg); }

    .constellation-description {
        max-width: 800px;
        text-align: center;
        font-size: 1.15rem;
        line-height: 1.8;
        color: var(--color-white-transparent);
        margin-top: 3rem;
        z-index: 2;
        background: rgba(0, 0, 0, 0.5);
        padding: 1.5rem 2.5rem;
        border-radius: 10px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
    }

    .constellation-description:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 30px rgba(15, 94, 72, 0.4);
    }

    /* Impact Echoes */
    .impact-echoes {
        background: linear-gradient(135deg, var(--color-charcoal-black), var(--color-cosmic-purple));
        color: var(--color-white-transparent);
        text-align: center;
    }

    .impact-echoes .section-title {
        color: var(--color-ruby);
        text-shadow: 0 0 15px rgba(138, 7, 32, 0.6);
        margin-bottom: 4rem;
    }

    .mosaic-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .mosaic-tile {
        background: rgba(0, 0, 0, 0.4);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        padding-bottom: 2rem; /* Ensure consistent spacing for text */
    }

    .mosaic-tile:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 50px rgba(138, 7, 32, 0.4);
    }

    .mosaic-tile img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.6s ease;
    }

    .mosaic-tile:hover img {
        transform: scale(1.05);
    }

    .mosaic-tile h3 {
        font-family: var(--font-display);
        font-size: 1.8rem;
        margin: 1.5rem 1rem 0.8rem;
        color: var(--color-ruby);
        text-shadow: 0 0 8px rgba(138, 7, 32, 0.7);
        transition: color 0.3s ease;
    }

    .mosaic-tile:hover h3 {
        color: var(--color-luminous-silver);
    }

    .mosaic-tile p {
        font-size: 1rem;
        color: var(--color-white-transparent-light);
        padding: 0 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    /* Trajectory Atlas */
    .trajectory-atlas {
        background: var(--color-twilight-blue);
        padding: 0;
    }

    .atlas-map {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6rem 2rem;
    }

    .atlas-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(10, 10, 31, 0.8), rgba(44, 11, 77, 0.6), rgba(10, 10, 31, 0.8));
        z-index: 1;
        opacity: 1;.9;
    }

    .trajectory-atlas .section-title {
        color: var(--color-luminous-silver);
        text-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
        z-index: 2;
        margin-bottom: 3rem;
    }

    .atlas-overlay {
        max-width: 900px;
        max-height: 70vh;
        overflow-y: auto;
        padding: 3rem;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 2;
        position: relative;
        text-align: center;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
        transition: all 0.6s ease;
    }

    .atlas-overlay:hover {
        box-shadow: 0 0 70px rgba(0, 0, 0, 0.9), 0 0 90px rgba(192, 192, 192, 0.3);
        transform: scale(1.01);
    }

    .atlas-overlay p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        color: var(--color-white-transparent);
        line-height: 1.8;
        transition: color 0.3s ease;
    }

    .atlas-overlay p:hover {
        color: var(--color-glowing-gold);
    }

    /* Custom Scrollbar for Webkit browsers */
    .atlas-overlay::-webkit-scrollbar {
        width: 8px;
    }

    .atlas-overlay::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .atlas-overlay::-webkit-scrollbar-thumb {
        background: var(--color-muted-grey);
        border-radius: 10px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .atlas-overlay::-webkit-scrollbar-thumb:hover {
        background: var(--color-glowing-gold);
    }

    /* Horizon Gaze */
    .horizon-gaze {
        background: var(--color-charcoal-black);
        padding: 0;
        overflow: hidden; /* For panning effect */
    }

    .panoramic-vision-scroll {
        width: 100%;
        height: 100%;
        background-size: 120% auto; /* Make image slightly larger than container for panning */
        background-position: 50% 50%; /* Start center */
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .panoramic-vision-scroll::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 1;
    }

    .profound-statement {
        font-family: var(--font-display);
        font-size: 3.5rem;
        font-weight: 700;
        text-align: center;
        max-width: 900px;
        color: var(--color-glowing-gold);
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.5);
        letter-spacing: 0.1rem;
        line-height: 1.3;
        z-index: 2;
        position: relative;
        padding: 2rem;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.5s ease;
    }

    .profound-statement:hover {
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.3);
    }

    /* Footer */
    .site-footer {
        padding: 2rem;
        text-align: center;
        background: var(--color-charcoal-black);
        color: var(--color-muted-grey);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.9rem;
        opacity: 1;.8;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .brand-name {
            font-size: 2rem;
        }

        .section-title {
            font-size: 2.8rem;
        }

        .blueprint-container {
            padding: 3rem 1.5rem;
        }

        .core-value {
            font-size: 3.5rem;
        }

        .supporting-text {
            font-size: 1rem;
        }

        .map-overlay {
            width: 600px;
            height: 600px;
        }

        .central-node {
            font-size: 2rem;
        }

        .skill-orb {
            font-size: 0.85rem;
            padding: 0.6rem 1rem;
        }

        .constellation-description {
            font-size: 1rem;
            padding: 1rem 2rem;
        }

        .mosaic-tile h3 {
            font-size: 1.5rem;
        }

        .mosaic-tile p {
            font-size: 0.95rem;
        }

        .atlas-overlay {
            padding: 2.5rem;
        }

        .atlas-overlay p {
            font-size: 1rem;
        }

        .profound-statement {
            font-size: 2.5rem;
            padding: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .site-header {
            padding: 1rem 1rem;
        }

        .brand-name {
            font-size: 1.8rem;
        }

        section {
            padding: 4rem 1rem;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 2rem;
        }

        .blueprint-container {
            padding: 2rem 1rem;
            transform: none; /* Remove 3D transform on smaller screens */
            animation: none;
            box-shadow: 0 0 30px rgba(44, 11, 77, 0.5);
        }

        .parametric-text-sculpture {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .core-value {
            font-size: 2.8rem;
            grid-column: span 1;
            margin-bottom: 0.5rem;
        }

        .supporting-text {
            font-size: 0.9rem;
            grid-column: span 1;
            margin-bottom: 1rem;
        }

        .data-art-canvas,
        .constellation-map-container,
        .atlas-map {
            padding: 4rem 1rem;
        }

        .scrollable-content,
        .atlas-overlay {
            max-height: 75vh;
            padding: 1.5rem;
        }

        .scrollable-content p,
        .atlas-overlay p {
            font-size: 0.9rem;
        }

        .map-overlay {
            width: 90%;
            height: 450px;
            box-shadow: 0 0 50px rgba(15, 94, 72, 0.3), inset 0 0 30px rgba(15, 94, 72, 0.2);
            transform: none;
        }

        .map-overlay:hover {
            transform: none;
        }

        .central-node {
            font-size: 1.5rem;
            padding: 0.8rem 1.5rem;
        }

        .skill-cluster {
            flex-direction: column;
            gap: 0.5rem;
            padding: 0.7rem;
        }

        .cluster-one { top: 5%; left: 50%; transform: translateX(-50%); }
        .cluster-two { bottom: 5%; left: 50%; transform: translateX(-50%); }
        .cluster-three { top: 50%; left: 0%; transform: translateY(-50%) rotate(0deg); }
        .cluster-four { top: 50%; right: 0%; transform: translateY(-50%) rotate(0deg); }

        .skill-orb {
            font-size: 0.8rem;
            padding: 0.5rem 0.8rem;
        }

        .constellation-description {
            font-size: 0.9rem;
            padding: 0.8rem 1.5rem;
            margin-top: 1rem;
        }

        .mosaic-grid {
            grid-template-columns: 1fr; /* Stack cards on mobile */
            gap: 2rem;
        }

        .profound-statement {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 480px) {
        .brand-name {
            font-size: 1.5rem;
            letter-spacing: 0.1rem;
        }

        .section-title {
            font-size: 1.8rem;
            letter-spacing: 0.05rem;
        }

        .core-value {
            font-size: 2.2rem;
            letter-spacing: 0.1rem;
        }

        .supporting-text {
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .mosaic-tile h3 {
            font-size: 1.3rem;
        }

        .mosaic-tile p {
            font-size: 0.85rem;
        }

        .profound-statement {
            font-size: 1.5rem;
            padding: 1rem;
        }
    }


/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Accessibility */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
/* Readability helpers */
.text-on-media{position:relative;}
.text-on-media::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg, #00000055, #00000055);pointer-events:none;}
