/* ============================================
   ARBITRADORX - Premium Landing Page Styles
   Key Visual: Neon Green, Dark Background, Geometric Triangles
   ============================================ */

/* CSS Variables */
:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --primary-light: #33ff9f;
    --primary-glow: rgba(0, 255, 136, 0.3);
    --primary-subtle: rgba(0, 255, 136, 0.1);

    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-tertiary: #141414;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);

    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 255, 136, 0.3);

    --error: #ff4444;
    --warning: #ffaa00;
    --blue: #4488ff;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--primary-glow);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: var(--bg-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#particles {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:not(.btn-nav):not(.btn-client):hover {
    color: var(--primary);
}

.nav-links a:not(.btn-nav):not(.btn-client)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn-nav):not(.btn-client):hover::after {
    width: 100%;
}

.btn-nav {
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: var(--bg-primary) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-nav:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-client {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: transparent;
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-client:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-client svg {
    width: 16px;
    height: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
    z-index: 999;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-size: 1.125rem;
    color: var(--text-secondary);
    padding: 0.75rem 0;
    display: block;
    border-bottom: 1px solid var(--border-color);
    transition: color var(--transition-fast);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--primary);
}

.mobile-menu .btn-nav {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none;
}

.mobile-menu .btn-client {
    margin-top: 0.5rem;
    text-align: center;
    border-bottom: none;
    justify-content: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-subtle);
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

.btn-whatsapp.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 70%, rgba(0, 200, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-subtle);
    border: 1px solid var(--border-glow);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease forwards;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.stat {
    display: block;
}

.stat-number,
.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.triangle-container {
    position: relative;
    width: 300px;
    height: 350px;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.main-triangle {
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 220px solid var(--primary);
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 60px rgba(0, 255, 136, 0.5));
    animation: floatTriangle 6s ease-in-out infinite;
}

.secondary-triangle {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--bg-primary);
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatTriangle 6s ease-in-out infinite 0.5s;
}

.glow-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes floatTriangle {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: float 5s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

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

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

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

.card-icon.green svg { stroke: var(--primary); }
.card-icon.blue svg { stroke: var(--blue); }

.card-content {
    display: flex;
    flex-direction: column;
}

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

.card-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
}

.card-value.green { color: var(--primary); }

/* Scroll Indicator - Hidden to prevent overlap with stats */
.scroll-indicator {
    display: none;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-tertiary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--primary-subtle);
    border: 1px solid var(--border-glow);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header h2 .highlight {
    color: var(--primary);
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-proof-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.proof-label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
}

.proof-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

@media (max-width: 768px) {
    .social-proof-section {
        padding: 3rem 0;
    }

    .social-proof-grid {
        gap: 2rem;
    }

    .proof-number {
        font-size: 2.25rem;
    }

    .proof-label {
        font-size: 0.875rem;
    }

    .proof-divider {
        display: none;
    }

    .proof-item {
        flex: 1 1 100%;
    }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.trust-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 255, 136, 0.1);
}

.main-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
}

.trust-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wallet-animation {
    position: relative;
    padding: 2rem;
}

.wallet svg {
    width: 120px;
    height: auto;
}

.lock-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

.lock-badge svg {
    width: 24px;
    height: 24px;
}

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

.trust-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.trust-content p {
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.check-list svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.secondary-card {
    display: flex;
    flex-direction: column;
}

.icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-subtle), rgba(0, 255, 136, 0.05));
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.secondary-card h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.trust-quote {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-card));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.trust-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-style: italic;
}

.trust-quote strong {
    color: var(--primary);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.how-visual {
    display: flex;
    justify-content: center;
}

.arbitrage-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.market {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.market:hover {
    border-color: var(--border-glow);
}

.market-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 0.25rem;
}

.market-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.arbitrage-flow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
}

.flow-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--border-color), var(--primary), var(--border-color));
}

.flow-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--bg-primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.flow-icon svg {
    width: 24px;
    height: 24px;
    animation: spin 4s linear infinite reverse;
}

.profit-badge {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: var(--radius-sm);
    animation: pulse 2s ease-in-out infinite;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 1rem;
}

.how-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.how-highlight p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.results-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.results-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-metric {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.metric-visual {
    flex-shrink: 0;
}

.donut-chart {
    position: relative;
    width: 150px;
    height: 150px;
}

.donut-chart svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-chart circle:last-of-type {
    stroke-dasharray: 251.2;
    stroke-dashoffset: 50.24;
    transition: stroke-dashoffset 1.5s ease;
}

.metric-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

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

.metric-info h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.result-metric.secondary {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), var(--bg-card));
    border-color: var(--border-glow);
}

