/* ═══════════════════════════════════════════
   Axyra - Landing Page Styles
   Blue/Trading Theme — Premium & Bold
   ═══════════════════════════════════════════ */

:root {
    --bg: #050810;
    --bg-card: #0c1020;
    --bg-card-hover: #111630;
    --border: #1a2040;
    --text: #e8eaf0;
    --text-muted: #7a82a0;
    --blue: #3b82f6;
    --blue-dark: #1d4ed8;
    --blue-light: #60a5fa;
    --blue-glow: rgba(59, 130, 246, 0.15);
    --cyan: #22d3ee;
    --cyan-glow: rgba(34, 211, 238, 0.1);
    --green: #22c55e;
    --red: #ef4444;
    --gold: #f59e0b;
    --purple: #a855f7;
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navigation ────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 0;
    background: rgba(5, 8, 16, 0.88);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    overflow: visible;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 140px;
    width: auto;
    margin: -50px 0;
    filter: drop-shadow(0 0 12px var(--blue-glow));
    position: relative;
    z-index: 101;
}

.hero-logo {
    margin-bottom: -120px;
}

.hero-logo-img {
    height: 420px;
    width: auto;
    filter: drop-shadow(0 0 30px var(--blue-glow)) drop-shadow(0 0 60px rgba(34, 211, 238, 0.15));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.footer-logo-img {
    height: 120px;
    width: auto;
    margin: -35px 0;
    filter: drop-shadow(0 0 8px var(--blue-glow));
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

/* ── Buttons ───────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    box-shadow: 0 4px 15px var(--blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--blue);
}

.btn-small {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-large {
    padding: 16px 44px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

/* ── Hero ──────────────────────────────── */

.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated grid background */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background:
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

/* Chart-like decorative lines */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--bg));
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-light);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue-light), var(--cyan), var(--purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
}

/* ── Section Headers ───────────────────── */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
}

/* ── Features ──────────────────────────── */

.features {
    padding: 110px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.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: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue-glow), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--blue-light);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Strategy ──────────────────────────── */

.strategy {
    padding: 110px 0;
    position: relative;
}

.strategy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.strategy-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.flow-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 28px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.flow-step:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 20px var(--blue-glow);
}

.flow-step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.flow-arrow {
    font-size: 28px;
    color: var(--blue);
    margin-top: 36px;
    opacity: 0.4;
}

/* ── Pricing ───────────────────────────── */

.pricing {
    padding: 110px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-6px);
}

.price-card.featured {
    border-color: var(--blue);
    position: relative;
    box-shadow:
        0 0 40px var(--blue-glow),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.price-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
}

.price-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--blue-glow);
    color: var(--blue-light);
    margin-bottom: 24px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.price-amount span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-features li::before {
    content: '\2713';
    color: var(--blue-light);
    margin-right: 10px;
    font-weight: 700;
}

/* ── Chart decoration (trading visual) ── */

.chart-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(90deg, var(--blue) 0px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, var(--blue) 0px, transparent 1px, transparent 80px);
}

/* ── Download ──────────────────────────── */

.download {
    padding: 110px 0;
    text-align: center;
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    pointer-events: none;
}

