 :root {
            --seedsman-olive: #6B7B4C;
            --seedsman-olive-light: #7D8E5A;
            --seedsman-olive-dark: #566340;
            --seedsman-olive-pale: #E8EBE2;
            --bg-gray: #F5F5F3;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --text-primary: #2a2a2a;
            --text-secondary: #5a5a5a;
            --text-muted: #8a8a8a;
            --border-color: #e0e0dc;
            --shadow-soft: 0 4px 20px rgba(107, 123, 76, 0.08);
            --shadow-medium: 0 8px 40px rgba(107, 123, 76, 0.12);
        }

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

        body {
            font-family: 'Source Sans 3', sans-serif;
            background: var(--bg-gray);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Subtle background pattern */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 90%, rgba(107, 123, 76, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 10%, rgba(107, 123, 76, 0.04) 0%, transparent 40%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* HERO SECTION */
        .hero {
            min-height: 72vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 24px 60px;
        }

        .logo-wrapper {
            position: relative;
            margin-bottom: 36px;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .logo-wrapper:hover {
            transform: scale(1.03);
        }

        .logo-link {
            display: block;
            position: relative;
        }

        .logo-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            background: var(--seedsman-olive);
            filter: blur(70px);
            opacity: 0.12;
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.12; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.1); }
        }

        .logo-img {
            width: 200px;
            height: auto;
            object-fit: contain;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
            filter: drop-shadow(0 6px 20px rgba(107, 123, 76, 0.12));
        }

        .logo-link:hover .logo-img {
            filter: drop-shadow(0 10px 28px rgba(107, 123, 76, 0.2));
        }

        .hero h1 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .hero h1 span {
            color: var(--seedsman-olive);
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 460px;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 38px;
            background: var(--seedsman-olive);
            color: #ffffff;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(107, 123, 76, 0.25);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(107, 123, 76, 0.3);
            background: var(--seedsman-olive-light);
        }

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

        .cta-button:hover svg {
            transform: translateX(4px);
        }

        /* PROMO CODE SECTION */
        .promo-section {
            padding: 40px 24px 80px;
        }

        .promo-card {
            background: var(--bg-card);
            border: 2px solid var(--seedsman-olive);
            border-radius: 24px;
            padding: 44px;
            max-width: 560px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .promo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--seedsman-olive-dark), var(--seedsman-olive), var(--seedsman-olive-light));
        }

        .promo-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--seedsman-olive);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .promo-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .promo-code-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 18px;
        }

        .code-mask {
            font-family: 'Space Mono', monospace;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 5px;
            color: var(--seedsman-olive);
            background: var(--seedsman-olive-pale);
            padding: 16px 32px;
            border-radius: 14px;
            border: 2px dashed rgba(107, 123, 76, 0.4);
        }

        .copy-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: var(--seedsman-olive);
            color: #ffffff;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(107, 123, 76, 0.2);
        }

        .copy-button:hover {
            background: var(--seedsman-olive-light);
            transform: scale(1.04);
            box-shadow: 0 8px 24px rgba(107, 123, 76, 0.3);
        }

        .copy-button.copied {
            background: var(--seedsman-olive-dark);
        }

        .copy-button svg {
            width: 17px;
            height: 17px;
        }

        .promo-hint {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 18px;
        }

        /* BRAND TEXT SECTION */
        .brand-section {
            padding: 80px 24px;
            background: var(--bg-white);
        }

        .brand-content {
            max-width: 760px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--seedsman-olive);
            margin-bottom: 10px;
            display: block;
            font-weight: 700;
        }

        .brand-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
            position: relative;
            display: inline-block;
            color: var(--seedsman-olive);
        }

        .brand-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 45px;
            height: 3px;
            background: var(--seedsman-olive);
            border-radius: 2px;
        }

        .brand-text {
            color: var(--text-secondary);
            font-size: 1.02rem;
            line-height: 1.85;
        }

        .brand-text p {
            margin-bottom: 20px;
        }

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

        .highlight-box {
            background: var(--seedsman-olive-pale);
            border-left: 4px solid var(--seedsman-olive);
            padding: 20px 24px;
            margin: 28px 0 0 0;
            border-radius: 0 14px 14px 0;
        }

        .highlight-box p {
            margin: 0;
            color: var(--text-primary);
            font-weight: 600;
        }

        /* OTHER BRANDS SECTION */
        .other-brands {
            padding: 80px 24px;
            background: var(--bg-gray);
        }

        .other-brands .container {
            max-width: 1000px;
        }

        .other-brands-header {
            text-align: center;
            margin-bottom: 44px;
        }

        .other-brands-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .brand-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 18px;
            padding: 24px 16px;
            text-align: center;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .brand-card:hover {
            transform: translateY(-5px);
            border-color: var(--seedsman-olive);
            box-shadow: var(--shadow-medium);
        }

        .brand-card-logo {
            width: 64px;
            height: 64px;
            object-fit: contain;
            border-radius: 12px;
            background: var(--bg-gray);
            padding: 8px;
            margin: 0 auto 14px;
            position: relative;
            z-index: 1;
        }

        .brand-card-discount {
            font-family: 'Space Mono', monospace;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--seedsman-olive);
            margin-bottom: 4px;
            position: relative;
            z-index: 1;
        }

        .brand-card-name {
            font-size: 0.9rem;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
            font-weight: 600;
        }

        /* FOOTER */
        .footer {
            padding: 44px 24px;
            border-top: 1px solid var(--border-color);
            text-align: center;
            background: var(--bg-white);
        }

        .footer-text {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .footer-text strong {
            color: var(--seedsman-olive);
            font-weight: 700;
        }

        .footer-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--seedsman-olive);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--seedsman-olive-light);
        }

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

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

        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--seedsman-olive);
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 700;
            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;
            box-shadow: 0 10px 30px rgba(107, 123, 76, 0.25);
        }

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

        .toast svg {
            width: 18px;
            height: 18px;
        }

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

        @media (max-width: 680px) {
            .hero {
                min-height: 62vh;
                padding: 50px 16px 36px;
            }

            .logo-img {
                width: 160px;
            }

            .promo-card {
                padding: 28px 18px;
            }

            .code-mask {
                font-size: 1.5rem;
                letter-spacing: 3px;
                padding: 12px 22px;
            }

            .promo-code-display {
                flex-direction: column;
            }

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

            .brand-card {
                padding: 20px 12px;
            }

            .brand-card-logo {
                width: 54px;
                height: 54px;
            }

            .brand-card-discount {
                font-size: 1.1rem;
            }

            .brand-card-name {
                font-size: 0.82rem;
            }
        }