@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Raleway:wght@400;700&display=swap");

:root {
            --color-primary: #1d4ed8;
            --color-accent: #84cc16;
            --color-white: #ffffff;
            --color-dark: #1a1a1a;
            --color-light: #f8f8f8;
            --color-border: #e5e5e5;
            --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

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

        html, body {
            font-family: 'Outfit', sans-serif;
            color: var(--color-dark);
            background-color: var(--color-white);
            line-height: 1.6;
        }

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

        /* Header & Navigation */
        header {
            background-color: var(--color-white);
            border-bottom: 1px solid var(--color-border);
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Raleway', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-primary);
            text-decoration: none;
        }

        nav {
            display: flex;
            gap: 2rem;
        }

        nav a {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 400;
            color: var(--color-dark);
            text-decoration: none;
            border-bottom: 2px solid transparent;
            padding-bottom: 0.25rem;
            transition: border-color 0.3s ease;
        }

        nav a:hover {
            border-bottom-color: var(--color-accent);
        }

        nav a.active {
            border-bottom-color: var(--color-primary);
            font-weight: 700;
        }

        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
        }

        section {
            padding: 4rem 2rem;
        }

        h1 {
            font-family: 'Raleway', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        h2 {
            font-family: 'Raleway', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 0.5rem;
        }

        p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 1.25rem;
        }

        .subheading {
            font-size: 1.2rem;
            color: var(--color-accent);
            font-weight: 700;
            margin-bottom: 2rem;
        }

        /* Hero Editorial Section */
        #hero_editorial {
            padding: 5rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .hero-content .subheading {
            font-size: 1.4rem;
            margin-bottom: 2rem;
        }

        .hero-content p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .hero-image-container {
            position: relative;
            height: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Experience Overview Section */
        #experience_overview {
            background: linear-gradient(135deg, var(--color-primary) 0%, #1a3aa8 100%);
            color: var(--color-white);
            padding: 5rem 2rem;
        }

        .experience-wrapper {
            max-width: 1000px;
            margin: 0 auto;
        }

        .experience-wrapper h2 {
            color: var(--color-white);
            margin-bottom: 3rem;
            text-align: center;
        }

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

        .experience-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .experience-card h3 {
            color: var(--color-accent);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .experience-card p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Collectibles Highlight Section */
        #collectibles_highlight {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            padding: 5rem 2rem;
        }

        .collectibles-content {
            display: flex;
            flex-direction: column;
        }

        .collectibles-content h2 {
            margin-bottom: 1rem;
        }

        .collectibles-content .subheading {
            margin-bottom: 2rem;
        }

        .collectibles-stat {
            background-color: var(--color-light);
            border-left: 4px solid var(--color-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 4px;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
        }

        .collectibles-stat strong {
            color: var(--color-primary);
            font-weight: 700;
        }

        .collectibles-image-container {
            position: relative;
            height: 450px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .collectibles-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Social Spaces Section */
        #social_spaces {
            padding: 0;
        }

        .social-image-full {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            height: 500px;
            overflow: hidden;
        }

        .social-image-full img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .social-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 2rem;
            text-align: center;
        }

        .social-content h2 {
            margin-bottom: 1.5rem;
        }

        .social-content p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 2rem;
        }

        /* Getting Started CTA Section */
        #getting_started_cta {
            background-color: var(--color-light);
            text-align: center;
            padding: 5rem 2rem;
        }

        .cta-wrapper {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-wrapper h2 {
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: var(--color-white);
            border-color: var(--color-primary);
        }

        .btn-primary:hover {
            background-color: #1540c4;
            box-shadow: var(--shadow-medium);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--color-primary);
            border-color: var(--color-primary);
        }

        .btn-secondary:hover {
            background-color: var(--color-primary);
            color: var(--color-white);
        }

        /* Footer */
        footer {
            background-color: var(--color-dark);
            color: var(--color-white);
            padding: 3rem 2rem 1rem;
            margin-top: 4rem;
        }

        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

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

        .footer-column p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #ccc;
            margin-bottom: 1rem;
        }

        .footer-column a {
            display: inline-block;
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--color-accent);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #999;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            #hero_editorial {
                grid-template-columns: 1fr;
                padding: 3rem 2rem;
            }

            .hero-image-container {
                height: 350px;
            }

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

            #collectibles_highlight {
                grid-template-columns: 1fr;
                padding: 3rem 2rem;
            }

            .collectibles-image-container {
                height: 350px;
            }

            .social-image-full {
                height: 350px;
            }

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

            .btn {
                text-align: center;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            nav {
                gap: 1rem;
            }

            nav a {
                font-size: 0.85rem;
            }

            header {
                padding: 1rem 2rem;
            }

            .header-wrapper {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

            nav {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

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

            h2 {
                font-size: 1.4rem;
            }

            section {
                padding: 2.5rem 1rem;
            }

            #hero_editorial {
                padding: 2rem 1rem;
            }

            .experience-card h3 {
                font-size: 1.1rem;
            }

            .experience-card p {
                font-size: 0.9rem;
            }

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

            .btn {
                padding: 0.85rem 1.5rem;
                font-size: 0.9rem;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
