:root {
    /* Color System */
    --bg-dark: #181A20;
    --bg-darker: #12151A;
    --bg-table: #1E2026;
    --text-primary: #ECF5FF;
    --text-secondary: #B0BEC5;
    --text-secondary-pressed: #8A9BAE;
    --accent-primary: #3AFFA3;
    --accent-primary-pressed: #29ba6d;
    --accent-secondary: #00C8FF;
    --border-color: #2B3139;
    --highlight: rgba(58, 255, 163, 0.1);
    --positive: #3AFFA3;
    --negative: #FF5E5E;
    --negative-pressed: #b34242;

    --secondary-bg-color: #2B3139;
    --secondary-text-color: #B0BEC5;
    --secondary-hover: #29ba6d;

    /* Typography System */
    /* Font Families */
    --font-body: 'Onest', 'Inter', sans-serif;
    --font-heading: 'Onest', sans-serif;

    /* Font Sizes - Desktop */
    --font-h1-desktop: 46px;
    --font-h2-desktop: 36px;
    --font-h3-desktop: 28px;
    --font-body-desktop: 16px;
    --font-small-desktop: 14px;
    --font-button-desktop: 16px;

    /* Font Sizes - Mobile */
    --font-h1-mobile: 32px;
    --font-h2-mobile: 28px;
    --font-h3-mobile: 24px;
    --font-body-mobile: 14px;
    --font-small-mobile: 12px;
    --font-button-mobile: 14px;

    /* Font Weights */
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --font-weight-medium: 500;
    --font-weight-regular: 400;
    --font-weight-light: 300;

    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;

    /* Letter Spacing */
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.5px;
    --letter-spacing-button: 0.5px;
}
.button-primary {
    font-family: var(--font-body);
    font-size: var(--font-button-desktop);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    background-color: var(--accent-primary);
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-primary:hover {
        background-color: var(--accent-primary-pressed);
        color: var(--bg-darker);
    }
}

.button-primary:focus {
    outline: none;
}

.button-primary-small {
    font-family: var(--font-body);
    font-size: var(--font-button-mobile);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    background-color: var(--accent-primary);
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-primary-small:hover {
        background-color: var(--accent-primary-pressed);
        color: var(--bg-darker);
    }
}

.button-primary-small:focus {
    outline: none;
}

.button-error {
    font-family: var(--font-body);
    font-size: var(--font-button-desktop);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    background-color: var(--negative);
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-error:hover {
        background-color: var(--negative-pressed);
        color: var(--bg-darker);
    }
}

.button-error:focus {
    outline: none;
}

.button-error-small {
    font-family: var(--font-body);
    font-size: var(--font-button-mobile);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    background-color: var(--negative);
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-error-small:hover {
        background-color: var(--negative-pressed);
        color: var(--bg-darker);
    }
}

.button-error-small:focus {
    outline: none;
}

.button-warning-small {
    font-family: var(--font-body);
    font-size: var(--font-button-mobile);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    background-color: #FFB800;
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (hover: hover) and (pointer: fine) {
    .button-warning-small:hover {
        background-color: #FF8C00;
        color: var(--bg-darker);
    }
}

.button-warning-small:focus {
    outline: none;
}

.button-close {
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-close:hover {
        background-color: var(--highlight);
        color: var(--accent-primary);
    }
}

.button-close:focus {
    outline: none;
}

.button-back {
    font-family: var(--font-body);
    font-size: var(--font-button-desktop);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    position: absolute;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    top: 20px;
    left: 20px;
    padding: 10px 16px;
    color: var(--text-primary);
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    gap: 8px;
}

@media (hover: hover) and (pointer: fine) {
    .button-back:hover {
        background-color: var(--highlight);
        color: var(--accent-primary);
        border-color: var(--accent-primary);
    }

    .button-back:hover svg path {
        stroke: var(--accent-primary);
    }
}

.button-back:focus {
    outline: none;
}

.button-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-primary);
    color: var(--bg-darker);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-fab:hover {
        background-color: var(--accent-primary-pressed);
        color: var(--bg-darker);
    }
}

.button-fab:focus {
    outline: none;
}

.button-icon {
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-icon:hover {
        background-color: var(--highlight);
        color: var(--accent-primary);
    }
}

.button-icon:focus {
    outline: none;
}

.button-link {
    font-family: var(--font-body);
    font-size: var(--font-button-desktop);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    background-color: transparent;
    color: var(--accent-primary-pressed);
    border: none;
    padding: 0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-link:hover {
        color: var(--accent-primary);
        text-decoration: underline;
    }
}

.button-link:focus {
    outline: none;
}

/* button-action-small for compact action buttons */
.button-action-small {
    font-family: var(--font-body);
    font-size: var(--font-button-mobile);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    background-color: transparent;
    color: var(--accent-primary);
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-action-small:hover {
        color: var(--accent-primary-pressed);
    }
}

.button-action-small:focus {
    outline: none;
}

/* SVG icon button */
.button-svg-icon {
    background: transparent;
    border: none;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button-svg-icon:focus {
    outline: none;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

.button-svg-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-svg-icon:hover svg,
    .button-svg-icon:focus svg {
        fill: var(--accent-primary);
    }
}

/* SVG icon button */
.button-svg-icon-stroke {
    background: transparent;
    border: none;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: fill 0.3s ease;
}

.button-svg-icon-stroke:focus {
    outline: none;
    stroke: var(--text-secondary);
}

.button-svg-icon-stroke svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-secondary);
}

@media (hover: hover) and (pointer: fine) {
    .button-svg-icon-stroke:hover svg {
        stroke: var(--accent-primary);
    }
}

.button-secondary-small {
    font-family: var(--font-body);
    font-size: var(--font-button-mobile);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    background-color: var(--secondary-bg-color);
    color: var(--secondary-text-color);
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-secondary-small:hover {
        background-color: var(--secondary-hover);
        color: var(--bg-darker);
    }
}

.button-secondary-small:focus {
    outline: none;
}

.button-text-small {
    font-family: var(--font-body);
    font-size: var(--font-button-mobile);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-text-small:hover {
        color: var(--accent-primary-pressed);
    }
}

.button-text-small:focus {
    outline: none;
}

