/* Modern Digital Hub CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --surface: rgba(255, 255, 255, 0.05);
    --text-primary: #fff;
    --text-secondary: #b8b8d1;
    --text-muted: #7c7c9a;
    --border: rgba(255, 255, 255, 0.08);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Visually hidden accessible text helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -150px;
    left: -150px;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, -50px);
    }
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 999999 !important;
    overflow: visible;
    /* Ensure menu isn't clipped on some platforms */
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.btn-login,
.btn-get-started {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-get-started {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-get-started:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.pnp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.pnp-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
}

.hero {
    padding: 160px 24px 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s, background 0.3s;    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border-width: 1px !important;
    transform: none !important;
}

.btn-primary,
.btn-secondary {
    font-weight: 600 !important;
    letter-spacing: normal !important;
}



.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}


.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    padding: 24px;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation: float-card 4s infinite;
}

.card-2 {
    top: 150px;
    right: 0;
    width: 260px;
    animation: float-card 4s infinite 1.3s;
}

.card-3 {
    bottom: 0;
    left: 60px;
    width: 240px;
    animation: float-card 4s infinite 2.6s;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-section {
    padding: 60px 24px;
    border-bottom: 1px solid var(--border);
}

.trust-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    color: var(--text-muted);
    font-weight: 600;
    opacity: 0.5;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
}

.features {
    padding: 120px 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-secondary);
}

