:root {
    --pink: #FF2D87;
    --purple: #C478CE;
    --deep-purple: #9B42A8;
    --blue: #3B82F6;
    --cyan: #06B6D4;
    --green: #10B981;
    --yellow: #FBBF24;
    --orange: #F97316;
    --red: #EF4444;
    --dark: #16042A;
    --dark-surface: #200838;
    --dark-card: #2A0E48;
    --dark-border: #481A5C;
    --white: #FFFFFF;
    --text: #F2EAFA;
    --text-muted: #C0A4D4;
    --rainbow: linear-gradient(135deg, #EF4444, #F97316, #FBBF24, #10B981, #3B82F6, #8B5CF6, #EC4899);
    --gradient-primary: linear-gradient(135deg, #C478CE, #F5A623);
    --gradient-warm: linear-gradient(135deg, #FF2D87, #F97316);
    --gradient-cool: linear-gradient(135deg, #8B5CF6, #3B82F6);
    --gradient-fresh: linear-gradient(135deg, #06B6D4, #10B981);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.65;
    letter-spacing: -0.01em;
    background: var(--dark);
    overflow-x: hidden;
    font-feature-settings: "ss01", "ss02", "cv01";  /* sharper alternates */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headlines: tighter tracking + slightly heavier baseline for display feel */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a { color: #C478CE; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-gold); }

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

/* Rainbow stripe */
.rainbow-bar {
    height: 4px;
    background: var(--rainbow);
    background-size: 200% 100%;
    animation: rainbow-shift 4s linear infinite;
}

@keyframes rainbow-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Navigation */
nav {
    background: rgba(22, 4, 42, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--dark-border);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--white); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
}

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

.btn-primary {
    background: var(--brand-purple);
    color: var(--white);
    box-shadow: 0 0 18px rgba(245, 166, 35, 0.2);
}
.btn-primary:hover {
    background: var(--brand-purple);
    box-shadow: 0 0 32px rgba(245, 166, 35, 0.55), 0 8px 24px rgba(245, 166, 35, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover { border-color: var(--pink); color: var(--pink); }
.btn-small { padding: 10px 22px; font-size: 0.875rem; }
.btn-large { padding: 18px 44px; font-size: 1.125rem; }

/* Hero */
.hero {
    position: relative;
    padding: 120px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%,
        rgba(126, 40, 132, 0.15),
        rgba(236, 72, 153, 0.15),
        rgba(249, 115, 22, 0.15),
        rgba(251, 191, 36, 0.1),
        rgba(16, 185, 129, 0.1),
        rgba(59, 130, 246, 0.15),
        rgba(126, 40, 132, 0.15));
    animation: hero-rotate 20s linear infinite;
    z-index: 0;
}

@keyframes hero-rotate {
    100% { transform: rotate(360deg); }
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(126, 40, 132, 0.15);
    border: 1px solid rgba(126, 40, 132, 0.3);
    color: var(--purple);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    max-width: 720px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Stats */
.stats-section { padding: 80px 0; }

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

.stat {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    transition: transform 0.3s, border-color 0.3s;
}

.stat:hover { transform: translateY(-4px); border-color: var(--purple); }

.stat-value {
    font-size: 2.75rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat:nth-child(2) .stat-value { background: var(--gradient-warm); -webkit-background-clip: text; }
.stat:nth-child(3) .stat-value { background: var(--gradient-cool); -webkit-background-clip: text; }
.stat:nth-child(4) .stat-value { background: var(--gradient-fresh); -webkit-background-clip: text; }

.stat-label { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tag-pink { background: rgba(236, 72, 153, 0.15); color: var(--pink); border: 1px solid rgba(236, 72, 153, 0.3); }
.tag-purple { background: rgba(126, 40, 132, 0.15); color: var(--purple); border: 1px solid rgba(126, 40, 132, 0.3); }
.tag-blue { background: rgba(59, 130, 246, 0.15); color: var(--blue); border: 1px solid rgba(59, 130, 246, 0.3); }
.tag-green { background: rgba(16, 185, 129, 0.15); color: var(--green); border: 1px solid rgba(16, 185, 129, 0.3); }
.tag-orange { background: rgba(249, 115, 22, 0.15); color: var(--orange); border: 1px solid rgba(249, 115, 22, 0.3); }
.tag-cyan { background: rgba(6, 182, 212, 0.15); color: var(--cyan); border: 1px solid rgba(6, 182, 212, 0.3); }

/* Problem Section */
.problem-section { padding: 80px 0; }

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.problem-card {
    padding: 32px;
    border-radius: 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
}

.problem-card .icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
.problem-card p { color: var(--text-muted); font-size: 0.95rem; }
.problem-card .stat-inline {
    display: inline-block;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Product Pillars */
.pillars-section {
    padding: 100px 0;
    background: var(--dark-surface);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pillar-card {
    padding: 40px 32px;
    border-radius: 24px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pillar-card:nth-child(1)::before { background: var(--gradient-warm); }
.pillar-card:nth-child(2)::before { background: var(--gradient-cool); }
.pillar-card:nth-child(3)::before { background: var(--gradient-fresh); }

.pillar-card:hover { transform: translateY(-6px); border-color: rgba(126, 40, 132, 0.4); }

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.pillar-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.pillar-card .subtitle {
    font-size: 0.85rem;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pillar-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }

.feature-list { list-style: none; }
.feature-list li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Identity Section */
.identity-section { padding: 100px 0; }

.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.identity-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.identity-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 28px; }

.identity-features {
    display: grid;
    gap: 20px;
}

.identity-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.identity-feature .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.icon-pink { background: rgba(236, 72, 153, 0.15); }
.icon-purple { background: rgba(126, 40, 132, 0.15); }
.icon-blue { background: rgba(59, 130, 246, 0.15); }
.icon-green { background: rgba(16, 185, 129, 0.15); }

.identity-feature h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.identity-feature p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.identity-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-card {
    padding: 28px;
    border-radius: 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
}

.mock-card.accent { border-color: rgba(126, 40, 132, 0.4); }

.mock-card h4 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }

.mock-field {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--dark-border);
    font-size: 0.9rem;
}

.mock-field:last-child { border-bottom: none; }
.mock-field .label { color: var(--text-muted); }
.mock-field .value { color: var(--white); font-weight: 600; }
.mock-field .value.rainbow-text {
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    background: var(--dark-surface);
}

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

.price-card {
    padding: 36px 28px;
    border-radius: 24px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    transition: transform 0.3s;
    position: relative;
}

.price-card:hover { transform: translateY(-4px); }

.price-card.featured {
    border-color: var(--purple);
    box-shadow: 0 0 40px rgba(126, 40, 132, 0.15);
}

.price-card.featured::after {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.price-card .price-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 4px;
}

.price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-note { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 24px; }

.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.875rem;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.price-features .check { color: var(--green); }

.price-card .btn { width: 100%; text-align: center; }

/* Fees Table */
.fees-section { padding: 80px 0; }

.fees-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.fees-table th,
.fees-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--dark-border);
    font-size: 0.9rem;
}

.fees-table thead th {
    background: rgba(126, 40, 132, 0.1);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fees-table td { color: var(--text-muted); }
.fees-table td:first-child { color: var(--text); font-weight: 500; }

.fees-table .free {
    color: var(--green);
    font-weight: 700;
}

.fees-table tbody tr:last-child td { border-bottom: none; }
.fees-table tbody tr:hover { background: rgba(126, 40, 132, 0.05); }

/* Why Now */
.why-now-section { padding: 100px 0; }

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-now-card {
    padding: 36px;
    border-radius: 24px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    text-align: center;
}

.why-now-card .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
}

.why-now-card:nth-child(1) .number { background: rgba(236, 72, 153, 0.2); color: var(--pink); }
.why-now-card:nth-child(2) .number { background: rgba(126, 40, 132, 0.2); color: var(--purple); }
.why-now-card:nth-child(3) .number { background: rgba(16, 185, 129, 0.2); color: var(--green); }

.why-now-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.why-now-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Media Section */
.media-section {
    padding: 100px 0;
    background: var(--dark-surface);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.media-card {
    padding: 36px;
    border-radius: 24px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    transition: transform 0.3s;
}

.media-card:hover { transform: translateY(-4px); }
.media-card .icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.media-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.media-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Values */
.values-section { padding: 100px 0; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-card {
    padding: 28px 20px;
    border-radius: 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    text-align: center;
}

.value-card .icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.value-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.8rem; }

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(126, 40, 132, 0.15) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section h2 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Quote */
.quote-section {
    padding: 80px 0;
    background: var(--dark-surface);
}

.quote-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-block blockquote {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-block cite {
    color: var(--text-muted);
    font-style: normal;
    font-size: 0.95rem;
}

/* Competitive */
.competitive-section { padding: 80px 0; }

.competitive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.comp-card {
    padding: 28px;
    border-radius: 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
}

.comp-card.defunct { opacity: 0.6; }
.comp-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.comp-card .comp-status {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.comp-card .comp-status.dead { color: var(--red); }
.comp-card .comp-status.niche { color: var(--yellow); }
.comp-card .comp-status.generic { color: var(--text-muted); }
.comp-card .comp-status.us { color: var(--green); }
.comp-card p { color: var(--text-muted); font-size: 0.85rem; }

/* Footer */
footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer-col p { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a { display: block; color: var(--text-muted); margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Login Page --- */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #0D0220, #160528, #1E082E, #110324, #180528);
    background-size: 300% 300%;
    animation: loginGrad 15s ease infinite;
    padding: 32px;
}
@keyframes loginGrad {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.login-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.12;
}
.login-glow-pink {
    width: 300px; height: 300px;
    background: var(--pink);
    top: 10%; left: 15%;
}
.login-glow-blue {
    width: 300px; height: 300px;
    background: var(--blue);
    bottom: 10%; right: 15%;
}
.login-glow-purple {
    width: 250px; height: 250px;
    background: var(--purple);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
}
.login-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    background: rgba(36, 20, 54, 0.92);
    border: 1px solid rgba(126, 40, 132, 0.18);
    border-radius: 16px;
    padding: 44px 40px 36px;
    animation: loginFadeUp 0.5s ease;
    box-shadow:
        0 0 80px rgba(255, 45, 135, 0.06),
        0 20px 60px rgba(0, 0, 0, 0.5);
}
@keyframes loginFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.login-brand {
    text-align: center;
    margin-bottom: 8px;
}
.login-brand .logo {
    font-size: 1.75rem;
    display: inline-block;
}
.login-divider-line {
    width: 60px;
    height: 3px;
    margin: 14px auto 8px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    border-radius: 2px;
}
.login-cta {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-bottom: 32px;
}
.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.login-btn:hover {
    transform: translateY(-1px);
}
.login-btn:active {
    transform: translateY(0);
}
.login-btn-primary {
    background: var(--brand-purple);
    color: #fff;
    box-shadow: 0 0 18px rgba(245, 166, 35, 0.2);
}
.login-btn-primary:hover {
    background: var(--brand-purple);
    box-shadow: 0 0 32px rgba(245, 166, 35, 0.55), 0 8px 24px rgba(245, 166, 35, 0.25);
}
.login-or {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}
.login-or span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}
.login-or::before,
.login-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(126, 40, 132, 0.12);
}
.login-btn-apple {
    background: #000;
    color: #fff;
}
.login-btn-apple:hover {
    background: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.login-btn-google {
    background: #fff;
    color: #3c4043;
}
.login-btn-google:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.login-btn-facebook {
    background: #1877F2;
    color: #fff;
}
.login-btn-facebook:hover {
    background: #1a85ff;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.25);
}
.login-btn-email {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(126, 40, 132, 0.35);
}
.login-btn-email:hover {
    border-color: rgba(126, 40, 132, 0.55);
    color: var(--text);
    background: rgba(126, 40, 132, 0.04);
}
.login-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(126, 40, 132, 0.08);
}
.login-footer a {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.login-footer a:hover {
    color: rgba(255, 255, 255, 0.4);
}
.login-footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(126, 40, 132, 0.2);
}
@media (max-width: 480px) {
    .login-card { padding: 32px 24px 28px; }
    .login-glow-pink { width: 200px; height: 200px; }
    .login-glow-blue { width: 200px; height: 200px; }
    .login-glow-purple { display: none; }
}

/* Dashboard */
.dashboard-header {
    background: var(--dark-surface);
    padding: 32px 0;
    border-bottom: 1px solid var(--dark-border);
}

.dashboard-header h1 { font-size: 1.75rem; color: var(--white); }
.dashboard-header p { color: var(--text-muted); }

.dashboard-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    padding: 32px 0;
    min-height: 60vh;
}

.sidebar a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.sidebar a:hover, .sidebar a.active {
    background: var(--dark-card);
    color: var(--purple);
}

.dashboard-content { min-width: 0; }

.card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.card h3 { margin-bottom: 16px; color: var(--purple); }

/* Account Switcher */
.account-switcher {
    position: relative;
    margin: 0 0 4px;
}
.account-switcher-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--dark-border);
    transition: all 0.2s;
    white-space: nowrap;
}
.account-switcher-current:hover { border-color: var(--purple); }
.account-switcher.open .account-switcher-current { border-color: var(--purple); background: var(--dark-card); }
.account-switcher-current-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple);
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-switcher-chevron {
    font-size: 0.55rem;
    color: var(--text-muted);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.account-switcher.open .account-switcher-chevron { transform: rotate(180deg); }
.account-switcher-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    min-width: 220px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 6px 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    z-index: 200;
}
.account-switcher.open .account-switcher-dropdown { display: block; }
.account-switcher-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
}
.account-switcher-item:hover { background: var(--dark-card); }
.account-switcher-item.active { background: rgba(126, 40, 132, 0.06); }
.account-switcher-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid var(--dark-border);
}
.account-switcher-item-icon img {
    width: 100%;
    height: 100%;
    border-radius: 7px;
    object-fit: cover;
}
.account-switcher-item-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.account-switcher-item-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-switcher-item-role {
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-switcher-item.active .account-switcher-item-name { color: var(--purple); }
.account-switcher-check {
    font-size: 0.75rem;
    color: var(--purple);
    flex-shrink: 0;
}
.account-switcher-section-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    padding: 8px 14px 4px;
}
.account-switcher-divider {
    height: 1px;
    background: var(--dark-border);
    margin: 6px 0;
}

/* Legal Pages */
.legal { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.legal h1 { margin-bottom: 24px; color: var(--white); }
.legal h2 { margin: 32px 0 12px; color: var(--purple); }
.legal p { margin-bottom: 16px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .problem-grid { grid-template-columns: 1fr; }
    .identity-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .why-now-grid { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .competitive-grid { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .nav-links { gap: 12px; }
    .section-header h2 { font-size: 2rem; }
    .cta-section h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .stats { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .nav-links a:not(.btn) { display: none; }
}

/* ============================================================
   Brand identity — purple piggy (baseline) & gold piggy (premium)
   ============================================================ */

:root {
    --brand-purple: #7E2884;
    --brand-gold: #F5A623;
    --gradient-gold: linear-gradient(135deg, #F5A623, #FBBF24);
}

/* Logo lockups */
.brand-logo { height: 40px; width: auto; display: block; }
.brand-logo-sm { height: 32px; }
.brand-logo-lg { height: 56px; }

/* Nav: replace gradient text logo with the actual brand mark */
nav .logo {
    line-height: 0;
    background: none;
    -webkit-text-fill-color: initial;
    animation: none;
}
nav .logo img {
    height: 36px;
    width: auto;
    display: block;
    transition: transform 0.2s;
}
nav .logo:hover img { transform: scale(1.04); }

/* Standalone piggy marks */
.piggy-mark {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    flex-shrink: 0;
}

/* Pillar icon as brand mark (replaces emoji) */
.pillar-card .pillar-icon.brand-mark {
    font-size: 0;
    margin-bottom: 16px;
    line-height: 0;
}
.pillar-card .pillar-icon.brand-mark img {
    height: 64px;
    width: auto;
    display: block;
}

/* Hero piggy in badge */
.hero-badge .piggy-mark {
    height: 22px;
    margin: -2px 8px -2px -6px;
    vertical-align: middle;
}

/* Hero floating piggy decoration */
.hero-piggy {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
    z-index: 0;
}
.hero-piggy.left {
    top: 50px;
    left: -60px;
    height: 280px;
    transform: rotate(-12deg);
}
.hero-piggy.right {
    bottom: 30px;
    right: -40px;
    height: 220px;
    transform: rotate(8deg);
}

/* Cards with piggy corner: h3 padding so text doesn't run under the image */
.price-card:has(.piggy-corner) h3 { padding-right: 76px; }

/* Premium tier — gold treatment */
.price-card.premium-tier {
    border-color: rgba(245, 166, 35, 0.45);
    box-shadow: 0 0 40px rgba(245, 166, 35, 0.12);
    position: relative;
    overflow: visible;
}
.price-card.premium-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 24px 24px 0 0;
}
.price-card.premium-tier::after {
    content: 'Premium ✦';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: #1a1000;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}
.price-card.premium-tier .piggy-corner {
    position: absolute;
    top: 22px;
    right: 22px;
    height: 72px;
    width: auto;
    filter: drop-shadow(0 6px 18px rgba(245, 166, 35, 0.45));
}
.price-card.premium-tier .price {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-card.premium-tier:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 60px rgba(245, 166, 35, 0.22);
}

/* Pro tier — purple piggy corner mark */
.price-card .piggy-corner.purple {
    position: absolute;
    top: 22px;
    right: 22px;
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 14px rgba(126, 40, 132, 0.45));
}

/* Footer brand block */
footer .footer-col img.brand-logo {
    margin-bottom: 16px;
    height: 40px;
}

/* Marketplace Featured tier — also gold accent (smaller scale) */
#marketplace-pricing .price-card.featured {
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.10);
}
#marketplace-pricing .price-card.featured::after {
    background: var(--gradient-gold);
    color: #1a1000;
    content: 'Featured ✦';
}
