/* goal-tracker.css - Student Premium Version */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --bg: var(--bg);
    --card: var(--card-bg);
    --border: var(--border);
    --text: var(--text-main);
    --muted: var(--text-sub);
    --accent: var(--primary);
    --accent-glow: var(--primary-soft);
    --ok: var(--success);
    --danger: var(--danger);
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    --glass: var(--glass-bg);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.wrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 16px 80px;
}

/* Header & Profile */
header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-view-container {
    width: 64px;
    height: 64px;
    position: relative;
    border-radius: 20px;
    background: var(--card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.avatar-preview-sm {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
}

.avatar-badge-sm {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title {
    display: flex;
    flex-direction: column;
}

.greeting {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2px;
}

h1 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.sub {
    font-size: 12px;
    color: var(--muted);
}

/* Stats Dashboard */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.stat-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.stat-value.fire {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

/* Action Buttons */
.check-btn {
    width: 100%;
    border: none;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.check-btn.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.check-btn.fail {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted);
}

.check-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.check-btn .btn-icon {
    font-size: 24px;
}

.check-btn .btn-text {
    font-size: 18px;
    font-weight: 800;
}

#checkActions {
    margin-bottom: 18px;
}

/* Completed State UI */
.mission-complete-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.complete-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: inline-block;
    animation: bounce 1s infinite;
}

.complete-title {
    font-size: 20px;
    font-weight: 800;
    color: #34d399;
    margin-bottom: 4px;
}

.complete-desc {
    font-size: 14px;
    color: var(--muted);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Goal Card */
.hero-container {
    perspective: 1000px;
    margin-bottom: 24px;
}

.hero-goal-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.goal-type-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 99px;
    background: rgba(129, 140, 248, 0.2);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.goalText {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateZ(20px);
}

.hero-goal-card .meta {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* Big Buttons */
.bigChoice {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.bigBtn {
    border: none;
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bigBtn .btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.bigBtn .btn-text {
    font-size: 16px;
    font-weight: 700;
}

.bigBtn.ok {
    background: #10b981;
    color: white;
}

.bigBtn.bad {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border);
    color: var(--text);
}

.bigBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bigBtn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.bigBtn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

/* Interaction Area */
.interaction-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
    padding-left: 4px;
}

select,
input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

select:hover,
input:hover {
    border-color: var(--accent);
}

select:focus,
input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

input::placeholder {
    color: var(--muted);
}

/* Two Column Layout */
.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .two {
        grid-template-columns: 1fr;
    }
}

/* Goal Setup Card (noGoal state) */
#noGoal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 20px;
}

#noGoal .muted {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 600;
}

.hr {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

/* Row layout */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

/* Nav Buttons */
.nav {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

/* Idea Chips (Brainstorming Cloud) */
.idea-box {
    background: rgba(15, 23, 42, 0.3);
    border: none;
    padding: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.idea-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    background: var(--card);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.idea-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 0 10px;
}

.idea-chip {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.idea-chip:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 15px var(--accent-glow);
}

.idea-chip.selected {
    background: linear-gradient(135deg, var(--accent), #6366f1);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3);
    font-weight: 700;
}

/* Random-like styling for variety */
.idea-chip:nth-child(even) {
    transform: rotate(1deg);
}

.idea-chip:nth-child(odd) {
    transform: rotate(-1deg);
}

.idea-chip:nth-child(3n) {
    transform: rotate(2deg);
}

.idea-chip:hover {
    transform: translateY(-5px) scale(1.05) rotate(0deg) !important;
}

.idea-chip.selected {
    transform: scale(1.1) rotate(0deg) !important;
}

/* Quest Map */
.quest-map-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
}

.quest-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.grid7-path {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

/* Day Item in Path */
.day {
    width: 40px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 11px;
    color: var(--muted);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.day strong {
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 2px;
}

.day.ok {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
}

.day.ok strong {
    color: #10b981;
}

.day.bad {
    background: rgba(244, 63, 94, 0.2);
    border-color: #f43f5e;
    color: #f43f5e;
}

.day.selected {
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    color: var(--accent);
}

.day.selected strong {
    color: var(--accent);
}

/* Footer & Settings */
.footer-hint {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px;
}

.settings-row {
    display: flex;
    justify-content: center;
}

.btn-text-only {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-text-only:hover {
    color: var(--text);
    background: var(--glass);
}

/* Modal and Theme Items - Inherited from Hub */
.theme-selector-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: var(--shadow);
}

/* Animations */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 15px var(--accent-glow);
    }

    100% {
        box-shadow: 0 0 5px var(--accent-glow);
    }
}

.hide {
    display: none !important;
}

/* Button Variants */
.btn {
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn.ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn.outline {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn.ghost:hover,
.btn.outline:hover {
    background: var(--border);
}

.btn.primary {
    background: var(--accent);
    color: white;
    border: none;
    box-shadow: 0 4px 12px var(--accent-glow);
}

/* Coach Glow Effect */
.coach-glow {
    position: relative;
    padding: 2px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    background-size: 200% auto;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    animation: gradient-flow 3s linear infinite;
}

.coach {
    background: var(--card);
    border-radius: calc(var(--radius-md) - 2px);
    padding: 16px 20px;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.avatar-view-container {
    animation: bounce-subtle 4s ease-in-out infinite;
}

/* Goal Setup Form Styles */
.goal-setup-header {
    text-align: center;
    padding: 16px 0;
}

.setup-icon {
    font-size: 48px;
    margin-bottom: 12px;
    animation: bounce-subtle 2s ease-in-out infinite;
}

.goal-setup-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text);
}

.setup-hint {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
}

/* Big Start Button */
.start-btn {
    width: 100%;
    padding: 18px 24px;
    margin-top: 24px;
    background: linear-gradient(135deg, var(--accent), #6366f1);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 24px var(--accent-glow);
    transition: var(--transition);
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--accent-glow);
}

.start-btn-icon {
    font-size: 22px;
}

.start-btn-text {
    letter-spacing: 0.02em;
}

/* Goal Wizard Styles */
.wizard-container {
    padding: 24px;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.progress-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    z-index: 1;
    transition: var(--transition);
}

.progress-step.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--card);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.progress-step.completed {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.wizard-step {
    display: none;
    animation: fadeInSlide 0.4s ease-out;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text);
}

.step-desc {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.cat-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.cat-card:hover {
    background: var(--border);
    transform: translateY(-2px);
}

.cat-card.selected {
    border-color: var(--accent);
    background: rgba(129, 140, 248, 0.1);
    box-shadow: 0 0 0 2px var(--accent);
}

.cat-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.cat-name {
    font-weight: 700;
    font-size: 15px;
    display: block;
}

.cat-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    display: block;
}

/* Goal Selection List */
.goal-option-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.goal-option {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--glass);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    line-height: 1.4;
}

.goal-option:hover {
    background: var(--border);
}

.goal-option.selected {
    border-color: var(--accent);
    background: rgba(129, 140, 248, 0.1);
}

/* Wizard Nav */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* Weekly Reflection */
.weekly-reflection-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.reflection-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.star-btn {
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    filter: grayscale(1);
    opacity: 0.5;
}

.star-btn.active,
.star-btn:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.2);
}

