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

        :root {
            --white: #ffffff;
            --bg: #fafafa;
            --text: #1a1a2e;
            --text-secondary: #555566;
            --accent: #2c3e6b;
            --accent-light: #3d5a99;
            --border: #e8e8ee;
            --card-bg: #ffffff;
            --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
            --card-shadow-hover: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.05);
            --radius: 8px;
            --max-width: 1080px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        /* --- Header / Nav --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .logo {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            color: var(--text);
            text-decoration: none;
        }

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

        nav a {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            letter-spacing: 0.03em;
            transition: color 0.2s ease;
        }

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

        /* --- Sections --- */
        section {
            padding: 5rem 2rem;
        }

        .section-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        /* --- Hero --- */
        .hero {
            padding: 8rem 2rem 4rem;
            text-align: center;
            background: var(--white);
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.25rem);
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 1.25rem;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
            line-height: 1.7;
        }

        .hero-pitch {
            margin-top: 1rem !important;
            font-size: 1rem !important;
            color: var(--text-secondary);
        }

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

        .hero-btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            border: 2px solid var(--accent);
            min-width: 160px;
        }

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

        .hero-btn--primary:hover {
            background: var(--accent-light);
            border-color: var(--accent-light);
        }

        .hero-btn--secondary {
            background: transparent;
            color: var(--accent);
        }

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

        .hero-rule {
            width: 48px;
            height: 2px;
            background: var(--accent);
            border: none;
            margin: 2.5rem auto 0;
            opacity: 0.4;
        }

        /* --- About --- */
        .about {
            background: var(--bg);
        }

        .about-text {
            max-width: 680px;
        }

        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .about-text p:last-child {
            margin-bottom: 0;
        }

        /* --- Founder --- */
        .founder {
            background: var(--white);
        }

        .founder-content {
            max-width: 680px;
        }

        .founder-content p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        /* --- Properties --- */
        .properties {
            background: var(--bg);
        }

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

        .card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-top: 3px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem 1.5rem 1.25rem;
            box-shadow: var(--card-shadow);
            transition: box-shadow 0.25s ease, transform 0.15s ease;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            box-shadow: var(--card-shadow-hover);
        }

        .card-status {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 0.2rem 0.6rem;
            border-radius: 3px;
            margin-bottom: 1rem;
            width: fit-content;
        }

        .status-live {
            background: #e8f5e9;
            color: #2e7d32;
        }

        .status-prelaunch {
            background: #fff3e0;
            color: #e65100;
        }

        .status-early {
            background: #e3f2fd;
            color: #1565c0;
        }

        .status-built {
            background: #eceff1;
            color: #546e7a;
        }

        .status-spec {
            background: #f3e5f5;
            color: #7b1fa2;
        }

        .card-pill {
            display: block;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.15rem;
            background: none !important;
        }
        .tease-block {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
        }
        .tease-block h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
        }
        .tease-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 1rem;
        }
        .tease-cat {
            background: #f0f0f5;
            border-radius: 20px;
            padding: 0.35rem 1rem;
            font-size: 0.8rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .category-heading {
            grid-column: 1 / -1;
            margin: 2rem 0 0.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.02em;
            border-bottom: 1px solid var(--border);
            padding-bottom: 0.5rem;
        }

        .category-heading:first-child {
            margin-top: 0;
        }

        .card-name {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.2rem;
        }

        .card-tagline {
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .card-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: auto;
        }

        .btn {
            display: inline-block;
            padding: 0.55rem 1.25rem;
            font-size: 0.82rem;
            font-weight: 600;
            font-family: inherit;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.2s ease;
            cursor: pointer;
            text-align: center;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--white);
            border: 1px solid var(--accent);
        }

        .btn-primary:hover {
            background: var(--accent-light);
            border-color: var(--accent-light);
        }

        .btn-outline {
            background: var(--accent);
            color: var(--white);
            border: 1px solid var(--accent);
            width: 100%;
            text-align: center;
            border-radius: 6px;
        }

        .btn-outline:hover {
            background: var(--accent-light);
            border-color: var(--accent-light);
            color: var(--white);
            text-decoration: none;
        }

        .external-arrow {
            font-size: 0.75em;
            margin-left: 0.2em;
        }

        /* --- IP / Legal --- */
        .ip-section {
            background: var(--white);
        }

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

        .ip-item {
            padding: 1.5rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
        }

        .ip-item h3 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .ip-item p {
            font-size: 0.88rem;
            color: var(--text-secondary);
        }

        /* --- Contact --- */
        .contact {
            background: var(--bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .contact-info p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .contact-info a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-field label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.35rem;
            letter-spacing: 0.03em;
        }

        .form-field input,
        .form-field textarea {
            width: 100%;
            padding: 0.7rem 0.9rem;
            font-size: 0.93rem;
            font-family: inherit;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: var(--white);
            color: var(--text);
            transition: border-color 0.2s ease;
            outline: none;
        }

        .form-field input:focus,
        .form-field textarea:focus {
            border-color: var(--accent);
        }

        .form-field textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            align-self: flex-start;
        }

        /* Honeypot. Off-screen rather than display:none so naive bots that
           skip hidden fields still see and fill it; humans never tab here. */
        .hp-field {
            position: absolute;
            left: -10000px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        /* --- Footer --- */
        footer {
            background: var(--white);
            border-top: 1px solid var(--border);
            padding: 3rem 2rem;
        }

        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            text-align: center;
        }

        .footer-inner p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .footer-inner a {
            color: var(--accent);
            text-decoration: none;
        }

        .footer-inner a:hover {
            text-decoration: underline;
        }

        .footer-location {
            margin-top: 0.5rem;
            font-size: 0.78rem;
            color: var(--text-secondary);
            opacity: 0.7;
        }

        /* --- Hero Pills --- */
        .hero-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-pill {
            padding: 0.5rem 1.25rem;
            background: #fff;
            border: 2px solid var(--border);
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
        }

        .hero-count {
            margin-top: 1rem;
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        /* --- Language Toggle --- */
        .lang-toggle {
            display: inline-flex;
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            font-size: 0.7rem;
            font-weight: 600;
            font-family: inherit;
            user-select: none;
        }
        .lang-option {
            padding: 0.2rem 0.6rem;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }
        .lang-option--active {
            background: var(--accent);
            color: var(--white);
        }

        /* --- Mobile Nav Toggle --- */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text);
            margin: 4px 0;
            transition: all 0.2s ease;
        }

        /* --- Responsive --- */
        @media (max-width: 960px) {
            .cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .ip-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            nav {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 1.5rem 2rem;
                gap: 1.25rem;
                border-bottom: 1px solid var(--border);
                box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            }

            nav.open {
                display: flex;
            }

            .hero {
                padding: 8rem 1.5rem 4rem;
            }

            section {
                padding: 3.5rem 1.5rem;
            }

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

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

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .card {
                padding: 2rem 1.5rem;
            }

            .section-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding: 0 1.25rem;
            }

            .hero {
                padding: 7rem 1.25rem 3rem;
            }

            .hero-cta {
                flex-direction: column;
                gap: 0.75rem;
            }

            .hero-btn {
                width: 100%;
                min-width: unset;
            }

            section {
                padding: 3rem 1.25rem;
            }

            .card-buttons {
                flex-direction: column;
            }

            .btn {
                text-align: center;
            }
        }
