/* ========================================
   SISTEMA DE TOKENS TEMPLIFY
   ======================================== */

:root {
    /* === TOKENS TEMPLIFY === */
    --token-dark-100: rgb(10, 10, 10);
    --token-dark-200: rgb(17, 17, 17);
    --token-dark-300: rgb(25, 25, 25);
    --token-dark-400: rgb(35, 35, 35);
    --token-dark-500: rgb(45, 45, 45);
    --token-dark-600: rgb(55, 55, 55);
    --token-dark-700: rgb(75, 75, 75);
    --token-dark-800: rgb(95, 95, 95);
    --token-dark-900: rgb(115, 115, 115);
    
    /* GREEN TOKENS */
    --token-green-bright: rgb(0, 255, 102);
    --token-green-glow: rgba(0, 255, 102, 0.5);
    --token-green-subtle: rgba(0, 255, 102, 0.1);
    --token-green-border: rgba(0, 255, 102, 0.2);
    --token-green-text: rgba(0, 255, 102, 0.9);
    
    /* WHITE TOKENS */
    --token-white-100: rgb(255, 255, 255);
    --token-white-200: rgba(255, 255, 255, 0.9);
    --token-white-300: rgba(255, 255, 255, 0.8);
    --token-white-400: rgba(255, 255, 255, 0.7);
    --token-white-500: rgba(255, 255, 255, 0.6);
    --token-white-600: rgba(255, 255, 255, 0.5);
    --token-white-700: rgba(255, 255, 255, 0.4);
    --token-white-800: rgba(255, 255, 255, 0.3);
    --token-white-900: rgba(255, 255, 255, 0.2);
    
    /* BORDER TOKENS */
    --token-border-subtle: rgba(255, 255, 255, 0.1);
    --token-border-light: rgba(255, 255, 255, 0.15);
    --token-border-green: rgba(0, 255, 102, 0.3);
    
    /* SHADOW TOKENS */
    --token-shadow-green: 0 0 20px rgba(0, 255, 102, 0.3);
    --token-shadow-green-strong: 0 0 30px rgba(0, 255, 102, 0.5);
    --token-shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.3);
    
    /* BLUR TOKENS */
    --token-blur-light: blur(20px);
    --token-blur-strong: blur(40px);
    
    /* FONT TOKENS */
    --token-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --token-font-display: 'Urbanist', sans-serif;
    
    /* TIMING TOKENS */
    --token-transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --token-transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --token-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET Y BASE
   ======================================== */

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

html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: var(--token-font-primary);
    background: var(--token-dark-100);
    color: var(--token-white-200);
    line-height: 1.5;
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.modal-open {
    overflow: hidden;
}

/* ========================================
   FRAMER MAIN STRUCTURE
   ======================================== */

.framer-main {
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.framer-root {
    min-height: 100vh;
    width: auto;
    display: flex;
    flex-direction: column;
}

/* ========================================
   HEADER DESKTOP
   ======================================== */

.ssr-variant.hidden-mobile {
    display: block;
}

.framer-header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 32px;
    will-change: transform;
    opacity: 1;
    transform: perspective(1200px);
}

.framer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: var(--token-blur-light);
    border-radius: 12px;
    border: 1px solid var(--token-border-subtle);
    transition: var(--token-transition-normal);
}

.framer-header[data-border="true"] {
    border: 1px solid var(--token-border-light);
}

/* === LOGO SECTION === */

.framer-logo-container {
    display: flex;
    align-items: center;
}

.framer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--token-white-100);
    transition: var(--token-transition-fast);
}

.framer-logo-link:hover {
    color: var(--token-green-bright);
}

.framer-logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framer-logo-svg {
    width: 20px;
    height: 20px;
    color: var(--token-green-bright);
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--token-font-display);
    letter-spacing: -0.02em;
}

/* === HEADER BUTTONS === */

.framer-header-btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* === ACCOUNT DROPDOWN === */

.framer-account-container {
    position: relative;
}

