/* QuantumFox Pro - Website Stylesheet */

:root {
    --navy: #1B2A6B;
    --navy-dark: #111D4A;
    --navy-light: #2A3F8F;
    --gold: #C5A55A;
    --gold-light: #D4BA7A;
    --gold-dark: #A68A3E;
    --silver: #B4B4BE;
    --silver-light: #D0D0D8;
    --white: #FFFFFF;
    --off-white: #F5F6FA;
    --dark: #1E1E28;
    --dark-light: #2A2A38;
    --text: #3A3A4A;
    --text-light: #6A6A7A;
    --success: #2ECC71;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(27, 42, 107, 0.08);
    --shadow-lg: 0 12px 48px rgba(27, 42, 107, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p { margin-bottom: 1rem; }

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--gold-dark); }

img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 42, 107, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(27, 42, 107, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.nav-logo .pro {
    color: var(--gold);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--navy-light);
    color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

.nav-lang {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--gold) !important;
    border: 1.5px solid var(--gold);
    padding: 4px 12px;
    border-radius: 6px;
}
.nav-lang:hover {
    background: var(--gold);
    color: var(--white) !important;
}
.nav-lang::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: linear-gradient(165deg, var(--white) 0%, var(--off-white) 50%, #E8EAF6 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.08) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 42, 107, 0.05) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 42, 107, 0.06);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    margin-bottom: 20px;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    max-width: 380px;
    filter: drop-shadow(0 20px 60px rgba(27, 42, 107, 0.15));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 42, 107, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 165, 90, 0.3);
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header .label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Alternating BG */
.bg-light { background: var(--off-white); }
.bg-white { background: var(--white); }
.bg-navy {
    background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
}
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.8); }
.bg-navy .label { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   TECH CARDS
   ═══════════════════════════════════════════ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tech-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(27, 42, 107, 0.04);
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tech-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-navy { background: rgba(27, 42, 107, 0.08); color: var(--navy); }
.icon-gold { background: rgba(197, 165, 90, 0.12); color: var(--gold-dark); }

.tech-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.tech-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   STATS / NUMBERS
   ═══════════════════════════════════════════ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}

/* ═══════════════════════════════════════════
   DEMO DISCLAIMER
   ═══════════════════════════════════════════ */
.demo-banner {
    background: linear-gradient(135deg, rgba(197, 165, 90, 0.08) 0%, rgba(27, 42, 107, 0.04) 100%);
    border: 1px solid rgba(197, 165, 90, 0.2);
    border-radius: var(--radius);
    padding: 24px 32px;
    text-align: center;
    margin: 40px 0;
}

.demo-banner p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.demo-banner strong {
    color: var(--navy);
}

/* ═══════════════════════════════════════════
   YIELD SECTION
   ═══════════════════════════════════════════ */
.yield-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.yield-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.yield-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.yield-feature .icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.yield-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.yield-feature p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   HARDWARE SECTION
   ═══════════════════════════════════════════ */
.hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hw-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.hw-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(197, 165, 90, 0.3);
}

.hw-card .hw-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.hw-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.hw-card p {
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-item .f-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(27, 42, 107, 0.06);
    color: var(--navy);
}

.feature-item h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   MISSION & VALUES
   ═══════════════════════════════════════════ */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.mission-block, .values-block {
    padding: 40px;
    border-radius: var(--radius);
}

.mission-block {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
}
.mission-block h3 { color: var(--gold-light); margin-bottom: 16px; }
.mission-block p { color: rgba(255,255,255,0.85); }

.values-block {
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(27, 42, 107, 0.06);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--off-white);
}

.value-item:last-child { border-bottom: none; }

.value-item .v-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.value-item span {
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding-top: 72px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(27, 42, 107, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--silver-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.12);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.privacy-note {
    margin-top: 16px;
    padding: 14px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success .check {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   INVESTORS PAGE
   ═══════════════════════════════════════════ */
.investors-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
}

.investors-hero h1 { color: var(--white); }
.investors-hero .gold { color: var(--gold-light); }
.investors-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
}

/* Roadmap */
.roadmap {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--silver-light));
}

