/* Homepage Styles — Streamer Growth Network */

/* ============================================
   Hero Section
   ============================================ */
.home-hero {
    background: radial-gradient(ellipse 140% 120% at 50% 30%, #1e3a6e 0%, #0a0f1a 100%),
                radial-gradient(ellipse 80% 80% at 80% 70%, #0d3b2e 0%, transparent 100%);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 80% 70%, rgba(13, 59, 46, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

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

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid var(--primary-dark);
    color: var(--primary-light);
    font-family: 'Figtree', sans-serif;
    font-size: 0.813rem;
    font-weight: 600;
}

.hero-badge-pill i {
    font-size: 0.875rem;
}

.home-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto;
}

.home-hero .hero-sub {
    font-family: 'Figtree', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 720px;
    margin: 0 auto;
}

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

.hero-ctas .btn-primary {
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.hero-ctas .btn-ghost {
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #334155;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, border-color 0.2s;
}

.hero-ctas .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #475569;
    color: #f1f5f9;
}

/* App Preview (browser chrome mockup) */
.app-preview {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
}

.app-preview-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-secondary);
    padding: 0 1rem;
    height: 40px;
    border-bottom: 1px solid var(--border-color);
}

.app-preview-dots {
    display: flex;
    gap: 0.375rem;
}