.framer-account-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--token-dark-200);
    border: 1px solid var(--token-border-subtle);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--token-transition-fast);
}

.framer-account-dropdown[data-highlight="true"]:hover {
    border-color: var(--token-border-green);
    box-shadow: var(--token-shadow-green);
}

.framer-account-icon {
    width: 20px;
    height: 20px;
    color: var(--token-white-400);
}

.account-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--token-white-300);
}

.framer-account-arrow {
    width: 16px;
    height: 16px;
    color: var(--token-white-600);
    transition: var(--token-transition-fast);
}

.framer-account-dropdown.active .framer-account-arrow {
    transform: rotate(180deg);
}

/* === DROPDOWN MENU === */

.account-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 200px;
    background: var(--token-dark-200);
    border: 1px solid var(--token-border-light);
    border-radius: 12px;
    box-shadow: var(--token-shadow-dark);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--token-transition-normal);
    z-index: 1001;
}

.account-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--token-transition-fast);
    color: var(--token-white-300);
}

.dropdown-item:hover {
    background: var(--token-dark-300);
    color: var(--token-white-100);
}

.dropdown-item svg {
    color: var(--token-white-500);
}

.dropdown-divider {
    height: 1px;
    background: var(--token-border-subtle);
    margin: 4px 0;
}

/* === SUBMIT BUTTON === */

.framer-submit-container {
    position: relative;
}

.framer-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    background: var(--token-green-bright);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--token-dark-100);
    font-weight: 600;
    transition: var(--token-transition-fast);
    overflow: hidden;
}

.framer-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.framer-submit-btn:hover::before {
    transform: translateX(100%);
}

.framer-submit-btn:hover {
    box-shadow: var(--token-shadow-green-strong);
    transform: translateY(-1px);
}

.framer-btn-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.framer-btn-icon {
    width: 18px;
    height: 18px;
}

.submit-btn-text {
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   MAIN SECTION LAYOUT
   ======================================== */

.framer-main-section {
    display: flex;
    min-height: 100vh;
    padding-top: 96px; /* Account for fixed header */
}

/* === LEFT COLUMN - SIDEBAR === */

.framer-column-left {
    width: 280px;
    min-height: calc(100vh - 96px);
    position: fixed;
    left: 0;
    top: 96px;
    z-index: 100;
}

.framer-sidebar-container {
    height: 100%;
    padding: 24px;
}

.framer-sidebar {
    height: 100%;
    background: var(--token-dark-200);
    border: 1px solid var(--token-border-subtle);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.framer-sidebar[data-border="true"] {
    border: 1px solid var(--token-border-light);
}

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

.framer-nav-item-container {
    position: relative;
}

.framer-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--token-white-400);
    transition: var(--token-transition-fast);
    overflow: hidden;
}

.framer-nav-item:hover {
    color: var(--token-white-100);
    background: var(--token-dark-300);
}

/* === ACTIVE NAVIGATION ITEM === */

.framer-nav-active {
    color: var(--token-green-bright) !important;
    background: var(--token-green-subtle) !important;
    box-shadow: var(--token-shadow-green);
}

.framer-nav-glow {
    position: absolute;
    inset: 0;
    background: var(--token-green-glow);
    border-radius: 10px;
    opacity: 0;
    transition: var(--token-transition-normal);
}

.framer-nav-active .framer-nav-glow {
    opacity: 0.1;
}

.framer-nav-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.nav-text {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

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

.framer-nav-divider {
    height: 1px;
    background: var(--token-border-subtle);
    margin: 0 16px;
}

/* === PREMIUM BUTTON === */

.framer-premium-container {
    margin-top: auto;
}

.framer-premium-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, var(--token-green-bright), #00cc66);
    border-radius: 12px;
    text-decoration: none;
    color: var(--token-dark-100);
    font-weight: 600;
    box-shadow: var(--token-shadow-green);
    transition: var(--token-transition-normal);
}

.framer-premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--token-shadow-green-strong);
}