.roadmap-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.roadmap-dot {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 2;
}

.roadmap-dot.active {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 6px rgba(197, 165, 90, 0.2);
}

.roadmap-dot.future {
    background: var(--off-white);
    color: var(--silver);
    border: 2px solid var(--silver-light);
}

.roadmap-content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.roadmap-content .phase-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.phase-current {
    background: rgba(197, 165, 90, 0.12);
    color: var(--gold-dark);
}

.phase-next {
    background: rgba(27, 42, 107, 0.06);
    color: var(--navy-light);
}

.roadmap-content p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* Investor CTA */
.investor-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--off-white) 0%, #E8EAF6 100%);
    border-radius: var(--radius);
    margin: 0 auto;
    max-width: 800px;
}

.investor-cta h2 {
    margin-bottom: 16px;
}

.investor-cta p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 28px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 48px 0 24px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.footer-brand .f-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand img {
    height: 36px;
}

.footer-brand span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-brand .pro { color: var(--gold); }

.footer-brand p {
    font-size: 0.88rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 2;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.legal-note {
    max-width: 700px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    margin-top: 12px;
}

/* ═══════════════════════════════════════════
   LIVE TRADES TABLE
   ═══════════════════════════════════════════ */
.trades-summary {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trades-summary .ts-item {
    text-align: center;
    padding: 16px 28px;
    background: var(--off-white);
    border-radius: var(--radius);
    min-width: 140px;
}

.trades-summary .ts-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
}

.trades-summary .ts-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.trades-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.trades-table thead th {
    text-align: left;
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    border-bottom: 2px solid var(--off-white);
}

.trades-table tbody tr {
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trades-table tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(27,42,107,0.08);
}

.trades-table td {
    padding: 14px;
    font-size: 0.92rem;
    color: var(--text);
    vertical-align: middle;
}

.trades-table td:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.trades-table td:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.trade-symbol {
    font-weight: 700;
    color: var(--navy);
}

.trade-dir {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.trade-dir.buy { background: rgba(46,204,113,0.12); color: #1a9a54; }
.trade-dir.sell { background: rgba(231,76,60,0.12); color: #c0392b; }

.trade-price {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    white-space: nowrap;
}

.trade-arrow {
    color: var(--silver);
    margin: 0 6px;
}

.trade-result {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.trade-result.win { background: rgba(46,204,113,0.15); color: #1a9a54; }
.trade-result.loss { background: rgba(231,76,60,0.15); color: #c0392b; }

.trade-duration {
    color: var(--text-light);
    font-size: 0.85rem;
}

.trade-date {
    color: var(--text-light);
    font-size: 0.85rem;
    white-space: nowrap;
}

.trades-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
}

/* Mobile: card layout for trades */
.trades-cards { display: none; }

@media (max-width: 768px) {
    .trades-table { display: none; }
    .trades-cards { display: flex; flex-direction: column; gap: 12px; }
    .trade-card {
        background: var(--white);
        border-radius: var(--radius-sm);
        padding: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .trade-card .tc-head {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--off-white);
        margin-bottom: 4px;
    }
    .trade-card .tc-label {
        font-size: 0.72rem;
        text-transform: uppercase;
        color: var(--text-light);
        letter-spacing: 0.04em;
    }
    .trade-card .tc-value {
        font-size: 0.88rem;
        color: var(--text);
    }
}

/* ═══════════════════════════════════════════
   DISCLAIMER / LEGAL PAGE
   ═══════════════════════════════════════════ */
.disclaimer-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
}

.disclaimer-hero h1 { color: var(--white); }
.disclaimer-hero .gold { color: var(--gold-light); }

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--off-white);
    color: var(--navy);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--navy);
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 12px 0 20px 24px;
    padding: 0;
}

.legal-content li {
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 6px;
    padding-left: 4px;
}

.legal-content li::marker {
    color: var(--gold);
}

.legal-content strong {
    color: var(--navy);
}

.legal-highlight {
    background: linear-gradient(135deg, rgba(197, 165, 90, 0.08) 0%, rgba(27, 42, 107, 0.04) 100%);
    border: 1px solid rgba(197, 165, 90, 0.2);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    margin: 24px 0;
}

.legal-highlight p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-update {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    font-style: italic;
    margin-bottom: 32px !important;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--off-white);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 992px) {
    .hero-content,
    .yield-content,
    .contact-wrapper,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual { order: -1; }
    .hero-visual img { max-width: 250px; }

    .tech-grid { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .hardware-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .trades-summary { gap: 16px; }
}

@media (max-width: 768px) {
    section { padding: 48px 0; }
    .container { padding: 0 16px; }

    /* Navbar mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        gap: 12px;
        box-shadow: var(--shadow);
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }

    /* Hero mobile */
    .hero { padding-top: 80px; min-height: auto; }
    .hero h1 { font-size: 1.8rem; line-height: 1.2; }
    .hero-desc { font-size: 0.95rem; }
    .hero-badge { font-size: 0.78rem; }

    /* Investors hero mobile */
    .investors-hero { padding-top: 100px; }
    .investors-hero h1 { font-size: 1.8rem; }

    /* Disclaimer hero mobile */
    .disclaimer-hero { padding-top: 100px; min-height: 30vh; }
    .disclaimer-hero h1 { font-size: 1.6rem; }
    .legal-content { padding: 10px 0 20px; }
    .legal-content h2 { font-size: 1.2rem; margin-top: 36px; }
    .legal-highlight { padding: 16px 18px; }

    /* Section headers */
    .section-header h2 { font-size: 1.6rem; }
    .section-header p { font-size: 0.92rem; }

    /* Grids to single column */
    .tech-grid { grid-template-columns: 1fr; }
    .hardware-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { padding: 16px; }
    .stat-number { font-size: 1.8rem; }

    /* Trade summary mobile */
    .trades-summary { gap: 10px; }
    .trades-summary .ts-item { min-width: 0; flex: 1; padding: 12px 8px; }
    .trades-summary .ts-value { font-size: 1.3rem; }
    .trades-summary .ts-label { font-size: 0.68rem; }

    /* Trade cards mobile (already activated by earlier media query) */
    .trade-card { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

    /* Contact form mobile */
    .contact-section { padding-top: 80px; }
    .contact-form { padding: 20px; }
    .contact-form input, .contact-form textarea { font-size: 16px; } /* prevents iOS zoom */
    .form-submit { width: 100%; padding: 14px; }
    .privacy-note { font-size: 0.75rem; }

    /* Yield section */
    .yield-features { gap: 20px; }
    .yield-feature { gap: 12px; }

    /* Mission */
    .mission-content { gap: 32px; }

    /* Roadmap */
    .roadmap-item { gap: 16px; }
    .roadmap-content h3 { font-size: 1.1rem; }

    /* CTA */
    .investor-cta h2 { font-size: 1.5rem; }
    .investor-cta .btn { display: block; width: 100%; margin: 8px 0; text-align: center; }

    /* Footer */
    .footer-inner { flex-direction: column; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .legal-note { font-size: 0.72rem; }

    /* Demo banner */
    .demo-banner { padding: 16px; font-size: 0.88rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .btn { width: 100%; justify-content: center; }
    .stats-row { grid-template-columns: 1fr; }
    .trades-summary { flex-direction: column; }
    .trades-summary .ts-item { flex: auto; }
    .section-header h2 { font-size: 1.35rem; }
    .investors-hero h1 { font-size: 1.5rem; }
    .contact-info h2 { font-size: 1.4rem; }
    .tech-card, .hw-card { padding: 20px; }
    .feature-item { padding: 16px; gap: 12px; }
    .f-icon { font-size: 1.5rem; min-width: 44px; height: 44px; }
}
