@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --fn-accent: #E11D48;
    --fn-accent-hover: #BE123C;
    --fn-accent-subtle: rgba(225,29,72,0.08);
    --fn-secondary: #1E293B;
    --fn-bg-base: #FFFFFF;
    --fn-bg-alt: #F8FAFC;
    --fn-bg-dark: #080F1E;
    --fn-bg-dark-card: #131D30;
    --fn-bg-dark-border: #1E2D45;
    --fn-bg-card: #FFFFFF;
    --fn-bg-input: #F1F5F9;
    --fn-bg-input-dark: #1E2D45;
    --fn-text-heading: #0F172A;
    --fn-text-body: #334155;
    --fn-text-muted: #64748B;
    --fn-text-heading-dark: #F8FAFC;
    --fn-text-body-dark: #CBD5E1;
    --fn-text-muted-dark: #94A3B8;
    --fn-text-placeholder: #94A3B8;
    --fn-text-placeholder-dark: #475569;
    --fn-border-light: #E2E8F0;
    --fn-border-dark: #1E2D45;
    --fn-shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    --fn-shadow-md: 0 4px 16px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    --fn-radius-sm: 6px;
    --fn-radius-md: 12px;
    --fn-radius-lg: 20px;
    --fn-success: #16A34A;
    --fn-warning: #D97706;
    --fn-error: #DC2626;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #334155;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0F172A;
    margin-top: 0;
}

a {
    color: #E11D48;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #BE123C;
}

img {
    max-width: 100%;
    height: auto;
}

.fn-section {
    padding: 96px 0;
}

.fn-section-alt {
    padding: 96px 0;
    background-color: #F8FAFC;
}

.fn-section-dark {
    padding: 96px 0;
    background-color: #080F1E;
}

.fn-section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: #0F172A;
    margin-bottom: 16px;
}

.fn-section-title-dark {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: #F8FAFC;
    margin-bottom: 16px;
}

.fn-section-subtitle {
    font-size: 16px;
    color: #64748B;
    max-width: 560px;
    margin-bottom: 0;
}

.fn-section-subtitle-dark {
    font-size: 16px;
    color: #94A3B8;
    max-width: 560px;
    margin-bottom: 0;
}

.fn-accent-text {
    color: #E11D48;
}

.fn-btn-primary {
    display: inline-block;
    background-color: #E11D48;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.fn-btn-primary:hover {
    background-color: #BE123C;
    color: #FFFFFF;
    text-decoration: none;
}

.fn-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #E11D48;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid #E11D48;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.fn-btn-outline:hover {
    background-color: rgba(225,29,72,0.08);
    color: #E11D48;
    text-decoration: none;
}

.fn-btn-ghost {
    display: inline-block;
    background-color: transparent;
    color: #F8FAFC;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    padding: 12px 28px;
    border-radius: 6px;
    border: 1px solid #1E2D45;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.fn-btn-ghost:hover {
    background-color: #131D30;
    color: #F8FAFC;
    text-decoration: none;
}

.fn-btn-white {
    display: inline-block;
    background-color: #FFFFFF;
    color: #0F172A;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.fn-btn-white:hover {
    background-color: #F1F5F9;
    color: #0F172A;
    text-decoration: none;
}

.fn-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #080F1E;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}

.fn-nav.fn-nav-scrolled,
.fn-nav.fn-nav-solid {
    background-color: #080F1E;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.fn-nav .navbar {
    padding-top: 16px;
    padding-bottom: 16px;
}

.fn-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.fn-nav .fn-nav-logo-icon {
    width: 36px;
    height: 36px;
    background-color: #E11D48;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
}

.fn-nav .fn-nav-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #F8FAFC;
    letter-spacing: -0.01em;
}

.fn-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #CBD5E1;
    padding: 8px 14px;
    transition: color 0.2s ease;
}

.fn-nav .nav-link:hover,
.fn-nav .nav-link.active {
    color: #E11D48;
}

.fn-nav .navbar-toggler {
    border-color: #1E2D45;
    padding: 6px 10px;
}

.fn-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248, 250, 252, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.fn-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #080F1E;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fn-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8,15,30,0.75);
    z-index: 1;
}

.fn-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.fn-hero-h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #F8FAFC;
    margin-bottom: 24px;
}

.fn-hero-sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #CBD5E1;
    margin-bottom: 40px;
    max-width: 540px;
}

.fn-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.fn-trust-badges {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.fn-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #CBD5E1;
    font-size: 14px;
    font-weight: 500;
}

.fn-trust-badge i {
    color: #E11D48;
    font-size: 16px;
}

.fn-hero-subpage {
    position: relative;
    width: 100%;
    padding: 160px 0 80px;
    background-color: #080F1E;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.fn-hero-subpage .fn-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8,15,30,0.92) 0%, rgba(19,29,48,0.85) 100%);
    z-index: 1;
}