.framer-premium-icon {
    width: 20px;
    height: 20px;
}

.premium-text {
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   RIGHT COLUMN - CONTENT
   ======================================== */

.framer-column-right {
    flex: 1;
    margin-left: 280px;
    min-height: calc(100vh - 96px);
}

/* === HERO BANNER === */

.framer-hero-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    overflow: hidden;
}

/* === BACKGROUND ELEMENTS === */

.framer-line-image {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 102, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.framer-bg-ticker-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.framer-bg-linear-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.8) 30%,
        rgba(10, 10, 10, 0.9) 70%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

/* === TICKER SYSTEM === */

.framer-ticker-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 20px;
    opacity: 0.3;
}

.framer-ticker-container {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.ticker-section {
    height: 100%;
}

.ticker-list {
    list-style: none;
    height: 100%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.ticker-01 .ticker-list {
    animation: tickerUp 20s linear infinite;
}

.ticker-02 .ticker-list {
    animation: tickerDown 25s linear infinite;
}

.ticker-03 .ticker-list {
    animation: tickerUp 22s linear infinite;
}

.ticker-item {
    height: 100%;
}

.ticker-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 200%;
}

.ticker-image {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--token-border-subtle);
    transition: var(--token-transition-normal);
}

.ticker-image:hover {
    border-color: var(--token-border-green);
    box-shadow: var(--token-shadow-green);
}

/* === TICKER IMAGES === */

.img-11 { background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=300&h=200&fit=crop'); }
.img-12 { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=300&h=200&fit=crop'); }
.img-13 { background-image: url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3?w=300&h=200&fit=crop'); }
.img-14 { background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=300&h=200&fit=crop'); }
.img-15 { background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=300&h=200&fit=crop'); }

.img-21 { background-image: url('https://images.unsplash.com/photo-1531403009284-440f080d1e12?w=300&h=200&fit=crop'); }
.img-22 { background-image: url('https://images.unsplash.com/photo-1611224923853-80b023f02d71?w=300&h=200&fit=crop'); }
.img-23 { background-image: url('https://images.unsplash.com/photo-1600132806370-bf17e65e942f?w=300&h=200&fit=crop'); }
.img-24 { background-image: url('https://images.unsplash.com/photo-1593720213428-28a5b9e94613?w=300&h=200&fit=crop'); }
.img-25 { background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=300&h=200&fit=crop'); }

.img-31 { background-image: url('https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=300&h=200&fit=crop'); }
.img-32 { background-image: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?w=300&h=200&fit=crop'); }
.img-33 { background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=300&h=200&fit=crop'); }
.img-34 { background-image: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?w=300&h=200&fit=crop'); }
.img-35 { background-image: url('https://images.unsplash.com/photo-1472851294608-062f824d29cc?w=300&h=200&fit=crop'); }

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

@keyframes tickerUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

@keyframes tickerDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

/* === CONTENT WRAP === */

.framer-content-wrap {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* === UPDATE BADGE === */

.framer-update-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--token-dark-300);
    border: 1px solid var(--token-border-light);
    border-radius: 20px;
    color: var(--token-white-300);
    font-size: 14px;
    font-weight: 500;
}

.framer-update-icon {
    width: 16px;
    height: 16px;
    color: var(--token-green-bright);
}

/* === MAIN HEADING === */

.framer-main-heading {
    max-width: 600px;
}

.main-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-family: var(--token-font-display);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--token-white-100);
    text-shadow: 0 0 30px rgba(0, 255, 102, 0.2);
}

.text-primary {
    color: var(--token-green-bright);
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
}

/* === PARAGRAPH === */

.framer-main-para {
    max-width: 500px;
}

.main-para {
    font-size: 18px;
    color: var(--token-white-400);
    line-height: 1.6;
}

/* === SEARCH SECTION === */

.framer-search-container {
    width: 100%;
    max-width: 500px;
}

.framer-search-box {
    display: flex;
    align-items: center;
    background: var(--token-dark-200);
    border: 1px solid var(--token-border-light);
    border-radius: 12px;
    padding: 4px;
    transition: var(--token-transition-normal);
}

.framer-search-box:focus-within {
    border-color: var(--token-border-green);
    box-shadow: var(--token-shadow-green);
}

.framer-search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.framer-search-icon {
    width: 20px;
    height: 20px;
    color: var(--token-white-500);
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--token-white-200);
    font-size: 16px;
}

.search-input::placeholder {
    color: var(--token-white-500);
}

.framer-search-btn {
    background: var(--token-green-bright);
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--token-transition-fast);
}

.framer-search-btn:hover {
    box-shadow: var(--token-shadow-green);
    transform: translateY(-1px);
}

.search-btn-text {
    color: var(--token-dark-100);
    font-weight: 600;
    font-size: 14px;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */

.framer-all-categories {
    padding: 80px 40px;
}

/* === CATEGORIES HEADING === */

.framer-categories-heading {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.framer-categories-title {
    min-width: fit-content;
}

.categories-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--token-white-100);
    font-family: var(--token-font-display);
}

.framer-categories-line {
    flex: 1;
    height: 1px;
    background: var(--token-border-subtle);
}

.framer-browse-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--token-dark-300);
    border: 1px solid var(--token-border-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--token-white-300);
    font-size: 14px;
    font-weight: 500;
    transition: var(--token-transition-fast);
}

.framer-browse-all-btn:hover {
    border-color: var(--token-border-green);
    color: var(--token-green-bright);
    box-shadow: var(--token-shadow-green);
}

.framer-browse-all-icon {
    width: 16px;
    height: 16px;
}

/* === CATEGORIES GRID === */

.framer-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* === CATEGORY CARDS === */

.framer-category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--token-transition-normal);
}