.percentage-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: var(--bg-tertiary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.percentage-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.percentage-period {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.honest-disclaimer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

.disclaimer-icon {
    flex-shrink: 0;
}

.disclaimer-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--warning);
}

.disclaimer-content h4 {
    color: var(--warning);
    margin-bottom: 0.5rem;
}

.disclaimer-content p {
    font-size: 0.9375rem;
}

.no-promises {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promises-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.promises-header h3 {
    color: var(--text-primary);
}

.promises-tag {
    padding: 0.25rem 0.75rem;
    background: var(--primary-subtle);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.promises-text {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-promises > p:last-of-type {
    margin-bottom: 1.5rem;
}

.promises-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.point svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.point svg[viewBox] polyline {
    stroke: var(--primary);
}

.point svg line {
    stroke: var(--error);
}

/* ============================================
   PROFILES SECTION
   ============================================ */
.profiles-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 255, 136, 0.15);
}

.profile-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.profile-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.profile-icon svg {
    width: 28px;
    height: 28px;
}

.profile-icon.conservative {
    background: rgba(0, 200, 100, 0.15);
}

.profile-icon.conservative svg {
    stroke: #00c864;
}

.profile-icon.balanced {
    background: rgba(0, 255, 136, 0.15);
}

.profile-icon.balanced svg {
    stroke: var(--primary);
}

.profile-icon.aggressive {
    background: rgba(255, 170, 0, 0.15);
}

.profile-icon.aggressive svg {
    stroke: var(--warning);
}

.profile-tag {
    padding: 0.25rem 0.75rem;
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 100px;
}

.profile-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.profile-description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.profile-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.profile-features li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
}

.profile-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.risk-meter {
    margin-top: auto;
}

.risk-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.risk-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.risk-fill {
    height: 100%;
    background: linear-gradient(90deg, #00c864, var(--primary), var(--warning));
    border-radius: 4px;
    transition: width 1s ease;
}

.profiles-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    text-align: center;
}

.profiles-note svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.profiles-note p {
    font-size: 0.9375rem;
}

/* ============================================
   SIMPLICITY SECTION
   ============================================ */
.simplicity-section {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.simplicity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.simplicity-text h2 {
    margin-bottom: 1rem;
}

.simplicity-text .lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.no-need-list,
.we-explain-list {
    margin-bottom: 1.5rem;
}

.no-need-list h4,
.we-explain-list h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-need-list ul,
.we-explain-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.no-need-list li,
.we-explain-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.no-need-list svg {
    width: 20px;
    height: 20px;
    stroke: var(--error);
    flex-shrink: 0;
}

.we-explain-list svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.simplicity-visual {
    display: flex;
    justify-content: center;
}

.steps-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.visual-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.visual-step .step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.visual-step .step-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-tertiary);
    transition: stroke var(--transition-normal);
}

.visual-step span {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.visual-step.active .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.visual-step.active .step-icon svg {
    stroke: var(--bg-primary);
}

.visual-step.active span {
    color: var(--primary);
    font-weight: 600;
}

.step-connector {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--border-color), var(--primary));
}

/* ============================================
   TARGET SECTION
   ============================================ */
.target-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.target-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.target-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.target-card h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.target-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.target-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.0625rem;
    color: var(--text-primary);
}

.target-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.target-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.target-note {
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-card));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    min-height: 100%;
}

.note-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    border-radius: 50%;
}

.note-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.target-note p {
    font-size: 1rem;
}

.note-divider {
    width: 60px;
    height: 2px;
    background: var(--border-glow);
    margin: 0.5rem 0;
}

.note-secondary {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.note-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.note-stat {
    text-align: center;
}

.note-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.note-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   ACCESS SECTION
   ============================================ */
.access-section {
    padding: 8rem 0;
    background: var(--bg-primary);
}

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

.access-info h2 {
    margin-bottom: 1rem;
}

.access-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.access-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.access-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.0625rem;
    color: var(--text-primary);
}

.access-point svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.access-summary {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), var(--bg-card));
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
}

.access-summary h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-list li {
    font-size: 1.0625rem;
    color: var(--text-primary);
    padding-left: 1.5rem;
    position: relative;
}

.summary-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-question span {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-triangle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 350px solid rgba(0, 255, 136, 0.05);
    transform: rotate(45deg);
}