.fn-hero-subpage .fn-hero-content {
    position: relative;
    z-index: 2;
}

.fn-hero-subpage h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F8FAFC;
    margin-bottom: 16px;
}

.fn-hero-subpage p {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 0;
    max-width: 600px;
}

.fn-trust-bar {
    background-color: #131D30;
    padding: 40px 0;
    border-top: 1px solid #1E2D45;
    border-bottom: 1px solid #1E2D45;
}

.fn-stat-item {
    text-align: center;
}

.fn-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #E11D48;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.fn-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #94A3B8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fn-feature-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fn-feature-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.fn-feature-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(225,29,72,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E11D48;
    font-size: 22px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.fn-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.4;
}

.fn-feature-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.fn-step-card {
    text-align: center;
    padding: 32px 24px;
}

.fn-step-number {
    width: 64px;
    height: 64px;
    background-color: #E11D48;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.fn-step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

.fn-step-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

.fn-leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.fn-leaderboard-table thead th {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748B;
    padding: 12px 16px;
    border-bottom: 1px solid #1E2D45;
    text-align: left;
}

.fn-leaderboard-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #1E2D45;
    color: #CBD5E1;
    font-size: 15px;
}

.fn-leaderboard-table tbody tr:last-child td {
    border-bottom: none;
}

.fn-leaderboard-table .fn-rank {
    font-weight: 700;
    color: #E11D48;
    font-size: 16px;
}

.fn-leaderboard-table .fn-return-positive {
    color: #16A34A;
    font-weight: 600;
}

.fn-leaderboard-table .fn-trader-name {
    font-weight: 600;
    color: #F8FAFC;
}

.fn-testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
}

.fn-testimonial-stars {
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 16px;
}

.fn-testimonial-text {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}

.fn-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fn-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #E11D48;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.fn-testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
}

.fn-testimonial-title {
    font-size: 13px;
    color: #64748B;
}

.fn-cta-strip {
    background-color: #E11D48;
    padding: 80px 0;
    text-align: center;
}

.fn-cta-strip h2 {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.fn-cta-strip p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

.fn-footer {
    background-color: #080F1E;
    padding: 64px 0 32px;
    border-top: 1px solid #1E2D45;
}

.fn-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.fn-footer-brand-icon {
    width: 36px;
    height: 36px;
    background-color: #E11D48;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
}

.fn-footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #F8FAFC;
}

.fn-footer-desc {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
}

.fn-footer-social {
    display: flex;
    gap: 12px;
}

.fn-footer-social a {
    width: 36px;
    height: 36px;
    background-color: #131D30;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid #1E2D45;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.fn-footer-social a:hover {
    background-color: #E11D48;
    color: #FFFFFF;
    border-color: #E11D48;
}

.fn-footer-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F8FAFC;
    margin-bottom: 20px;
}

.fn-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fn-footer-links li {
    margin-bottom: 10px;
}

.fn-footer-links a {
    font-size: 14px;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fn-footer-links a:hover {
    color: #E11D48;
}

.fn-footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.fn-footer-contact-item i {
    color: #E11D48;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.fn-footer-contact-item span,
.fn-footer-contact-item a {
    font-size: 14px;
    color: #94A3B8;
    text-decoration: none;
    line-height: 1.5;
}

.fn-footer-contact-item a:hover {
    color: #E11D48;
}

.fn-footer-divider {
    border-top: 1px solid #1E2D45;
    margin: 40px 0 24px;
}

.fn-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.fn-footer-copyright {
    font-size: 13px;
    color: #475569;
}

.fn-footer-legal-links {
    display: flex;
    gap: 20px;
}

.fn-footer-legal-links a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fn-footer-legal-links a:hover {
    color: #94A3B8;
}

.fn-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #131D30;
    border-top: 1px solid #1E2D45;
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

.fn-cookie-banner.fn-cookie-visible {
    display: block;
}

.fn-cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.fn-cookie-text {
    font-size: 14px;
    color: #CBD5E1;
    flex: 1;
    min-width: 200px;
}

.fn-cookie-text a {
    color: #E11D48;
    text-decoration: underline;
}

.fn-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.fn-cookie-accept {
    background-color: #E11D48;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.fn-cookie-accept:hover {
    background-color: #BE123C;
}

.fn-cookie-decline {
    background-color: transparent;
    color: #94A3B8;
    border: 1px solid #1E2D45;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.fn-cookie-decline:hover {
    color: #F8FAFC;
}

.fn-contact-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
}

.fn-contact-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(225,29,72,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E11D48;
    font-size: 24px;
    margin-bottom: 20px;
}

.fn-contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.fn-contact-card p {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 0;
}

.fn-contact-card a {
    color: #E11D48;
}

.fn-form-group {
    margin-bottom: 20px;
}

.fn-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 6px;
}

