/* ═══════════════════════════════════════════════════════════════
   OSAKA TRADING SYSTEM — Website Styles (Enhanced Visual Edition)
   ═══════════════════════════════════════════════════════════════ */

:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a2a;
    --border: #1e1e2e;
    --border-hover: #2a2a3e;
    --text: #e4e4e7;
    --text-muted: #71717a;
    --text-dim: #52525b;
    --accent: #c8a84e;
    --accent-light: #dfc06b;
    --accent-dark: #a08030;
    --green: #22c55e;
    --green-dim: #16a34a;
    --red: #ef4444;
    --red-dim: #b91c1c;
    --gradient: linear-gradient(135deg, #c8a84e 0%, #f0d878 50%, #c8a84e 100%);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'Fira Code', monospace;
    --radius: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-dark) var(--bg);
}

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

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

/* ═══════════════════════════════════════════════════════════════
   MATRIX RAIN BACKGROUND
   ═══════════════════════════════════════════════════════════════ */

#matrixRain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.06;
}

/* ═══════════════════════════════════════════════════════════════
   CURSOR GLOW
   ═══════════════════════════════════════════════════════════════ */

#cursorGlow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 168, 78, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   TICKER TAPE
   ═══════════════════════════════════════════════════════════════ */

.ticker-tape {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 90;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.9);
    border-bottom: 1px solid rgba(200, 168, 78, 0.1);
    backdrop-filter: blur(10px);
    height: 32px;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    padding: 6px 0;
}

.ticker-item {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ticker-item.green { color: var(--green); }
.ticker-item.red { color: var(--red); }

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    font-size: 28px;
    color: var(--accent);
    font-weight: 800;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    cursor: pointer;
    font-size: 18px;
    transition: border-color 0.2s;
}

.lang-toggle:hover { border-color: var(--accent); }

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

.mobile-menu span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.2s;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--gradient);
    color: #0a0a0f;
    position: relative;
    z-index: 2;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200, 168, 78, 0.25);
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 36px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(200, 168, 78, 0.15);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(200, 168, 78, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

#candleChart {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 168, 78, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 168, 78, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 168, 78, 0.15), transparent);
    top: -200px;
    right: -100px;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 168, 78, 0.1), transparent);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--accent-dark);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    background: rgba(200, 168, 78, 0.05);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 168, 78, 0); }
    50% { box-shadow: 0 0 20px 4px rgba(200, 168, 78, 0.15); }
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-line-1 {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line-2 {
    display: block;
    color: var(--text);
    -webkit-text-fill-color: var(--text);
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   PLATFORMS
   ═══════════════════════════════════════════════════════════════ */

.platforms {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 2;
    margin-top: 32px;
}

.platforms-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.platform-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.platform-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity 0.2s;
}

.platform-item:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   PNL CALENDAR
   ═══════════════════════════════════════════════════════════════ */

.calendar-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(200, 168, 78, 0.02) 50%, var(--bg) 100%);
}

/* Account Multiplier Bar */
.cal-accounts-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cal-accounts-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
}

.cal-accounts-control label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.cal-accounts-input-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cal-accounts-btn {
    width: 32px;
    height: 32px;
    background: rgba(200, 168, 78, 0.1);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cal-accounts-btn:hover {
    background: rgba(200, 168, 78, 0.2);
    border-color: var(--accent);
}

.cal-accounts-input {
    width: 48px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--accent);
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
}

.cal-accounts-input::-webkit-outer-spin-button,
.cal-accounts-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cal-accounts-input:focus {
    border-color: var(--accent);
}

.cal-accounts-note {
    font-size: 13px;
    font-family: var(--mono);
    color: var(--accent);
    background: rgba(200, 168, 78, 0.08);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
}

/* Yearly Totals Bar */
.cal-yearly-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.cal-yearly-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.cal-yearly-item:first-child {
    border-color: var(--accent-dark);
    background: linear-gradient(135deg, rgba(200, 168, 78, 0.06), rgba(200, 168, 78, 0.01));
}

.cal-yearly-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.cal-yearly-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.cal-yearly-value {
    font-family: var(--mono);
    font-size: 22px;
    font-weight: 800;
}

.cal-yearly-value.green { color: var(--green); }
.cal-yearly-value.red { color: var(--red); }

/* Calendar Navigation */
.cal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.cal-nav-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.cal-nav-btn:hover {
    border-color: var(--accent);
    background: rgba(200, 168, 78, 0.08);
}

