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

        :root {
            --purple-50: #EEEDFE;
            --purple-100: #CECBF6;
            --purple-200: #AFA9EC;
            --purple-400: #7F77DD;
            --purple-600: #534AB7;
            --purple-800: #3C3489;
            --purple-900: #26215C;
            --teal-50: #E1F5EE;
            --teal-400: #1D9E75;
            --teal-600: #0F6E56;
            --coral-50: #FAECE7;
            --coral-400: #D85A30;
            --amber-50: #FAEEDA;
            --amber-400: #BA7517;
            --bg: #0D0B1F;
            --bg2: #13102B;
            --bg3: #1A1640;
            --surface: #1F1B45;
            --surface2: #2A255A;
            --text: #F0EEFF;
            --text2: #A89FCC;
            --text3: #6B6299;
            --border: rgba(127, 119, 221, 0.15);
            --border2: rgba(127, 119, 221, 0.28);
            --accent: #7F77DD;
            --accent-light: #AFA9EC;
            --accent-glow: rgba(127, 119, 221, 0.18);
            --font-head: 'Syne', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            --radius: 12px;
            --radius-lg: 20px;
            --radius-xl: 32px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ── NOISE TEXTURE ── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
        }

        /* ── GLOW ORBS ── */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(90px);
            pointer-events: none;
            z-index: 0;
        }
        .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(83,74,183,0.22) 0%, transparent 70%); top: -150px; left: -100px; }
        .orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(29,158,117,0.12) 0%, transparent 70%); bottom: 10%; right: -100px; }
        .orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(127,119,221,0.10) 0%, transparent 70%); top: 50%; left: 40%; }

        /* ── HEADER ── */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 0 2rem;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(13, 11, 31, 0.75);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
        }

        #logo {
            font-family: var(--font-head);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text);
            text-decoration: none;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        #logo img {
            height: 32px;
            width: auto;
        }

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

        .nav a {
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text2);
            text-decoration: none;
            padding: 0.45rem 1rem;
            border-radius: 8px;
            transition: color 0.2s, background 0.2s;
        }

        .nav a:hover { color: var(--text); background: var(--accent-glow); }
        .nav a.active { color: var(--text); }

        .nav .btn-nav {
            background: var(--accent);
            color: #fff;
            font-weight: 500;
            padding: 0.45rem 1.2rem;
            border-radius: 8px;
            margin-left: 0.5rem;
            transition: background 0.2s, transform 0.15s;
        }

        .nav .btn-nav:hover { background: var(--purple-800); color: #fff; transform: translateY(-1px); }

        .menu-btn {
            display: none;
            background: none;
            border: 1px solid var(--border2);
            color: var(--text);
            width: 40px; height: 40px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            align-items: center;
            justify-content: center;
        }

        /* ── HERO ── */
        .hero {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-inner {
            max-width: 720px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-glow);
            border: 1px solid var(--border2);
            border-radius: 999px;
            padding: 0.35rem 1rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--accent-light);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeUp 0.6s ease both;
        }

        .badge-dot {
            width: 7px; height: 7px;
            background: var(--teal-400);
            border-radius: 50%;
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .hero h1 {
            font-family: var(--font-head);
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            color: var(--text);
            margin-bottom: 1.5rem;
            animation: fadeUp 0.6s ease 0.1s both;
        }

        .hero h1 .accent {
            background: linear-gradient(135deg, var(--purple-400), var(--purple-200));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text2);
            max-width: 540px;
            margin-bottom: 2.5rem;
            font-weight: 300;
            line-height: 1.75;
            animation: fadeUp 0.6s ease 0.2s both;
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeUp 0.6s ease 0.3s both;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.85rem 1.8rem;
            border-radius: 10px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
            box-shadow: 0 0 0 0 var(--accent-glow);
        }

        .btn-primary:hover {
            background: var(--purple-800);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(83,74,183,0.35);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--text2);
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 400;
            padding: 0.85rem 1.8rem;
            border-radius: 10px;
            text-decoration: none;
            border: 1px solid var(--border2);
            cursor: pointer;
            transition: color 0.2s, border-color 0.2s, transform 0.15s;
        }

        .btn-ghost:hover { color: var(--text); border-color: var(--accent); transform: translateY(-2px); }

        /* ── HERO STATS ── */
        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 3.5rem;
            animation: fadeUp 0.6s ease 0.4s both;
        }

        .stat { border-left: 2px solid var(--border2); padding-left: 1rem; }
        .stat-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
        .stat-label { font-size: 0.8rem; color: var(--text3); margin-top: 2px; }

        /* ── SECTION WRAPPER ── */
        .section {
            position: relative;
            z-index: 1;
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-head);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            color: var(--text);
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        .section-sub {
            font-size: 1.05rem;
            color: var(--text2);
            font-weight: 300;
            max-width: 500px;
            line-height: 1.75;
        }

        .section-header { margin-bottom: 3.5rem; }

        /* ── DIVIDER ── */
        .divider {
            position: relative;
            z-index: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border2), transparent);
            margin: 0 2rem;
        }

        /* ── HOW IT WORKS ── */
        .how-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
        }

        .how-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            position: relative;
            transition: border-color 0.25s, transform 0.25s;
        }

        .how-card:hover { border-color: var(--border2); transform: translateY(-4px); }

        .how-num {
            font-family: var(--font-head);
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            color: var(--border2);
            margin-bottom: 1.25rem;
            letter-spacing: -0.04em;
        }

        .how-card h3 {
            font-family: var(--font-head);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.6rem;
        }

        .how-card p {
            font-size: 0.9rem;
            color: var(--text2);
            line-height: 1.7;
        }

        .how-icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .how-icon.purple { background: rgba(127,119,221,0.15); color: var(--accent); }
        .how-icon.teal { background: rgba(29,158,117,0.15); color: var(--teal-400); }
        .how-icon.coral { background: rgba(216,90,48,0.15); color: var(--coral-400); }
        .how-icon.amber { background: rgba(186,117,23,0.15); color: var(--amber-400); }

        /* ── SPLIT VALUE PROPS ── */
        .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .split-card {
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: transform 0.25s, border-color 0.25s;
        }

        .split-card:hover { transform: translateY(-4px); border-color: var(--border2); }

        .split-card.business {
            background: linear-gradient(135deg, rgba(83,74,183,0.12) 0%, rgba(13,11,31,0.6) 100%);
        }

        .split-card.vendor {
            background: linear-gradient(135deg, rgba(29,158,117,0.10) 0%, rgba(13,11,31,0.6) 100%);
        }

        .split-card-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.3rem 0.8rem;
            border-radius: 999px;
            margin-bottom: 1.5rem;
        }

        .business .split-card-tag { background: rgba(127,119,221,0.2); color: var(--accent-light); }
        .vendor .split-card-tag { background: rgba(29,158,117,0.2); color: #5DCAA5; }

        .split-card h3 {
            font-family: var(--font-head);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .split-card p {
            font-size: 0.9rem;
            color: var(--text2);
            line-height: 1.75;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            margin-bottom: 2rem;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.875rem;
            color: var(--text2);
        }

        .feature-list li::before {
            content: '';
            width: 16px; height: 16px;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 2px;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .business .feature-list li::before { background-color: rgba(127,119,221,0.25); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 4' stroke='%23AFA9EC' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); }
        .vendor .feature-list li::before { background-color: rgba(29,158,117,0.25); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 4' stroke='%235DCAA5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); }

        .btn-business {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--accent); color: #fff;
            font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
            padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none;
            transition: background 0.2s, transform 0.15s;
        }
        .btn-business:hover { background: var(--purple-800); transform: translateY(-1px); }

        .btn-vendor {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--teal-600); color: #fff;
            font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
            padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none;
            transition: background 0.2s, transform 0.15s;
        }
        .btn-vendor:hover { background: var(--teal-400); transform: translateY(-1px); }

        /* ── STORY SECTION ── */
        .story-timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            padding-left: 3rem;
        }

        .story-timeline::before {
            content: '';
            position: absolute;
            left: 11px; top: 12px; bottom: 12px;
            width: 2px;
            background: linear-gradient(180deg, var(--accent), var(--teal-400));
            border-radius: 2px;
        }

        .story-step {
            position: relative;
            padding: 0 0 2.5rem 2rem;
        }

        .story-step:last-child { padding-bottom: 0; }

        .step-dot {
            position: absolute;
            left: -3rem;
            top: 4px;
            width: 24px; height: 24px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-family: var(--font-head);
            font-size: 0.7rem;
            font-weight: 800;
            border: 2px solid var(--bg);
        }

        .step-dot.purple { background: var(--accent); color: #fff; }
        .step-dot.teal { background: var(--teal-400); color: #fff; }
        .step-dot.coral { background: var(--coral-400); color: #fff; }
        .step-dot.amber { background: var(--amber-400); color: #fff; }

        .step-act {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text3);
            margin-bottom: 0.4rem;
        }

        .story-step h3 {
            font-family: var(--font-head);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .story-step p {
            font-size: 0.9rem;
            color: var(--text2);
            line-height: 1.75;
            font-weight: 300;
        }

        /* ── PRICING ── */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.25rem;
            align-items: start;
        }

        .pricing-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            position: relative;
            transition: transform 0.25s, border-color 0.25s;
        }

        .pricing-card:hover { transform: translateY(-4px); border-color: var(--border2); }

        .pricing-card.featured {
            border-color: var(--accent);
            background: linear-gradient(135deg, rgba(83,74,183,0.15) 0%, var(--surface) 100%);
        }

        .featured-badge {
            position: absolute;
            top: -12px; left: 50%; transform: translateX(-50%);
            background: var(--accent);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 0.25rem 0.9rem;
            border-radius: 999px;
            white-space: nowrap;
        }

        .plan-name {
            font-family: var(--font-head);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--text3);
            margin-bottom: 1rem;
        }

        .plan-price {
            font-family: var(--font-head);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text3);
            vertical-align: middle;
        }

        .plan-period { font-size: 0.8rem; color: var(--text3); margin-bottom: 1.5rem; }

        .plan-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-bottom: 1.75rem;
        }

        .plan-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text2);
        }

        .plan-features li .check {
            width: 16px; height: 16px;
            border-radius: 50%;
            background: rgba(29,158,117,0.2);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 4' stroke='%235DCAA5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
            background-size: contain;
            flex-shrink: 0;
        }

        .plan-features li .dim { color: var(--text3); }

        .btn-plan {
            display: block; text-align: center;
            font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
            padding: 0.7rem 1rem; border-radius: 8px; text-decoration: none;
            transition: background 0.2s, transform 0.15s;
        }

        .btn-plan.outline {
            border: 1px solid var(--border2); color: var(--text2);
        }
        .btn-plan.outline:hover { border-color: var(--accent); color: var(--text); transform: translateY(-1px); }

        .btn-plan.filled {
            background: var(--accent); color: #fff; border: none;
        }
        .btn-plan.filled:hover { background: var(--purple-800); transform: translateY(-1px); }

        /* ── CTA BANNER ── */
        .cta-banner {
            position: relative;
            z-index: 1;
            margin: 0 2rem 6rem;
            border-radius: var(--radius-xl);
            background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-800) 50%, var(--purple-600) 100%);
            padding: 4rem 3rem;
            text-align: center;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-banner h2 {
            font-family: var(--font-head);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.025em;
            margin-bottom: 1rem;
            position: relative;
        }

        .cta-banner p {
            font-size: 1rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 2rem;
            font-weight: 300;
            position: relative;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }

        .btn-cta-white {
            display: inline-flex; align-items: center; gap: 8px;
            background: #fff; color: var(--purple-900);
            font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
            padding: 0.85rem 1.8rem; border-radius: 10px; text-decoration: none;
            transition: transform 0.15s, box-shadow 0.2s;
        }
        .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

        .btn-cta-ghost {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.1); color: #fff;
            border: 1px solid rgba(255,255,255,0.25);
            font-family: var(--font-body); font-size: 0.95rem; font-weight: 400;
            padding: 0.85rem 1.8rem; border-radius: 10px; text-decoration: none;
            transition: background 0.2s, transform 0.15s;
        }
        .btn-cta-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

        /* ── FOOTER ── */
        footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--border);
            padding: 3rem 2rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-logo {
            font-family: var(--font-head);
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text2);
            text-decoration: none;
        }

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

        .footer-links a {
            font-size: 0.85rem;
            color: var(--text3);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: var(--text2); }

        .footer-copy {
            font-size: 0.8rem;
            color: var(--text3);
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ── MOBILE ── */
        @media (max-width: 768px) {
            header { padding: 0 1.25rem; }
            .nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 1rem 1.25rem; gap: 0.25rem; }
            .nav.open { display: flex; }
            .nav .btn-nav { margin-left: 0; text-align: center; }
            .menu-btn { display: flex; }
            .hero { padding: 7rem 1.25rem 4rem; }
            .section { padding: 4rem 1.25rem; }
            .split-grid { grid-template-columns: 1fr; }
            .hero-stats { gap: 1.5rem; }
            .cta-banner { margin: 0 1.25rem 4rem; padding: 3rem 1.5rem; border-radius: var(--radius-lg); }
            .footer-inner { flex-direction: column; text-align: center; }
            .footer-links { justify-content: center; }
            .story-timeline { padding-left: 2rem; }
        }

