/* ────────────────────────────────────────────
   EKHO Landing Page — Redesigned
   Matches in-app component styles exactly
   ──────────────────────────────────────────── */

:root {
    --ekho-orange: #f48a4b;
    --ekho-purple: #934e86;
    --ekho-blue: #243baa;
    --ekho-cyan: #00d4ff;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0f;
    --bg-card: #0f0f14;
    --bg-elevated: #121218;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.08);
    --accent: #243baa;
    --accent-light: #3d56cc;
    --accent-subtle: rgba(36, 59, 170, 0.1);
    --success: #10b981;
    --danger: #ef4444;
    --gradient-ekho: linear-gradient(135deg, #934e86 0%, #243baa 35%, #00d4ff 70%, #f48a4b 100%);
    --font-heading: 'Garet', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Telegraf', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

.gradient-text {
    background: var(--gradient-ekho);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── NAV ─── */
.landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 44px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--text-primary); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 4px;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border: 1px solid var(--ekho-blue);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-login:hover {
    background: var(--ekho-blue);
    box-shadow: 0 0 20px rgba(36, 59, 170, 0.35);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
    background: #000000;
}

.hero-glow,
.hero-glow-2 {
    display: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-logo {
    height: 260px;
    margin-bottom: 36px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 100px;
    background: rgba(36, 59, 170, 0.15);
    border: 1px solid rgba(36, 59, 170, 0.3);
    color: var(--ekho-cyan);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-sub {
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: var(--ekho-blue);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-cta:hover {
    background: #2d4ad4;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(36, 59, 170, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.hero-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    background: var(--gradient-ekho);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

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

/* ─── DASHBOARD PREVIEW ─── */
.demo-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.3s;
}
.preview-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.preview-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.preview-card-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.preview-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(36, 59, 170, 0.15);
    color: var(--text-secondary);
    border: 1px solid rgba(36, 59, 170, 0.2);
}

.preview-badge.badge-live {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

/* ═══════════════════════════════════════════════
   SKILL DIALS — Semi-circle gauges (exact app match)
   ═══════════════════════════════════════════════ */
.skill-dials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.skill-dial {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 12px 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.skill-dial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.dial-svg {
    display: block;
    width: 100%;
    max-width: 110px;
    margin: 0 auto;
}

.dial-track {
    fill: none;
    stroke: var(--bg-card);
    stroke-width: 8;
    stroke-linecap: round;
}

/* Speedometer color zones */
.dial-zone {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    opacity: 0.3;
}

.dial-zone.zone-red { stroke: #ef4444; }
.dial-zone.zone-orange { stroke: #f59e0b; }
.dial-zone.zone-yellow { stroke: #eab308; }
.dial-zone.zone-green { stroke: #22c55e; }

.dial-fill {
    fill: none;
    stroke: var(--text-muted);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 141.37;
    stroke-dashoffset: 141.37;
    transition: stroke-dashoffset 0.8s ease-out, stroke 0.4s ease;
}

.dial-needle {
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    transform-origin: 60px 70px;
    transform: rotate(-90deg);
    transition: transform 0.8s ease-out;
}

.dial-center {
    fill: #fff;
}

.dial-min, .dial-max {
    fill: var(--text-muted);
    font-size: 8px;
    font-weight: 500;
}

.dial-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1;
}

.dial-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

.dial-change {
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
}

.dial-change.positive { color: var(--success); }
.dial-change.negative { color: var(--danger); }
.dial-change.neutral { color: var(--text-muted); }

/* Dial color classes — exact match from dashboard.css */
.dial-fill.excellent { stroke: #22c55e; }
.dial-fill.good      { stroke: #84cc16; }
.dial-fill.average   { stroke: #f59e0b; }
.dial-fill.needs-work { stroke: #f97316; }
.dial-fill.poor      { stroke: #ef4444; }

/* Right column */
.preview-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ═══════════════════════════════════════════════
   LEADERBOARD — exact app match
   ═══════════════════════════════════════════════ */
.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background 0.2s;
}

.leaderboard-item:hover {
    background: var(--bg-elevated);
}

.leaderboard-item.current-user {
    background: var(--accent-subtle);
    border: 1px solid var(--accent);
}

.leaderboard-rank {
    width: 22px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    font-size: 13px;
}

/* Exact medal colors from dashboard.css */
.leaderboard-rank.gold   { color: #f9a825; }
.leaderboard-rank.silver { color: #9e9e9e; }
.leaderboard-rank.bronze { color: #cd7f32; }

.leaderboard-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.leaderboard-name {
    flex: 1;
    font-size: 13px;
    color: var(--text-primary);
}

.leaderboard-item.current-user .leaderboard-name {
    font-weight: 600;
    color: var(--accent-light);
}

.leaderboard-points {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   ASK EKHO PREVIEW
   ═══════════════════════════════════════════════ */
.askekho-chat {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.chat-msg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.chat-user { justify-content: flex-end; }

.chat-avatar-user {
    order: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.chat-avatar-ekho {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.chat-avatar-ekho img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.chat-bubble-user {
    background: var(--ekho-blue);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-bubble-ekho {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-bottom-left-radius: 4px;
}
.chat-bubble-ekho strong { color: var(--text-primary); }

.chat-skills-mini {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.mini-skill {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--skill-color);
    font-weight: 500;
}

.askekho-input-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}
.askekho-input-preview span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.askekho-input-actions {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   BUBBLE CHART — exact match from skills-charts.css
   ═══════════════════════════════════════════════ */
.bubble-section {
    padding: 100px 0;
}

.bubble-chart-container {
    position: relative;
    height: 280px;
    background: linear-gradient(to right, var(--bg-elevated) 0%, var(--bg-card) 50%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 12px;
    overflow: visible;
    margin-bottom: 12px;
}

.bubble-x-axis {
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    padding: 0 8px;
}

.bubble-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bubble-grid-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
    opacity: 0.5;
}

.team-bubble {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
    cursor: default;
    z-index: 4;
}

.team-bubble.visible {
    transform: translate(-50%, -50%) scale(1);
}

.team-bubble:hover {
    transform: translate(-50%, -50%) scale(1.15);
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.team-bubble .bubble-label {
    line-height: 1;
    font-size: 14px;
}

.team-bubble .bubble-score {
    opacity: 0.9;
    font-size: 9px;
}

/* Exact bubble colors from skills-charts.css */
.team-bubble.you     { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.team-bubble.color-0 { background: linear-gradient(135deg, #22c55e, #4ade80); }
.team-bubble.color-1 { background: linear-gradient(135deg, #f97316, #fb923c); }
.team-bubble.color-2 { background: linear-gradient(135deg, #a855f7, #c084fc); }
.team-bubble.color-3 { background: linear-gradient(135deg, #ef4444, #f87171); }
.team-bubble.color-4 { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.team-bubble.color-5 { background: linear-gradient(135deg, #ec4899, #f472b6); }
.team-bubble.color-6 { background: linear-gradient(135deg, #eab308, #facc15); }
.team-bubble.color-7 { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }

.bubble-tooltip {
    position: absolute;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 1px solid var(--border);
}

.team-bubble:hover .bubble-tooltip {
    opacity: 1;
}

.bubble-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.bubble-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.bubble-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.bubble-size-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--text-muted);
}

.bubble-size-legend-dot {
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
}

/* ─── FEATURES ─── */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
}

.section-sub {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 56px;
    font-size: 1.05rem;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(36, 59, 170, 0.15);
    color: var(--ekho-blue);
    margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-icon.icon-purple { background: rgba(147, 78, 134, 0.15); color: var(--ekho-purple); }
.feature-icon.icon-cyan   { background: rgba(0, 212, 255, 0.12); color: var(--ekho-cyan); }
.feature-icon.icon-orange { background: rgba(244, 138, 75, 0.15); color: var(--ekho-orange); }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.step { text-align: center; }

.step-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-ekho);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── GAMIFICATION ─── */
.gamification-section {
    padding: 100px 0;
}

.gamification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.gamification-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 16px 0 32px;
}

.level-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.level-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}
.level-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.level-active {
    border-color: rgba(36, 59, 170, 0.3);
    background: rgba(36, 59, 170, 0.06);
}

.level-icon {
    font-size: 1.4rem;
    color: #f59e0b;
}

.level-info { flex: 1; }
.level-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}
.level-xp {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.level-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(36, 59, 170, 0.15);
    color: var(--ekho-cyan);
    font-weight: 500;
}

.level-progress-mini {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.level-progress-mini-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--gradient-ekho);
}

/* XP Ring */
.gamification-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.xp-ring {
    position: relative;
    width: 260px;
    height: 260px;
}

.xp-ring svg {
    width: 100%;
    height: 100%;
}

.xp-ring-progress {
    transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.xp-ring-level {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    background: var(--gradient-ekho);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.xp-ring-title {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.xp-ring-xp {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.cta-box {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
}

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

.cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* ─── FOOTER ─── */
.landing-footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo { height: 40px; opacity: 0.6; }

.landing-footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .dashboard-preview {
        grid-template-columns: 1fr;
    }
    .gamification-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .gamification-content .section-title {
        text-align: center;
    }
    .gamification-desc {
        text-align: center;
    }
    .skill-dials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 60px; }
    .hero-logo { height: 160px; margin-bottom: 24px; }

    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .mobile-menu-btn { display: block; }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .hero-actions .btn-cta,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .skill-dials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bubble-chart-container {
        height: 220px;
    }

    .cta-box { padding: 48px 24px; }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }
    .cta-actions .btn-cta,
    .cta-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .btn-cta { padding: 12px 28px; font-size: 0.95rem; }
    .skill-dials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .skill-dial {
        padding: 10px 8px 8px;
        border-radius: 10px;
    }
    .dial-value { font-size: 16px; }
    .dial-label { font-size: 10px; }
    .dial-change { font-size: 10px; }
    .xp-ring { width: 200px; height: 200px; }
}