.cal-nav-btn svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.cal-month-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    min-width: 240px;
    text-align: center;
}

/* Calendar Grid */
.cal-grid-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    overflow: hidden;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.cal-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    padding: 8px 0;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    min-height: 360px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cal-days.fade-out {
    opacity: 0;
    transform: translateY(8px);
}

.cal-day {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 10px 8px;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.25s ease;
    position: relative;
    cursor: default;
}

.cal-day-num {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
}

.cal-day-pnl {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.cal-day-trades {
    font-size: 10px;
    color: var(--text-dim);
    font-family: var(--mono);
}

/* Empty day (no date) */
.cal-day.empty {
    background: transparent;
    border: none;
}

/* Day with no trades */
.cal-day.no-trades {
    background: rgba(255, 255, 255, 0.015);
}

.cal-day.no-trades .cal-day-num {
    color: var(--text-dim);
    opacity: 0.5;
}

/* Winning day */
.cal-day.win {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.15);
}

.cal-day.win .cal-day-num { color: var(--green); }
.cal-day.win .cal-day-pnl { color: var(--green); }

.cal-day.win-strong {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.25);
}

.cal-day.win-big {
    background: rgba(34, 197, 94, 0.22);
    border-color: rgba(34, 197, 94, 0.35);
}

/* Losing day */
.cal-day.loss {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.15);
}

.cal-day.loss .cal-day-num { color: var(--red); }
.cal-day.loss .cal-day-pnl { color: var(--red); }

.cal-day.loss-strong {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.25);
}

.cal-day.loss-big {
    background: rgba(239, 68, 68, 0.22);
    border-color: rgba(239, 68, 68, 0.35);
}

/* Flat day */
.cal-day.flat {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.cal-day.flat .cal-day-pnl { color: var(--text-muted); }

/* Hover effect */
.cal-day:not(.empty):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cal-day.win:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.35);
}

.cal-day.loss:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.35);
}

/* Tooltip on hover */
.cal-day .cal-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    white-space: nowrap;
    font-size: 12px;
    z-index: 20;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.cal-day:not(.empty):hover .cal-tooltip {
    display: block;
}

.cal-tooltip-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 2px 0;
}

.cal-tooltip-label {
    color: var(--text-muted);
}

.cal-tooltip-value {
    font-family: var(--mono);
    font-weight: 600;
}

/* Monthly Summary Bar */
.cal-monthly-summary {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.cal-summary-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}

.cal-summary-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.cal-summary-value {
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 700;
}

.cal-summary-value.green { color: var(--green); }
.cal-summary-value.red { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   PROP FIRM CALCULATOR
   ═══════════════════════════════════════════════════════════════ */

.calculator-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.calc-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.calc-controls {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.calc-control {
    margin-bottom: 20px;
}

.calc-control:last-child {
    margin-bottom: 0;
}

.calc-control label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.calc-select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.calc-select option {
    background: var(--bg-card);
    color: var(--text);
}

.calc-select:focus {
    border-color: var(--accent);
}

.calc-slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.calc-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(200, 168, 78, 0.3);
    transition: box-shadow 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 20px rgba(200, 168, 78, 0.5);
}

.calc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient);
    cursor: pointer;
    border: none;
}

.calc-value {
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    min-width: 36px;
    text-align: right;
}

.calc-firm-note {
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-dim);
    font-style: italic;
}

.calc-input-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.calc-input-prefix {
    padding: 10px 12px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid var(--border);
}

.calc-input {
    flex: 1;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    outline: none;
    -moz-appearance: textfield;
}

.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-input-row:focus-within {
    border-color: var(--accent);
}

.calc-fixed-value {
    padding: 10px 14px;
    background: rgba(200, 168, 78, 0.06);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.calc-fixed-value::before {
    content: '\20AC';
    margin-right: 2px;
}

/* Calculator Results */
.calc-results {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.calc-results h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.calc-results h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 28px;
    margin-bottom: 16px;
}

.calc-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.calc-result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.calc-result-card.highlight {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.05);
}

.calc-result-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.calc-result-value {
    font-family: var(--mono);
    font-size: 24px;
    font-weight: 800;
}

.calc-result-value.green { color: var(--green); }
.calc-result-value.red { color: var(--red); }

/* Monthly Table */
.calc-monthly-table {
    width: 100%;
    overflow-x: auto;
}