.button-list-item {
    font-family: var(--font-body);
    font-size: var(--font-button-desktop);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    width: 100%;
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 4px;
    padding: 5px 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-list-item:hover {
        color: var(--accent-primary-pressed);
    }
}

.button-list-item:focus {
    outline: none;
}

.button-menu-item {
    font-family: var(--font-body);
    font-size: var(--font-button-desktop);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    width: 100%;
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 4px;
    padding: 5px 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.button-menu-item:focus {
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .button-menu-item:hover {
        color: var(--accent-primary-pressed);
    }
}
.modal-content {
    color: white;
    background-color: #181A20;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.modal-header,
.modal-footer {
    border-color: #6c757d;
}

/* Dark‐mode form controls inside any .modal-content */
.modal-content .form-control {
    background-color: #181A20;
    border-color: #495057;
    color: #cdcdcd;
}

/* Placeholder text */
.modal-content .form-control::placeholder {
    color: #393939; /* lighter gray */
    opacity: 1; /* ensure full visibility */
}

/* For older WebKit browsers */
.modal-content .form-control::-webkit-input-placeholder {
    color: #393939;
}

.modal-content .form-control:-ms-input-placeholder {
    color: #393939;
}

.modal-content .form-control::-ms-input-placeholder {
    color: #393939;
}
.dyor-switch {
    /* —— CONFIGURABLE VARS —— */
    --switch-width: 30px;
    --switch-height: 15px;
    --knob-size: 13px;
    --knob-offset: 1px;
    /* ———————————————— */

    position: relative;
    display: inline-block;
    width: var(--switch-width);
    height: var(--switch-height);
}

.dyor-switch-container {
    display: inline-flex;
    align-items: center;
}

.dyor-switch-text {
    margin-right: 0.5em; /* space between text and switch */
    user-select: none;
    font-size: 0.9em;
    color: var(--text-primary);
}

.dyor-switch .dyor-switch-input {
    /* hide the native checkbox */
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.dyor-switch .dyor-switch-label {
    /* the track */
    display: block;
    width: 100%;
    height: 100%;
    background-color: #6c757d;
    border-radius: calc(var(--switch-height) / 2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dyor-switch .dyor-switch-label::before {
    /* the knob */
    content: "";
    position: absolute;
    width: var(--knob-size);
    height: var(--knob-size);
    left: var(--knob-offset);
    top: var(--knob-offset);
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* checked = active state */
.dyor-switch .dyor-switch-input:checked ~ .dyor-switch-label {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.dyor-switch .dyor-switch-input:checked ~ .dyor-switch-label::before {
    transform: translateX(calc(var(--switch-width) - var(--knob-size) - 2 * var(--knob-offset)));
}
/* Typography System - Design Requirements */
:root {
    /* Font Families */
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Orbitron', sans-serif;

    /* Font Sizes - Desktop */
    --font-h1-desktop: 64px;
    --font-h2-desktop: 48px;
    --font-h3-desktop: 32px;
    --font-body-desktop: 18px;
    --font-nav-desktop: 18px;
    --font-small-desktop: 14px;
    --font-accent-desktop: 24px;
    --font-button-desktop: 16px;

    /* Font Sizes - Mobile */
    --font-h1-mobile: 48px;
    --font-h2-mobile: 36px;
    --font-h3-mobile: 26px;
    --font-body-mobile: 16px;
    --font-nav-mobile: 16px;
    --font-small-mobile: 12px;
    --font-accent-mobile: 20px;
    --font-button-mobile: 14px;

    /* Font Weights */
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --font-weight-regular: 400;
    --font-weight-light: 300;

    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-snug: 1.25;
    --line-height-normal: 1.3;
    --line-height-relaxed: 1.4;
    --line-height-loose: 1.55;
    --line-height-extra-loose: 1.6;

    /* Letter Spacing */
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.25px;
    --letter-spacing-wider: 0.5px;
    --letter-spacing-button: 1px;
}

* {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

html {
    width: 100%;
    scroll-behavior: smooth;
    /* Account for fixed header when scrolling to anchors */
    scroll-padding-top: 90px; /* 70px header + 20px spacing */
    /* Firefox scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: rgba(58, 255, 163, 0.3) var(--bg-darker);
    /* Fix iOS scroll issues */
    -webkit-overflow-scrolling: touch;
    overflow-x: clip; /* Better than hidden for iOS */
}

body {
    padding: 0;
    margin: 0;
    background-color: var(--bg-dark);
    overflow-x: clip; /* Use clip instead of hidden for iOS */
    max-width: 100vw;
    /* Fix iOS touch scrolling */
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom; /* Allow vertical scroll and pinch zoom */
    position: relative;
    /* Base Typography */
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-loose);
    letter-spacing: var(--letter-spacing-normal);
}

/* Typography Styles */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    margin: 0;
}

h1 {
    font-size: var(--font-h1-desktop);
    line-height: var(--line-height-tight);
}

h2 {
    font-size: var(--font-h2-desktop);
    line-height: var(--line-height-snug);
}

h3 {
    font-size: var(--font-h3-desktop);
    line-height: var(--line-height-normal);
}

p {
    margin: 0;
    font-family: var(--font-body);
}

/* Mobile Typography */
@media (max-width: 768px) {
    body {
        font-size: var(--font-body-mobile);
    }

    h1 {
        font-size: var(--font-h1-mobile);
    }

    h2 {
        font-size: var(--font-h2-mobile);
    }

    h3 {
        font-size: var(--font-h3-mobile);
    }
}

/* Custom Scrollbar - Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(58, 255, 163, 0.3);
    border-radius: 10px;
    border: 2px solid var(--bg-darker);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(58, 255, 163, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: var(--accent-primary);
}

/* Custom scrollbar for specific elements with dark background */
.roadmap-timeline::-webkit-scrollbar {
    height: 6px;
}

.roadmap-timeline::-webkit-scrollbar-track {
    background: var(--bg-table);
    border-radius: 3px;
}

.roadmap-timeline::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
    border: none;
}

.roadmap-timeline::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

.page-container {
    width: 100%;
    max-width: 100vw;
    background-color: var(--bg-dark);
    padding-top: 70px;
    overflow-x: clip; /* Use clip instead of hidden for iOS */
    position: relative;
    /* Fix iOS scrolling */
    -webkit-overflow-scrolling: touch;
}

/* Page sections - full height for immersive experience */
.page-container > div:not(:first-child) {
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
}

.landing-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.logo-mobile,
.mobile-dropdown {
    display: none;
}

@media (max-width: 768px) {
    .logo-desktop,
    .header-items {
        display: none;
    }

    .logo-mobile,
    .mobile-dropdown {
        display: block;
    }

    .dropdown {
        float: left;
        overflow: hidden;
        font-family: var(--font-body);
    }

    .btn-dropdown {
        font-family: var(--font-body);
        font-size: var(--font-nav-mobile);
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: transparent;
        margin: 0;
    }

    .btn-dropdown:hover {
        background-color: #2a2c33;
        outline: none;
    }

    .btn-dropdown:focus {
        outline: none;
        background-color: transparent;
    }

    .dropdown-content {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 10px;
        top: 70px; /* height of header */
        background-color: var(--bg-dark);
        min-width: 160px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        border-radius: 15px;
        transition: all 0.3s ease;
        padding-top: 5px;
        padding-bottom: 5px;
        z-index: 2000;
    }

    /* the “show” helper */
    .dropdown-content.show {
        display: flex;
    }
}
/* Scroll animations */

.fade-in-up,
.fade-in,
.slide-in-left,
.slide-in-right,
.scale-in {
    opacity: 0;
    transition: all 0.3s ease-out; /* Very fast animations - 0.3s */
}

.fade-in-up {
    transform: translateY(50px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.scale-in {
    transform: scale(0.9);
}

/* Visible state */
.fade-in-up.visible,
.fade-in.visible,
.slide-in-left.visible,
.slide-in-right.visible,
.scale-in.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Pricing toggle animation */
.price-changing {
    animation: priceChange 0.3s ease-in-out;
}

@keyframes priceChange {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Button hover animations */
.button-primary,
.button-secondary-small,
.button-primary-small {
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-primary:hover,
    .button-secondary-small:hover,
    .button-primary-small:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(58, 255, 163, 0.3);
    }
}

/* Card hover animations */
.preset-card,
.component-card,
.screener-card,
.notification-card,
.testimonial-card,
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .preset-card:hover,
    .component-card:hover,
    .screener-card:hover,
    .notification-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
}

/* Smooth page transitions */
.page-container {
    transition: opacity 0.3s ease;
}

.site-header {
    transition: transform 0.3s ease-in-out;
}

/* Language switcher - no animation needed for inline version */

/* Section block animations - smooth professional fade */
section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Alternate section animations - subtle slide variations */
section:nth-child(odd).slide-section {
    transform: translateY(40px) translateX(-20px);
}

section:nth-child(even).slide-section {
    transform: translateY(40px) translateX(20px);
}

section:nth-child(odd).slide-section.visible,
section:nth-child(even).slide-section.visible {
    transform: translateY(0) translateX(0);
}

/* Exit animation - smooth fade when scrolling away */
section.exiting {
    opacity: 0.85;
    transform: scale(0.98);
}

/* Hero section special entrance - smooth zoom and fade */
.hero-section {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-section.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Perspective animation for certain sections - subtle scale */
section.perspective-section:not(.visible) {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
}

section.perspective-section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Reusable components */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Section labels and titles */
.section-label {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    color: var(--accent-primary);
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--font-h2-desktop);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: var(--line-height-snug);
    transition: all 0.4s ease;
}

.section-desc {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: var(--line-height-extra-loose);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .section-label {
        font-size: var(--font-small-mobile);
    }

    .section-title {
        font-size: var(--font-h2-mobile);
    }

    .section-desc {
        font-size: var(--font-body-mobile);
    }
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: var(--line-height-loose);
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .feature-list li:hover {
        transform: translateX(5px);
        color: var(--text-primary);
    }
}

.feature-list i {
    color: var(--accent-primary);
    font-size: var(--font-body-desktop);
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .feature-list li:hover i {
        transform: scale(1.2);
    }
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .stat-item:hover {
        transform: translateY(-5px);
    }

    .stat-item:hover .stat-number {
        transform: scale(1.1);
    }
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px; /* Decorative stat number - keep hardcoded */
    font-weight: var(--font-weight-bold);
    color: var(--accent-primary);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-label {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

/* Image placeholders */
.image-placeholder,
.screener-image-placeholder {
    background: var(--bg-table);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--text-secondary);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

@media (hover: hover) and (pointer: fine) {
    .image-placeholder:hover,
    .screener-image-placeholder:hover {
        transform: scale(1.02);
        border-color: var(--accent-primary);
        box-shadow: 0 8px 30px rgba(58, 255, 163, 0.1);
    }
}

@media (max-width: 768px) {
    .image-placeholder,
    .screener-image-placeholder {
        min-height: 200px;
    }
}

/* Cards */
.preset-card,
.component-card,
.screener-card,
.notification-card {
    background: var(--bg-table);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
    .preset-card:hover,
    .component-card:hover,
    .screener-card:hover,
    .notification-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(58, 255, 163, 0.15);
        border-color: rgba(58, 255, 163, 0.3);
    }
}

.preset-card h3,
.component-card h3,
.screener-card h3,
.notification-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-accent-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    line-height: var(--line-height-normal);
    margin: 16px 0;
}

.preset-card p,
.component-card p,
.screener-card p,
.notification-card p {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: var(--line-height-loose);
    margin-bottom: 24px;
}

/* Icons */
.preset-icon,
.component-icon,
.notification-icon {
    color: var(--accent-primary);
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
    .preset-card:hover .preset-icon,
    .component-card:hover .component-icon,
    .notification-card:hover .notification-icon {
        transform: scale(1.15) rotate(5deg);
        filter: drop-shadow(0 4px 12px rgba(58, 255, 163, 0.4));
    }
}

/* Language switcher - Compact inline version */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    color: var(--brand-green);
    font-weight: var(--font-weight-semibold);
}

.lang-separator {
    color: var(--text-tertiary);
    font-size: 12px;
    user-select: none;
}

/* Header language switcher positioning */
.lang-switcher-header {
    margin: 0 0 0 16px;
}

/* Footer language switcher positioning */
.lang-switcher-footer {
    margin-right: 24px;
}

/* Mobile dropdown language switcher */
.mobile-lang-wrapper {
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0;
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.lang-switcher-mobile {
    justify-content: center;
}

.lang-switcher-mobile .lang-btn {
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 8px;
}

.lang-switcher-mobile .lang-btn:active {
    background: rgba(58, 255, 163, 0.15);
}

/* Header styles */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: var(--bg-dark);
    padding: 0 20px;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    /* Fix iOS fixed position scrolling issues */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
}

.logo-mobile {
    display: none;
}

.header-items {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-items #btn-create-account {
    margin-left: auto;
}

.header-items .button-text-small {
    margin: 0 4px;
}

.header-items #btn-sign-in {
    margin-left: 8px;
}

.mobile-dropdown-wrapper {
    display: none;
}

/* Modern Mobile Menu Button - Hamburger Icon */
.mobile-menu-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-icon {
    width: 24px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Modern Mobile Dropdown - App-like Full Screen */
.mobile-dropdown {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    bottom: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-dropdown.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile Nav Items */
.mobile-nav-items {
    padding: 12px 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.mobile-nav-item {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    text-align: left;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--brand-green);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.mobile-nav-item:active {
    background: rgba(58, 255, 163, 0.08);
    transform: scale(0.98);
}

.mobile-nav-item:active::before {
    transform: scaleY(1);
}

/* Mobile Action Buttons */
.mobile-menu-actions {
    padding: 12px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    flex-shrink: 0;
}

.mobile-action-btn {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--font-weight-semibold);
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-action-btn.primary,
#mobile-btn-sign-in {
    background: linear-gradient(135deg, #3AFFA3 0%, #3AFFA3 100%) !important;
    color: #0a0e27 !important;
    box-shadow: 0 4px 12px rgba(58, 255, 163, 0.3) !important;
    font-weight: 600 !important;
    border: none !important;
}

.mobile-action-btn.primary:active,
#mobile-btn-sign-in:active {
    transform: translateY(2px) !important;
    box-shadow: 0 2px 8px rgba(58, 255, 163, 0.4) !important;
    background: linear-gradient(135deg, #3AFFA3 0%, #3AFFA3 100%) !important;
}

.mobile-action-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-action-btn.secondary:active {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(0.98);
}

@media (max-width: 961px) {
    .logo-desktop,
    .header-items {
        display: none !important;
    }

    .logo-mobile {
        display: block !important;
    }

    .mobile-dropdown-wrapper {
        display: flex !important;
        align-items: center;
    }

    .site-header {
        padding: 0 16px;
    }
}

/* Hero section styles - Modern crypto-themed design */

.hero-section {
    padding: 100px 0 100px;
    min-height: calc(100dvh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Beautiful crypto-themed gradient background */
    background: linear-gradient(135deg,
        #0f1419 0%,
        #1a1f2e 25%,
        #161b26 50%,
        #1e2331 75%,
        #0f1419 100%
    );
}

/* Animated background pattern */
.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(58, 255, 163, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(58, 255, 163, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(58, 255, 163, 0.06) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
}

/* Subtle grid pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(58, 255, 163, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 255, 163, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    transform: translateY(-30px); /* Lift content up */
}

.hero-content {
    text-align: center;
    max-width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--font-h1-desktop);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    margin-bottom: 32px;
    transition: all 0.4s ease;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: var(--line-height-extra-loose);
    margin-bottom: 24px;
    transition: all 0.4s ease;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-secondary {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: var(--line-height-extra-loose);
    margin-bottom: 48px;
    transition: all 0.4s ease;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-cta {
    font-family: var(--font-body);
    font-size: var(--font-button-desktop);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    padding: 16px 48px;
    box-shadow: 0 8px 32px rgba(58, 255, 163, 0.25);
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .hero-cta:hover {
        box-shadow: 0 12px 48px rgba(58, 255, 163, 0.4);
        transform: translateY(-2px);
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-container {
        transform: translateY(-20px);
    }

    .hero-title {
        font-size: var(--font-h1-mobile);
    }

    .hero-subtitle {
        font-size: var(--font-body-mobile);
    }

    .hero-subtitle-secondary {
        font-size: var(--font-body-mobile);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 60px;
    }

    .hero-container {
        padding: 0 20px;
        transform: translateY(-10px);
    }

    .hero-title {
        font-size: var(--font-h1-mobile);
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: var(--font-body-mobile);
        margin-bottom: 20px;
    }

    .hero-subtitle-secondary {
        font-size: var(--font-body-mobile);
        margin-bottom: 40px;
    }

    .hero-cta {
        font-size: var(--font-button-mobile);
        padding: 14px 36px;
        width: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-h1-mobile);
    }

    .hero-subtitle {
        font-size: var(--font-body-mobile);
    }

    .hero-subtitle-secondary {
        font-size: var(--font-body-mobile);
    }

    .hero-cta {
        font-size: var(--font-button-mobile);
        padding: 12px 32px;
    }
}

/* Feature sections styles */

section {
    padding: 40px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 32px 16px;
    }
}

/* Professional visual separator between sections */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    opacity: 0.3;
}

section:last-of-type::after {
    display: none;
}

section > * {
    width: 100%;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Multichart section - Dark theme with mockup layout */
.multichart-section {
    background: var(--bg-dark);
    padding: 60px 0;
}

.section-label-left {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    margin-bottom: 16px;
    text-align: left;
}

.section-title-left {
    font-family: var(--font-heading);
    font-size: var(--font-h2-desktop);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    line-height: var(--line-height-snug);
    margin-bottom: 32px;
    text-align: left;
    max-width: 600px;
}

.feature-list-left {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-list-left li {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: var(--line-height-loose);
    transition: all 0.3s ease;
}

.feature-list-left li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 20px;
}

@media (hover: hover) and (pointer: fine) {
    .feature-list-left li:hover {
        color: var(--text-primary);
        padding-left: 28px;
    }
}

.button-secondary-outline {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: var(--font-button-desktop);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-secondary-outline:hover {
        background: var(--accent-primary);
        color: var(--bg-darker);
        box-shadow: 0 8px 24px rgba(58, 255, 163, 0.3);
    }
}

.multichart-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.multichart-title-area {
    position: sticky;
    top: 100px;
}

.multichart-image-bottom {
    width: 100%;
}

.image-placeholder-large {
    background: var(--bg-table);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .image-placeholder-large:hover {
        border-color: var(--accent-primary);
        box-shadow: 0 8px 32px rgba(58, 255, 163, 0.1);
    }
}

.stats-grid-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.stats-grid-bottom .stat-item {
    text-align: left;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .stats-grid-bottom .stat-item:hover {
        transform: translateY(-4px);
    }
}

.stats-grid-bottom .stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .stats-grid-bottom .stat-item:hover .stat-number {
        transform: scale(1.1);
    }
}

.stats-grid-bottom .stat-label {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    color: var(--text-secondary);
    font-weight: var(--font-weight-regular);
}

@media (max-width: 1024px) {
    .multichart-section {
        padding: 60px 20px;
    }

    .section-title-left {
        font-size: var(--font-h2-mobile);
    }

    .multichart-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .multichart-title-area {
        position: static;
    }

    .image-placeholder-large {
        height: 400px;
    }

    .stats-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .multichart-section {
        padding: 60px 16px;
    }

    .section-title-left {
        font-size: var(--font-h2-mobile);
    }

    .feature-list-left li {
        font-size: var(--font-body-mobile);
    }

    .image-placeholder-large {
        height: 300px;
    }

    .stats-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 12px;
        padding-top: 16px;
        margin-bottom: -24px;
    }

    .stats-grid-bottom .stat-number {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .stats-grid-bottom .stat-label {
        font-size: 11px;
        line-height: 1.2;
    }

    .stats-grid-bottom .stat-item {
        padding: 4px;
    }
}

/* Indicators section - Mockup layout */
.indicators-section {
    background: var(--bg-dark);
    padding: 60px 0;
}

.indicators-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.indicators-title-area {
    position: sticky;
    top: 100px;
}

.indicators-desc {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.indicators-desc-secondary {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-list-icons {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-list-icons li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-list-icons li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .feature-list-icons li:hover {
        color: var(--text-primary);
        transform: translateX(4px);
    }

    .feature-list-icons li:hover i {
        transform: scale(1.2);
    }
}

.indicators-image-bottom {
    width: 100%;
}

@media (max-width: 1024px) {
    .indicators-section {
        padding: 60px 20px;
    }

    .indicators-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .indicators-title-area {
        position: static;
    }
}

@media (max-width: 768px) {
    .indicators-section {
        padding: 60px 16px;
    }

    .indicators-desc,
    .indicators-desc-secondary {
        font-size: var(--font-body-mobile);
    }

    .feature-list-icons li {
        font-size: var(--font-body-mobile);
        gap: 12px;
    }
}

/* Presets section - Large image cards with overlay */
.presets-section {
    background: var(--bg-dark);
    text-align: center;
}

.presets-scroll-container {
    margin-top: 48px;
    position: relative;
}

.presets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Default scroll indicators (hidden on desktop) */
.presets-scroll-indicators {
    display: none;
}

.preset-card-large {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 500px;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .preset-card-large:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(58, 255, 163, 0.2);
    }

    .preset-card-large:hover .preset-image-bg {
        transform: scale(1.05);
    }

    .preset-card-large:hover .preset-content-overlay {
        background: linear-gradient(to top, rgba(15, 20, 25, 0.95), rgba(15, 20, 25, 0.7));
    }
}

.preset-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-table);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.5s ease;
}

.preset-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.9), rgba(15, 20, 25, 0.6));
    transition: all 0.3s ease;
    text-align: left;
}

.preset-content-overlay h3 {
    font-family: var(--font-heading);
    font-size: var(--font-accent-desktop);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.preset-content-overlay p {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 901px) and (max-width: 1024px) {
    .presets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .preset-card-large {
        min-height: 350px;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .presets-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .preset-card-large {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .presets-section {
        padding: 40px 0 32px;
    }

    .presets-scroll-container {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        margin-top: 24px;
        margin-bottom: 12px;
        margin-left: -16px;
        margin-right: -16px;
        position: relative;
    }

    .presets-scroll-container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .presets-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        padding-left: 20px;
        padding-right: 0;
        margin-bottom: 0;
    }

    .presets-grid::after {
        content: '';
        flex: 0 0 40px;
        min-width: 40px;
    }

    .preset-card-large {
        flex: 0 0 calc(100vw - 80px);
        min-width: calc(100vw - 80px);
        min-height: 240px;
        max-height: 240px;
        scroll-snap-align: center;
        box-shadow: none !important;
        transform: none !important;
    }

    .preset-card-large .preset-image-bg {
        transform: none !important;
    }

    .preset-card-large .preset-content-overlay {
        background: linear-gradient(to top, rgba(15, 20, 25, 0.9), rgba(15, 20, 25, 0.6)) !important;
    }

    .preset-content-overlay {
        padding: 16px 20px;
    }

    .preset-content-overlay h3 {
        font-size: var(--font-accent-mobile);
        margin-bottom: 6px;
    }

    .preset-content-overlay p {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Scroll indicators */
    .presets-scroll-indicators {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 20px;
        padding: 8px 0;
        position: relative;
        z-index: 2;
    }

    .scroll-dot {
        width: 6px;
        height: 6px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        border: none;
        padding: 0;
        flex-shrink: 0;
    }

    .scroll-dot.active {
        width: 18px;
        height: 8px;
        border-radius: 4px;
        background: #00FF88;
        opacity: 1 !important;
    }

    .scroll-dot:not(.active):hover {
        background: rgba(255, 255, 255, 0.5);
    }
}

/* Hide scroll indicators on desktop */
@media (min-width: 769px) {
    .presets-scroll-indicators {
        display: none;
    }
}

/* Liquidations section - Mockup layout */
.liquidations-section {
    background: var(--bg-dark);
    padding: 60px 0;
}

.liquidations-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.liquidations-title-area {
    position: sticky;
    top: 100px;
}

.liquidations-desc {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.liquidations-image-bottom {
    width: 100%;
}

@media (max-width: 1024px) {
    .liquidations-section {
        padding: 60px 20px;
    }

    .liquidations-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .liquidations-title-area {
        position: static;
    }
}

@media (max-width: 768px) {
    .liquidations-section {
        padding: 60px 16px;
    }

    .liquidations-desc {
        font-size: var(--font-body-mobile);
    }
}

/* Limits section - Mockup layout */
.limits-section {
    background: var(--bg-dark);
    padding: 60px 0;
}

.limits-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.limits-title-area {
    position: sticky;
    top: 100px;
}

.limits-desc {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.limits-desc-secondary {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.limits-image-bottom {
    width: 100%;
}

@media (max-width: 1024px) {
    .limits-section {
        padding: 60px 20px;
    }

    .limits-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .limits-title-area {
        position: static;
    }
}

@media (max-width: 768px) {
    .limits-section {
        padding: 60px 16px;
    }

    .limits-desc,
    .limits-desc-secondary {
        font-size: var(--font-body-mobile);
    }
}

/* Notifications section - Mockup layout */
.notifications-section {
    background: var(--bg-dark);
    padding: 60px 0;
    text-align: center;
}

.notifications-intro {
    max-width: 900px;
    margin: 0 auto 60px;
}

.notifications-features-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    width: 100%;
}

.notifications-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.notification-feature-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.notification-feature-card .feature-icon {
    font-size: 32px;
    color: var(--accent-primary);
}

.notification-feature-card h3 {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.notification-feature-card p {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.notifications-video-bottom {
    width: 100%;
    margin-bottom: 48px;
}

.notifications-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-text-arrow {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-text-arrow:hover {
        color: var(--accent-primary);
    }

    .button-text-arrow:hover i {
        transform: translateX(4px);
    }
}

.button-text-arrow i {
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .notifications-section {
        padding: 60px 20px;
    }

    .notifications-features-wrapper {
        margin-bottom: 48px;
    }

    .notifications-features-grid {
        gap: 32px;
    }

    .notifications-video-bottom {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .notifications-section {
        padding: 60px 16px;
    }

    .notifications-features-wrapper {
        margin-bottom: 40px;
    }

    .notifications-features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        width: 100%;
    }

    .notification-feature-card {
        gap: 8px;
    }

    .notification-feature-card h3 {
        font-size: var(--font-body-mobile);
    }

    .notification-feature-card p {
        font-size: var(--font-small-mobile);
    }

    .notifications-video-bottom {
        margin-bottom: 32px;
    }

    .notifications-actions button {
        width: 100%;
    }
}

/* Components section - Mockup layout exact match */
.components-section {
    background: var(--bg-dark);
    padding: 0;
    display: block;
    width: 100%;
}

.components-hero {
    background: var(--bg-table);
    width: 100%;
    height: 350px;
    position: relative;
    display: block;
    overflow: hidden;
}

.components-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.components-hero-background i {
    font-size: 180px;
}

.components-hero-overlay {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.components-hero-title {
    font-family: var(--font-heading);
    font-size: var(--font-h1-desktop);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.1;
    width: 100%;
}

.components-content {
    display: block;
    position: relative;
    background: linear-gradient(180deg, rgba(58, 255, 163, 0.02) 0%, var(--bg-dark) 100%);
    width: 100%;
    clear: both;
}

.components-section .container {
    position: relative;
    z-index: 1;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0;
    position: relative;
}

.component-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.component-feature-icon {
    font-size: 28px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    height: 28px;
    width: 28px;
}

@media (hover: hover) and (pointer: fine) {
    .component-feature-icon:hover {
        transform: scale(1.1);
    }
}

.component-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.component-feature-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-accent-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.component-feature-card p {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .components-hero {
        height: 300px;
    }

    .components-hero-overlay {
        padding: 0 40px;
    }

    .components-hero-title {
        font-size: var(--font-h1-mobile);
    }

    .components-hero-background i {
        font-size: 140px;
    }

    .components-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .components-hero {
        height: 180px;
    }

    .components-hero-overlay {
        padding: 0 20px;
    }

    .components-hero-title {
        font-size: var(--font-h2-mobile);
    }

    .components-hero-background i {
        font-size: 80px;
    }

    .components-content {
        padding: 32px 16px;
    }

    .components-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0;
    }

    .component-feature-card {
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 12px;
        padding: 20px 16px;
        background: var(--bg-table);
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }

    .component-feature-icon {
        font-size: 32px;
        width: 32px;
        height: 32px;
        margin-bottom: 0;
    }

    .component-feature-content {
        gap: 8px;
    }

    .component-feature-card h3 {
        font-size: 18px;
    }

    .component-feature-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Screeners section */
.screeners-section {
    background: var(--bg-light);
    text-align: center;
}

.screeners-section .section-label {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    margin-bottom: 16px;
    opacity: 0.7;
}

.screeners-section .section-title {
    font-family: var(--font-heading);
    font-size: var(--font-h1-desktop);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.screeners-section .section-desc {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.screeners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.screener-card {
    text-align: center;
}

.screener-image-placeholder {
    background: var(--bg-table);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .screener-image-placeholder:hover {
        border-color: var(--accent-primary);
        box-shadow: 0 8px 24px rgba(58, 255, 163, 0.1);
    }
}

.screener-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-accent-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.screener-card p {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.screeners-actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .screeners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .screeners-section {
        padding: 60px 0;
    }

    .screeners-section .section-title {
        font-size: var(--font-h1-mobile);
    }

    .screener-image-placeholder {
        height: 220px;
    }
}

/* Training section */
.training-section {
    background: linear-gradient(180deg, rgba(58, 255, 163, 0.03) 0%, var(--bg-table) 50%, rgba(58, 255, 163, 0.02) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.training-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.training-background i {
    font-size: 400px;
}

.training-section .container {
    position: relative;
    z-index: 1;
}

.training-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.training-title {
    font-family: var(--font-heading);
    font-size: var(--font-h1-desktop);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0 0 32px 0;
    line-height: 1.1;
}

.training-desc {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 48px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.button-primary-white {
    background: white;
    color: var(--bg-darker);
    border: none;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: var(--font-button-desktop);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-button);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (hover: hover) and (pointer: fine) {
    .button-primary-white:hover {
        background: var(--accent-primary);
        color: var(--bg-darker);
        box-shadow: 0 8px 24px rgba(58, 255, 163, 0.3);
        transform: translateY(-2px);
    }
}

@media (max-width: 1024px) {
    .training-section {
        padding: 80px 0;
    }

    .training-background i {
        font-size: 300px;
    }

    .training-title {
        font-size: var(--font-h1-mobile);
    }

    .training-desc {
        font-size: var(--font-body-mobile);
    }
}

@media (max-width: 768px) {
    .training-section {
        padding: 60px 0;
    }

    .training-background i {
        font-size: 200px;
    }

    .training-title {
        font-size: var(--font-h1-mobile);
    }

    .training-desc {
        font-size: var(--font-body-mobile);
        margin-bottom: 40px;
    }

    .button-primary-white {
        width: 100%;
    }
}

/* Backtester section - Mockup layout */
.backtester-section {
    background: var(--bg-dark);
    padding: 60px 0;
}

.backtester-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.backtester-title-area {
    position: sticky;
    top: 100px;
}

.backtester-desc {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.backtester-image-bottom {
    width: 100%;
}

@media (max-width: 1024px) {
    .backtester-section {
        padding: 60px 20px;
    }

    .backtester-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .backtester-title-area {
        position: static;
    }
}

@media (max-width: 768px) {
    .backtester-section {
        padding: 20px 16px 60px 16px;
    }

    .backtester-desc {
        font-size: var(--font-body-mobile);
    }
}

/* Video and Image Styles */
.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-table);
    border: 1px solid var(--border-color);
    /* Remove fixed heights - let content determine height based on aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-poster.hidden {
    opacity: 0;
    z-index: 0;
}

.video-poster img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.landing-video {
    width: 100%;
    height: auto;
    display: block;
    background: var(--bg-table);
    object-fit: contain;
    position: relative;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.limits-image-wrapper {
    width: 100%;
}

.limits-image-wrapper picture {
    display: block;
}

.screener-image-wrapper {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .screener-image-wrapper:hover {
        border-color: var(--accent-primary);
        box-shadow: 0 8px 24px rgba(58, 255, 163, 0.1);
        transform: translateY(-4px);
    }
}

.screener-image-wrapper picture {
    display: block;
}

.screener-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video-wrapper,
    .feature-image {
        border-radius: 12px;
    }

    .screener-image-wrapper {
        border-radius: 8px;
    }
}

/* Fullscreen Media Styles */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.fullscreen-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.fullscreen-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.fullscreen-media-container {
    position: relative;
    z-index: 10001;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fullscreen-media {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}

/* Close button for fullscreen overlay */
.fullscreen-close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--bg-table);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    font-weight: 300;
}

.fullscreen-close-button:hover {
    background: var(--bg-dark);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: scale(1.1);
}

.fullscreen-close-button:active {
    transform: scale(0.95);
}

/* Mobile-friendly close button */
@media (max-width: 768px) {
    .fullscreen-close-button {
        width: 44px;
        height: 44px;
        font-size: 28px;
        top: 16px;
        right: 16px;
    }

    .fullscreen-media {
        max-height: 95vh;
        border-radius: 0;
    }

    .fullscreen-media-container {
        max-height: 95vh;
    }
}

/* Ensure video controls are visible and usable on mobile */
.fullscreen-media[controls] {
    cursor: default;
}

/* iOS/Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .fullscreen-overlay {
        /* Prevent iOS bounce scroll */
        position: fixed;
        -webkit-overflow-scrolling: touch;
    }

    .fullscreen-media {
        /* Prevent iOS from showing video in native player */
        -webkit-playsinline: true;
    }
}

/* Add subtle hint that media is clickable */
.video-wrapper:hover,
.feature-image:hover,
.screener-image:hover {
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.video-wrapper,
.feature-image,
.screener-image {
    cursor: zoom-in;
}

/* Pricing section styles */

.pricing-section {
    background: var(--bg-dark);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 60px 0;
}

.pricing-section .section-title {
    color: var(--accent-primary);
}

.pricing-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 32px 0;
    background: var(--bg-table);
    padding: 4px;
    border-radius: 8px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle button {
    flex: 1;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: var(--font-button-desktop);
    font-weight: var(--font-weight-semibold);
}

.pricing-toggle button.active {
    background: var(--accent-primary);
    color: var(--bg-darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--bg-table);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 50px rgba(58, 255, 163, 0.2);
        border-color: rgba(58, 255, 163, 0.4);
    }
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-accent-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.price .currency {
    font-family: var(--font-heading);
    font-size: var(--font-accent-desktop);
    color: var(--text-secondary);
}

.price .amount {
    font-family: var(--font-heading);
    font-size: var(--font-h2-desktop);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.pricing-card p {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.pricing-card .feature-list {
    margin-bottom: 24px;
    flex: 1;
}

.pricing-card .feature-list li {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-regular);
    margin-bottom: 12px;
}

.pricing-card .feature-list i {
    font-size: var(--font-small-desktop);
}

.pricing-card .button-primary {
    width: 100%;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 24px;
    }

    .price .amount {
        font-size: var(--font-h2-mobile);
    }

    .pricing-card h3 {
        font-size: var(--font-accent-mobile);
    }

    .pricing-card .feature-list li {
        font-size: var(--font-small-mobile);
    }
}

/* Disabled pricing card styles */
.pricing-card-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
    filter: grayscale(0.3);
}

.pricing-card-disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--border-color) !important;
}

.pricing-card-disabled h3,
.pricing-card-disabled .price,
.pricing-card-disabled .feature-list li {
    color: var(--text-secondary);
}

.pricing-card-disabled .price .amount {
    color: var(--text-secondary);
}

.pricing-card-disabled .feature-list i {
    color: var(--text-secondary);
}

/* Coming Soon badge */
.coming-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #3AFFA3 0%, #2DD891 100%);
    color: var(--bg-darker);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(58, 255, 163, 0.3);
}

/* Disabled button styles */
.button-disabled {
    background: var(--bg-table) !important;
    color: var(--text-secondary) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    border: 1px solid var(--border-color) !important;
}

.button-disabled:hover {
    background: var(--bg-table) !important;
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .coming-soon-badge {
        top: 12px;
        right: 12px;
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* Roadmap section styles */

.roadmap-section {
    background: var(--bg-dark);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 60px 0 40px 0;
    overflow-x: clip; /* Use clip instead of hidden for iOS */
    width: 100%;
}

.roadmap-timeline {
    max-width: 100%;
    margin: 60px auto 48px;
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    padding: 20px 20px 40px 20px;
    display: flex;
    gap: 60px;
    justify-content: flex-start;
    scroll-snap-type: x proximity;
}

/* Center the timeline on initial load */
.roadmap-timeline {
    scroll-padding-left: calc(50% - 125px); /* Center the first item */
}

/* For desktop, center all items */
@media (min-width: 1400px) {
    .roadmap-timeline {
        justify-content: center;
        overflow-x: visible;
    }
}

/* Continuous line connecting all timeline items */
.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    top: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 10%, var(--border-color) 90%, transparent 100%);
    z-index: 0;
}

/* For mobile/scrollable view, extend the line to cover all items */
@media (max-width: 1399px) {
    .roadmap-timeline::before {
        left: calc(50vw - 125px + 125px); /* Start from center of first item */
        right: auto;
        width: calc(250px * 5 + 60px * 4 - 250px); /* Width to cover all 5 items minus last half */
        top: 28px;
    }
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
    max-width: 250px;
    position: relative;
    text-align: center;
    flex-shrink: 0;
    scroll-snap-align: center;
}

/* First timeline item should have left margin on mobile to center it */
@media (max-width: 1399px) {
    .timeline-item:first-child {
        margin-left: calc(50vw - 125px);
    }

    .timeline-item:last-child {
        margin-right: calc(50vw - 125px);
    }
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: var(--font-h3-desktop);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 0;
    position: relative;
    white-space: nowrap;
    order: 2;
}

.timeline-year::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -32px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent-primary);
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 0 0 1px var(--bg-dark);
    z-index: 1;
}

.timeline-content {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: var(--line-height-extra-loose);
    margin-top: 16px;
    text-align: center;
    order: 3;
}

.roadmap-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .roadmap-section {
        padding: 80px 0;
    }

    .roadmap-section .container {
        padding: 0 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .roadmap-timeline {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: left;
        padding: 0;
        overflow: visible;
        max-width: calc(100vw - 40px);
        margin-left: 0;
        margin-right: 0;
    }

    .roadmap-timeline::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
        background: var(--border-color);
    }

    .timeline-item {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding-left: 50px;
        padding-right: 20px;
        position: relative;
        margin: 0 !important;
        align-items: flex-start;
        text-align: left;
        box-sizing: border-box;
    }

    .timeline-year {
        text-align: left;
        margin-bottom: 16px;
        white-space: normal; /* Allow wrapping on mobile */
        word-break: break-word;
        max-width: calc(100% - 20px);
    }

    .timeline-year::before {
        left: -50px;
        top: 5px;
        bottom: auto;
        transform: none;
        border-color: var(--bg-dark);
    }

    .timeline-content {
        margin-top: 8px;
        text-align: left;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    .roadmap-section {
        padding: 60px 0;
        overflow-x: clip;
    }

    .roadmap-section .container {
        padding: 0 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .roadmap-timeline {
        gap: 32px;
        width: 100%;
        max-width: calc(100vw - 32px); /* Account for container padding */
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-item {
        padding-left: 40px;
        padding-right: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .timeline-year {
        font-size: var(--font-h3-mobile);
        max-width: calc(100% - 16px);
    }

    .timeline-year::before {
        left: -40px;
        width: 10px;
        height: 10px;
    }

    .timeline-content {
        font-size: var(--font-small-mobile);
        max-width: calc(100% - 16px);
        padding-right: 16px;
    }

    .roadmap-actions {
        flex-direction: column;
        margin-top: 32px;
    }

    .roadmap-actions button {
        width: 100%;
    }
}

/* Partners section styles */

.partners-section {
    background: var(--bg-dark);
    padding: 60px 0;
    text-align: center;
}

.partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0 0 60px 0;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.partner-logo {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .partner-item:hover .partner-logo {
        filter: brightness(1);
        transform: scale(1.05);
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .partners-grid {
        gap: 60px;
    }

    .partner-logo {
        max-width: 180px;
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }

    .partners-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-logo {
        max-width: 200px;
        max-height: 80px;
    }
}

/* Contact section styles */

.contact-section {
    background: var(--bg-dark);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 40px 0 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.contact-card {
    background: var(--bg-table);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.contact-icon {
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-accent-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: var(--line-height-normal);
}

.contact-card p {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: var(--line-height-loose);
    margin-bottom: 24px;
}

.contact-link {
    font-family: var(--font-body);
    font-size: var(--font-body-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .contact-link:hover {
        color: var(--accent-primary-pressed);
    }
}

.contact-card .button-primary {
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-card h3 {
        font-size: var(--font-accent-mobile);
    }

    .contact-card p {
        font-size: var(--font-body-mobile);
    }

    .contact-link {
        font-size: var(--font-body-mobile);
    }
}

/* Footer styles - modern professional design */

.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 32px 0 24px;
    min-height: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 8px;
    align-self: flex-start;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-light);
    color: var(--text-secondary);
    line-height: var(--line-height-loose);
    margin: 0;
    max-width: 300px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-table);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: var(--font-body-desktop);
}

@media (hover: hover) and (pointer: fine) {
    .social-link:hover {
        background: var(--accent-primary);
        border-color: var(--accent-primary);
        color: var(--bg-darker);
        transform: translateY(-2px);
    }
}

/* Links Grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column-title {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin: 0 0 8px 0;
}

.footer-link {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    text-align: left;
    padding: 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.footer-link:focus {
    outline: none;
    color: var(--accent-primary);
}

.footer-link:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
    .footer-link:hover {
        color: var(--accent-primary);
        transform: translateX(4px);
    }
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-light);
    color: var(--text-secondary);
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-link {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: var(--font-small-desktop);
    font-weight: var(--font-weight-light);
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    outline: none;
}

.footer-legal-link:focus {
    outline: none;
    color: var(--accent-primary);
}

.footer-legal-link:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
    .footer-legal-link:hover {
        color: var(--accent-primary);
    }
}

.footer-separator {
    color: var(--border-color);
    font-size: var(--font-small-desktop);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 32px 16px 24px;
    }

    .footer-container {
        padding: 0;
    }

    .footer-content {
        gap: 32px;
        padding-bottom: 24px;
        margin-bottom: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    .footer-tagline {
        font-size: var(--font-small-mobile);
    }

    .footer-column-title,
    .footer-link {
        font-size: var(--font-small-mobile);
    }

    .footer-logo {
        height: 36px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: var(--font-body-mobile);
    }
}


/*# sourceMappingURL=landing.daf176f2.css.map*/