.cta-glow {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-text h2 {
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.cta-description {
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

.footer-bottom .disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    opacity: 0.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

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

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

    .main-card {
        grid-template-columns: 1fr;
    }

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

    .results-content {
        grid-template-columns: 1fr;
    }

    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .simplicity-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .target-content {
        grid-template-columns: 1fr;
    }

    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    /* Hero */
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero .container {
        padding: 0 1.5rem;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.15;
    }

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

    .hero-stats {
        gap: 1.5rem;
        justify-content: flex-start;
    }

    .stat-divider {
        display: none;
    }

    .stat-number,
    .stat-suffix {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Sections */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .section-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    .trust-section,
    .how-section,
    .results-section,
    .profiles-section,
    .simplicity-section,
    .target-section,
    .access-section,
    .cta-section {
        padding: 4rem 0;
    }

    /* Trust Section */
    .trust-card {
        padding: 1.5rem;
    }

    .trust-visual {
        display: flex;
        justify-content: center;
        padding: 1rem 0;
    }

    .wallet-animation {
        padding: 1rem;
    }

    .wallet svg {
        width: 100px;
    }

    .trust-content h3 {
        font-size: 1.25rem;
    }

    .trust-quote {
        padding: 2rem 1.5rem;
    }

    .trust-quote blockquote {
        font-size: 1.25rem;
    }

    /* How it Works */
    .how-visual {
        order: -1;
        overflow: hidden;
    }

    .arbitrage-animation {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .market {
        padding: 1.25rem 2rem;
        width: 100%;
        max-width: 220px;
    }

    .market-price {
        font-size: 1.25rem;
    }

    .profit-badge {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 0.5rem;
    }

    .flow-line {
        height: 40px;
    }

    .flow-icon {
        width: 40px;
        height: 40px;
    }

    .flow-icon svg {
        width: 20px;
        height: 20px;
    }

    .step {
        gap: 1rem;
    }

    .step-number {
        min-width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.125rem;
    }

    .how-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        border-left: none;
        border-top: 4px solid var(--primary);
    }

    /* Results */
    .result-metric {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .donut-chart {
        width: 130px;
        height: 130px;
    }

    .percentage-display {
        width: 130px;
        height: 130px;
    }

    .percentage-number {
        font-size: 1.5rem;
    }

    .metric-number {
        font-size: 1.75rem;
    }

    .metric-info h3 {
        font-size: 1.125rem;
    }

    .honest-disclaimer {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .no-promises {
        padding: 1.5rem;
    }

    .promises-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Profiles */
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .profile-card.featured {
        order: -1;
    }

    .profile-header {
        margin-bottom: 1rem;
    }

    .profile-icon {
        width: 48px;
        height: 48px;
    }

    .profile-icon svg {
        width: 24px;
        height: 24px;
    }

    .profile-card h3 {
        font-size: 1.25rem;
    }

    .profile-features {
        margin-bottom: 1rem;
    }

    .profiles-note {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    /* Simplicity */
    .simplicity-text h2 {
        font-size: 1.75rem;
    }

    .simplicity-text .lead {
        font-size: 1rem;
    }

    .steps-visual {
        margin-top: 1rem;
    }

    .visual-step .step-icon {
        width: 56px;
        height: 56px;
    }

    .visual-step .step-icon svg {
        width: 24px;
        height: 24px;
    }

    .step-connector {
        height: 24px;
    }

    /* Target */
    .target-card {
        padding: 1.5rem;
    }

    .target-card h3 {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .target-list {
        gap: 1.25rem;
    }

    .target-list li {
        font-size: 1rem;
        align-items: flex-start;
    }

    .target-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .target-icon svg {
        width: 20px;
        height: 20px;
    }

    .target-note {
        padding: 1.5rem;
    }

    .note-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    /* Access */
    .access-info h2 {
        font-size: 1.75rem;
    }

    .access-description {
        font-size: 1rem;
    }

    .access-summary {
        padding: 1.5rem;
    }

    .access-summary h3 {
        font-size: 1.25rem;
    }

    /* CTA */
    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1.0625rem;
    }

    .btn-primary.large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8125rem;
    }

    .footer-bottom .disclaimer {
        font-size: 0.75rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Typography */
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    p {
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        padding: 5.5rem 0 2.5rem;
    }

    .hero .container {
        padding: 0 1.25rem;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

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

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number,
    .stat-suffix {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .btn-primary svg,
    .btn-secondary svg {
        width: 18px;
        height: 18px;
    }

    /* Sections */
    .trust-section,
    .how-section,
    .results-section,
    .profiles-section,
    .simplicity-section,
    .target-section,
    .access-section,
    .cta-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    /* Trust */
    .trust-card {
        padding: 1.25rem;
    }

    .icon-box {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .icon-box svg {
        width: 24px;
        height: 24px;
    }

    .check-list li {
        font-size: 0.9375rem;
    }

    .trust-quote {
        padding: 1.5rem 1rem;
    }

    .trust-quote blockquote {
        font-size: 1.125rem;
    }

    /* How it Works */
    .market {
        padding: 1rem 1.5rem;
    }

    .market-label {
        font-size: 0.75rem;
    }

    .market-price {
        font-size: 1.125rem;
    }

    .flow-icon {
        width: 40px;
        height: 40px;
    }

    .flow-icon svg {
        width: 20px;
        height: 20px;
    }

    .profit-badge {
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9375rem;
    }

    .how-highlight p {
        font-size: 0.9375rem;
    }

    /* Results */
    .result-metric {
        padding: 1.5rem 1.25rem;
    }

    .donut-chart {
        width: 110px;
        height: 110px;
    }

    .percentage-display {
        width: 110px;
        height: 110px;
    }

    .percentage-number {
        font-size: 1.25rem;
    }

    .metric-number {
        font-size: 1.5rem;
    }

    .metric-info h3 {
        font-size: 1rem;
    }

    .honest-disclaimer {
        padding: 1rem;
    }

    .disclaimer-content h4 {
        font-size: 0.9375rem;
    }

    .disclaimer-content p {
        font-size: 0.875rem;
    }

    .no-promises {
        padding: 1.25rem;
    }

    .promises-header h3 {
        font-size: 1rem;
    }

    .point {
        font-size: 0.875rem;
    }

    /* Profiles */
    .profile-card {
        padding: 1.25rem;
    }

    .featured-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }

    .profile-tag {
        font-size: 0.6875rem;
    }

    .profile-description {
        font-size: 0.875rem;
    }

    .profile-features li {
        font-size: 0.875rem;
    }

    .risk-label {
        font-size: 0.6875rem;
    }

    .risk-bar {
        height: 6px;
    }

    /* Simplicity */
    .no-need-list li,
    .we-explain-list li {
        font-size: 0.9375rem;
    }

    .visual-step .step-icon {
        width: 48px;
        height: 48px;
    }

    .visual-step .step-icon svg {
        width: 20px;
        height: 20px;
    }

    .visual-step span {
        font-size: 0.75rem;
    }

    .step-connector {
        height: 20px;
    }

    /* Target */
    .target-card {
        padding: 1.25rem;
    }

    .target-list li {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.9375rem;
    }

    .target-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .target-icon svg {
        width: 18px;
        height: 18px;
    }

    .target-note p {
        font-size: 0.9375rem;
    }

    /* Access */
    .access-point {
        font-size: 1rem;
    }

    .access-point svg {
        width: 20px;
        height: 20px;
    }

    .summary-list li {
        font-size: 1rem;
    }

    /* CTA */
    .cta-content {
        padding: 1.5rem 1.25rem;
        border-radius: var(--radius-lg);
    }

    .cta-text h2 {
        font-size: 1.375rem;
    }

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

    .cta-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 0.9375rem;
    }

    .footer-column a {
        font-size: 0.875rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 0.875rem;
    }

    .hero h1 {
        font-size: 1.625rem;
    }

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

    .section-header h2 {
        font-size: 1.375rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .stat-number,
    .stat-suffix {
        font-size: 1.125rem;
    }

    /* Trust */
    .trust-quote {
        padding: 1.25rem 0.875rem;
    }

    .trust-quote blockquote {
        font-size: 1rem;
    }

    /* CTA */
    .cta-content {
        padding: 1.25rem 1rem;
    }

    .cta-text h2 {
        font-size: 1.25rem;
    }

    .cta-subtitle {
        font-size: 0.9375rem;
    }

    .cta-description {
        font-size: 0.875rem;
    }

    /* Results */
    .donut-chart {
        width: 100px;
        height: 100px;
    }

    .percentage-display {
        width: 100px;
        height: 100px;
    }

    .percentage-number {
        font-size: 1.125rem;
    }

    .metric-number {
        font-size: 1.25rem;
    }

    /* Profiles */
    .profile-card {
        padding: 1rem;
    }

    /* Target */
    .target-card {
        padding: 1rem;
    }

    .target-card h3 {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .note-stat-value {
        font-size: 1.25rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