/* =====================================
   REGISTER PAGE
===================================== */

.wrapper {
    max-width: 550px;
    margin: 80px auto;
    padding: 40px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #111827;
    text-align: center;
}

.wrapper p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    transition: all .3s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: mediumpurple;
    box-shadow: 0 0 0 4px rgba(147, 112, 219, 0.15);
}

.invalid-feedback {
    display: block;
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 6px;
}

.is-invalid {
    border-color: #dc2626;
}

/* Role Selection */

.role-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.role-card {
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    transition: all .3s ease;
    text-align: center;
}

.role-card:hover {
    border-color: mediumpurple;
    transform: translateY(-2px);
}

.role-card input {
    margin-bottom: 10px;
}

.role-card strong {
    display: block;
    margin-bottom: 6px;
    color: #111827;
}

.role-card span {
    color: #6b7280;
    font-size: 14px;
}

/* Button */

.btn-primary {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: mediumpurple;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(147,112,219,.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Login Link */

.wrapper a {
    color: mediumpurple;
    text-decoration: none;
    font-weight: 600;
}

.wrapper a:hover {
    text-decoration: underline;
}

/* Mobile */

@media (max-width: 600px) {

    .wrapper {
        margin: 30px 15px;
        padding: 25px;
    }

    .role-options {
        grid-template-columns: 1fr;
    }

}