/* ===== Font Import ===== */
@font-face {
    font-family: 'Open Runde';
    src: url('https://framerusercontent.com/assets/3exmuO07FP19gMM08TQrpXl3BGQ.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Runde';
    src: url('https://framerusercontent.com/assets/HJY4SY2JywrSZ2l1AEW9Tm9cO8.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Open Runde';
    src: url('https://framerusercontent.com/assets/hG3wmGmFwadB6X5XPVXkMlmLr8o.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Runde';
    src: url('https://framerusercontent.com/assets/sh6WdegxUPLwf6maNVTPdFTJOG8.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors */
    --bg-primary: #0f0f11;
    --bg-secondary: #0f0f11;
    --bg-tertiary: #1a1a24;
    --bg-card: #1f1f2e;
    --bg-hover: #252535;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b2;
    --text-tertiary: #6b6b80;

    /* Accent Colors */
    --color-primary: #6366f1;
    --color-primary-hover: #4f46e5;
    --color-secondary: #8b5cf6;
    --color-success: #22c55e;
    --color-danger: #ef4444;
    --color-warning: #eab308;
    --color-info: #3b82f6;

    /* Rank Colors */
    --rank-diamond: #b9f2ff;
    --rank-platinum: #e5e7eb;
    --rank-gold: #fbbf24;
    --rank-green: #22c55e;
    --rank-orange: #f97316;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.7);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0f0f11;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Rotating Lines Canvas ===== */
#rotating-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150vh;
    z-index: 1;
    pointer-events: none;
    display: none; /* Hidden but not deleted */
}

/* ===== Particles Canvas ===== */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150vh;
    z-index: 1;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===== Header & Navigation ===== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-image {
    height: 75px;
    width: auto;
}

.logo-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 150vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background-color: var(--bg-primary);
    background-position: center -100px;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: -73.5vh;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.hero-title-image {
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.hero-title-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-devices {
    position: absolute;
    bottom: -30vh;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
    z-index: 5;
}

.hero-devices img {
    width: 100%;
    height: auto;
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-grey {
    color: #5a5a6b;
    font-weight: 400;
}

.badge-kostenlos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
}

.btn-hero {
    background: rgba(255, 255, 255, 0.95);
    color: #1f1f2e;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.3);
    background: white;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* CTA Button with Animation */
.cta-button {
    background: #e5e7eb;
    color: #000000;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 28vh;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.cta-button:hover {
    transform: translateX(-50%) translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #f3f4f6;
}

.cta-button:active {
    transform: translateX(-50%) translateY(0px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

@keyframes buttonPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: translateX(-50%) scale(1.03);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    }
}

.cta-button {
    animation: buttonPulse 2s ease-in-out infinite;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.hero-laptop {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: var(--spacing-2xl);
}

.hero-laptop img {
    width: 100%;
    height: auto;
    display: block;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===== Features Scroll Animation Section ===== */
.features-scroll-section {
    padding: 2rem 0;
    min-height: 80vh;
    background: #0f0f11;
    position: relative;
    overflow: visible;
    margin-top: -33vh;
}

.features-section-title {
    font-family: 'Open Runde', sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: -0.02em;
    opacity: 0;
    position: relative;
    z-index: 0;
}

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

/* Vertical Lines */
.vertical-lines-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    height: 0;
}

.vertical-line {
    z-index: 1;
    background-color: red;
    flex: none;
    width: 5px;
    height: 2000px;
    position: absolute;
    bottom: -1600px;
    overflow: visible;
}

.vertical-line:nth-child(1) {
    left: calc(26.5% - 0.5px);
}

.vertical-line:nth-child(2) {
    left: calc(73.5% - 0.5px);
}

/* Features Text Section */
.features-text-section {
    text-align: center;
    max-width: 900px;
    margin: -3rem auto 0;
    padding: 0 var(--spacing-lg);
}

.features-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.features-main-title {
    font-family: 'Open Runde', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #cfcfcc;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Boxes Section */
.content-boxes-section {
    padding: 0 0 6rem 0;
    background: #0f0f11;
    position: relative;
}

.content-boxes-grid {
    display: grid;
    grid-template-columns: 646px 646px;
    grid-auto-rows: max-content;
    gap: 36px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.content-box {
    background: #0f0f11;
    border: 1px solid #ffffff0a;
    border-radius: 40px;
    padding: 0;
    backdrop-filter: blur(2px);
    box-shadow: 0 1px 1px #00000040;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Spezifische Größen für jede Box - EXAKT 646x646, 646x534, 646x534, 646x646 */
.content-box:nth-child(1) {
    width: 646px;
    height: 646px;
    min-width: 646px;
    max-width: 646px;
    min-height: 646px;
    max-height: 646px;
}

.content-box:nth-child(2) {
    width: 646px;
    height: 534px;
    min-width: 646px;
    max-width: 646px;
    min-height: 534px;
    max-height: 534px;
}

.content-box:nth-child(3) {
    width: 646px;
    height: 534px;
    min-width: 646px;
    max-width: 646px;
    min-height: 534px;
    max-height: 534px;
}

.content-box:nth-child(4) {
    width: 646px;
    height: 646px;
    min-width: 646px;
    max-width: 646px;
    min-height: 646px;
    max-height: 646px;
}

.content-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(23deg, #fff0 0%, #ababab1a 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Hover entfernt */

.content-icon {
    color: #00ff9f;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
}

.content-icon svg {
    width: 100%;
    height: 100%;
}

.content-box-title {
    font-family: 'Open Runde', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.02em;
}

.content-box-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

.content-box-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.content-box-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.content-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.header-separator {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
}

.blueprint-visual {
    width: 100%;
    height: 280px;
    position: relative;
    margin-bottom: 0;
}

/* Magnifying Glass Component */
.magnifying-glass-container {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 0;
    overflow: visible;
}

.graph-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 577px;
    height: auto;
    opacity: 1;
}

.graph-background img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.magnifying-glass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 280px;
    will-change: transform;
}

.magnifier-handle-svg {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 33px;
    height: 47px;
    image-rendering: pixelated;
    flex-shrink: 0;
    fill: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    z-index: 1;
}

.magnifier-frame {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 1000px;
    border: 6px solid rgb(105, 105, 106);
    backdrop-filter: blur(6px);
    overflow: hidden;
}

.magnifier-outline-outer {
    position: absolute;
    inset: -7px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 2;
}

.magnifier-inner {
    position: absolute;
    inset: 0;
    border-radius: 100%;
    overflow: hidden;
}

.magnifier-outline-inner {
    position: absolute;
    inset: 0;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 3;
}

.magnified-graph {
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

.magnified-graph img {
    width: 200%;
    height: 200%;
    object-fit: cover;
    transform: translate(-25%, -25%);
}

.magnifier-shadow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow:
        rgba(0, 0, 0, 0.02) 0px 0.800251px 0.720226px 0px,
        rgba(0, 0, 0, 0.05) 0px 2.1793px 1.96137px 0px,
        rgba(0, 0, 0, 0.114) 0px 4.78495px 4.30645px 0px,
        rgba(0, 0, 0, 0.255) 0px 10.6215px 9.55934px 0px,
        rgba(0, 0, 0, 0.65) 0px 27px 24.3px 0px;
    pointer-events: none;
    z-index: 4;
}

.altcoins-label {
    position: absolute;
    top: 50px;
    left: 50px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.altcoins-label p {
    font-family: 'Open Runde', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.left-shimmer {
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}

/* Wiki Visual Styles */
.wiki-visual {
    position: relative;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.wiki-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 159, 0.3), rgba(0, 255, 159, 0.05));
    box-shadow: 0 0 60px rgba(0, 255, 159, 0.3);
    animation: pulse-orb 3s ease-in-out infinite;
}

@keyframes pulse-orb {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* wiki-badge styles moved to inline styles in index.html */

/* Research Visual Styles */
.research-visual {
    position: relative;
    width: 100%;
    height: 340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}

.research-tabs {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.research-tab {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.research-tab.active {
    background: rgba(0, 255, 159, 0.1);
    border-color: rgba(0, 255, 159, 0.3);
    color: #00ff9f;
}

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

.research-papers {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.paper-line {
    height: 32px;
    background: linear-gradient(90deg, rgba(0, 255, 159, 0.2) 0%, rgba(0, 255, 159, 0.05) 100%);
    border-radius: 8px;
    border-left: 3px solid rgba(0, 255, 159, 0.5);
    animation: fade-in 0.6s ease-out forwards;
    opacity: 0;
}

.paper-1 {
    width: 85%;
    animation-delay: 0.2s;
}

.paper-2 {
    width: 70%;
    animation-delay: 0.4s;
}

.paper-3 {
    width: 90%;
    animation-delay: 0.6s;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-cards-container {
    position: relative;
    height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    justify-items: center;
    padding-top: 50px;
    perspective: 2000px;
    z-index: 20;
}

/* Card Wrapper - Modified for Grid Layout */
.framer-p4ziip,
.framer-mkpi85,
.framer-mp694x {
    will-change: transform;
    background: linear-gradient(23deg, #fff0 0%, #ababab1a 100%);
    border-radius: 40px;
    height: 312px;
    padding: 1px;
    display: flex;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 430px;
}

/* Left card - rotated */
.framer-p4ziip {
    transform: rotate(-2deg);
    z-index: 10;
}

/* Middle card slightly higher */
.framer-mkpi85 {
    margin-top: -33px;
    z-index: 11;
}

/* Right card - rotated */
.framer-mp694x {
    transform: rotate(2deg);
    z-index: 10;
}

/* Card Container - EXACT FROM alphadojo.net */
.framer-ua92fp,
.framer-5dn9g1,
.framer-alq6tf {
    will-change: transform;
    background-color: #0f0f11;
    border-radius: 39px;
    flex-flow: column;
    place-content: space-between;
    align-items: flex-start;
    height: 100%;
    padding: 32px 36px 24px 36px;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Glow Effect - EXACT FROM alphadojo.net */
.framer-1t1jsx6,
.framer-w7ov7s,
.framer-1clihy9 {
    filter: blur(118px);
    aspect-ratio: 1.86818;
    height: 223px;
    mix-blend-mode: color-dodge;
    z-index: 1;
    background-color: #ffffff0d;
    border-radius: 100%;
    flex: none;
    width: 417px;
    position: absolute;
    bottom: -204px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

/* Text Container - EXACT FROM alphadojo.net */
.framer-189sq3t,
.framer-iwcocb {
    flex-flow: column;
    place-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible;
}

.framer-rba2l7 {
    flex-flow: column;
    place-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible;
}

/* Icon Container - EXACT FROM alphadojo.net */
.framer-5y4v9q,
.framer-q7tnj5 {
    aspect-ratio: 1;
    height: 24px;
    flex: none;
    width: 24px;
    position: relative;
    overflow: hidden;
}

/* Icons - EXACT FROM alphadojo.net */
.framer-15gvolw {
    flex: none;
    position: absolute;
    inset: 2px 5px 5px 2px;
}

.framer-1hoixqd {
    aspect-ratio: 1.04;
    height: 25px;
    flex: none;
    width: 26px;
    position: relative;
}

/* Text Elements - EXACT FROM alphadojo.net */
.framer-x42m7q,
.framer-1j8y456,
.framer-e7gh8r,
.framer-1pufq1p,
.framer-f72dm3,
.framer-1sqczjo {
    white-space: pre-wrap;
    word-break: break-word;
    word-wrap: break-word;
    flex: none;
    width: 100%;
    height: auto;
    position: relative;
}

/* Text styling */
.framer-x42m7q p,
.framer-e7gh8r p,
.framer-f72dm3 p {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 400;
}

.framer-x42m7q .highlight,
.framer-e7gh8r .highlight,
.framer-f72dm3 .highlight {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.framer-1j8y456,
.framer-1pufq1p,
.framer-1sqczjo {
    margin-top: auto;
    margin-bottom: -20px;
}

.framer-1j8y456 h2,
.framer-1pufq1p h2,
.framer-1sqczjo h2 {
    font-family: 'Open Runde', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #ceced1;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.03em;
    text-align: left;
    width: 100%;
}

.status-text {
    color: #525254;
}

.platform-icon {
    position: absolute;
    top: 32px;
    left: 36px;
    opacity: 0.6;
}

.platform-icon img {
    display: block;
    filter: brightness(0) saturate(100%) invert(85%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.platform-description {
    margin-top: 60px;
    width: 100%;
}

.platform-description p {
    font-family: 'Inter', 'Inter Placeholder', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2em;
    margin: 0;
}

.platform-description p .highlight {
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.framer-1j8y456 .muted,
.framer-1pufq1p .muted,
.framer-1sqczjo .muted {
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    font-weight: 400;
}

/* Shimmer Lines - EXACT FROM alphadojo.net (static, not animated) */
.framer-1c3z02n {
    opacity: 0.12;
    z-index: 1;
    background: linear-gradient(270deg, #fff0 0%, #fff 28% 69%, #fff0 100%);
    flex: none;
    width: 134px;
    height: 1px;
    position: absolute;
    bottom: 4px;
    left: 51px;
    overflow: hidden;
}

.framer-cv6apb,
.framer-uz41g0 {
    opacity: 0.12;
    z-index: 1;
    background: linear-gradient(270deg, #fff0 0%, #fff 28% 69%, #fff0 100%);
    flex: none;
    width: 134px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 51px;
    overflow: hidden;
}

/* ===== Dashboard ===== */
.dashboard {
    padding: var(--spacing-2xl) 0;
    background: #0f0f11;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

/* ===== Market Overview ===== */
.market-overview {
    margin-bottom: var(--spacing-2xl);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.market-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.market-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.market-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.market-icon {
    font-size: 1.5rem;
}

.market-name {
    font-weight: 600;
    color: var(--text-primary);
}

.market-symbol {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-left: auto;
}

.market-price {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.market-change {
    font-size: 0.938rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.market-change.positive {
    color: var(--color-success);
    background: rgba(34, 197, 94, 0.1);
}

.market-change.negative {
    color: var(--color-danger);
    background: rgba(239, 68, 68, 0.1);
}

/* ===== Dashboard Grid ===== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.dashboard-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition-fast);
}

.dashboard-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-icon {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.btn-icon:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.btn-text:hover {
    color: var(--color-secondary);
}

/* ===== Calendar Widget ===== */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.calendar-month {
    font-weight: 600;
    font-size: 1rem;
}

.calendar-nav {
    background: var(--bg-tertiary);
    border: none;
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.25rem;
}

.calendar-nav:hover {
    background: var(--bg-hover);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.calendar-day-name {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 600;
    padding: var(--spacing-xs);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.calendar-day:not(.empty):hover {
    background: var(--bg-hover);
}

.calendar-day.today {
    background: var(--color-primary);
    color: white;
    font-weight: 700;
}

.calendar-day.event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-warning);
    border-radius: 50%;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.event-dot {
    width: 8px;
    height: 8px;
    background: var(--color-warning);
    border-radius: 50%;
}

/* ===== Research Widget ===== */
.research-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.research-item {
    position: relative;
    padding: var(--spacing-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.research-item:hover {
    border-color: var(--color-primary);
    transform: translateX(4px);
}

.research-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.research-badge.new {
    background: var(--color-success);
    color: white;
}

.research-badge.updated {
    background: var(--color-info);
    color: white;
}

.research-item h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    padding-right: 4rem;
}

.research-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.research-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* ===== Ranking Widget ===== */
.rank-display {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.rank-badge.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    border: 2px solid var(--rank-orange);
    color: var(--rank-orange);
}

.rank-badge.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    border: 2px solid var(--rank-green);
    color: var(--rank-green);
}

.rank-badge.small {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

.rank-icon {
    font-size: 1.5rem;
}

.rank-progress {
    margin-bottom: var(--spacing-lg);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rank-orange), var(--rank-green));
    border-radius: var(--radius-lg);
    transition: width 1s ease-out;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.next-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.rank-benefits {
    text-align: left;
    background: var(--bg-tertiary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.rank-benefits h4 {
    font-size: 0.938rem;
    margin-bottom: var(--spacing-md);
}

.rank-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.rank-benefits li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: var(--spacing-md);
}

.rank-benefits li.locked {
    color: var(--text-tertiary);
    opacity: 0.6;
}

/* ===== Leaderboard Widget ===== */
.prize-pool {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.prize-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.prize-amount {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-warning);
}

.leaderboard {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.leaderboard-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-md);
    align-items: center;
    padding: var(--spacing-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.leaderboard-item:hover {
    border-color: var(--color-primary);
    transform: translateX(4px);
}

.leaderboard-item.top-1 {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: rgba(251, 191, 36, 0.3);
}

.leaderboard-item.top-2 {
    background: linear-gradient(135deg, rgba(229, 231, 235, 0.1) 0%, rgba(209, 213, 219, 0.1) 100%);
    border-color: rgba(229, 231, 235, 0.2);
}

.leaderboard-item.top-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, rgba(180, 100, 30, 0.1) 100%);
    border-color: rgba(205, 127, 50, 0.2);
}

.leaderboard-item.your-position {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.rank-position {
    font-size: 1.25rem;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

.trader-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.trader-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.trader-avatar.you {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.trader-details {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.trader-name {
    font-weight: 600;
    font-size: 0.938rem;
}

.trader-rank {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.trader-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
}

.stat-profit {
    font-weight: 700;
    font-size: 0.938rem;
}

.stat-profit.positive {
    color: var(--color-success);
}

.stat-prize {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ===== Sentiment Widget ===== */
.sentiment-time {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.sentiment-gauge {
    text-align: center;
}

.gauge-container {
    position: relative;
    max-width: 250px;
    margin: 0 auto var(--spacing-lg);
}

.gauge-svg {
    width: 100%;
    height: auto;
}

.gauge-fill {
    animation: gaugeAnimation 2s ease-out;
}

@keyframes gaugeAnimation {
    from {
        stroke-dasharray: 0 1000;
    }
}

.gauge-value {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-success), var(--color-warning));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sentiment-scale {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.scale-label {
    font-size: 0.75rem;
    font-weight: 600;
}

.scale-label.fear {
    color: var(--color-danger);
}

.scale-label.neutral {
    color: var(--color-warning);
}

.scale-label.greed {
    color: var(--color-success);
}

.sentiment-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.status-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.status-value {
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-lg);
}

.status-value.greed {
    background: rgba(34, 197, 94, 0.2);
    color: var(--color-success);
}

/* ===== Chat Widget ===== */
.chat-rooms {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.chat-room {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.chat-room:hover {
    border-color: var(--color-primary);
    transform: translateX(4px);
}

.chat-room.active {
    border-color: var(--rank-orange);
    background: rgba(249, 115, 22, 0.1);
}

.room-badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: var(--radius-md);
    background: var(--bg-hover);
}

.room-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.room-name {
    font-weight: 600;
    font-size: 0.938rem;
}

.room-users {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.room-lock {
    font-size: 1rem;
    opacity: 0.5;
}

.room-status {
    font-size: 1rem;
    color: var(--color-success);
}

.chat-preview {
    background: var(--bg-tertiary);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.chat-message {
    font-size: 0.875rem;
}

.message-user {
    font-weight: 600;
    color: var(--color-primary);
    margin-right: var(--spacing-xs);
}

/* ===== News Widget ===== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.news-item {
    position: relative;
    padding: var(--spacing-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.news-item:hover {
    border-color: var(--color-primary);
    transform: translateX(4px);
}

.news-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.news-badge.breaking {
    background: var(--color-danger);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.news-item h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.news-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.news-time {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* ===== Footer ===== */
.footer {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0f0f11;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero,
    .btn-secondary {
        width: 100%;
    }

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

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

    .logo-text {
        display: none;
    }

    .coming-soon {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem !important;
    }

    .hero-stats {
        gap: var(--spacing-lg);
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .dashboard-card {
        padding: var(--spacing-md);
    }

    /* ===== Mobile Hero Section (iPhone 14 - 390px) ===== */
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding: 100px 1rem 60px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .hero-content {
        margin-top: 0 !important;
        position: relative !important;
        text-align: center !important;
        width: 100% !important;
    }

    .hero-title-image {
        max-width: 100% !important;
        margin: 0 auto 1.5rem !important;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 14px !important;
        padding: 0 10px !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
    }

    .hero-cta {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
        align-items: center !important;
    }

    .btn-hero,
    .btn-secondary {
        width: 100% !important;
        max-width: 280px !important;
        padding: 14px 24px !important;
        font-size: 15px !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-devices {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        max-width: 100% !important;
        margin-top: 2rem !important;
    }

    .cta-button {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 1rem auto !important;
        display: block !important;
    }

    /* ===== Mobile Navigation ===== */
    .header {
        padding: 0 1rem !important;
    }

    .navbar {
        padding: 10px 0 !important;
    }

    .logo-image {
        height: 40px !important;
    }

    .coming-soon {
        font-size: 10px !important;
        padding: 6px 10px !important;
        white-space: nowrap !important;
    }

    /* ===== Mobile Features Section ===== */
    .features-scroll-section {
        margin-top: 0 !important;
        min-height: auto !important;
        padding: 40px 1rem !important;
    }

    .features-section-title {
        font-size: 24px !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .features-text-section {
        margin-top: 0 !important;
        padding: 0 !important;
    }

    .features-subtitle {
        font-size: 13px !important;
        text-align: center !important;
    }

    .features-main-title {
        font-size: 20px !important;
        padding: 0 !important;
        text-align: center !important;
    }

    /* ===== Mobile Content Boxes ===== */
    .content-boxes-section {
        padding: 20px 0 !important;
    }

    .content-boxes-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 1rem !important;
        width: 100% !important;
    }

    .column-left,
    .column-right {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .content-box,
    .content-box:nth-child(1),
    .content-box:nth-child(2),
    .content-box:nth-child(3),
    .content-box:nth-child(4) {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
        max-height: none !important;
        border-radius: 20px !important;
        padding: 20px !important;
    }

    .content-box-title {
        font-size: 20px !important;
    }

    .content-box-description {
        font-size: 14px !important;
    }

    .magnifying-glass-container {
        height: 200px !important;
    }

    .magnifying-glass {
        width: 140px !important;
        height: 160px !important;
    }

    .magnifier-frame {
        width: 140px !important;
        height: 140px !important;
    }

    .graph-background {
        max-width: 100% !important;
    }

    /* ===== Mobile Feature Cards (Platform Cards) ===== */
    .feature-cards-container {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        gap: 16px !important;
        padding: 0 1rem !important;
    }

    .framer-p4ziip,
    .framer-mkpi85,
    .framer-mp694x {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 250px !important;
        transform: none !important;
        margin-top: 0 !important;
        border-radius: 20px !important;
    }

    .framer-ua92fp,
    .framer-5dn9g1,
    .framer-alq6tf {
        padding: 20px !important;
        border-radius: 20px !important;
    }

    .framer-1j8y456 h2,
    .framer-1pufq1p h2,
    .framer-1sqczjo h2 {
        font-size: 22px !important;
    }

    .platform-description {
        margin-top: 30px !important;
    }

    .platform-description p {
        font-size: 13px !important;
    }

    /* ===== Mobile Footer ===== */
    .footer {
        padding: 40px 1rem !important;
    }

    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .footer-section {
        text-align: center !important;
    }

    .footer-section ul {
        align-items: center !important;
    }

    .footer-bottom {
        padding-top: 20px !important;
    }

    .footer-bottom p {
        font-size: 12px !important;
    }

    /* ===== Mobile Typography ===== */
    .section-title {
        font-size: 20px !important;
    }

    /* ===== Mobile Touch Targets ===== */
    .btn-hero,
    .btn-secondary,
    .cta-button,
    button {
        min-height: 48px !important;
    }

    /* ===== Hide Decorative Elements on Mobile ===== */
    .vertical-lines-container {
        display: none !important;
    }

    #particles-canvas {
        height: 100vh !important;
        display: none !important;
    }

    #rotating-lines {
        display: none !important;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-card {
    animation: fadeIn 0.5s ease-out backwards;
}

.dashboard-card:nth-child(1) { animation-delay: 0.1s; }
.dashboard-card:nth-child(2) { animation-delay: 0.2s; }
.dashboard-card:nth-child(3) { animation-delay: 0.3s; }
.dashboard-card:nth-child(4) { animation-delay: 0.4s; }
.dashboard-card:nth-child(5) { animation-delay: 0.5s; }
.dashboard-card:nth-child(6) { animation-delay: 0.6s; }
.dashboard-card:nth-child(7) { animation-delay: 0.7s; }
.dashboard-card:nth-child(8) { animation-delay: 0.8s; }

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f11;
}

::-webkit-scrollbar-thumb {
    background: var(--bg-hover);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}
