/* ============================================================================
   Lienzu — Hero Landing Page Styles
   Premium dark theme with glassmorphism, animated gradients, micro-animations
   ============================================================================ */

:root {
    --hero-bg: #0a0a0f;
    --hero-surface: rgba(255, 255, 255, 0.04);
    --hero-surface-hover: rgba(255, 255, 255, 0.08);
    --hero-border: rgba(255, 255, 255, 0.08);
    --hero-border-hover: rgba(255, 255, 255, 0.15);
    --hero-text: #f0f0f5;
    --hero-text-muted: rgba(255, 255, 255, 0.55);
    --hero-accent: #e62117;
    --hero-accent-soft: rgba(230, 33, 23, 0.15);
    --hero-accent-glow: rgba(230, 33, 23, 0.4);
    --hero-gradient-1: #e62117;
    --hero-gradient-2: #ff6b35;
    --hero-gradient-3: #ff3366;
    --hero-card-bg: rgba(255, 255, 255, 0.03);
    --hero-radius: 1.25rem;
    --hero-radius-sm: 0.75rem;
    --hero-font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --hero-max-width: 1200px;
    --hero-section-gap: 7rem;
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes heroGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes heroPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--hero-accent-glow); }
    50% { box-shadow: 0 0 30px 8px var(--hero-accent-glow); }
}

@keyframes heroOrb {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-animate {
    opacity: 0;
    animation: heroFadeUp 0.7s ease-out forwards;
}

.hero-animate-delay-1 { animation-delay: 0.1s; }
.hero-animate-delay-2 { animation-delay: 0.2s; }
.hero-animate-delay-3 { animation-delay: 0.3s; }
.hero-animate-delay-4 { animation-delay: 0.4s; }
.hero-animate-delay-5 { animation-delay: 0.5s; }

/* ============================================================================
   NAVIGATION
   ============================================================================ */

.hero-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hero-border);
    transition: background 0.3s ease;
}

.hero-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.hero-nav-brand img {
    width: 36px;
    height: auto;
}

.hero-nav-brand span {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--hero-text);
    letter-spacing: -0.01em;
}

.hero-nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-nav-link {
    color: var(--hero-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: var(--hero-radius-sm);
    transition: color 0.2s, background 0.2s;
}

.hero-nav-link:hover {
    color: var(--hero-text);
    background: var(--hero-surface-hover);
}

.hero-nav-cta {
    background: var(--hero-accent);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: var(--hero-radius-sm);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.hero-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--hero-accent-glow);
    background: #cc1c14;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

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

/* Background orbs */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-section::before {
    width: 600px;
    height: 600px;
    background: var(--hero-gradient-1);
    top: -200px;
    right: -150px;
    animation: heroOrb 20s ease-in-out infinite;
}

.hero-section::after {
    width: 400px;
    height: 400px;
    background: var(--hero-gradient-3);
    bottom: -100px;
    left: -100px;
    animation: heroOrb 15s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--hero-accent-soft);
    border: 1px solid rgba(230, 33, 23, 0.25);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--hero-gradient-2);
    font-weight: 500;
    margin-bottom: 1.75rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hero-accent);
    animation: heroPulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--hero-gradient-1), var(--hero-gradient-2), var(--hero-gradient-3));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradientShift 4s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--hero-text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: var(--hero-accent);
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--hero-radius-sm);
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--hero-accent-glow);
    background: #cc1c14;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: var(--hero-surface);
    color: var(--hero-text);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: var(--hero-radius-sm);
    border: 1px solid var(--hero-border);
    cursor: pointer;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.hero-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--hero-border-hover);
    background: var(--hero-surface-hover);
}

/* ============================================================================
   SHOWCASE / DEMO SECTION
   ============================================================================ */

.hero-showcase {
    padding: var(--hero-section-gap) 2rem;
    text-align: center;
}

.hero-showcase-inner {
    max-width: var(--hero-max-width);
    margin: 0 auto;
}

