       /* ============================================
        Design System & Variables
        ============================================
        */
        :root {
            --site-color-background: #09090B;
            --site-color-surface: #1A1A1A;
            --site-color-input: #2C2C2C;
            --site-color-text: #FAFAFA;
            --site-color-text-muted: #A1A1AA;
            --site-color-accent: #E1B067;
            --site-color-accent-button: #EADBCF;
            --site-color-border: #3F3F46;
            --site-color-border-highlight: rgba(255, 255, 255, 0.08);
            --site-radius: 0.5rem;
        }

        /* ============================================
        Base & Typography
        ============================================
        */
        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            background: var(--site-color-background);
            color: var(--site-color-text);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ============================================
        Layout Utilities (Not BEM specific)
        ============================================
        */
        .site-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .site-grid {
            display: grid;
            gap: 1.5rem;
        }

        .site-grid--cols-2 {
            grid-template-columns: repeat(1, 1fr);
        }

        .site-grid--cols-3 {
            grid-template-columns: repeat(1, 1fr);
        }

        @media (min-width: 768px) {
            .site-grid--cols-2 {
                grid-template-columns: repeat(2, 1fr);
            }
            .site-grid--cols-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
             .site-grid--cols-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* ============================================
        Block: Header
        ============================================
        */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(9, 9, 11, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid #27272A;
            transition: transform 0.3s ease-in-out;
        }

        .site-header__nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-header__logo {
            font-size: 1.625rem;
            font-weight: 900;
            color: var(--site-color-text);
            letter-spacing: -0.05em;
            text-decoration: none;
        }

        .site-header__menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
        }

        .site-header__nav-link {
            color: var(--site-color-text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s ease-in-out;
            position: relative;
            padding: 0.5rem;
        }

        .site-header__nav-link:hover {
            color: var(--site-color-text);
            text-decoration: none;
        }

        .site-header__actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .site-header__enter-btn {
            font-size: 0.875rem;
            padding: 0.5rem 1rem;
        }

        .site-header__toggle {
            display: none;
            background: none;
            border: none;
            color: var(--site-color-text);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ============================================
        Block: Hero
        ============================================
        */
        .site-hero {
            padding: 12rem 0 8rem 0;
            text-align: center;
            position: relative;
        }
        
        .site-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 50%;
            background: radial-gradient(circle, rgba(225, 176, 103, 0.1), transparent 70%);
            filter: blur(100px);
            z-index: -1;
        }

        .site-hero__content {
            max-width: 720px;
            margin: 0 auto;
        }

        .site-hero__title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            letter-spacing: -0.05em;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .site-hero__subtitle {
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto 2.5rem auto;
            color: var(--site-color-text-muted);
        }

        .site-hero__cta-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        /* ============================================
        Block: Button
        ============================================
        */
        .site-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--site-radius);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }

        .site-button:hover {
            text-decoration: none;
        }

        .site-button--primary {
            background: var(--site-color-accent);
            color: var(--site-color-background);
            font-weight: 700;
        }

        .site-button--primary:hover {
            background: #d4a056;
        }

        .site-button--secondary {
            background: transparent;
            color: var(--site-color-text);
            border-color: #27272A;
        }

        .site-button--secondary:hover {
            background: #27272A;
            color: var(--site-color-text);
        }
        
        /* ============================================
        Block: Section Heading
        ============================================
        */
        .site-section-heading {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .site-section-heading__title {
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--site-color-accent);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .site-section-heading__description {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: var(--site-color-text);
            max-width: 600px;
            margin: 0 auto;
        }

        .site-section-heading__sub-description {
            max-width: 600px;
            margin: 1rem auto 0 auto;
            color: var(--site-color-text-muted);
        }

        /* ============================================
        Block: Card
        ============================================
        */
        .site-card {
            padding: 1.5rem;
            color: var(--site-color-text);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            background: transparent; /* Main element is now a container */
            border: none;
        }
        
        /* New implementation for border and sheen */
        .site-card::before, .site-card::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            clip-path: polygon(26px 0%, 100% 0%, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0% 100%, 0% 26px); /* 30% Bigger notch */
        }

        .site-card::before {
            background: var(--site-color-border); /* This is the border color */
            z-index: 0;
        }

        .site-card::after {
            background: var(--site-color-surface); /* This is the fill color */
            margin: 1px;
            box-shadow: inset 1px 1px 0px var(--site-color-border-highlight);
            z-index: 1;
        }

        .site-card__icon,
        .site-card__title,
        .site-card__content,
        .site-card__footer,
        .site-card__quote,
        .site-card__author-group {
            position: relative;
            z-index: 2; /* Ensure all content is on top of pseudo-elements */
        }
        
        .site-card__icon {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .site-card__title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .site-card__content {
            flex-grow: 1;
            font-size: 0.95rem;
            color: var(--site-color-text-muted);
            line-height: 1.7;
        }

        .site-card__footer {
            margin-top: 1.5rem;
        }
        
        .site-card--testimonial {
            justify-content: space-between;
        }

        .site-card__quote {
            font-size: 1rem;
            line-height: 1.6;
            flex-grow: 1;
            color: var(--site-color-text);
        }
        
        .site-card__author-group {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #27272A;
        }

        .site-card__author-name {
            color: var(--site-color-text);
            font-weight: 700;
        }

        .site-card__author-role {
            color: var(--site-color-text-muted);
            font-size: 0.875rem;
        }

        /* ============================================
        Block: Hosting
        ============================================
        */
        .site-hosting__logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            filter: grayscale(1) brightness(1.5);
        }

        .site-hosting__logo {
            height: 40px;
            width: auto;
        }

        /* ============================================
        Block: Form
        ============================================
        */
        .site-form-container {
            max-width: 550px;
            margin: 0 auto;
            padding: 3rem;
            position: relative;
            background: transparent; /* Main element is now a container */
            border: none;
        }
        
        /* New implementation for border and sheen */
        .site-form-container::before, .site-form-container::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            clip-path: polygon(26px 0%, 100% 0%, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0% 100%, 0% 26px); /* 30% Bigger notch */
        }
        
        .site-form-container::before {
            background: var(--site-color-border); /* This is the border color */
            z-index: 0;
        }

        .site-form-container::after {
            background: var(--site-color-surface); /* This is the fill color */
            margin: 1px;
            box-shadow: inset 1px 1px 0px var(--site-color-border-highlight);
            z-index: 1;
        }
        
        .site-form__group, .site-form__submit {
            position: relative;
            z-index: 2; /* Ensure form elements are on top */
        }
        
        .site-form__group {
            margin-bottom: 1.5rem;
        }

        .site-form__label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--site-color-text);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .site-form__input,
        .site-form__select {
            width: 100%;
            background-color: var(--site-color-input);
            border: 1px solid var(--site-color-border);
            border-radius: 4px; /* Sharper radius for inputs */
            padding: 0.75rem 1rem;
            font-size: 1rem;
            color: var(--site-color-text);
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .site-form__input::placeholder {
            color: var(--site-color-text-muted);
        }

        .site-form__input:focus,
        .site-form__select:focus {
            outline: none;
            border-color: var(--site-color-accent);
            box-shadow: 0 0 0 3px rgba(225, 176, 103, 0.2);
        }

        .site-form__select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23A1A1AA' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 0.75rem center;
            background-repeat: no-repeat;
            background-size: 1.25em 1.25em;
        }

        .site-form__helper-text {
            font-size: 0.875rem;
            color: var(--site-color-text-muted);
            margin-top: 0.5rem;
        }

        .site-form__submit {
            width: 100%;
            padding: 1rem 1.5rem;
            background: var(--site-color-accent);
            color: var(--site-color-background);
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            border-radius: 4px;
            clip-path: polygon(16px 0%, 100% 0%, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0% 100%, 0% 16px);
            transition: all 0.2s ease-in-out;
        }
        
        .site-form__submit:hover {
            background: #d4a056;
        }

        /* ============================================
        Block: Footer
        ============================================
        */
        .site-footer {
            padding: 4rem 0 2rem 0;
            background: var(--site-color-background);
            color: var(--site-color-text-muted);
            font-size: 0.9rem;
        }

        .site-footer__content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .site-footer__section-title {
            color: var(--site-color-text);
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        
        .site-footer__link {
            color: var(--site-color-text-muted);
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .site-footer__link:hover {
            color: var(--site-color-text);
            text-decoration: underline;
        }

        .site-footer__bottom {
            border-top: 1px solid #27272A;
            padding-top: 2rem;
            text-align: center;
        }

        /* ============================================
        Animation & Responsive
        ============================================
        */
        .site-fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        @media (max-width: 768px) {
            .site-header__menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--site-color-background);
                flex-direction: column;
                padding: 1rem;
                border-bottom: 1px solid #27272A;
            }
            .site-header__actions {
                gap: 0.5rem;
            }
            .site-header__enter-btn {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            .site-header__toggle {
                display: block;
            }
            .site-hero__title {
                font-size: 2.2rem;
            }
            .site-section-heading__description {
                font-size: 1.5rem;
            }
            .site-footer__content {
                grid-template-columns: repeat(2, 1fr);
            }
            .site-form-container {
                padding: 2rem 1.5rem;
            }
        }

        .site-geo-font {
            font-family: 'Geo', sans-serif;
        }