.download h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.download > .container > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.download-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 56px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.download-info {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.download-info span {
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    font-weight: 500;
}

.download-note {
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ── Footer ────────────────────────────── */

.footer {
    padding: 40px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.footer-brand p {
    width: 100%;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--blue-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   Auth Pages (Login, Register, Forgot, Reset)
   ═══════════════════════════════════════════ */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
}

.auth-container {
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 36px;
}

.auth-card h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.form-input {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.auth-form .btn {
    margin-top: 6px;
}

.auth-links {
    margin-top: 24px;
    text-align: center;
}

.auth-links p {
    font-size: 13px;
    color: var(--text-muted);
}

.auth-links a {
    color: var(--blue-light);
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

.forgot-link {
    text-align: right;
    margin-top: -8px;
}

.forgot-link a {
    font-size: 13px;
    color: var(--blue-light);
    text-decoration: none;
}

.forgot-link a:hover {
    text-decoration: underline;
}

.auth-message {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.auth-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

.auth-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #86efac;
}

/* ═══════════════════════════════════════════
   Dashboard
   ═══════════════════════════════════════════ */

.dash-layout {
    display: flex;
    min-height: 100vh;
}

/* ── Sidebar ── */

.dash-sidebar {
    width: 260px;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 50;
}

.dash-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.dash-logo {
    height: 130px;
    width: auto;
    margin: -45px 0;
    filter: drop-shadow(0 0 8px var(--blue-glow));
    position: relative;
    z-index: 51;
}

.dash-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.dash-nav-item:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--text);
}

.dash-nav-item.active {
    background: rgba(59, 130, 246, 0.12);
    color: var(--blue-light);
}

.dash-nav-item svg {
    flex-shrink: 0;
}

.dash-sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--border);
}

.dash-user-info {
    margin-bottom: 12px;
}

.dash-user-email {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dash-logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    width: 100%;
}

.dash-logout-btn:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--red);
}

/* ── Main Content ── */

.dash-main {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
}

.dash-content {
    max-width: 900px;
    padding: 40px;
}

.dash-tab {
    display: none;
}

.dash-tab.active {
    display: block;
}

.dash-header {
    margin-bottom: 32px;
}

.dash-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-header p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ── Stats Cards ── */

.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}

.stat-card-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 8px;
}

.stat-card-value {
    font-size: 22px;
    font-weight: 700;
}

.stat-card-value.active {
    color: var(--green);
}

.stat-card-value.expired {
    color: var(--red);
}

.stat-card-value.trial {
    color: var(--gold);
}

/* ── Profile Card ── */

.dash-profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 28px;
}

.dash-profile-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.profile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.profile-row:last-child {
    border-bottom: none;
}

.profile-label {
    font-size: 13px;
    color: var(--text-muted);
}

.profile-value {
    font-size: 14px;
    font-weight: 500;
}

/* ── No License CTA ── */

.dash-no-license {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.dash-no-license h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.dash-no-license p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ── Licenses List ── */

.licenses-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.license-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.license-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.license-key {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-light);
    letter-spacing: 1px;
}

.license-badge {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-badge.lifetime {
    background: rgba(168, 85, 247, 0.12);
    color: var(--purple);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.license-badge.monthly {
    background: rgba(59, 130, 246, 0.12);
    color: var(--blue-light);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.license-badge.trial {
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.license-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.license-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.license-detail-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-detail-value {
    font-size: 13px;
    font-weight: 500;
}

.license-status-active {
    color: var(--green);
}

.license-status-expired {
    color: var(--red);
}

/* ── Download Card ── */

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.download-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.download-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.download-card .download-version {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-light);
}

.download-card .download-platform {
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.download-changelog {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg);
    border-radius: 10px;
}

.download-changelog h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.download-changelog p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    white-space: pre-line;
}

/* ── Settings ── */

.settings-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}

.settings-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.settings-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
}

.settings-form .btn {
    align-self: flex-start;
}

/* ── Empty / Loading States ── */

.dash-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 14px;
}

.dash-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.dash-empty h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.dash-empty p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ── Responsive ────────────────────────── */

@media (max-width: 768px) {
    .hero-logo-img {
        height: auto;
        width: 90%;
        max-width: 320px;
    }

    .hero-logo {
        margin-bottom: -60px;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .strategy-flow {
        flex-direction: column;
        align-items: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .nav-links a:not(.btn) {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .download-box {
        padding: 28px 24px;
    }

    .download-info {
        flex-direction: column;
        gap: 8px;
    }

    /* Auth responsive */
    .auth-card {
        padding: 32px 24px;
    }

    /* Dashboard responsive */
    .dash-sidebar {
        display: none;
    }

    .dash-main {
        margin-left: 0;
    }

    .dash-content {
        padding: 24px 16px;
    }

    .dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .license-details {
        grid-template-columns: 1fr;
    }
}