.hero-section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hero-accent);
    margin-bottom: 1rem;
}

.hero-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-section-desc {
    font-size: 1.05rem;
    color: var(--hero-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.hero-showcase-card {
    border-radius: var(--hero-radius);
    overflow: hidden;
    border: 1px solid var(--hero-border);
    background: var(--hero-card-bg);
    transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
    animation: cardEntrance 0.6s ease-out forwards;
    opacity: 0;
}

.hero-showcase-card:nth-child(1) { animation-delay: 0.1s; }
.hero-showcase-card:nth-child(2) { animation-delay: 0.2s; }
.hero-showcase-card:nth-child(3) { animation-delay: 0.3s; }
.hero-showcase-card:nth-child(4) { animation-delay: 0.4s; }

.hero-showcase-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--hero-border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-showcase-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.hero-showcase-card figcaption {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--hero-text-muted);
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.hero-features {
    padding: var(--hero-section-gap) 2rem;
}

.hero-features-inner {
    max-width: var(--hero-max-width);
    margin: 0 auto;
    text-align: center;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.hero-feature-card {
    background: var(--hero-card-bg);
    border: 1px solid var(--hero-border);
    border-radius: var(--hero-radius);
    padding: 2rem 1.75rem;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.hero-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--hero-accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--hero-border-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.hero-feature-card:hover::before {
    opacity: 1;
}

.hero-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.hero-feature-card p {
    font-size: 0.92rem;
    color: var(--hero-text-muted);
    line-height: 1.5;
}

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */

.hero-steps {
    padding: var(--hero-section-gap) 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(230, 33, 23, 0.03) 50%, transparent 100%);
}

.hero-steps-inner {
    max-width: var(--hero-max-width);
    margin: 0 auto;
    text-align: center;
}

.hero-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    counter-reset: step-counter;
}

.hero-step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    counter-increment: step-counter;
}

.hero-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--hero-accent-soft);
    border: 2px solid rgba(230, 33, 23, 0.3);
    color: var(--hero-accent);
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hero-step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-step p {
    font-size: 0.9rem;
    color: var(--hero-text-muted);
    line-height: 1.5;
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */

.hero-pricing {
    padding: var(--hero-section-gap) 2rem;
}

.hero-pricing-inner {
    max-width: var(--hero-max-width);
    margin: 0 auto;
    text-align: center;
}

.hero-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
}

.hero-pricing-card {
    background: var(--hero-card-bg);
    border: 1px solid var(--hero-border);
    border-radius: var(--hero-radius);
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.hero-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-pricing-card.featured {
    border-color: var(--hero-accent);
    background: linear-gradient(180deg, rgba(230, 33, 23, 0.06) 0%, var(--hero-card-bg) 50%);
}

.hero-pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, var(--hero-gradient-1), var(--hero-gradient-2));
    border-radius: 0 0 4px 4px;
}

.hero-pricing-popular {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--hero-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-pricing-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.hero-pricing-amount {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-pricing-currency {
    font-size: 1.1rem;
    color: var(--hero-text-muted);
    font-weight: 500;
}

.hero-pricing-period {
    font-size: 0.9rem;
    color: var(--hero-text-muted);
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--hero-border);
}

.hero-pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.hero-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--hero-text-muted);
    padding: 0.4rem 0;
    line-height: 1.45;
}

