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

        :root {
            --purple-deep: hsl(261, 49%, 21%);
            --purple-main: hsl(262, 39%, 40%);
            --purple-light: hsl(265, 33%, 57%);
            --gold-main: hsl(41, 61%, 56%);
            --gold-light: hsl(43, 71%, 69%);
            --white: hsl(0, 0%, 100%);
            --gray-light: hsl(260, 23%, 97%);
            --gray-mid: hsl(260, 21%, 92%);
            --gray-text: hsl(240, 7%, 45%);
            --green-main: hsl(122, 39%, 49%);
            --green-dark: hsl(123, 46%, 34%);
            --blue-main: hsl(207, 90%, 54%);
            --orange-main: hsl(36, 100%, 50%);
            --red-main: hsl(1, 77%, 55%);

            /* Spacing variables for navigation component */
            --space-xs: 4px;
            --space-s: 8px;
            --space-m: 16px;
            --space-l: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;

            /* Other design system variables */
            --near-black: hsl(258, 33%, 6%);
            --tertiary-400: hsl(51, 100%, 50%);
            --radius-full: 50px;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--white);
            color: var(--purple-deep);
            line-height: 1.6;
        }

        /* Override header component body padding */
        body {
            padding-top: 0 !important;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-main) 100%);
            padding: 100px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, hsl(41, 61%, 56%, 0.15) 0%, transparent 70%);
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, hsl(265, 33%, 57%, 0.2) 0%, transparent 70%);
        }

        .hero-inner {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: hsl(41, 61%, 56%, 0.2);
            color: var(--gold-light);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .hero-badge svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        .hero h1 {
            font-family: 'Fraunces', serif;
            font-size: 52px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero h1 em {
            font-style: normal;
            background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 20px;
            color: var(--purple-light);
            max-width: 700px;
            margin: 0 auto 32px;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-light) 100%);
            color: var(--purple-deep);
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px hsl(41, 61%, 56%, 0.4);
        }

        .hero-cta svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            stroke-width: 2.5;
            fill: none;
        }

        /* Stats Bar */
        .stats-bar {
            background: var(--white);
            border-bottom: 1px solid var(--gray-mid);
            padding: 40px;
        }

        .stats-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item .number {
            font-family: 'Fraunces', serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--purple-main);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-item .label {
            font-size: 14px;
            color: var(--gray-text);
        }

        /* Campaign Clusters */
        .clusters-section {
            padding: 80px 40px;
        }

        .clusters-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header .label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold-main);
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-family: 'Fraunces', serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--purple-deep);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--gray-text);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Cluster Grid */
        .cluster-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .cluster-card {
            background: var(--gray-light);
            border-radius: 24px;
            padding: 36px;
            border: 1px solid var(--gray-mid);
            transition: all 0.3s ease;
        }

        .cluster-card:hover {
            box-shadow: 0 15px 50px hsl(261, 49%, 21%, 0.1);
        }

        .cluster-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .cluster-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cluster-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--white);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .cluster-card.recover .cluster-icon { background: linear-gradient(135deg, var(--green-main) 0%, var(--green-dark) 100%); }
        .cluster-card.convert .cluster-icon { background: linear-gradient(135deg, var(--orange-main) 0%, hsl(21, 100%, 45%) 100%); }
        .cluster-card.grow .cluster-icon { background: linear-gradient(135deg, var(--blue-main) 0%, hsl(212, 80%, 42%) 100%); }
        .cluster-card.brand .cluster-icon { background: linear-gradient(135deg, var(--purple-main) 0%, var(--purple-deep) 100%); }

        .cluster-title h3 {
            font-family: 'Fraunces', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--purple-deep);
            margin-bottom: 4px;
        }

        .cluster-title p {
            font-size: 14px;
            color: var(--gray-text);
        }

        /* Campaign Cards in Cluster */
        .campaign-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .campaign-card {
            background: var(--white);
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            color: var(--purple-deep);
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .campaign-card:hover {
            border-color: var(--purple-light);
            transform: translateX(4px);
        }

        .campaign-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .campaign-number {
            width: 32px;
            height: 32px;
            background: var(--gray-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: var(--purple-main);
        }

        .campaign-details h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .campaign-details .target {
            font-size: 13px;
            color: var(--gray-text);
        }

        .campaign-result {
            text-align: right;
        }

        .campaign-result .value {
            font-family: 'Fraunces', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--green-dark);
        }

        .campaign-result .label {
            font-size: 11px;
            color: var(--gray-text);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .campaign-arrow {
            width: 20px;
            height: 20px;
            stroke: var(--gray-text);
            stroke-width: 2;
            fill: none;
            margin-left: 16px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .campaign-card:hover .campaign-arrow {
            opacity: 1;
            stroke: var(--purple-main);
        }

        /* How It Works */
        .how-section {
            background: var(--purple-deep);
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
        }

        .how-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, hsl(41, 61%, 56%, 0.1) 0%, transparent 70%);
        }

        .how-inner {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .how-section .section-header .label { color: var(--gold-main); }
        .how-section .section-header h2 { color: var(--white); }
        .how-section .section-header p { color: var(--purple-light); }

        .how-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .how-step {
            text-align: center;
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-light) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Fraunces', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--purple-deep);
            margin: 0 auto 20px;
        }

        .how-step h3 {
            font-family: 'Fraunces', serif;
            font-size: 22px;
            color: var(--white);
            margin-bottom: 12px;
        }

        .how-step p {
            font-size: 15px;
            color: var(--purple-light);
            line-height: 1.6;
        }

        /* Full Campaign List */
        .full-list-section {
            padding: 80px 40px;
            background: var(--gray-light);
        }

        .full-list-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .campaign-table {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px hsl(261, 49%, 21%, 0.08);
        }

        .campaign-table-header {
            display: grid;
            grid-template-columns: 60px 2fr 1.5fr 1fr 1.5fr;
            padding: 20px 28px;
            background: var(--purple-deep);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .campaign-table-row {
            display: grid;
            grid-template-columns: 60px 2fr 1.5fr 1fr 1.5fr;
            padding: 20px 28px;
            border-bottom: 1px solid var(--gray-mid);
            align-items: center;
            text-decoration: none;
            color: var(--purple-deep);
            transition: all 0.2s ease;
        }

        .campaign-table-row:last-child { border-bottom: none; }

        .campaign-table-row:hover {
            background: var(--gray-light);
        }

        .campaign-table-row .num {
            font-family: 'Fraunces', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--purple-main);
        }

        .campaign-table-row .name {
            font-weight: 600;
        }

        .campaign-table-row .target {
            font-size: 14px;
            color: var(--gray-text);
        }

        .campaign-table-row .result {
            font-family: 'Fraunces', serif;
            font-weight: 700;
            color: var(--green-dark);
        }

        .campaign-table-row .best-for {
            font-size: 13px;
            color: var(--gray-text);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 40px;
            text-align: center;
            background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
        }

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

        .cta-section h2 {
            font-family: 'Fraunces', serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--purple-deep);
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 18px;
            color: var(--gray-text);
            margin-bottom: 32px;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-main) 100%);
            border-radius: 24px;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, hsl(41, 61%, 56%, 0.2) 0%, transparent 70%);
        }

        .cta-box h3 {
            font-family: 'Fraunces', serif;
            font-size: 28px;
            color: var(--white);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .cta-box p {
            color: var(--purple-light);
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-light) 100%);
            color: var(--purple-deep);
            padding: 18px 36px;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 600;
            text-decoration: none;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px hsl(41, 61%, 56%, 0.4);
        }

        .cta-button svg {
            width: 22px;
            height: 22px;
            stroke: currentColor;
            stroke-width: 2.5;
            fill: none;
        }


        @media (max-width: 900px) {
            .hero h1 { font-size: 36px; }
            .stats-inner { grid-template-columns: repeat(2, 1fr); }
            .cluster-grid { grid-template-columns: 1fr; }
            .how-steps { grid-template-columns: 1fr; gap: 30px; }
            .campaign-table-header,
            .campaign-table-row { 
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .campaign-table-header > *:not(:first-child):not(:nth-child(2)) { display: none; }
            .campaign-table-row > *:nth-child(n+4) { display: none; }
        }
