        :root {
            --hemp-green: #1B8A4B;
            --hemp-green-light: #22A55B;
            --hemp-green-dark: #156B3B;
            --hemp-emerald: #0D5C35;
            --bg-white: #FFFFFF;
            --bg-cream: #FAFBF9;
            --text-dark: #1A1A1A;
            --text-body: #4A4A4A;
            --text-light: #7A7A7A;
            --border-light: #E8EBE8;
            --accent-line: #1B8A4B;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-white);
            color: var(--text-dark);
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Decorative top line */
        .top-accent {
            height: 4px;
            background: linear-gradient(90deg, var(--hemp-emerald), var(--hemp-green), var(--hemp-green-light));
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* HERO SECTION - Horizontal layout */
        .hero {
            padding: 100px 24px 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 65vh;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1000px;
            width: 100%;
        }

        .hero-content {
            order: 1;
        }

        .hero-visual {
            order: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-container {
            position: relative;
            display: inline-block;
        }

        .logo-link {
            display: block;
            transition: transform 0.4s ease;
        }

        .logo-link:hover {
            transform: scale(1.02);
        }

        .logo-img {
            width: 280px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(27, 138, 75, 0.1));
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-cream);
            border: 1px solid var(--border-light);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--hemp-green);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--hemp-green);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.4rem, 4.5vw, 3.4rem);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero h1 .highlight {
            color: var(--hemp-green);
            position: relative;
        }

        .hero h1 .discount {
            display: block;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.5em;
            color: var(--hemp-green);
            margin-top: 8px;
            letter-spacing: -1px;
        }

        .hero-description {
            font-size: 1.05rem;
            color: var(--text-body);
            margin-bottom: 32px;
            max-width: 400px;
            line-height: 1.7;
        }

        .cta-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
        }

        .cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: var(--hemp-green);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 2px solid var(--hemp-green);
        }

        .cta-primary:hover {
            background: var(--hemp-green-dark);
            border-color: var(--hemp-green-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(27, 138, 75, 0.2);
        }

        .cta-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .cta-primary:hover svg {
            transform: translateX(3px);
        }

        .trust-note {
            font-size: 0.8rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .trust-note svg {
            width: 14px;
            height: 14px;
            color: var(--hemp-green);
        }

        /* PROMO SECTION - Card style */
        .promo-section {
            padding: 0 24px 100px;
        }

        .promo-wrapper {
            max-width: 600px;
            margin: 0 auto;
        }

        .promo-card {
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 48px 40px;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }

        .promo-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 40px;
            right: 40px;
            height: 3px;
            background: var(--hemp-green);
            border-radius: 0 0 4px 4px;
        }

        .promo-eyebrow {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--hemp-green);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .promo-heading {
            font-family: 'DM Serif Display', serif;
            font-size: 1.6rem;
            margin-bottom: 32px;
            color: var(--text-dark);
        }

        .code-display {
            margin-bottom: 24px;
        }

        .code-mask {
            font-family: 'JetBrains Mono', monospace;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 8px;
            color: var(--hemp-green);
            background: linear-gradient(135deg, var(--bg-cream) 0%, #f0f4f0 100%);
            padding: 20px 40px;
            border-radius: 12px;
            display: inline-block;
            border: 2px dashed var(--border-light);
        }

        .copy-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            max-width: 280px;
            padding: 16px 24px;
            background: var(--text-dark);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background: #000;
            transform: scale(1.02);
        }

        .copy-btn.copied {
            background: var(--hemp-green);
        }

        .copy-btn svg {
            width: 18px;
            height: 18px;
        }

        .promo-footer {
            margin-top: 20px;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* BRAND SECTION - Editorial style */
        .brand-section {
            padding: 100px 24px;
            background: var(--bg-cream);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .brand-grid {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 60px;
            max-width: 900px;
            margin: 0 auto;
        }

        .brand-sidebar {
            position: sticky;
            top: 40px;
            height: fit-content;
        }

        .brand-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--hemp-green);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .brand-name {
            font-family: 'DM Serif Display', serif;
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .brand-meta {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .brand-meta span {
            display: block;
            margin-bottom: 4px;
        }

        .brand-content p {
            font-size: 1.02rem;
            color: var(--text-body);
            line-height: 1.9;
            margin-bottom: 24px;
        }

        .brand-content p:last-of-type {
            margin-bottom: 0;
        }

        .brand-callout {
            background: var(--bg-white);
            border-left: 3px solid var(--hemp-green);
            padding: 24px 28px;
            margin-top: 32px;
            border-radius: 0 12px 12px 0;
        }

        .brand-callout p {
            margin: 0;
            font-weight: 500;
            color: var(--text-dark);
        }

        /* OTHER BRANDS - Minimal grid */
        .offers-section {
            padding: 100px 24px;
        }

        .offers-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .offers-header .section-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--hemp-green);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .offers-header h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 2rem;
            color: var(--text-dark);
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .offer-card {
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 28px 16px;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .offer-card:hover {
            border-color: var(--hemp-green);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(27, 138, 75, 0.08);
        }

        .offer-logo {
            width: 56px;
            height: 56px;
            object-fit: contain;
            border-radius: 10px;
            background: var(--bg-cream);
            padding: 8px;
            margin: 0 auto 14px;
        }

        .offer-discount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--hemp-green);
            margin-bottom: 4px;
        }

        .offer-name {
            font-size: 0.85rem;
            color: var(--text-body);
            font-weight: 500;
        }

        /* FOOTER - Clean minimal */
        .footer {
            padding: 48px 24px;
            text-align: center;
            border-top: 1px solid var(--border-light);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .footer-text {
            font-size: 0.95rem;
            color: var(--text-body);
        }

        .footer-text strong {
            color: var(--hemp-green);
        }

        .footer-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--hemp-green);
        }

        .footer-link svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .footer-link:hover svg {
            transform: translateX(3px);
        }

        /* Toast */
        .toast {
            position: fixed;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--text-dark);
            color: #fff;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 1000;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .toast svg {
            width: 18px;
            height: 18px;
            color: var(--hemp-green-light);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .offers-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 60px 24px;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
                text-align: center;
            }

            .hero-content {
                order: 2;
            }

            .hero-visual {
                order: 1;
            }

            .logo-img {
                width: 220px;
            }

            .hero-description {
                max-width: 100%;
            }

            .cta-group {
                align-items: center;
            }

            .brand-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .brand-sidebar {
                position: static;
                text-align: center;
            }

            .promo-card {
                padding: 36px 24px;
            }

            .code-mask {
                font-size: 1.5rem;
                letter-spacing: 4px;
                padding: 16px 28px;
            }

            .offers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .offer-card {
                padding: 22px 12px;
            }

            .offer-logo {
                width: 48px;
                height: 48px;
            }
        }
