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

        :root {
            --primary: #b185db;
            --primary-dark: #9b6bc4;
            --primary-light: #d4b8eb;
            --gradient-start: #ffd6ff;
            --gradient-end: #c8b6ff;
            --rose: #ffa8c0;
            --mint: #d0f0e0;
            --mint-dark: #88d8b0;
            --bg-light: #f6f2f9;
            --bg-white: #fefcff;
            --text-dark: #2d2d3a;
            --text-muted: #6b6b7a;
            --border-soft: rgba(177, 133, 219, 0.15);
            --shadow-soft: 0 12px 40px rgba(177, 133, 219, 0.12);
            --success-bg: #edf9f1;
            --success-text: #1f6f43;
            --error-bg: #fff0f3;
            --error-text: #9b3357;
        }

        html {
            scroll-behavior: smooth;
        }

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

        body.modal-open {
            overflow: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
        }

        nav {
            position: fixed;
            inset: 0 0 auto;
            z-index: 100;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(254, 252, 255, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(177, 133, 219, 0.1);
        }

        .nav-logo {
            width: min(200px, 42vw);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links .btn {
            color: #fff;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1.6rem;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            font-size: 0.98rem;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
            color: #fff;
            box-shadow: 0 10px 24px rgba(177, 133, 219, 0.3);
        }

        .btn-secondary {
            background: #fff;
            color: var(--primary);
            border: 2px solid var(--primary-light);
        }

        .btn-secondary:hover {
            background: var(--bg-light);
            border-color: var(--primary);
        }

        .btn-large {
            padding: 1rem 2.4rem;
            font-size: 1.08rem;
        }

        .btn-full {
            width: 100%;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: -50%;
            background:
                radial-gradient(circle at 20% 20%, rgba(208, 240, 224, 0.45) 0%, transparent 38%),
                radial-gradient(circle at 80% 30%, rgba(255, 214, 255, 0.35) 0%, transparent 42%),
                radial-gradient(circle at 60% 80%, rgba(200, 182, 255, 0.35) 0%, transparent 40%);
            animation: float 20s ease-in-out infinite;
        }

        .hero-content,
        .container {
            width: min(1200px, 100%);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 840px;
        }

        .hero-logo {
            width: min(520px, 88vw);
            margin: 0 auto 2rem;
            animation: fade-in-up 1s ease;
        }

        .hero h1 {
            font-size: clamp(2.1rem, 5vw, 3.8rem);
            font-weight: 300;
            margin-bottom: 1.25rem;
            animation: fade-in-up 1s ease 0.15s both;
        }

        .hero h1 strong {
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            font-weight: 300;
            margin-bottom: 2.25rem;
            animation: fade-in-up 1s ease 0.3s both;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fade-in-up 1s ease 0.45s both;
        }

        .hero-link {
            display: inline-flex;
            align-items: center;
            color: var(--text-muted);
            font-size: 1.02rem;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .hero-link:hover {
            color: var(--primary);
        }

        .section {
            padding: 6rem 2rem;
        }

        .section-light {
            background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
        }

        .section-alt {
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
        }

        .section-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.7rem);
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.08rem;
        }

        .features-grid,
        .steps,
        .pricing-grid {
            display: grid;
            gap: 2rem;
        }

        .features-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .feature-card,
        .step,
        .pricing-card {
            background: #fff;
            border-radius: 28px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-soft);
        }

        .feature-card {
            padding: 2.25rem;
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            font-size: 1.5rem;
        }

        .feature-icon.mint { background: linear-gradient(145deg, #e0f8f0 0%, #88d8b0 100%); }
        .feature-icon.rose { background: linear-gradient(145deg, #ffc0d4 0%, #e07898 100%); }
        .feature-icon.purple { background: linear-gradient(145deg, #d8c8ff 0%, #a088e8 100%); }
        .feature-icon.pink { background: linear-gradient(145deg, #ffe8ff 0%, #d8a0e0 100%); }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke: #fff;
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .feature-card h3,
        .step h3,
        .pricing-card h3 {
            font-size: 1.32rem;
            margin-bottom: 0.75rem;
        }

        .feature-card p,
        .step p,
        .pricing-subtitle {
            color: var(--text-muted);
        }

        .stats {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
            color: #fff;
        }

        .stats-grid {
            width: min(1200px, 100%);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 200;
            margin-bottom: 0.35rem;
        }

        .stat-item p {
            opacity: 0.92;
        }

        .steps {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }

        .step {
            padding: 2rem;
            text-align: center;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 999px;
            margin: 0 auto 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
        }

        .pricing-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            max-width: 860px;
            margin: 0 auto;
        }

        .pricing-card {
            position: relative;
            padding: 2.5rem;
            text-align: center;
        }

        .pricing-trial {
            margin: 1rem 0 1.25rem;
            padding: 0.7rem 0.9rem;
            border-radius: 16px;
            background: rgba(177, 133, 219, 0.08);
            color: var(--primary-dark);
            font-size: 0.94rem;
            font-weight: 700;
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            box-shadow: 0 16px 48px rgba(177, 133, 219, 0.2);
        }

        .pricing-card.featured::before {
            content: '';
            position: absolute;
            inset: 0 0 auto;
            height: 30px;
            border-radius: 28px 28px 0 0;
            background: linear-gradient(90deg, var(--mint-dark), var(--primary), var(--rose));
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.45rem 1.2rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
            color: #fff;
            font-size: 0.82rem;
            font-weight: 700;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--primary);
            margin: 1rem 0 0.2rem;
        }

        .price span,
        .price-monthly span {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .price-monthly {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin: 0 0 2rem;
        }

        .pricing-features li {
            padding: 0.7rem 0;
            border-bottom: 1px solid rgba(177, 133, 219, 0.12);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--mint-dark);
            font-weight: 700;
        }

        .cta {
            padding: 6rem 2rem;
            text-align: center;
        }

        .cta-box {
            width: min(900px, 100%);
            margin: 0 auto;
            padding: 3rem;
            background: linear-gradient(145deg, #ffffff 0%, #faf4ff 100%);
            border: 1px solid var(--border-soft);
            border-radius: 32px;
            box-shadow: var(--shadow-soft);
        }

        .cta h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .cta p {
            color: var(--text-muted);
            font-size: 1.08rem;
            margin-bottom: 1.8rem;
        }

        .alert {
            border-radius: 18px;
            padding: 1rem 1.1rem;
            margin-bottom: 1rem;
            font-size: 0.96rem;
        }

        .alert-error {
            background: var(--error-bg);
            color: var(--error-text);
        }

        .form-grid {
            display: grid;
            gap: 1rem;
        }

        .form-field {
            display: grid;
            gap: 0.45rem;
        }

        .form-field label {
            font-weight: 600;
            font-size: 0.96rem;
        }

        .form-field input {
            width: 100%;
            padding: 0.95rem 1rem;
            border-radius: 16px;
            border: 1px solid rgba(177, 133, 219, 0.2);
            background: #fff;
            font: inherit;
            color: var(--text-dark);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-field input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(177, 133, 219, 0.12);
        }

        .hidden-field {
            position: absolute;
            left: -9999px;
            opacity: 0;
            pointer-events: none;
        }

        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 300;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: rgba(45, 45, 58, 0.55);
            backdrop-filter: blur(10px);
        }

        .modal-overlay.is-open {
            display: flex;
        }

        .modal-card {
            width: min(680px, 100%);
            max-height: min(90vh, 860px);
            overflow: auto;
            background: #fff;
            border: 1px solid var(--border-soft);
            border-radius: 30px;
            box-shadow: 0 24px 80px rgba(45, 45, 58, 0.22);
            padding: 2rem 1.75rem;
            position: relative;
        }

        .modal-grid {
            display: block;
        }

        .modal-copy,
        .modal-form-wrap {
            padding: 0;
        }

        .modal-form-wrap {
            background: linear-gradient(145deg, #ffffff 0%, #fdf8ff 100%);
            border: 1px solid var(--border-soft);
            border-radius: 24px;
            padding: 1.5rem;
            margin-top: 1.25rem;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 42px;
            height: 42px;
            border-radius: 999px;
            border: 1px solid var(--border-soft);
            background: #fff;
            color: var(--text-dark);
            font-size: 1.25rem;
            cursor: pointer;
        }

        .modal-close:hover {
            background: var(--bg-light);
        }

        .modal-eyebrow {
            display: inline-block;
            margin-bottom: 0.85rem;
            padding: 0.45rem 0.8rem;
            border-radius: 999px;
            background: rgba(177, 133, 219, 0.1);
            color: var(--primary-dark);
            font-size: 0.88rem;
            font-weight: 700;
        }

        .modal-copy h2 {
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            font-weight: 300;
            margin-bottom: 0.75rem;
        }

        .modal-copy > p {
            color: var(--text-muted);
            font-size: 1.02rem;
        }

        .modal-status {
            text-align: center;
            padding: 1rem 0.5rem 0.5rem;
        }

        .modal-status-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 1.25rem;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--success-bg);
            color: var(--success-text);
            font-size: 2rem;
            font-weight: 700;
        }

        footer {
            padding: 3rem 2rem;
            background: var(--text-dark);
            color: rgba(255, 255, 255, 0.75);
        }

        .footer-content {
            width: min(1200px, 100%);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-logo {
            width: min(180px, 48vw);
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-meta {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(28px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(2%, 2%) rotate(1deg); }
            66% { transform: translate(-1%, 1%) rotate(-1deg); }
        }

        @media (max-width: 900px) {
            .modal-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 6.5rem 1.25rem 3rem;
            }

            .hero p {
                font-size: 1.08rem;
            }

            .hero-buttons,
            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .section,
            .cta {
                padding-left: 1.25rem;
                padding-right: 1.25rem;
            }

            .cta-box,
            .modal-card {
                padding: 1.5rem;
            }
        }