.calc-monthly-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.calc-monthly-table th {
    text-align: left;
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
}

.calc-monthly-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-family: var(--mono);
    font-weight: 500;
}

.calc-monthly-table tr:last-child td {
    border-bottom: none;
    font-weight: 700;
}

.calc-onetime-note {
    font-size: 12px;
    color: var(--accent);
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(200, 168, 78, 0.06);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: var(--radius-sm);
    text-align: center;
}

.calc-table-note {
    font-size: 11px;
    color: var(--accent);
    margin-top: 8px;
    font-style: italic;
}

.calc-disclaimer {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 16px;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════ */

.features {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.story-block {
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 32px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
}

.story-block .story-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.story-block .story-text p:last-child {
    margin-bottom: 0;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 168, 78, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   PERFORMANCE
   ═══════════════════════════════════════════════════════════════ */

.performance {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(200, 168, 78, 0.02) 50%, var(--bg) 100%);
    position: relative;
    z-index: 2;
}

.perf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.perf-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.perf-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(200, 168, 78, 0.08), rgba(200, 168, 78, 0.02));
    border-color: var(--accent-dark);
    padding: 40px;
}

.perf-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.perf-value {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--mono);
}

.perf-highlight .perf-value { font-size: 48px; }

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

.perf-detail {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
}

.disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */

.how-it-works {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--mono);
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.step-connector {
    margin-top: 64px;
    color: var(--text-dim);
    flex-shrink: 0;
}

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

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */

.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(200, 168, 78, 0.03) 50%, var(--bg) 100%);
    position: relative;
    z-index: 2;
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--accent-dark);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
}

.pricing-badge {
    display: inline-block;
    background: rgba(200, 168, 78, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 36px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-muted);
}

.price {
    font-size: 64px;
    font-weight: 900;
    font-family: var(--mono);
    letter-spacing: -2px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 36px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    padding-left: 28px;
    position: relative;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-note {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */

.faq {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-risk {
    font-size: 11px;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE CHOOSER OVERLAY
   ═══════════════════════════════════════════════════════════════ */

#langOverlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lang-chooser-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.lang-chooser-card {
    position: relative;
    background: #0a0f0a;
    border: 1px solid #00ff41;
    border-radius: 4px;
    padding: 0;
    max-width: 440px;
    width: 90%;
    animation: cardSlideUp 0.5s ease 0.1s both;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.08);
    overflow: hidden;
    font-family: var(--mono);
}

.lang-chooser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #00ff41;
    border-radius: 0;
}

@keyframes cardSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lang-chooser-icon {
    font-size: 48px;
    color: #00ff41;
    font-weight: 900;
    margin-bottom: 12px;
    margin-top: 40px;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.lang-chooser-card h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 8px;
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
}

.lang-chooser-card p {
    font-size: 13px;
    color: #b5ffb5;
    margin-bottom: 36px;
    padding: 0 32px;
}

.lang-chooser-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 0 32px 40px;
}

.lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 36px;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 140px;
}

.lang-btn:hover {
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.15);
}

.lang-btn-flag { font-size: 40px; }

.lang-btn-text {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    color: #00ff41;
}

/* ═══════════════════════════════════════════════════════════════
   MATRIX TERMINAL QUIZ
   ═══════════════════════════════════════════════════════════════ */

@keyframes terminalFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

@keyframes scanline {
    0% { top: -100%; }
    100% { top: 100%; }
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes typeIn {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes glitchText {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(1px, -1px); }
    60% { transform: translate(-1px, 2px); }
    80% { transform: translate(2px, -1px); }
    100% { transform: translate(0); }
}

#quizOverlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quiz-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
}

/* The terminal window */
.quiz-card {
    position: relative;
    background: #0a0f0a;
    border: 1px solid #00ff41;
    border-radius: 4px;
    padding: 0;
    max-width: 740px;
    width: 94%;
    margin: 40px auto;
    animation: cardSlideUp 0.5s ease 0.1s both, terminalFlicker 8s infinite;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.08), inset 0 0 80px rgba(0, 255, 65, 0.02);
    overflow: hidden;
    font-family: var(--mono);
}

/* Scanline effect */
.quiz-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 255, 65, 0.03), transparent);
    animation: scanline 6s linear infinite;
    pointer-events: none;
    z-index: 10;
}

/* CRT pixel lines */
.quiz-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
    pointer-events: none;
    z-index: 9;
}

