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

:root {
    --green: #3fe08a;
    --green-light: #5aeba0;
    --bg: #0a0f1a;
    --bg-card: rgba(255,255,255,0.03);
    --bg-card-hover: rgba(63,224,138,0.03);
    --border: rgba(255,255,255,0.08);
    --border-green: rgba(63,224,138,0.3);
    --text: #e8edf5;
    --text-muted: rgba(232,237,245,0.55);
    --text-faint: rgba(232,237,245,0.35);
    --text-dim: rgba(232,237,245,0.25);
    --red-bg: rgba(226,75,74,0.15);
    --red-fg: #f07070;
    --red-border: rgba(226,75,74,0.3);
    --amber-bg: rgba(239,159,39,0.15);
    --amber-fg: #f0b96a;
    --amber-border: rgba(239,159,39,0.3);
    --green-bg: rgba(63,224,138,0.15);
    --green-fg: #3fe08a;
    --green-border: rgba(63,224,138,0.3);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

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

/* ─── UTILITIES ─── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 6rem 0;
}

.section-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    color: #fff;
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    max-width: 580px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 3.5rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-block;
    background: var(--green);
    color: var(--bg);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-size: 0.975rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

    .btn-primary:hover {
        background: var(--green-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(63,224,138,0.28);
    }

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: rgba(232,237,245,0.75);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-size: 0.975rem;
    font-weight: 400;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}

    .btn-ghost:hover {
        border-color: rgba(255,255,255,0.35);
        color: #fff;
        background: rgba(255,255,255,0.04);
    }

/* ─── NAV ─── */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(10,15,26,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 200;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.02em;
    text-decoration: none;
}

    .nav-logo span {
        color: var(--green);
    }

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

    .nav-links a {
        color: rgba(232,237,245,0.6);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        transition: color 0.2s;
    }

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

a.nav-cta {
    color: #0a0f1a !important;
}
.nav-cta {
    background: var(--green);
    color: var(--bg);
    border: none;
    padding: 0.55rem 1.3rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .nav-cta:hover {
        background: var(--green-light);
        transform: translateY(-1px);
    }

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 7rem 2.5rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(63,224,138,0.07) 0%, transparent 68%);
    top: -120px;
    right: -150px;
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(63,224,138,0.08);
    border: 1px solid rgba(63,224,138,0.22);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

    .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--green);
        border-radius: 50%;
        flex-shrink: 0;
        animation: blink 2.2s ease-in-out infinite;
    }

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.rag-demo {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.rag-pill {
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.rag-r {
    background: var(--red-bg);
    color: var(--red-fg);
    border: 1px solid var(--red-border);
}

.rag-a {
    background: var(--amber-bg);
    color: var(--amber-fg);
    border: 1px solid var(--amber-border);
}

.rag-g {
    background: var(--green-bg);
    color: var(--green-fg);
    border: 1px solid var(--green-border);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.25rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 780px;
    position: relative;
    outline: none;
}

    .hero h1:focus, .hero h1:focus-visible {
        outline: none;
    }

    .hero h1 em {
        font-style: italic;
        color: var(--green);
    }

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    position: relative;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.hero-note {
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: var(--text-faint);
    position: relative;
}

/* ─── STAT BAR ─── */
.stat-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.018);
    padding: 2.5rem 2.5rem;
}

.stat-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

    .stat-num span {
        color: var(--green);
    }

.stat-label {
    font-size: 0.8rem;
    color: rgba(232,237,245,0.42);
    font-weight: 400;
    line-height: 1.5;
}

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

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

    .step:hover {
        border-color: var(--border-green);
        transform: translateY(-4px);
        background: rgba(63,224,138,0.025);
    }