.reflection-input {
    width: 100%;
    height: 80px;
    margin-bottom: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    color: var(--text);
    resize: none;
}

.submit-reflection-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .stats-row-premium {
        grid-template-columns: 1fr 1fr;
    }

    .hero-goal-card {
        padding: 24px 16px;
    }

    .goalText {
        font-size: 20px;
    }

    .day {
        width: 36px;
        height: 44px;
        font-size: 10px;
    }

    .setup-icon {
        font-size: 40px;
    }

    .goal-setup-header h2 {
        font-size: 18px;
    }
}

/* Light Mode Overrides */
[data-theme="light-mode"] {
    --text: #1e293b;
    --muted: #64748b;
    --card: #ffffff;
    --border: #e2e8f0;
}

[data-theme="light-mode"] .goalText {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light-mode"] .hero-goal-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light-mode"] .hero-goal-card .meta {
    color: #64748b;
}

[data-theme="light-mode"] .goal-type-badge {
    color: var(--accent);
    background: rgba(99, 102, 241, 0.1);
}

[data-theme="light-mode"] select,
[data-theme="light-mode"] input,
[data-theme="light-mode"] .idea-chip,
[data-theme="light-mode"] .cat-card {
    background: #ffffff;
    color: #1e293b;
    border-color: #cbd5e1;
}

[data-theme="light-mode"] .idea-chip:hover {
    background: var(--accent);
    color: white;
}

[data-theme="light-mode"] .cat-card:hover {
    background: #f1f5f9;
}

[data-theme="light-mode"] .idea-label {
    background: #f1f5f9;
    color: #475569;
    box-shadow: none;
    border: 1px solid #e2e8f0;
}

[data-theme="light-mode"] .wizard-container {
    background: #ffffff;
    border-color: #e2e8f0;
}

[data-theme="light-mode"] .progress-step {
    background: #ffffff;
    border-color: #e2e8f0;
    color: #94a3b8;
}

[data-theme="light-mode"] .progress-step.active {
    border-color: var(--accent);
    color: var(--accent);
    background: #ffffff;
}

[data-theme="light-mode"] .progress-step.completed {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}