.framer-category-card:hover {
    transform: translateY(-4px);
}

.framer-category-container {
    height: 100%;
    background: var(--token-dark-200);
    border: 1px solid var(--token-border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--token-transition-normal);
}

.framer-category-card:hover .framer-category-container {
    border-color: var(--token-border-green);
    box-shadow: var(--token-shadow-green);
}

.framer-category-main {
    position: relative;
    height: 240px;
    display: flex;
    flex-direction: column;
}

/* === CATEGORY CONTENT === */

.framer-category-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.framer-category-arrow {
    width: 32px;
    height: 32px;
    background: var(--token-dark-400);
    border: 1px solid var(--token-border-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--token-transition-fast);
}

.framer-category-card:hover .framer-category-arrow {
    background: var(--token-green-bright);
    border-color: var(--token-green-bright);
    color: var(--token-dark-100);
}

.framer-category-arrow-icon {
    width: 16px;
    height: 16px;
    color: var(--token-white-400);
    transition: var(--token-transition-fast);
}

.framer-category-text-wrap {
    text-align: left;
}

.category-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--token-white-100);
    margin-bottom: 4px;
}

.category-desc {
    font-size: 14px;
    color: var(--token-white-500);
}

/* === CATEGORY IMAGES === */

.framer-category-images {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    display: flex;
    gap: 8px;
    padding: 0 20px 20px;
}

.category-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 1px solid var(--token-border-subtle);
    transition: var(--token-transition-normal);
}

.framer-category-card:hover .category-image {
    border-color: var(--token-border-green);
}

/* === CATEGORY IMAGE SOURCES === */

