/* Namespace Prefix: pw2- */
        :root {
            --pw2-font-serif: 'Libre Caslon Condensed', serif;
            --pw2-font-sans: '42dot Sans', sans-serif;
            --pw2-color-dark: #1A1A1A;
            --pw2-color-light: #FFFFFF;
            --pw2-color-bg: #FFFCF8;
            --pw2-color-gray: #555555;
            --pw2-card-height: 580px; /* Strict height for equality */
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--pw2-color-bg);
            font-family: var(--pw2-font-sans);
            color: var(--pw2-color-dark);
            -webkit-font-smoothing: antialiased;
        }

        .pw2-container {
            max-width: 1320px; /* Slightly wider to accommodate equal blocks */
            margin: 0 auto;
            padding: 80px 24px;
        }

        /* --- Header --- */
        .pw2-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 70px auto;
        }

        .pw2-kicker {
            display: block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: var(--pw2-color-gray);
        }

        .pw2-headline {
            font-family: var(--pw2-font-serif);
            font-size: 64px;
            font-weight: 400;
            line-height: 1;
            margin: 0 0 24px 0;
            color: var(--pw2-color-dark);
        }

        .pw2-headline span {
            font-style: italic;
            font-family: var(--pw2-font-serif);
        }

        .pw2-subtext {
            font-size: 18px;
            line-height: 1.6;
            color: var(--pw2-color-gray);
            margin: 0 auto 32px auto;
            max-width: 720px;
        }

        .pw2-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .pw2-btn {
            padding: 14px 32px;
            font-family: var(--pw2-font-sans);
            font-size: 15px;
            font-weight: 500;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .pw2-btn-dark {
            background-color: var(--pw2-color-dark);
            color: var(--pw2-color-light);
            border: 2px solid var(--pw2-color-dark);
        }

        .pw2-btn-dark:hover {
            background-color: #333;
            border-color: #333;
        }

        .pw2-btn-light {
            background-color: transparent;
            color: var(--pw2-color-dark);
            border: 2px solid #E0E0E0;
        }

        .pw2-btn-light:hover {
            border-color: var(--pw2-color-dark);
        }

        .pw2-social-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
        }

        .pw2-avatars {
            display: flex;
        }

        .pw2-avatars img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid var(--pw2-color-bg);
            margin-left: -10px;
        }
        .pw2-avatars img:first-child { margin-left: 0; }

        /* --- Strict Equal Grid --- */
        .pw2-grid {
            display: grid;
            /* Exactly 3 equal columns */
            grid-template-columns: repeat(3, 1fr); 
            gap: 24px;
            width: 100%;
        }

        .pw2-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            /* Strict fixed height ensures equality */
            height: var(--pw2-card-height); 
            width: 100%;
            box-sizing: border-box; /* Include padding in height calculation */
        }

        /* Card 1: Dark Quote */
        .pw2-card-dark {
            background-color: #222222;
            color: var(--pw2-color-light);
            padding: 48px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .pw2-quote {
            font-family: var(--pw2-font-serif);
            font-size: 27px;
            line-height: 1.2;
            margin: 0;
            font-weight: 300;
        }

        .pw2-quote span {
            font-style: italic;
        }

        .pw2-author-block {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .pw2-author-img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .pw2-author-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 2px 0;
        }
        .pw2-author-info p {
            font-size: 13px;
            opacity: 0.7;
            margin: 0;
            font-weight: 400;
        }

        /* Card 2: Video */
        .pw2-card-video {
            background-color: #000;
        }

        .pw2-card-video video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures video fills the fixed height perfectly */
            display: block;
        }

        /* Card 3: Colorful Stat */
        .pw2-card-stat {
            background-image: url('https://images.unsplash.com/photo-1618005198919-d3d4b5a92ead?q=80&w=1974&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            padding: 48px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
        }

        /* Overlay to ensure text readability */
        .pw2-card-stat::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
            z-index: 1;
        }

        .pw2-stat-content {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .pw2-stat-number {
            font-family: var(--pw2-font-serif);
            font-size: 140px;
            line-height: 0.8;
            font-weight: 400;
            margin-bottom: 24px;
            display: block;
        }

        .pw2-stat-desc {
            font-size: 18px;
            line-height: 1.5;
            font-weight: 400;
            max-width: 320px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .pw2-headline { font-size: 52px; }
            .pw2-card { height: 500px; } /* Slightly shorter on tablet */
            .pw2-quote { font-size: 28px; }
            .pw2-stat-number { font-size: 110px; }
        }

        @media (max-width: 768px) {
            .pw2-grid {
                grid-template-columns: 1fr; /* Stack on mobile */
                gap: 20px;
            }
            .pw2-card {
                height: 450px; /* Good mobile height */
            }
            .pw2-header {
                padding: 0 10px;
                margin-bottom: 50px;
            }
            .pw2-headline { font-size: 42px; }
        }