/* Terminal title bar */
.term-titlebar {
    background: #0d140d;
    border-bottom: 1px solid #00ff41;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #00ff41;
    letter-spacing: 1px;
}

.term-titlebar-dots {
    display: flex;
    gap: 6px;
    margin-right: 12px;
}

.term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #00ff41;
    background: transparent;
}

.term-dot.r { background: #ff5f56; border-color: #ff5f56; }
.term-dot.y { background: #ffbd2e; border-color: #ffbd2e; }
.term-dot.g { background: #27c93f; border-color: #27c93f; }

/* Terminal body */
.term-body {
    padding: 24px 28px 28px;
    min-height: 400px;
}

/* Progress bar (replaces dots) */
.term-progress {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.term-progress-bar {
    flex: 1;
    height: 4px;
    background: #0d1a0d;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.term-progress-fill {
    height: 100%;
    background: #00ff41;
    transition: width 0.5s ease;
    box-shadow: 0 0 6px rgba(0, 255, 65, 0.6);
}

.term-progress-text {
    font-size: 11px;
    color: #00ff41;
    white-space: nowrap;
    opacity: 0.7;
}

/* Terminal prompt line */
.term-prompt {
    color: #00ff41;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
    opacity: 0.6;
}

.term-prompt .cmd { color: #27c93f; }
.term-prompt .path { color: #5fe05f; }

/* Section label */
.term-label {
    font-size: 11px;
    color: rgba(0, 255, 65, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* Main title with green glow */
.term-title {
    font-family: var(--mono);
    font-size: 20px;
    font-weight: 700;
    color: #00ff41;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    line-height: 1.4;
}

/* Info block — replaces analogy box */
.term-info {
    background: rgba(0, 255, 65, 0.04);
    border-left: 2px solid #00ff41;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #b5ffb5;
}

/* Visual/code block */
.term-code {
    background: #050a05;
    border: 1px solid rgba(0, 255, 65, 0.15);
    border-radius: 2px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    color: #00ff41;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Action button — green terminal style */
.term-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    color: #00ff41;
    border: 1px solid #00ff41;
    border-radius: 2px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.term-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.15), inset 0 0 20px rgba(0, 255, 65, 0.05);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
}

.term-btn.primary {
    background: #00ff41;
    color: #0a0f0a;
    font-weight: 700;
}

.term-btn.primary:hover {
    background: #33ff6b;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

/* Question text */
.term-question {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.5;
    padding-left: 16px;
    border-left: 2px solid #00ff41;
}

/* Answer options */
.term-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.term-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.15);
    border-radius: 2px;
    color: #b5ffb5;
    font-family: var(--mono);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.term-option:hover {
    background: rgba(0, 255, 65, 0.08);
    border-color: #00ff41;
    color: #00ff41;
}

.term-option-key {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #00ff41;
    flex-shrink: 0;
}

.term-option.correct {
    background: rgba(0, 255, 65, 0.15);
    border-color: #00ff41;
    color: #00ff41;
}

.term-option.correct .term-option-key {
    background: #00ff41;
    color: #0a0f0a;
}

.term-option.wrong {
    background: rgba(255, 50, 50, 0.12);
    border-color: #ff3232;
    color: #ff6b6b;
}

.term-option.wrong .term-option-key {
    border-color: #ff3232;
    color: #ff3232;
}

.term-option.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.term-option.correct.disabled,
.term-option.wrong.disabled {
    opacity: 1;
}

/* Feedback */
.term-feedback {
    display: none;
    margin-bottom: 16px;
}

.term-feedback-inner {
    padding: 12px 16px;
    border-radius: 2px;
    font-size: 13px;
    line-height: 1.6;
    font-family: var(--mono);
}

.term-feedback-inner.correct {
    background: rgba(0, 255, 65, 0.08);
    border: 1px solid rgba(0, 255, 65, 0.25);
    color: #00ff41;
}

.term-feedback-inner.wrong {
    background: rgba(255, 50, 50, 0.08);
    border: 1px solid rgba(255, 50, 50, 0.25);
    color: #ff6b6b;
}

/* Result screen */
.term-result-ascii {
    font-family: var(--mono);
    font-size: 11px;
    color: #00ff41;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
    white-space: pre;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.term-result-title {
    font-family: var(--mono);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 0 0 15px currentColor;
}

.term-result-title.pass { color: #00ff41; }
.term-result-title.fail { color: #ff3232; }

.term-result-score {
    font-family: var(--mono);
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: #00ff41;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.term-result-msg {
    font-size: 13px;
    color: #b5ffb5;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.6;
    font-family: var(--mono);
}

/* Legacy quiz class compat */
.quiz-result-msg {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   COMMUNITY REVIEWS
   ═══════════════════════════════════════════════════════════════ */

.reviews-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--bg) 0%, #0d0d15 50%, var(--bg) 100%);
    overflow: hidden;
}

.reviews-track-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.reviews-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius);
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    cursor: grab;
}

.reviews-track.dragging {
    transition: none;
    cursor: grabbing;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.review-card:hover {
    border-color: var(--accent-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(200, 168, 78, 0.08);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #0a0a0f;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.review-stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-card.expanded .review-text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.review-read-more {
    font-size: 12px;
    color: var(--accent);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-family: var(--font);
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    align-self: flex-start;
}

.review-read-more:hover {
    color: var(--accent-light);
}

.review-card.expanded .review-read-more .rm-more { display: none; }
.review-card:not(.expanded) .review-read-more .rm-less { display: none; }

.review-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.review-tag.payout {
    background: rgba(34, 197, 94, 0.12);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.review-tag.newbie {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.review-tag.experienced {
    background: rgba(200, 168, 78, 0.12);
    color: var(--accent-light);
    border: 1px solid rgba(200, 168, 78, 0.2);
}

.review-tag.recommended {
    background: rgba(168, 85, 247, 0.12);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Navigation buttons */
.reviews-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 2;
}

.reviews-nav-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-dark);
    color: var(--accent);
}

.reviews-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Dot indicators */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* Social proof bar */
.reviews-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.proof-number {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ═══════════════════════════════════════════════════════════════
   MUSIC TOGGLE BUTTON
   ═══════════════════════════════════════════════════════════════ */

.music-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(12, 12, 18, 0.85);
    border: 1px solid var(--border);
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.music-toggle:hover {
    border-color: var(--accent);
    background: rgba(200, 168, 78, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(200, 168, 78, 0.2);
}

.music-toggle svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu { display: flex; }
    .nav-right .btn { display: none; }

    .feature-grid { grid-template-columns: 1fr; }
    .perf-grid { grid-template-columns: repeat(2, 1fr); }

    .steps { flex-direction: column; align-items: center; }
    .step-connector { transform: rotate(90deg); margin: 0; }

    .hero-stats { gap: 24px; }
    .stat-divider { display: none; }

    .pricing-card { padding: 32px 24px; }
    .price { font-size: 48px; }

    .cal-yearly-bar { grid-template-columns: repeat(2, 1fr); }
    .cal-monthly-summary { grid-template-columns: repeat(3, 1fr); }
    .cal-day { min-height: 60px; padding: 6px 4px; }
    .cal-day-pnl { font-size: 11px; }
    .cal-day-trades { font-size: 9px; }
    .cal-weekdays span { font-size: 10px; }
    .cal-month-title { font-size: 20px; min-width: 180px; }
    .cal-days { gap: 4px; }
    .cal-weekdays { gap: 4px; }
    .cal-grid-wrap { padding: 16px; }

    .calc-container { grid-template-columns: 1fr; }
    .calc-result-grid { grid-template-columns: 1fr; }

    .ticker-tape { display: none; }

    .quiz-card { margin: 16px auto; }
    .term-body { padding: 16px 18px 20px; }
    .term-title { font-size: 16px; }
    .term-info { font-size: 13px; padding: 12px 14px; }
    .term-option { font-size: 13px; padding: 12px 14px; }
    .term-question { font-size: 14px; }
    .quiz-progress-dots { gap: 6px; }

    .reviews-nav-btn { width: 36px; height: 36px; }
    .reviews-proof { gap: 20px; padding: 20px 16px; }
    .proof-number { font-size: 22px; }
    .proof-label { font-size: 10px; }
}

@media (max-width: 480px) {
    .perf-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: center; }
    .platform-logos { gap: 24px; }
    .lang-chooser-card p { padding: 0 20px; }
    .lang-chooser-buttons { flex-direction: column; padding: 0 20px 32px; }
    .lang-btn { flex-direction: row; padding: 16px 24px; min-width: unset; width: 100%; }
    .cal-accounts-bar { flex-direction: column; }
}