.step-num {
    font-family: var(--font-display);
    font-size: 3.2rem;
    color: rgba(63,224,138,0.13);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.step p {
    font-size: 0.85rem;
    color: rgba(232,237,245,0.5);
    line-height: 1.7;
    font-weight: 300;
}

.step-tag {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    background: rgba(63,224,138,0.08);
    color: var(--green);
    border: 1px solid rgba(63,224,138,0.18);
}

/* ─── FEATURES ─── */
.features-wrap {
    background: rgba(255,255,255,0.012);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-left: 1px solid var(--border);
}

.feature {
    padding: 2.5rem 2.25rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

    .feature:hover {
        background: rgba(63,224,138,0.025);
    }

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(63,224,138,0.08);
    border: 1px solid rgba(63,224,138,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 18px;
}

.feature h3 {
    font-size: 0.975rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature p {
    font-size: 0.84rem;
    color: rgba(232,237,245,0.47);
    line-height: 1.72;
    font-weight: 300;
}

/* ─── PRICING ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.plan {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    position: relative;
    transition: transform 0.2s;
}

    .plan:hover {
        transform: translateY(-3px);
    }

    .plan.featured {
        background: rgba(63,224,138,0.055);
        border-color: rgba(63,224,138,0.42);
    }

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--bg);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
    font-family: var(--font-body);
}

.plan-name {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232,237,245,0.45);
    margin-bottom: 0.75rem;
}

.plan-price {
    font-family: var(--font-display);
    font-size: 2.9rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.3rem;
}

    .plan-price sup {
        font-family: var(--font-body);
        font-size: 1.1rem;
        font-weight: 500;
        vertical-align: super;
    }

    .plan-price sub {
        font-family: var(--font-body);
        font-size: 0.875rem;
        font-weight: 300;
        color: rgba(232,237,245,0.38);
        vertical-align: baseline;
    }

.plan-trial {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 500;
}

.plan-desc {
    font-size: 0.84rem;
    color: rgba(232,237,245,0.44);
    margin-bottom: 1.75rem;
    line-height: 1.68;
    font-weight: 300;
}

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

    .plan-items li {
        font-size: 0.84rem;
        color: rgba(232,237,245,0.65);
        display: flex;
        align-items: flex-start;
        gap: 0.65rem;
        font-weight: 300;
        line-height: 1.45;
    }

        .plan-items li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            font-size: 0.78rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

.btn-plan {
    width: 100%;
    padding: 0.825rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--text);
    text-decoration: none;
    display: block;
    text-align: center;
}

    .btn-plan:hover {
        border-color: rgba(255,255,255,0.35);
        background: rgba(255,255,255,0.05);
    }

    .btn-plan.featured-btn {
        background: var(--green);
        color: var(--bg);
        border-color: transparent;
    }

        .btn-plan.featured-btn:hover {
            background: var(--green-light);
            box-shadow: 0 6px 22px rgba(63,224,138,0.28);
        }

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: rgba(232,237,245,0.28);
}

/* ─── FOOTER ─── */
footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 2.5rem;
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: rgba(255,255,255,0.38);
    text-decoration: none;
}

    .footer-logo span {
        color: var(--green);
    }

.footer-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}

    .footer-links a {
        font-size: 0.8rem;
        color: rgba(232,237,245,0.28);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: rgba(232,237,245,0.6);
        }

.footer-copy {
    font-size: 0.78rem;
    color: rgba(232,237,245,0.22);
}

.btn-tour {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--green);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s, gap 0.2s;
    white-space: nowrap;
}

    .btn-tour:hover {
        color: var(--green-light);
        gap: 0.55rem;
    }

.tour-prompt {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 2.5rem;
}

.tour-prompt-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.tour-prompt-text {
    font-size: 0.88rem;
    color: rgba(232,237,245,0.45);
    font-weight: 300;
}

.tour-prompt-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    transition: color 0.2s;
}

    .tour-prompt-link:hover {
        color: var(--green-light);
    }

/* ─── PRICING TABS ─── */
.pricing-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.pricing-tab {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
    font-family: var(--font-body);
    min-width: 220px;
}

    .pricing-tab:hover {
        border-color: rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.05);
    }

    .pricing-tab.active {
        border-color: rgba(255,255,255,0.25);
        background: rgba(255,255,255,0.055);
    }