.hero-pricing-features li::before {
    content: '✓';
    color: var(--hero-accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.hero-pricing-features li.disabled {
    opacity: 0.4;
}

.hero-pricing-features li.disabled::before {
    content: '—';
    color: var(--hero-text-muted);
}

.hero-pricing-cta {
    display: block;
    width: 100%;
    padding: 0.85rem;
    text-align: center;
    border-radius: var(--hero-radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
}

.hero-pricing-cta.primary {
    background: var(--hero-accent);
    color: #fff;
}

.hero-pricing-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--hero-accent-glow);
}

.hero-pricing-cta.secondary {
    background: var(--hero-surface);
    color: var(--hero-text);
    border: 1px solid var(--hero-border);
}

.hero-pricing-cta.secondary:hover {
    background: var(--hero-surface-hover);
    border-color: var(--hero-border-hover);
    transform: translateY(-2px);
}

/* ============================================================================
   FINAL CTA
   ============================================================================ */

.hero-final-cta {
    padding: var(--hero-section-gap) 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-final-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--hero-accent);
    filter: blur(150px);
    opacity: 0.12;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.hero-final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-final-cta p {
    font-size: 1.1rem;
    color: var(--hero-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.hero-footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--hero-border);
    text-align: center;
}

.hero-footer-inner {
    max-width: var(--hero-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-footer-brand img {
    width: 28px;
    height: auto;
}

.hero-footer-brand span {
    font-weight: 600;
    font-size: 1rem;
}

.hero-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
}

.hero-footer-links a {
    color: var(--hero-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.hero-footer-copy {
    font-size: 0.85rem;
    color: var(--hero-text-muted);
}

.hero-legal-page {
    padding: 7.5rem 2rem 4rem;
}

.hero-legal-shell {
    max-width: 920px;
    margin: 0 auto;
}

.hero-legal-card {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--hero-border);
    border-radius: var(--hero-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-legal-updated {
    color: var(--hero-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.hero-legal-card > p {
    color: var(--hero-text-muted);
    margin-bottom: 1rem;
}

.hero-legal-section {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-legal-section h2 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.hero-legal-section p,
.hero-legal-section li {
    color: var(--hero-text-muted);
    margin-bottom: 0.75rem;
}

.hero-legal-section ul {
    margin-left: 1.25rem;
    display: grid;
    gap: 0.5rem;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

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

    .hero-nav-actions {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    /* Hide nav links on mobile — keep only the CTA button */
    .hero-nav-link {
        display: none;
    }

    .hero-section {
        padding: 7rem 1.25rem 4rem;
    }

    .hero-showcase,
    .hero-features,
    .hero-steps,
    .hero-pricing,
    .hero-final-cta,
    .hero-legal-page {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-showcase-card img {
        height: 180px;
    }

    .hero-footer-inner {
        flex-direction: column;
    }

    :root {
        --hero-section-gap: 4.5rem;
    }
}

.hero-nav-status {
    color: var(--hero-text-muted);
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--hero-border);
    border-radius: 999px;
    background: var(--hero-surface);
}

.hero-nav-cta-secondary {
    background: transparent;
    border: 1px solid var(--hero-border);
    color: var(--hero-text);
}

.hero-nav-cta-secondary:hover {
    background: var(--hero-surface-hover);
}

.upgrade-pricing-page {
    min-height: 100vh;
    padding-top: 8rem;
}

.upgrade-page-desc strong {
    color: var(--hero-text);
}

.upgrade-max-banner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 780px;
    margin: 0 auto 2rem;
    padding: 1rem 1.25rem;
    border-radius: var(--hero-radius-sm);
    border: 1px solid rgba(230, 33, 23, 0.25);
    background: rgba(230, 33, 23, 0.08);
    text-align: left;
}

.upgrade-pricing-grid {
    align-items: stretch;
}

.upgrade-current-card {
    border-color: rgba(230, 33, 23, 0.35);
}

.upgrade-card-note {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0.85rem 1rem;
    border-radius: var(--hero-radius-sm);
    border: 1px solid var(--hero-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--hero-text-muted);
    font-weight: 600;
    text-align: center;
}

.upgrade-card-note.current {
    border-color: rgba(230, 33, 23, 0.28);
    color: var(--hero-text);
    background: rgba(230, 33, 23, 0.12);
}

.upgrade-card-note.locked {
    opacity: 0.85;
}

@media (max-width: 480px) {
    .hero-showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
    }

    .hero-steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-legal-card {
        padding: 1.5rem;
    }
}