.app-preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.app-preview-dots span:nth-child(1) { background: #ef4444; }
.app-preview-dots span:nth-child(2) { background: #f59e0b; }
.app-preview-dots span:nth-child(3) { background: #10b981; }

.app-preview-url {
    font-family: 'Figtree', sans-serif;
    font-size: 0.688rem;
    color: var(--text-muted);
}

.app-preview-body {
    padding: 1.25rem 1.5rem;
}

.app-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.app-preview-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.app-preview-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: 'Figtree', sans-serif;
    font-size: 0.688rem;
}

.app-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

/* Stream Cards (used in hero, CF preview, RF preview) */
.sc-card {
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.sc-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-live {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #ef4444;
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: 0.563rem;
    font-weight: 700;
    padding: 0.188rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sc-info {
    padding: 0.625rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.sc-name {
    font-family: 'Figtree', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.sc-game {
    font-family: 'Figtree', sans-serif;
    font-size: 0.625rem;
    color: var(--text-muted);
}

.sc-tags {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.sc-tag {
    font-family: 'Figtree', sans-serif;
    font-size: 0.563rem;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.sc-tag-blue {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-light);
}

.sc-tag-green {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.sc-tag-amber {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-color);
}

/* Trust Row */
.trust-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Figtree', sans-serif;
    font-size: 0.813rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--secondary-color);
}


/* ============================================
   Features Section
   ============================================ */
.home-features {
    background: #0a0f1a;
    padding: 5rem 0;
}

.section-label {
    font-family: 'Figtree', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.125em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-label-blue { color: var(--primary-color); }
.section-label-green { color: var(--secondary-color); }
.section-label-amber { color: var(--accent-color); }

.feature-icon-blue { color: var(--primary-color); }
.feature-icon-green { color: var(--secondary-color); }
.feature-icon-amber { color: var(--accent-color); }

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-sub {
    font-family: 'Figtree', sans-serif;
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 720px;
    margin: 0 auto;
}

.feature-rows {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 3.5rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    font-family: 'Figtree', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

.feature-badge-blue {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-light);
}

.feature-badge-green {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.feature-badge-amber {
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent-color);
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.feature-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 0.938rem;
    line-height: 1.7;
    color: #94a3b8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Figtree', sans-serif;
    font-size: 0.875rem;
    color: #cbd5e1;
}

.feature-list li i {
    font-size: 0.875rem;
    flex-shrink: 0;
}

.feature-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
    font-family: 'Figtree', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}

.feature-cta-link:hover {
    color: var(--primary-color);
    gap: 0.625rem;
}

/* Tool Preview Panels */
.tool-preview {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
}

.tool-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 44px;
    background: #0d1526;
    border-bottom: 1px solid var(--border-color);
}

.tool-preview-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tool-preview-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: 'Figtree', sans-serif;
    font-size: 0.625rem;
}

.tool-preview-live {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    font-family: 'Figtree', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    color: #10b981;
}

.tool-preview-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.tool-preview-new-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    background: var(--primary-color);
    font-family: 'Figtree', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    color: #fff;
}

.tool-preview-body {
    padding: 0.75rem;
}

.tool-preview-body-flush {
    padding: 0;
}

.tool-preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
}

/* Feature preview stream cards (smaller than hero) */
.fp-card {
    border-radius: 0.875rem;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.fp-thumb {
    position: relative;
    width: 100%;
    height: 90px;
    overflow: hidden;
}

.fp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-live {
    position: absolute;
    top: 0.375rem;
    left: 0.375rem;
    background: #ef4444;
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 0.188rem;
}

.fp-viewers {
    position: absolute;
    bottom: 0.375rem;
    left: 0.375rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: 0.5rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 0.188rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.fp-body {
    padding: 0.5rem 0.625rem 0.375rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.fp-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.813rem;
    font-weight: 700;
    color: var(--text-primary);
}

.fp-name-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.fp-follow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.188rem;
    padding: 0.125rem 0.375rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    font-family: 'Figtree', sans-serif;
    font-size: 0.5rem;
    font-weight: 500;
    color: #10b981;
}

.fp-game {
    font-family: 'Figtree', sans-serif;
    font-size: 0.688rem;
    color: var(--primary-light);
    font-weight: 500;
}

.fp-tags {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.fp-tag {
    font-family: 'Figtree', sans-serif;
    font-size: 0.563rem;
    font-weight: 600;
    padding: 0.125rem 0.438rem;
    border-radius: 0.313rem;
}

.fp-tag-blue {
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
}

.fp-tag-amber {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.fp-raid-info {
    font-family: 'Figtree', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
}

.fp-raid-info-purple { color: #a78bfa; }
.fp-raid-info-amber { color: var(--accent-color); }

.fp-title {
    font-family: 'Figtree', sans-serif;
    font-size: 0.625rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-footer {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.5rem;
    border-top: 1px solid var(--border-color);
}

.fp-fav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 0.375rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text-muted);
    flex-shrink: 0;
}

.fp-fav-btn-active {
    color: var(--accent-color);
}

.fp-watch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.313rem 0.625rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #cbd5e1;
    font-family: 'Figtree', sans-serif;
    font-size: 0.688rem;
    font-weight: 600;
}

.fp-raid-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.313rem 0.875rem;
    border-radius: 0.375rem;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: 0.688rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Message Builder Preview Table */
.mb-table {
    width: 100%;
    border-collapse: collapse;
}

.mb-table thead th {
    font-family: 'Figtree', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: #151c2a;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.mb-table tbody td {
    font-family: 'Figtree', sans-serif;
    font-size: 0.813rem;
    padding: 0.625rem 1rem;
    border-bottom: 1px solid #1a2233;
    color: #e2e8f0;
    background: var(--bg-dark);
}

.mb-table tbody tr:last-child td {
    border-bottom: none;
}

.mb-dest {
    display: inline-flex;
    align-items: center;
    gap: 0.313rem;
    font-size: 0.75rem;
    color: #cbd5e1;
}

.mb-dest i { font-size: 0.75rem; }
.mb-dest-twitch { color: #9146ff; }
.mb-dest-discord { color: #5865f2; }

.mb-clicks {
    font-weight: 600;
    color: #cbd5e1;
}

.mb-actions {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.mb-copy-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.188rem 0.5rem;
    border-radius: 0.313rem;
    background: #172040;
    border: 1px solid var(--primary-color);
    color: var(--primary-light);
    font-family: 'Figtree', sans-serif;
    font-size: 0.688rem;
    font-weight: 500;
}

.mb-eye-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 0.313rem;
    background: #151c2a;
    border: 1px solid #2a3545;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.688rem;
}


/* ============================================
   How It Works Section
   ============================================ */
.home-how-it-works {
    background: #0d1526;
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.how-step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.how-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
}

.how-step-num-1 {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid var(--primary-color);
    color: var(--primary-light);
}

.how-step-num-2 {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    color: #34d399;
}

.how-step-num-3 {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--accent-color);
    color: #fbbf24;
}

.how-step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.how-step-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94a3b8;
}


/* ============================================
   Comparison Section
   ============================================ */
.home-comparison {
    background: #0a0f1a;
    padding: 5rem 0;
}

.comparison-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

.comparison-card {
    border-radius: 0.75rem;
    padding: 2rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-card-good {
    border-color: #10b981;
}

.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.comparison-card-header i {
    font-size: 1.125rem;
}

.comparison-card-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.comparison-item {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
}

.comparison-item i {
    font-size: 0.875rem;
    margin-top: 0.188rem;
    flex-shrink: 0;
}

.comparison-item p {
    font-family: 'Figtree', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.comparison-card-bad .comparison-item i { color: var(--text-muted); }
.comparison-card-bad .comparison-item p { color: #94a3b8; }
.comparison-card-bad .comparison-card-header i { color: #ef4444; }
.comparison-card-bad .comparison-card-header h3 { color: #ef4444; }

.comparison-card-good .comparison-item i { color: #10b981; }
.comparison-card-good .comparison-item p { color: #cbd5e1; }
.comparison-card-good .comparison-card-header i { color: #10b981; }
.comparison-card-good .comparison-card-header h3 { color: #10b981; }


/* ============================================
   Benefits Section
   ============================================ */
.home-benefits {
    background: #0d1526;
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.benefit-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.benefit-icon-green { color: #10b981; }
.benefit-icon-blue { color: var(--primary-light); }
.benefit-icon-amber { color: var(--accent-color); }
.benefit-icon-purple { color: #818cf8; }

.benefit-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 0.813rem;
    line-height: 1.5;
    color: #94a3b8;
}

.benefit-desc a {
    color: var(--primary-light);
    text-decoration: none;
}

.benefit-desc a:hover {
    text-decoration: underline;
}


/* ============================================
   FAQ Section
   ============================================ */
.home-faq {
    background: #0a0f1a;
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
}

.faq-question {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-family: 'Figtree', sans-serif;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-light);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}


/* ============================================
   Final CTA Section
   ============================================ */
.home-final-cta {
    background: radial-gradient(ellipse 120% 120% at 50% 50%, #1e3a6e 0%, #0a0f1a 100%);
    padding: 6rem 0;
    position: relative;
}

.home-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 30% 60%, rgba(13, 59, 46, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

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

.home-final-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.home-final-cta .cta-sub {
    font-family: 'Figtree', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.home-final-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1.125rem 2.5rem;
    border-radius: 0.5rem;
    background: var(--secondary-color);
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.home-final-cta .cta-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
    color: #fff;
}

.home-final-cta .cta-trust {
    font-family: 'Figtree', sans-serif;
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}


/* ============================================
   Animations & Entrance Effects
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseLive {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

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

@keyframes grainShift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -2%); }
    30% { transform: translate(1%, -1%); }
    50% { transform: translate(-1%, 2%); }
    70% { transform: translate(2%, 1%); }
    90% { transform: translate(-1%, -1%); }
}

/* Scroll-triggered reveals via IntersectionObserver or CSS-only */
.home-hero .container > * {
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-hero .hero-badge-pill { animation-delay: 0s; }
.home-hero h1 { animation-delay: 0.08s; }
.home-hero .hero-sub { animation-delay: 0.16s; }
.home-hero .hero-ctas { animation-delay: 0.24s; }
.home-hero .app-preview { animation-delay: 0.35s; }
.home-hero .trust-row { animation-delay: 0.45s; }


/* ============================================
   Hover States & Micro-interactions
   ============================================ */

/* Hero CTA primary button */
.hero-ctas .btn-primary {
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hero-ctas .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

/* Ghost button arrow nudge */
.hero-ctas .btn-ghost i {
    transition: transform 0.2s;
}

.hero-ctas .btn-ghost:hover i {
    transform: translateY(2px);
}

/* Stream cards in hero */
.sc-card {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s;
}

.sc-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Feature preview cards */
.fp-card {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s;
}

.fp-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Feature preview buttons */
.fp-watch-btn,
.fp-raid-btn,
.fp-fav-btn,
.mb-copy-btn {
    transition: background 0.15s, transform 0.15s, border-color 0.15s;
    cursor: default;
}

.fp-watch-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.fp-raid-btn:hover {
    background: var(--primary-dark);
}

.fp-fav-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.mb-copy-btn:hover {
    background: rgba(37, 99, 235, 0.2);
}

/* MB table row hover */
.mb-table tbody tr {
    transition: background 0.15s;
}

.mb-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Tool preview panel hover */
.tool-preview {
    transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-row:hover .tool-preview {
    border-color: rgba(255, 255, 255, 0.12);
}

/* How-it-works step hover */
.how-step {
    border-radius: 0.75rem;
    transition: background 0.25s;
}

.how-step:hover {
    background: rgba(255, 255, 255, 0.02);
}

.how-step-num {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-step:hover .how-step-num {
    transform: scale(1.08);
}

/* Comparison card hover */
.comparison-card {
    transition: transform 0.25s, border-color 0.25s;
}

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

.comparison-card-good:hover {
    border-color: #34d399;
}

/* Benefit item hover */
.benefit-item {
    border-radius: 0.75rem;
    transition: background 0.25s;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.benefit-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.12);
}

/* FAQ card hover */
.faq-card {
    transition: border-color 0.25s, background 0.25s;
}

.faq-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.015);
}

/* CTA button */
.home-final-cta .cta-btn:hover {
    box-shadow: 0 4px 24px rgba(16, 185, 129, 0.3);
}

/* Inline CTA buttons (comparison, how-it-works) */
.home-comparison .btn-primary,
.home-how-it-works .btn-primary {
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.home-comparison .btn-primary:hover,
.home-how-it-works .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}


/* ============================================
   Glow & Depth Effects
   ============================================ */

/* App preview glow */
.app-preview {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(37, 99, 235, 0.08);
}

/* Tool preview glow on feature rows */
.tool-preview {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 4px 24px rgba(0, 0, 0, 0.3);
}

.feature-row:hover .tool-preview {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(37, 99, 235, 0.06);
}

/* Comparison good card subtle glow */
.comparison-card-good {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.06);
}

.comparison-card-good:hover {
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.1);
}


/* ============================================
   Live Dot Pulse
   ============================================ */
.tool-preview-live-dot {
    animation: pulseLive 2s ease-in-out infinite;
}

.sc-live,
.fp-live {
    position: absolute;
    animation: pulseLive 2.5s ease-in-out infinite;
}


/* ============================================
   Subtle Grain Texture
   ============================================ */
.home-hero::after {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
    z-index: 0;
    animation: grainShift 8s steps(6) infinite;
}

.home-hero .container {
    z-index: 2;
}

.home-final-cta::after {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
    z-index: 0;
    animation: grainShift 8s steps(6) infinite;
}

.home-final-cta .container {
    z-index: 2;
}


/* ============================================
   Keyboard Accessibility
   ============================================ */
.hero-ctas .btn-primary:focus-visible,
.hero-ctas .btn-ghost:focus-visible,
.feature-cta-link:focus-visible,
.home-comparison .btn-primary:focus-visible,
.home-how-it-works .btn-primary:focus-visible,
.home-final-cta .cta-btn:focus-visible,
.faq-answer a:focus-visible,
.benefit-desc a:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}


/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .home-hero .container > *,
    .sc-card,
    .fp-card,
    .tool-preview,
    .comparison-card,
    .how-step-num,
    .benefit-icon,
    .hero-ctas .btn-primary,
    .hero-ctas .btn-ghost,
    .home-final-cta .cta-btn,
    .home-comparison .btn-primary,
    .home-how-it-works .btn-primary {
        animation: none;
        transition: none;
    }

    .tool-preview-live-dot,
    .sc-live,
    .fp-live {
        animation: none;
    }

    .home-hero::after,
    .home-final-cta::after {
        animation: none;
    }
}


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-hero .hero-sub {
        font-size: 1.125rem;
    }

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

    .app-preview-grid .sc-card:last-child {
        display: none;
    }

    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row-reverse {
        direction: ltr;
    }

    .tool-preview-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .tool-preview-cards .fp-card:last-child {
        display: none;
    }

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

    .comparison-cols {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .home-hero {
        padding: 4rem 0 3rem;
    }

    .home-hero h1 {
        font-size: 2rem;
    }

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

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

    .app-preview {
        display: none;
    }

    .trust-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .home-final-cta h2 {
        font-size: 1.75rem;
    }

    /* Tool preview cards: single column on small screens */
    .tool-preview-cards {
        grid-template-columns: 1fr;
    }

    .tool-preview-cards .fp-card:last-child {
        display: block;
    }

    /* MB table horizontal scroll */
    .tool-preview-body-flush {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mb-table {
        min-width: 420px;
    }

    /* Comparison card padding */
    .comparison-card {
        padding: 1.5rem;
    }

    /* FAQ card padding */
    .faq-card {
        padding: 1rem 1.25rem;
    }

    /* Final CTA tighter */
    .home-final-cta {
        padding: 4rem 0;
    }
}