.fn-form-control {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: #0F172A;
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.fn-form-control:focus {
    border-color: #E11D48;
    border-width: 2px;
    box-shadow: none;
    background-color: #FFFFFF;
}

.fn-form-control::placeholder {
    color: #94A3B8;
}

textarea.fn-form-control {
    resize: vertical;
    min-height: 140px;
}

.fn-team-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 22px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
}

.fn-team-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
}

.fn-team-photo-wrap {
    position: relative;
    overflow: hidden;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #F1F5F9;
    margin-bottom: 16px;
}

.fn-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.fn-team-card-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fn-team-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.fn-team-card-title {
    font-size: 14px;
    color: #E11D48;
    font-weight: 500;
    margin-bottom: 0;
}

.fn-founder-badge {
    display: inline-block;
    background-color: rgba(225,29,72,0.1);
    color: #E11D48;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.fn-join-cta {
    background-color: #080F1E;
    padding: 80px 0;
    text-align: center;
}

.fn-join-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 16px;
}

.fn-join-cta p {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 40px;
}

.fn-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.fn-benefit-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(225,29,72,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E11D48;
    font-size: 18px;
    flex-shrink: 0;
}

.fn-benefit-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 4px;
}

.fn-benefit-text p {
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 0;
}

.fn-blog-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fn-blog-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.fn-blog-thumb-wrap {
    overflow: hidden;
    height: 200px;
    background-color: #F1F5F9;
    flex-shrink: 0;
}

.fn-blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fn-blog-card:hover .fn-blog-thumb {
    transform: scale(1.04);
}

.fn-blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fn-blog-card-meta {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fn-blog-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.4;
    margin-bottom: 12px;
    flex: 1;
}

.fn-blog-card-title a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fn-blog-card-title a:hover {
    color: #E11D48;
}

.fn-blog-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #E11D48;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.fn-blog-read-more:hover {
    color: #BE123C;
    gap: 10px;
}

.fn-about-mission-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.fn-values-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
}

.fn-values-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(225,29,72,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E11D48;
    font-size: 22px;
    margin-bottom: 20px;
}

.fn-values-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

.fn-values-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.fn-legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 96px 24px;
}

.fn-legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.fn-legal-content .fn-legal-date {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 48px;
}

.fn-legal-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #0F172A;
    margin-top: 48px;
    margin-bottom: 16px;
}

.fn-legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-top: 32px;
    margin-bottom: 12px;
}

.fn-legal-content p {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 16px;
}

.fn-legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.fn-legal-content ul li {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 8px;
}

.fn-404-page {
    background-color: #080F1E;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.fn-404-number {
    font-size: 96px;
    font-weight: 800;
    color: #E11D48;
    line-height: 1;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.fn-404-chart-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 80px;
    opacity: 0.12;
    pointer-events: none;
}

.fn-404-heading {
    font-size: 36px;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 16px;
}

.fn-404-body {
    font-size: 16px;
    color: #94A3B8;
    max-width: 440px;
    margin: 0 auto 40px;
}

.fn-product-feature-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
}

.fn-product-feature-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
}

.fn-integration-card {
    background-color: #131D30;
    border: 1px solid #1E2D45;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fn-integration-icon {
    width: 52px;
    height: 52px;
    background-color: #1E2D45;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E11D48;
    font-size: 22px;
    margin-bottom: 16px;
}

.fn-integration-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 8px;
}

.fn-integration-card p {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .fn-hero-h1 {
        font-size: 44px;
    }

    .fn-section-title,
    .fn-section-title-dark {
        font-size: 30px;
    }

    .fn-hero-subpage h1 {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .fn-section,
    .fn-section-alt,
    .fn-section-dark {
        padding: 64px 0;
    }

    .fn-hero-h1 {
        font-size: 34px;
    }

    .fn-hero-sub {
        font-size: 16px;
    }

    .fn-hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .fn-trust-badges {
        gap: 16px;
    }

    .fn-stat-number {
        font-size: 28px;
    }

    .fn-section-title,
    .fn-section-title-dark {
        font-size: 26px;
    }

    .fn-cta-strip h2 {
        font-size: 26px;
    }

    .fn-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .fn-footer-legal-links {
        justify-content: center;
    }

    .fn-trust-bar .col-6 {
        margin-bottom: 24px;
    }

    .fn-404-number {
        font-size: 72px;
    }

    .fn-404-heading {
        font-size: 28px;
    }
}

/* === Logo v2: dual-variant dark/light === */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}

/* StockWorldCup nav + footer are always on dark bg; always show light logo */
.logo-img--light { display: inline-block !important; }
.logo-img--dark  { display: none !important; }

/* Footer logo always shows light variant */
footer .logo-img { max-height: 48px; }