.pricing-tab-pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
}

.pricing-tab-pill--brand {
    background: rgba(63,224,138,0.12);
    color: var(--green);
    border: 1px solid rgba(63,224,138,0.25);
}

.pricing-tab-pill--mfr {
    background: rgba(99,149,255,0.12);
    color: #7fa8ff;
    border: 1px solid rgba(99,149,255,0.25);
}

.pricing-tab-label {
    font-size: 0.82rem;
    color: rgba(232,237,245,0.5);
    font-weight: 300;
}

.pricing-rationale {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(226,75,74,0.06);
    border: 1px solid rgba(226,75,74,0.18);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: rgba(232,237,245,0.6);
    font-weight: 300;
    line-height: 1.65;
}

    .pricing-rationale strong {
        color: var(--red-fg);
        font-weight: 600;
    }

.pricing-rationale--mfr {
    background: rgba(99,149,255,0.06);
    border-color: rgba(99,149,255,0.18);
}

.pricing-rationale-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── ACTOR SECTIONS ─── */
.actor-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
}

.actor-pill--brand {
    background: rgba(63,224,138,0.1);
    color: var(--green);
    border: 1px solid rgba(63,224,138,0.25);
}

    .actor-pill--brand::before {
        content: '▶';
        font-size: 0.55rem;
    }

.actor-pill--mfr {
    background: rgba(99,149,255,0.1);
    color: #7fa8ff;
    border: 1px solid rgba(99,149,255,0.25);
}

    .actor-pill--mfr::before {
        content: '▶';
        font-size: 0.55rem;
    }

/* ─── CONNECTOR ─── */
.actor-connector {
    padding: 0 2.5rem;
}

.connector-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.connector-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.connector-badge {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    max-width: 560px;
    flex-shrink: 0;
}

.connector-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.connector-badge span:last-child {
    font-size: 0.84rem;
    color: rgba(232,237,245,0.55);
    font-weight: 300;
    line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .stat-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

        .stat-bar-inner .stat:last-child {
            grid-column: 1 / -1;
        }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

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

    .hero {
        padding: 4.5rem 1.25rem 4rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 4rem 0;
    }

    .stat-bar {
        padding: 2rem 1.25rem;
    }

    .stat-bar-inner {
        grid-template-columns: 1fr;
    }

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

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

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .actor-connector {
        padding: 0 1.25rem;
    }

    .connector-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .connector-line {
        width: 1px;
        height: 24px;
        background: rgba(255,255,255,0.1);
        flex: none;
    }

    .connector-badge {
        max-width: 100%;
    }
}

/* ─── BETA TEASER ─── */
.beta-teaser {
    background: linear-gradient(135deg, rgba(63,224,138,0.07) 0%, rgba(63,224,138,0.02) 100%);
    border-top: 1px solid rgba(63,224,138,0.18);
    border-bottom: 1px solid rgba(63,224,138,0.18);
    padding: 3.5rem 2.5rem;
}

.beta-teaser-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.beta-teaser-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.65rem;
    display: block;
}

.beta-teaser-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #fff;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 0.65rem;
    font-weight: 400;
}

    .beta-teaser-heading em {
        font-style: italic;
        color: var(--green);
    }

.beta-teaser-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
    max-width: 500px;
}

.beta-teaser-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    min-width: 260px;
}

.beta-teaser-perks {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-end;
}

    .beta-teaser-perks span {
        font-size: 0.78rem;
        color: rgba(232,237,245,0.5);
        background: rgba(255,255,255,0.04);
        border: 1px solid var(--border);
        padding: 0.28rem 0.75rem;
        border-radius: 100px;
        white-space: nowrap;
    }

.beta-teaser-btn {
    display: inline-block;
    background: var(--green);
    color: #0a0f1a;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

    .beta-teaser-btn:hover {
        background: var(--green-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(63,224,138,0.25);
    }

.beta-teaser-note {
    font-size: 0.72rem;
    color: var(--text-faint);
    text-align: right;
}