.products {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* spacing variable used by product card internals so button can align edge-to-edge */
.product-card {
    --card-pad: 32px;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px -15px rgba(102, 126, 234, 0.5);
    border-color: rgba(102, 126, 234, 0.5);
}

.product-card:hover::before {
    opacity: 0.03;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    flex: 0 0 240px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 200px;
    right: 12px;
    z-index: 1;
}

.product-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-content {
    padding: var(--card-pad);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.product-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.product-badge {
    padding: 6px 14px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.product-title {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    color: var(--text-secondary);
    margin: 12px 0 20px;
    line-height: 1.6;
    font-size: 15px;
}

.product-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
}

.product-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.product-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

/* hide the visible price on product cards (prices shown elsewhere like pricing section remain) */
.product-pricing {
    display: none !important;
}

.price-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-pricing .price {
    font-size: 30px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.product-btn {
    /* inset button: fills the padded content area with a small gap to card edge */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.14s ease, box-shadow 0.14s ease;
    box-shadow: 0 8px 28px rgba(102, 126, 234, 0.12);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.product-btn::before {
    /* subtle overlay for hover */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.14s;
    z-index: -1;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(102, 126, 234, 0.16);
    color: #fff;
}

.product-btn:hover::before {
    opacity: 0.08;
}

.product-btn svg {
    transition: transform 0.3s;
    width: 14px;
    height: 14px;
}

.product-btn:hover svg {
    transform: translateX(2px);
}

.pricing {
    padding: 120px 24px;
}

/* New pricing card styles for Creator Vault */
.pricing-grid.two-col {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 36px;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative;
    overflow: visible;
    min-height: 460px;
    /* keep both cards visually equal height */
}

.pricing-card.small {
    padding: 30px;
}

.pricing-card.large {
    padding: 30px;
}

.pricing-card.muted {
    border-color: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
}

.pricing-card.starter .pricing-plan {
    font-size: 20px;
    font-weight: 700;
}

.pricing-card.premium {
    border: 1px solid rgba(212, 175, 55, 0.36);
    box-shadow: 0 14px 50px rgba(212, 175, 55, 0.09);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    background-color: #0f1726;
    /* slightly lighter dark to pop */
}

.pricing-card.premium:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 60px rgba(212, 175, 55, 0.14);
}

/* Recommended badge for Premium column */
.recommended-badge {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #fcd34d, #f59e0b);
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.4px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ribbon {
    position: absolute;
    right: 20px;
    top: -14px;
    background: linear-gradient(90deg, #ffd86b, #ff9a9e);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.6px;
    box-shadow: 0 10px 30px rgba(255, 160, 100, 0.12);
}

.pricing-header {
    position: relative;
    margin-bottom: 16px;
}

.pricing-price-section {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
}

.price-full {
    font-size: 48px;
    font-weight: 900;
    color: #ffd86b;
    background: none;
    -webkit-text-fill-color: #ffd86b;
}

.price-sub {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    color: var(--text-secondary);
}

.pricing-features.compact {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pricing-features li {
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.02);
}

.btn-pricing-starter,
.btn-pricing-premium {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-pricing-starter {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    text-decoration: none;
}

.btn-pricing-starter:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-pricing-premium {
    background: linear-gradient(90deg, #ffd86b, #ff9a9e);
    color: #1a1a2e;
    box-shadow: 0 12px 40px rgba(255, 160, 120, 0.12);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    
}

.btn-pricing-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255, 160, 120, 0.16);
}

.pricing-comparison {
    margin-top: 28px;
}

.comparison-title {
    font-size: 20px;
    line-height: 1.12;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: var(--text-primary);
    display: block;
    word-break: break-word;
    max-width: 100%;
    hyphens: auto;
}

/* make sure the title scales down and wraps cleanly on narrower viewports */
@media (max-width: 1100px) {
    .comparison-title {
        font-size: 18px;
    }
}

@media (max-width: 700px) {
    .comparison-title {
        font-size: 16px;
        text-align: left;
    }
}

.comparison-table {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table {
    background: linear-gradient(180deg, #05070d, #0c111c);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    backdrop-filter: saturate(180%) blur(14px);
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 18px 40px -8px rgba(0, 0, 0, 0.6);
}

.comparison-table .row {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    gap: 20px;
    padding: 22px 34px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.18s ease, transform 0.18s ease;
}

.comparison-table .row.header {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    font-weight: 800;
    color: #fff;
    font-size: 15px;
    letter-spacing: .5px;
    padding: 26px 34px;
    text-transform: uppercase;
}

.comparison-table .row:nth-child(odd) {
    background: rgba(255, 255, 255, 0.01);
}

.comparison-table .row:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* vertical separators between columns to make comparison clearer */
.comparison-table .row>div {
    padding: 12px 16px;
    color: var(--text-secondary);
}

.comparison-table .row>div:nth-child(2),
.comparison-table .row>div:nth-child(3) {
    text-align: center;
}

.comparison-table .row>div:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 26px;
    font-weight: 600;
}

.comparison-table .row>div:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 26px;
    font-weight: 700;
}

/* price/number styling to stand out */
.comparison-table strong.number {
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}

/* better contrast for check/cross emojis/text */
.comparison-table .row>div {
    font-size: 15px;
}

/* styled compare tokens */
.compare {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Color icons via currentColor */
.compare.yes {
    color: #34c759;
}

.compare.no {
    color: #ff453a;
}

.compare svg {
    display: inline-block;
}

/* responsive: stack values under label on narrow screens for readability */
@media (max-width: 900px) {
    .comparison-table {
        margin: 0 -18px;
        border-radius: 0;
    }

    .comparison-table .row {
        grid-template-columns: 1fr;
        padding: 18px 22px;
    }

    .comparison-table .row.header {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
        padding: 20px 22px;
    }

    .comparison-table .row:not(.header)>div {
        padding: 6px 4px;
    }

    .comparison-table .row:not(.header)>div:first-child {
        font-weight: 700;
        color: #fff;
        padding-bottom: 10px;
    }

    .comparison-table .row:not(.header)>div:nth-child(2),
    .comparison-table .row:not(.header)>div:nth-child(3) {
        display: inline-block;
        width: 49%;
        box-sizing: border-box;
        border-left: none;
        text-align: center;
        padding: 8px 6px;
    }
}

.value-stack {
    margin-top: 38px;
    padding: 34px 38px 40px;
    background: linear-gradient(145deg, rgba(14, 18, 28, 0.92), rgba(8, 10, 18, 0.88));
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 28px 48px -14px rgba(0, 0, 0, 0.55);
    color: #cbd5e1;
}

.value-stack h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 14px;
    font-weight: 800;
}

.value-stack p {
    margin: 0 0 10px 0;
    color: var(--text-muted);
}

.value-stack ul {
    margin-top: 12px;
    padding-left: 18px;
}

.value-stack ul li {
    margin-bottom: 10px;
    color: #e2e8f0;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.value-stack ul li::before {
    content: '💎';
    font-size: 16px;
    line-height: 1;
}

.value-stack .total-value {
    margin-top: 14px;
    font-size: 16px;
    color: var(--text-primary);
}

/* make the value-stack stand out full-width inside container */
.value-stack {
    width: 100%;
}

.pricing-cta.final-cta {
    text-align: center;
    margin-top: 28px;
}

.pricing-cta.final-cta .cta-buttons {
    display: inline-flex;
    gap: 12px;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .pricing-grid.two-col {
        grid-template-columns: 1fr;
    }

    .comparison-table .row {
        grid-template-columns: 1fr 1fr;
    }
}

/* New premium comparison card styles */
.comparison-card {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(180deg, rgba(8, 10, 20, 0.7), rgba(12, 14, 26, 0.55));
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 18px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6) inset, 0 6px 30px rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 28% 1fr;
    gap: 18px;
    align-items: start;
    height: 100%;
}

.comparison-features {
    background: transparent;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comparison-features .features-header {
    font-weight: 800;
    color: var(--text-primary);
    font-size: 15px;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    color: #cbd5e1;
    flex: 0 0 30px;
}

.comparison-plans {
    display: flex;
    gap: 16px;
    align-items: stretch;
    padding: 4px;
}

.plan-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 10px;
    padding: 8px;
    min-width: 180px;
}

.plan-header {
    text-align: center;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.plan-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.plan-price {
    font-size: 20px;
    font-weight: 900;
    margin-top: 6px;
    color: #ffd86b;
    background: none;
    -webkit-text-fill-color: #ffd86b;
}

.plan-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    font-weight: 700;
}

.plan-col.premium {
    background: linear-gradient(180deg, rgba(18, 20, 35, 0.6), rgba(12, 13, 26, 0.5));
    box-shadow: 0 8px 30px rgba(102, 124, 234, 0.06), 0 0 30px rgba(118, 75, 162, 0.08);
    border: 1px solid rgba(118, 75, 162, 0.12);
    transform: translateY(-4px);
}

.token {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.token.yes {
    color: #60d394;
    background: rgba(96, 211, 148, 0.06);
}

.token.no {
    color: #9aa0ad;
    background: rgba(154, 160, 173, 0.03);
}

.comparison-value-stack {
    margin-top: 18px;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.value-list {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.005));
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.value-item {
    padding: 10px 12px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    gap: 12px;
    align-items: center;
}

.value-check {
    color: #8fe59f;
    font-weight: 800;
    display: inline-flex;
    width: 22px;
}

.value-total {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(118, 75, 162, 0.12), rgba(102, 124, 234, 0.06));
    border: 1px solid rgba(118, 75, 162, 0.12);
}

.total-label {
    color: var(--text-muted);
    font-weight: 600;
}

.total-amount {
    font-size: 22px;
    font-weight: 900;
}

.purchase-price {
    color: var(--text-primary);
    font-weight: 700;
}

.value-cta {
    margin-top: 8px;
}

.value-cta .btn-pricing-premium {
    padding: 12px 22px;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .comparison-card {
        aspect-ratio: auto;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-plans {
        flex-direction: column;
    }

    .comparison-value-stack {
        flex-direction: column;
    }

    .value-total {
        width: 100%;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.pricing-card {
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 12px;
    color: white;
}

.pricing-plan {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-muted);
}

.pricing-price-section {
    display: flex;
    align-items: baseline;
    margin: 24px 0 32px;
}

.price {
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1 1 auto;
}

.pricing-features li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
}

.pricing-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    margin-top: auto;
}

.pricing-btn.featured {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.cta {
    padding: 120px 24px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-cta-primary {
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-cta-secondary {
    padding: 18px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
}

/* Footer */
.footer {
    padding: 60px 24px 40px;
    background: #02040a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.footer-disclaimers {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    max-width: 900px;
}

.disclaimer-item h4 {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.disclaimer-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 13px;
}

.disclaimer-item p:last-child {
    margin-bottom: 0;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand-name {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.footer-nav {
    display: flex;
    list-style: none;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 14px;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-copyright {
    color: #475569;
    font-size: 13px;
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-visual {
        display: none;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 36px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-nav {
        gap: 16px 24px;
    }
}

/* FAQ styles */
.faq-section {
    padding: 80px 24px;
    border-top: 1px solid var(--border);
    background: transparent;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: transparent;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '\25BC';
    transition: transform 0.25s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.32s ease;
}

.faq-item.active .faq-answer {
    padding-top: 12px;
    max-height: 400px;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 15px;
        padding: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* highlight the premium card so it visually "pops" while keeping both cards same size */
/* Premium card highlight without overlapping other sections */
.pricing-card.premium.featured,
.pricing-card.featured {
    border-color: rgba(118, 75, 162, 0.45);
    box-shadow: 0 12px 36px rgba(118, 75, 162, 0.25), 0 4px 14px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* Softer glow ring */
.pricing-card.premium.featured::after,
.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 20%, rgba(118, 75, 162, 0.35), rgba(102, 126, 234, 0.05) 60%);
    pointer-events: none;
    z-index: -1;
}

/* make starter card look slightly muted */
.pricing-card.starter {
    opacity: 0.94;
    transform: none;
}

/* ===== Added modern comparison buttons & feature styling ===== */
.btn-starter-secondary {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .3px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.btn-starter-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-starter-secondary:active {
    transform: translateY(1px);
}

.btn-premium-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f7c948, #ffb347, #ff9a3c);
    color: #111827;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 22px -6px rgba(255, 166, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
    cursor: pointer;
    letter-spacing: .4px;
    transition: box-shadow .25s ease, transform .25s ease;
}

.btn-premium-primary:hover {
    box-shadow: 0 10px 30px -6px rgba(255, 166, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.btn-premium-primary:active {
    transform: translateY(2px);
}

.feat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #e2e8f0;
}

.feat svg {
    opacity: .85;
}

.comparison-table .row.cta-row {
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    padding-top: 34px;
    padding-bottom: 40px;
}

@media (max-width: 900px) {
    .comparison-table .row.cta-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100dvh - 72px);

        /* Glassmorphism */
        background: rgba(11, 11, 15, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding-top: 40px;

        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);

        z-index: 2147483647;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .pnp-menu-toggle {
        display: flex;
        z-index: 1000000 !important;
    }

    .header {
        transform: none !important;
        position: fixed !important;
        z-index: 1000000 !important;
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        padding: 0 24px;
        margin-top: 12px;
        text-align: center;
    }

    .nav-actions button {
        width: 100%;
        justify-content: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        display: none;
        /* Simplify hero on mobile */
    }

    .products-grid {
        justify-content: center;
        grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    }

    .features-grid {
        justify-content: center;
        grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    }

    .pricing-grid.two-col {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: auto;
    }

    .value-stack {
        padding: 20px;
        margin-top: 24px;
    }

    .value-stack h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    .value-stack p,
    .value-stack ul li {
        font-size: 14px;
    }

    .cta-buttons,
    .pricing-cta.final-cta .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-pricing-starter,
    .btn-pricing-premium {
        width: 100%;
    }
}

.hl_page-preview--content .row-UOpcZj_Wln {
    box-shadow: none;
    padding: 0;
    margin: 0;
    background-color: var(--transparent);
    backdrop-filter: none;
}

.hl_page-preview--content .section-c5Y3r0ziH5 {
    box-shadow: none;
    padding: 0;
    margin: 0;
    background-color: var(--transparent);
    backdrop-filter: none;
}

/* Legal Pages Styles */
.legal-section {
    padding: 120px 24px 80px;
    min-height: 80vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 24px 0 16px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
    color: var(--text-secondary);
}

.legal-content ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 24px;
    }

    .legal-content h1 {
        font-size: 32px;
    }
}

.contact-section {
    padding: 80px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    min-height: 550px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background-color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 16px;
    }
}