.cat-img-1 { background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=300&h=200&fit=crop'); }
.cat-img-2 { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=300&h=200&fit=crop'); }
.cat-img-3 { background-image: url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3?w=300&h=200&fit=crop'); }
.cat-img-4 { background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=300&h=200&fit=crop'); }
.cat-img-5 { background-image: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?w=300&h=200&fit=crop'); }
.cat-img-6 { background-image: url('https://images.unsplash.com/photo-1472851294608-062f824d29cc?w=300&h=200&fit=crop'); }
.cat-img-7 { background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=300&h=200&fit=crop'); }
.cat-img-8 { background-image: url('https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=300&h=200&fit=crop'); }
.cat-img-9 { background-image: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?w=300&h=200&fit=crop'); }
.cat-img-10 { background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=300&h=200&fit=crop'); }
.cat-img-11 { background-image: url('https://images.unsplash.com/photo-1531403009284-440f080d1e12?w=300&h=200&fit=crop'); }
.cat-img-12 { background-image: url('https://images.unsplash.com/photo-1611224923853-80b023f02d71?w=300&h=200&fit=crop'); }

/* ========================================
   MODAL SYSTEM
   ======================================== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: var(--token-blur-light);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--token-dark-200);
    border: 1px solid var(--token-border-light);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--token-white-500);
    cursor: pointer;
    transition: var(--token-transition-fast);
}

.close:hover {
    color: var(--token-white-100);
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--token-white-100);
    margin-bottom: 16px;
    font-family: var(--token-font-display);
}

.modal-content p {
    font-size: 16px;
    color: var(--token-white-400);
    margin-bottom: 32px;
    line-height: 1.6;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.feature-item svg {
    color: var(--token-green-bright);
    min-width: 24px;
}

.feature-item span {
    color: var(--token-white-300);
    font-weight: 500;
}

.modal-cta {
    width: 100%;
    background: var(--token-green-bright);
    color: var(--token-dark-100);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--token-transition-fast);
}

.modal-cta:hover {
    box-shadow: var(--token-shadow-green-strong);
    transform: translateY(-2px);
}

/* ========================================
   NOTIFICATION SYSTEM
   ======================================== */

#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification {
    background: var(--token-dark-200);
    border: 1px solid var(--token-border-light);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 320px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(100%);
    opacity: 0;
    transition: var(--token-transition-normal);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left: 4px solid var(--token-green-bright);
}

.notification.error {
    border-left: 4px solid #ff4444;
}

.notification-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.notification.success .notification-icon {
    color: var(--token-green-bright);
}

.notification.error .notification-icon {
    color: #ff4444;
}

.notification-message {
    color: var(--token-white-300);
    font-size: 14px;
    line-height: 1.4;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes glow {
    0%, 100% { box-shadow: var(--token-shadow-green); }
    50% { box-shadow: var(--token-shadow-green-strong); }
}

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

@media (max-width: 1024px) {
    .framer-column-left {
        width: 240px;
    }
    
    .framer-column-right {
        margin-left: 240px;
    }
    
    .framer-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }
    
    .framer-column-left {
        display: none;
    }
    
    .framer-column-right {
        margin-left: 0;
    }
    
    .framer-main-section {
        padding-top: 80px;
    }
    
    .framer-header-container {
        padding: 16px 20px;
    }
    
    .framer-header {
        padding: 10px 16px;
    }
    
    .framer-hero-banner {
        padding: 40px 20px;
        min-height: 400px;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .framer-all-categories {
        padding: 60px 20px;
    }
    
    .framer-categories-heading {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .framer-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    #notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .framer-hero-banner {
        min-height: 300px;
        padding: 30px 16px;
    }
    
    .main-heading {
        font-size: 1.75rem;
    }
    
    .main-para {
        font-size: 16px;
    }
    
    .framer-all-categories {
        padding: 40px 16px;
    }
    
    .framer-search-box {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
    }
    
    .framer-search-btn {
        margin: 0;
    }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .ticker-list {
        animation: none !important;
    }
}

/* Focus states for accessibility */
.framer-nav-item:focus,
.framer-submit-btn:focus,
.framer-browse-all-btn:focus,
.framer-category-card:focus {
    outline: 2px solid var(--token-green-bright);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --token-border-subtle: rgba(255, 255, 255, 0.3);
        --token-border-light: rgba(255, 255, 255, 0.4);
    }
}

/* Print styles */
@media print {
    .framer-header-container,
    .framer-column-left,
    .modal,
    #notification-container {
        display: none !important;
    }
    
    .framer-column-right {
        margin-left: 0 !important;
    }
} 