/* ============================================================================
   Wegvio MVP - Design System
   ----------------------------------------------------------------------------
   Markenfarben aus dem Logo (Orange -> Korall-Verlauf).
   Inter / System UI Fonts. Mobile-First. Soft Shadows.
   ============================================================================ */

/* -------------------- Root Tokens -------------------- */
:root {
    /* Wegvio Brand */
    --wv-orange:        #FF8A1F;
    --wv-orange-soft:   #FFB37A;
    --wv-orange-deep:   #E86A0C;
    --wv-coral:         #F04E3E;
    --wv-coral-deep:    #D63A2D;
    --wv-red:           #E63946;
    --wv-gradient:      linear-gradient(135deg, #FF8A1F 0%, #F04E3E 60%, #E63946 100%);
    --wv-gradient-soft: linear-gradient(135deg, #FFE5D2 0%, #FFD3CA 100%);

    /* Neutrals */
    --wv-bg:            #FAFAF7;
    --wv-bg-alt:        #FFFFFF;
    --wv-surface:       #FFFFFF;
    --wv-surface-soft:  #F5F4F0;
    --wv-border:        #E8E6E0;
    --wv-border-soft:   #F0EEEA;

    /* Text */
    --wv-text:          #1A1A1F;
    --wv-text-soft:     #4B4B53;
    --wv-text-muted:    #8A8A95;
    --wv-text-inverse:  #FFFFFF;

    /* Semantic */
    --wv-success:       #2BB673;
    --wv-warning:       #F5A623;
    --wv-danger:        #E63946;
    --wv-info:          #2E7CF6;

    /* Sizing */
    --wv-radius-xs:     6px;
    --wv-radius-sm:     10px;
    --wv-radius:        16px;
    --wv-radius-lg:     24px;
    --wv-radius-pill:   999px;

    /* Shadows */
    --wv-shadow-xs:     0 1px 2px rgba(20, 20, 30, 0.04);
    --wv-shadow-sm:     0 2px 6px rgba(20, 20, 30, 0.06);
    --wv-shadow:        0 8px 24px rgba(20, 20, 30, 0.08);
    --wv-shadow-lg:     0 20px 50px rgba(20, 20, 30, 0.12);
    --wv-shadow-brand:  0 12px 32px rgba(240, 78, 62, 0.25);

    /* Typography */
    --wv-font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --wv-font-display: 'Inter', 'Segoe UI', system-ui, sans-serif;

    --wv-fs-xs:    12px;
    --wv-fs-sm:    14px;
    --wv-fs-base:  16px;
    --wv-fs-lg:    18px;
    --wv-fs-xl:    22px;
    --wv-fs-2xl:   28px;
    --wv-fs-3xl:   36px;
    --wv-fs-4xl:   48px;
    --wv-fs-5xl:   64px;

    /* Layout */
    --wv-container: 1200px;
    --wv-sidebar:   280px;
    --wv-header-h:  104px;

    /* Transitions */
    --wv-trans:     200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme */
[data-theme="dark"] {
    --wv-bg:           #0F1115;
    --wv-bg-alt:       #15181E;
    --wv-surface:      #1A1D24;
    --wv-surface-soft: #232730;
    --wv-border:       #2A2E38;
    --wv-border-soft:  #1F232B;
    --wv-text:         #F1F1F4;
    --wv-text-soft:    #C5C7CF;
    --wv-text-muted:   #8B8E99;
    --wv-text-inverse: #0F1115;

    --wv-gradient-soft: linear-gradient(135deg, #3A1E12 0%, #422018 100%);

    --wv-shadow-xs:    0 1px 2px rgba(0, 0, 0, 0.4);
    --wv-shadow-sm:    0 2px 6px rgba(0, 0, 0, 0.3);
    --wv-shadow:       0 8px 24px rgba(0, 0, 0, 0.4);
    --wv-shadow-lg:    0 20px 50px rgba(0, 0, 0, 0.5);
    --wv-shadow-brand: 0 12px 32px rgba(240, 78, 62, 0.35);
}

/* Dark-Mode spezifische Anpassungen */
[data-theme="dark"] .marketing-nav { background: rgba(15, 17, 21, 0.85); }
[data-theme="dark"] .app-header { background: rgba(21, 24, 30, 0.9); }
[data-theme="dark"] .brand-logo--invert { filter: brightness(0) invert(1); }
[data-theme="dark"] .section--soft { background: var(--wv-bg-alt); }
[data-theme="dark"] .compare tbody td:nth-child(2) { background: rgba(255, 138, 31, 0.06); }
[data-theme="dark"] .auth-pane--brand .feature { border-color: rgba(255,255,255,0.16); }
[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus { background: var(--wv-surface); }
[data-theme="dark"] .icon { color: var(--wv-orange-soft); }
[data-theme="dark"] .icon-tile { background: rgba(255, 138, 31, 0.12); color: var(--wv-orange-soft); }
[data-theme="dark"] .compare__brand { background: rgba(255, 138, 31, 0.12); color: var(--wv-orange-soft); }

/* -------------------- Reset / Base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
[hidden] { display: none !important; }

/* -------------------- Icons -------------------- */
.icon { color: var(--wv-coral-deep); }
.icon svg { display: block; }
.icon--muted   { color: var(--wv-text-muted); }
.icon--soft    { color: var(--wv-text-soft); }
.icon--inverse { color: #fff; }
.icon--success { color: var(--wv-success); }
.icon--danger  { color: var(--wv-danger); }
.icon--brand   { color: var(--wv-coral-deep); }
.icon-tile {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--wv-gradient-soft);
    color: var(--wv-coral-deep);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.icon-tile--lg { width: 64px; height: 64px; border-radius: 16px; }
.icon-tile--brand {
    background: var(--wv-gradient);
    color: #fff;
    box-shadow: var(--wv-shadow-brand);
}
.icon-tile--outline {
    background: transparent;
    border: 1.5px solid var(--wv-border);
    color: var(--wv-coral-deep);
}
body {
    margin: 0;
    font-family: var(--wv-font-sans);
    font-size: var(--wv-fs-base);
    line-height: 1.55;
    color: var(--wv-text);
    background: var(--wv-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--wv-coral-deep); text-decoration: none; transition: color var(--wv-trans); }
a:hover { color: var(--wv-orange-deep); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wv-font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--wv-text);
    margin: 0 0 0.5em;
}
h1 { font-size: var(--wv-fs-4xl); letter-spacing: -0.03em; }
h2 { font-size: var(--wv-fs-3xl); letter-spacing: -0.025em; }
h3 { font-size: var(--wv-fs-2xl); }
h4 { font-size: var(--wv-fs-xl); }
p  { margin: 0 0 1em; color: var(--wv-text-soft); }

::selection { background: rgba(240, 78, 62, 0.25); color: var(--wv-text); }

/* -------------------- Utility -------------------- */
.container { max-width: var(--wv-container); margin: 0 auto; padding: 0 24px; }
.text-gradient {
    background: var(--wv-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.text-muted   { color: var(--wv-text-muted); }
.text-soft    { color: var(--wv-text-soft); }
.text-center  { text-align: center; }
.font-display { font-family: var(--wv-font-display); font-weight: 700; }

.divider { height: 1px; background: var(--wv-border); margin: 24px 0; border: 0; }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--wv-surface-soft);
    color: var(--wv-text-soft);
    border-radius: var(--wv-radius-pill);
    font-size: var(--wv-fs-xs);
    font-weight: 500;
}
.tag--brand { background: var(--wv-gradient-soft); color: var(--wv-coral-deep); }

/* -------------------- Logo / Brand -------------------- */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--wv-font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--wv-text);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.brand:hover { color: var(--wv-text); }
.brand img { height: 96px; width: auto; }
.brand-logo {
    height: 110px;
    width: auto;
    display: block;
    max-width: 100%;
}
.brand-logo--lg { height: 220px; }
.brand-logo--xl { height: 340px; }
.brand-logo--sm { height: 56px; }
.brand-logo--invert { filter: brightness(0) invert(1); }
.brand-mark {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--wv-gradient);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800;
    box-shadow: var(--wv-shadow-brand);
}

/* -------------------- Buttons -------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--wv-radius);
    border: 1px solid transparent;
    background: var(--wv-surface);
    color: var(--wv-text);
    font-weight: 600;
    font-size: var(--wv-fs-base);
    text-decoration: none;
    transition: all var(--wv-trans);
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid rgba(240, 78, 62, 0.3); outline-offset: 2px; }
.btn--primary {
    background: var(--wv-gradient);
    color: #fff;
    box-shadow: var(--wv-shadow-brand);
}
.btn--primary:hover { color: #fff; box-shadow: 0 16px 40px rgba(240, 78, 62, 0.35); }
.btn--ghost {
    background: transparent;
    border-color: var(--wv-border);
    color: var(--wv-text);
}
.btn--ghost:hover { background: var(--wv-surface-soft); }
.btn--soft {
    background: var(--wv-gradient-soft);
    color: var(--wv-coral-deep);
}
.btn--link {
    background: transparent;
    color: var(--wv-coral-deep);
    padding: 8px 4px;
}
.btn--link:hover { color: var(--wv-orange-deep); transform: none; }
.btn--lg { padding: 16px 28px; font-size: var(--wv-fs-lg); border-radius: var(--wv-radius-lg); }
.btn--sm { padding: 8px 14px; font-size: var(--wv-fs-sm); border-radius: var(--wv-radius-sm); }
.btn--block { width: 100%; }
.btn[disabled], .btn:disabled { opacity: 0.5; pointer-events: none; }

/* -------------------- Forms -------------------- */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) {
    .form-row--2 { grid-template-columns: 1fr 1fr; }
    .form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
}
.form-label {
    display: block;
    font-weight: 600;
    font-size: var(--wv-fs-sm);
    margin-bottom: 6px;
    color: var(--wv-text);
}
.form-hint { font-size: var(--wv-fs-xs); color: var(--wv-text-muted); margin-top: 6px; }

.form-control,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--wv-surface);
    border: 1.5px solid var(--wv-border);
    border-radius: var(--wv-radius);
    font: inherit;
    color: var(--wv-text);
    transition: border-color var(--wv-trans), box-shadow var(--wv-trans), background var(--wv-trans);
}
.form-control:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--wv-orange);
    box-shadow: 0 0 0 4px rgba(255, 138, 31, 0.15);
    background: var(--wv-bg-alt);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-control::placeholder { color: var(--wv-text-muted); }
.form-control--lg { padding: 16px 18px; font-size: var(--wv-fs-lg); }

.form-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: var(--wv-fs-sm);
    color: var(--wv-text-soft);
}
.form-checkbox input { width: 18px; height: 18px; accent-color: var(--wv-coral); }

/* -------------------- Cards -------------------- */
.card {
    background: var(--wv-surface);
    border: 1px solid var(--wv-border);
    border-radius: var(--wv-radius-lg);
    padding: 24px;
    transition: box-shadow var(--wv-trans), transform var(--wv-trans);
}
.card--hover:hover {
    box-shadow: var(--wv-shadow);
    transform: translateY(-2px);
}
.card--brand {
    background: var(--wv-gradient);
    color: #fff;
    border: 0;
    box-shadow: var(--wv-shadow-brand);
}
.card--brand h1, .card--brand h2, .card--brand h3, .card--brand p { color: #fff; }
.card--soft { background: var(--wv-surface-soft); border-color: transparent; }
.card__title { margin: 0 0 6px; font-size: var(--wv-fs-xl); }
.card__subtitle { color: var(--wv-text-muted); font-size: var(--wv-fs-sm); margin-bottom: 16px; }

/* -------------------- Alerts -------------------- */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--wv-radius);
    margin-bottom: 16px;
    font-size: var(--wv-fs-sm);
    border: 1px solid;
}
.alert--success { background: #E9F8F0; color: #186943; border-color: #BDE9D2; }
.alert--error   { background: #FDEAE9; color: #9B1F1A; border-color: #F5BFBC; }
.alert--info    { background: #E8F1FD; color: #1B4E96; border-color: #BFDBF7; }
.alert--warn    { background: #FEF6E5; color: #8A5A0F; border-color: #F8D896; }

/* Dark-Mode-Anpassungen fuer Alerts */
[data-theme="dark"] .alert--success {
    background: rgba(43, 182, 115, 0.12);
    color: #6EE3A8;
    border-color: rgba(43, 182, 115, 0.4);
}
[data-theme="dark"] .alert--error {
    background: rgba(230, 57, 70, 0.12);
    color: #FF8A88;
    border-color: rgba(230, 57, 70, 0.4);
}
[data-theme="dark"] .alert--info {
    background: rgba(46, 124, 246, 0.12);
    color: #8DB7F9;
    border-color: rgba(46, 124, 246, 0.4);
}
[data-theme="dark"] .alert--warn {
    background: rgba(245, 166, 35, 0.12);
    color: #F8C56C;
    border-color: rgba(245, 166, 35, 0.4);
}

/* Icons innerhalb der Alerts auf inherit umstellen */
.alert .icon { color: inherit; flex-shrink: 0; }
.alert > span { flex: 1; }

/* -------------------- Auth Layout -------------------- */
.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    background: var(--wv-bg);
}
@media (min-width: 980px) {
    .auth-shell { grid-template-columns: 1fr 1fr; }
}
.auth-pane {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 32px;
}
.auth-pane--brand {
    background: var(--wv-gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.auth-pane--brand::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(60% 60% at 10% 10%, rgba(255,255,255,0.18), transparent 60%),
        radial-gradient(40% 40% at 100% 100%, rgba(255,255,255,0.12), transparent 60%);
    pointer-events: none;
}
.auth-pane--brand > * { position: relative; z-index: 1; }
.auth-card {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}
.auth-card h1 { font-size: var(--wv-fs-3xl); margin-bottom: 8px; }
.auth-card .lead { color: var(--wv-text-muted); margin-bottom: 32px; }
.auth-pane--brand h2 { font-size: var(--wv-fs-4xl); margin-bottom: 12px; color: #fff; }
.auth-pane--brand .lead { color: rgba(255,255,255,0.92); font-size: var(--wv-fs-lg); }
.auth-pane--brand .feature {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.18);
}
.auth-pane--brand .feature:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
.auth-pane--brand .feature__icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.18);
    display: grid; place-items: center;
    font-size: 22px;
}

/* -------------------- App Shell -------------------- */
.app-shell {
    display: grid;
    grid-template-columns: var(--wv-sidebar) 1fr;
    min-height: 100vh;
    background: var(--wv-bg);
}
.app-sidebar {
    background: var(--wv-surface);
    border-right: 1px solid var(--wv-border);
    padding: 24px 16px;
    position: sticky; top: 0;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.app-sidebar .brand { padding: 0 8px 24px; }

.nav-section { padding: 16px 8px 6px; font-size: var(--wv-fs-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--wv-text-muted); }
.nav-link {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 12px; margin: 2px 0;
    border-radius: var(--wv-radius);
    color: var(--wv-text-soft);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--wv-trans);
}
.nav-link:hover { background: var(--wv-surface-soft); color: var(--wv-text); }
.nav-link.is-active {
    background: var(--wv-gradient-soft);
    color: var(--wv-coral-deep);
    font-weight: 600;
}
.nav-link .nav-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--wv-text-muted); transition: color var(--wv-trans); }
.nav-link:hover .nav-icon { color: var(--wv-coral-deep); }
.nav-link.is-active .nav-icon { color: var(--wv-coral-deep); }
.nav-link .nav-badge {
    margin-left: auto;
    background: var(--wv-gradient);
    color: #fff;
    font-size: 10px; font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--wv-radius-pill);
}

.app-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.app-header {
    height: 64px;
    background: var(--wv-bg-alt);
    border-bottom: 1px solid var(--wv-border);
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 10;
    backdrop-filter: blur(10px);
}
.app-header__title { font-size: var(--wv-fs-lg); font-weight: 700; margin: 0; }
.app-header__right { display: flex; align-items: center; gap: 16px; }
.app-content { padding: 32px; flex: 1; }
.app-content__inner { max-width: 1200px; margin: 0 auto; }

@media (max-width: 900px) {
    .app-shell { grid-template-columns: 1fr; }
    .app-sidebar {
        position: fixed; left: -280px; top: 0; width: 260px; z-index: 100;
        transition: left 250ms ease;
    }
    .app-sidebar.is-open { left: 0; box-shadow: var(--wv-shadow-lg); }
    .app-header { padding: 0 16px; }
    .app-content { padding: 16px; }
}

/* XP Bar */
.xp-meter {
    margin-top: auto;
    padding: 16px 12px;
    background: var(--wv-surface-soft);
    border-radius: var(--wv-radius);
}
.xp-meter__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-size: var(--wv-fs-sm); font-weight: 600; }
.xp-meter__bar  { height: 8px; background: var(--wv-border-soft); border-radius: 999px; overflow: hidden; }
.xp-meter__fill { height: 100%; background: var(--wv-gradient); border-radius: 999px; transition: width 400ms ease; }
.xp-meter__meta { display: flex; justify-content: space-between; margin-top: 6px; font-size: var(--wv-fs-xs); color: var(--wv-text-muted); }

/* -------------------- Avatar -------------------- */
.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--wv-gradient);
    display: inline-grid; place-items: center;
    color: #fff;
    font-size: 20px;
    position: relative;
    flex-shrink: 0;
    box-shadow: var(--wv-shadow-sm);
}
.avatar--lg { width: 96px; height: 96px; font-size: 44px; box-shadow: var(--wv-shadow); }
.avatar--xl { width: 140px; height: 140px; font-size: 64px; box-shadow: var(--wv-shadow-lg); }
.avatar--sm { width: 32px; height: 32px; font-size: 16px; }
.avatar__accent {
    position: absolute;
    right: -4px; bottom: -4px;
    background: #fff;
    border-radius: 50%;
    width: 38%; height: 38%;
    display: grid; place-items: center;
    font-size: 50%;
    box-shadow: var(--wv-shadow-xs);
    line-height: 1;
}
.avatar--peach { background: linear-gradient(135deg, #FFD3B0 0%, #FFAA7F 100%); }
.avatar--ocean { background: linear-gradient(135deg, #74C7EC 0%, #2E7CF6 100%); }
.avatar--mint  { background: linear-gradient(135deg, #9BE7C4 0%, #2BB673 100%); }
.avatar--lilac { background: linear-gradient(135deg, #C7B0FF 0%, #7B5CFF 100%); }
.avatar--sun   { background: linear-gradient(135deg, #FFE08A 0%, #FFB347 100%); }
.avatar--night { background: linear-gradient(135deg, #4A4E69 0%, #22223B 100%); }

/* -------------------- Welcome Card (Dashboard) -------------------- */
.welcome-card {
    background: var(--wv-gradient);
    color: #fff;
    border-radius: var(--wv-radius-lg);
    padding: 32px;
    box-shadow: var(--wv-shadow-brand);
    display: grid; gap: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
}
@media (min-width: 880px) {
    .welcome-card { grid-template-columns: 1fr 280px; align-items: center; }
}
.welcome-card__eyebrow {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
}
.welcome-card__title {
    color: #fff;
    font-size: clamp(28px, 3vw, 36px);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}
.welcome-card__sub { color: rgba(255,255,255,0.95); margin: 0 0 20px; font-size: 16px; line-height: 1.55; max-width: 540px; }
.welcome-card__stat {
    background: rgba(255,255,255,0.12);
    border-radius: var(--wv-radius);
    padding: 20px;
    backdrop-filter: blur(6px);
}
.welcome-card__stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.welcome-card__stat-value { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin: 4px 0 12px; }
.welcome-card__stat-value small { font-size: 14px; font-weight: 600; opacity: 0.85; }
.welcome-card__progress { height: 6px; background: rgba(255,255,255,0.22); border-radius: 999px; overflow: hidden; margin-bottom: 10px; }
.welcome-card__progress-fill { height: 100%; background: #fff; border-radius: 999px; transition: width 400ms ease; }
.welcome-card__stat-meta { font-size: 13px; display: flex; align-items: center; gap: 6px; opacity: 0.9; }

/* Badge Grid */
.badge-grid {
    display: grid; gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.badge-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 14px;
    background: var(--wv-surface-soft);
    border-radius: var(--wv-radius);
}
.badge-item__icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--wv-gradient-soft);
    color: var(--wv-coral-deep);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.badge-item__name { font-weight: 700; font-size: 14px; color: var(--wv-text); }
.badge-item__desc { font-size: 12px; color: var(--wv-text-muted); line-height: 1.4; }

/* -------------------- Module Cards (Dashboard) -------------------- */
.modules-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.module-card {
    position: relative;
    padding: 28px;
    border-radius: var(--wv-radius-lg);
    background: var(--wv-surface);
    border: 1px solid var(--wv-border);
    transition: all var(--wv-trans);
    overflow: hidden;
    display: flex; flex-direction: column; gap: 14px;
    min-height: 220px;
}
.module-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--wv-shadow);
    border-color: transparent;
}
.module-card__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--wv-gradient-soft);
    color: var(--wv-coral-deep);
    display: inline-flex; align-items: center; justify-content: center;
}
.module-card__icon--inverse {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.module-card__title { font-size: var(--wv-fs-xl); margin: 0; }
.module-card__desc { color: var(--wv-text-soft); font-size: var(--wv-fs-sm); margin: 0; flex: 1; }
.module-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--wv-coral-deep);
    font-weight: 600;
    font-size: var(--wv-fs-sm);
}
.module-card--accent { background: var(--wv-gradient); color: #fff; border-color: transparent; }
.module-card--accent .module-card__icon { background: rgba(255,255,255,0.2); }
.module-card--accent .module-card__title,
.module-card--accent .module-card__desc,
.module-card--accent .module-card__cta { color: #fff; }
.module-card__lock {
    position: absolute; top: 16px; right: 16px;
    padding: 4px 10px;
    border-radius: var(--wv-radius-pill);
    background: var(--wv-surface-soft);
    color: var(--wv-text-muted);
    font-size: var(--wv-fs-xs);
    font-weight: 600;
}

/* -------------------- Sections (Landing-Page) -------------------- */
.section { padding: 88px 0; }
.section--soft { background: var(--wv-surface-soft); }
.section__head { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section__head h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 16px; }
.section__head .lead { font-size: 17px; color: var(--wv-text-soft); }

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--wv-coral-deep);
    margin-bottom: 12px;
}

.grid-2 {
    display: grid; gap: 56px;
    grid-template-columns: 1fr;
}
@media (min-width: 880px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; } }

/* USPs */
.usp-grid {
    display: grid; gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.usp {
    background: var(--wv-surface);
    border: 1px solid var(--wv-border);
    border-radius: var(--wv-radius-lg);
    padding: 28px;
    transition: all var(--wv-trans);
}
.usp:hover { border-color: var(--wv-coral); transform: translateY(-2px); box-shadow: var(--wv-shadow); }
.usp h3 { font-size: 20px; margin: 16px 0 8px; }
.usp p { color: var(--wv-text-soft); margin: 0; font-size: 15px; line-height: 1.6; }

/* Check-Liste */
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; color: var(--wv-text-soft); }
.check-list li .icon { margin-top: 2px; color: var(--wv-success); flex-shrink: 0; }
.check-list li strong { color: var(--wv-text); }

/* Growth Visual */
.growth-visual { display: flex; flex-direction: column; gap: 16px; }
.growth-card {
    background: var(--wv-surface);
    border: 1px solid var(--wv-border);
    border-radius: var(--wv-radius-lg);
    padding: 24px;
    box-shadow: var(--wv-shadow-xs);
    transition: transform var(--wv-trans);
}
.growth-card:hover { transform: translateY(-1px); }
.growth-card--active {
    border-color: var(--wv-coral);
    box-shadow: var(--wv-shadow);
    transform: translateY(-4px);
}
.growth-card__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wv-text-muted);
    font-weight: 700;
    margin-bottom: 8px;
}
.growth-card--active .growth-card__label { color: var(--wv-coral-deep); }
.growth-card__title { font-size: 18px; font-weight: 700; color: var(--wv-text); margin-bottom: 16px; }
.growth-bars { display: flex; flex-direction: column; gap: 10px; }
.growth-bar {
    display: grid; grid-template-columns: 100px 1fr;
    gap: 12px; align-items: center;
}
.growth-bar span { font-size: 13px; font-weight: 600; color: var(--wv-text-soft); }
.growth-bar__track { height: 8px; background: var(--wv-border-soft); border-radius: 999px; overflow: hidden; }
.growth-bar__fill { height: 100%; background: var(--wv-gradient); border-radius: 999px; }

/* Vergleichstabelle */
.compare-wrap {
    background: var(--wv-surface);
    border: 1px solid var(--wv-border);
    border-radius: var(--wv-radius-lg);
    overflow: hidden;
    box-shadow: var(--wv-shadow-xs);
}
.compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.compare th, .compare td {
    padding: 16px 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--wv-border-soft);
}
.compare thead th {
    background: var(--wv-surface-soft);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--wv-text-soft);
}
.compare thead th.compare__brand {
    background: var(--wv-gradient-soft);
    color: var(--wv-coral-deep);
}
.compare tbody td:first-child {
    width: 28%;
    font-weight: 600;
    color: var(--wv-text);
}
.compare tbody td:nth-child(2) {
    width: 36%;
    background: rgba(255, 138, 31, 0.04);
    color: var(--wv-text);
}
.compare tbody td:nth-child(3) {
    color: var(--wv-text-muted);
}
.compare tbody td .icon { vertical-align: middle; margin-right: 8px; }
.compare tbody tr:last-child td { border-bottom: 0; }
@media (max-width: 720px) {
    .compare, .compare thead, .compare tbody, .compare tr, .compare th, .compare td { display: block; }
    .compare thead { display: none; }
    .compare tr { border-bottom: 1px solid var(--wv-border); padding: 16px 0; }
    .compare td { padding: 8px 20px; border: 0; width: auto !important; }
    .compare td:first-child { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--wv-text-muted); padding-top: 16px; }
    .compare td:nth-child(2)::before { content: 'Wegvio: '; font-weight: 700; color: var(--wv-coral-deep); }
    .compare td:nth-child(3)::before { content: 'ChatGPT: '; font-weight: 700; color: var(--wv-text-muted); }
}

/* Step Cards (3 Module) */
.step-grid {
    display: grid; gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.step-card {
    background: var(--wv-surface);
    border: 1px solid var(--wv-border);
    border-radius: var(--wv-radius-lg);
    padding: 32px;
    position: relative;
    transition: all var(--wv-trans);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--wv-shadow); }
.step-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.step-card__num {
    font-size: 36px;
    font-weight: 800;
    color: var(--wv-border);
    letter-spacing: -0.02em;
    font-family: var(--wv-font-display);
}
.step-card h3 { font-size: 22px; margin: 0 0 10px; }
.step-card p { color: var(--wv-text-soft); margin: 0; font-size: 15px; line-height: 1.6; }

/* CTA */
.cta-card {
    background: var(--wv-gradient);
    color: #fff;
    text-align: center;
    padding: 64px 32px;
    border-radius: var(--wv-radius-lg);
    box-shadow: var(--wv-shadow-brand);
}
.cta-card h2 { color: #fff; font-size: clamp(28px, 3vw, 38px); margin-bottom: 16px; }
.cta-card p { color: rgba(255,255,255,0.95); font-size: 18px; margin-bottom: 24px; }

/* Hero-Trust */
.hero__trust {
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    margin-top: 32px;
    font-size: 13px; color: var(--wv-text-muted);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust .icon { color: var(--wv-text-muted); }

/* -------------------- Hero -------------------- */
.hero {
    text-align: center;
    padding: 96px 0 72px;
    position: relative;
    overflow: hidden;
}
.hero h1 { font-size: clamp(38px, 6.4vw, 68px); margin-bottom: 20px; line-height: 1.05; letter-spacing: -0.03em; }
.hero .lead { font-size: 19px; color: var(--wv-text-soft); max-width: 680px; margin: 0 auto 36px; line-height: 1.55; }
.hero__cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero .tag--brand { margin-bottom: 16px; }
.hero__bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(40% 40% at 80% 20%, rgba(255,138,31,0.15), transparent 70%),
        radial-gradient(50% 50% at 10% 80%, rgba(240,78,62,0.12), transparent 70%);
}

/* -------------------- Module Header (innerhalb von Modul-Seiten) -------------------- */
.module-header {
    display: flex; align-items: center; gap: 16px;
}
.module-header h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 0; letter-spacing: -0.02em; }

/* -------------------- Stat -------------------- */
.stat-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stat {
    padding: 20px;
    border-radius: var(--wv-radius-lg);
    background: var(--wv-surface);
    border: 1px solid var(--wv-border);
}
.stat__label { font-size: var(--wv-fs-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--wv-text-muted); font-weight: 600; }
.stat__value { font-size: var(--wv-fs-3xl); font-weight: 800; margin: 8px 0 2px; letter-spacing: -0.02em; }
.stat__hint  { font-size: var(--wv-fs-sm); color: var(--wv-text-muted); }
.stat__value--brand { background: var(--wv-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* -------------------- Footer -------------------- */
.app-footer {
    border-top: 1px solid var(--wv-border);
    padding: 24px 32px;
    color: var(--wv-text-muted);
    font-size: var(--wv-fs-sm);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* -------------------- Profile Page -------------------- */
.profile-header {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    padding: 28px;
    background: var(--wv-gradient);
    color: #fff;
    border-radius: var(--wv-radius-lg);
    box-shadow: var(--wv-shadow-brand);
    margin-bottom: 24px;
}
.profile-header h2 { color: #fff; margin: 0 0 4px; }
.profile-header .role-pill {
    display: inline-block; padding: 4px 12px;
    background: rgba(255,255,255,0.22);
    border-radius: var(--wv-radius-pill);
    font-size: var(--wv-fs-xs); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
}

.section-title {
    font-size: var(--wv-fs-xl); font-weight: 700;
    margin: 32px 0 16px;
}

/* Mein-Konto: AI-Profil-Übersicht */
.ai-summary-card {
    background: var(--wv-gradient);
    color: #fff;
    border-radius: var(--wv-radius-lg);
    padding: 28px;
    box-shadow: var(--wv-shadow-brand);
}
.ai-summary-card__head {
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 880px) {
    .ai-summary-card__head { grid-template-columns: 1fr auto; }
}
.ai-summary-card__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.ai-summary-card__meta .tag {
    background: rgba(255,255,255,0.22); color: #fff; font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
}
.ai-summary-card__meta .tag--ok { background: rgba(43,182,115,0.85); }
.ai-summary-card__meta .tag--warn { background: rgba(245,166,35,0.85); }
.ai-summary-card__headline { font-size: clamp(22px, 2.4vw, 30px); color: #fff; margin: 0 0 10px; letter-spacing: -0.02em; line-height: 1.2; }
.ai-summary-card__summary { color: rgba(255,255,255,0.95); margin: 0; font-size: 15px; line-height: 1.55; max-width: 720px; }

.ai-mini-grid {
    display: grid; gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 880px) {
    .ai-mini-grid { grid-template-columns: 1.4fr 1fr; }
}

/* RIASEC Bars im Profil-Kontext */
.profile-riasec { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.profile-riasec__row {
    display: grid; grid-template-columns: 180px 1fr 32px;
    gap: 10px; align-items: center;
}
@media (max-width: 540px) {
    .profile-riasec__row { grid-template-columns: 130px 1fr 28px; gap: 8px; }
}
.profile-riasec__label { font-size: 12px; font-weight: 600; color: var(--wv-text-soft); }
.profile-riasec__track { height: 8px; background: var(--wv-border-soft); border-radius: 999px; overflow: hidden; }
.profile-riasec__fill  { height: 100%; background: var(--wv-gradient); border-radius: 999px; transition: width 600ms ease; }
.profile-riasec__val   { font-size: 12px; font-weight: 700; text-align: right; color: var(--wv-text-soft); }

/* Cluster-Chips & Insights */
.cluster-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.cluster-chip {
    padding: 6px 12px;
    background: var(--wv-gradient-soft);
    color: var(--wv-coral-deep);
    border-radius: 999px;
    font-size: 13px; font-weight: 600;
}
.insight-list { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 6px; }
.insight-list li {
    padding: 8px 12px;
    background: var(--wv-surface-soft);
    border-left: 3px solid var(--wv-coral);
    border-radius: 8px;
    font-size: 13px; color: var(--wv-text-soft); line-height: 1.45;
}

/* Sektionen-Mini-Vorschau */
.ai-sections-mini {
    display: grid; gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.ai-mini-section {
    background: var(--wv-surface);
    border: 1px solid var(--wv-border);
    border-radius: var(--wv-radius);
    padding: 14px 16px;
}
.ai-mini-section__title {
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--wv-text-muted); font-weight: 700; margin-bottom: 10px;
}
.ai-mini-section__items { display: flex; flex-wrap: wrap; gap: 6px; }
.mini-chip {
    background: var(--wv-surface-soft); color: var(--wv-text);
    padding: 4px 10px; border-radius: 999px;
    font-size: 12px; font-weight: 500;
}

/* Matching-Teaser im Profil */
.match-teaser-grid {
    display: grid; gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.match-teaser {
    background: var(--wv-surface-soft);
    border-radius: var(--wv-radius);
    padding: 14px 16px;
    border-left: 3px solid var(--wv-orange);
}
.match-teaser__type {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--wv-coral-deep); font-weight: 700; display: block; margin-bottom: 4px;
}
.match-teaser strong { display: block; font-size: 15px; color: var(--wv-text); }
.match-teaser__headline { display: block; font-size: 12px; color: var(--wv-text-muted); margin-top: 4px; }

/* -------------------- Emoji Picker -------------------- */
.emoji-builder {
    display: grid;
    gap: 24px;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
}
@media (max-width: 720px) { .emoji-builder { grid-template-columns: 1fr; } }
.emoji-builder__preview {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 24px; border-radius: var(--wv-radius-lg);
    background: var(--wv-surface-soft);
}
.emoji-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    gap: 6px;
    max-height: 260px;
    overflow-y: auto;
    padding: 8px;
    background: var(--wv-surface-soft);
    border-radius: var(--wv-radius);
}
.emoji-btn {
    aspect-ratio: 1;
    border: 1.5px solid transparent;
    border-radius: var(--wv-radius-sm);
    background: var(--wv-surface);
    font-size: 22px;
    cursor: pointer;
    transition: all 150ms ease;
    display: grid; place-items: center;
}
.emoji-btn:hover { transform: scale(1.1); background: var(--wv-bg-alt); }
.emoji-btn.is-selected { border-color: var(--wv-orange); background: var(--wv-gradient-soft); }

.color-swatches {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.color-swatch {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: transform 150ms ease;
}
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.is-selected { border-color: var(--wv-text); }
.color-swatch[data-color="gradient-orange"] { background: linear-gradient(135deg, #FF8A1F 0%, #F04E3E 100%); }
.color-swatch[data-color="peach"] { background: linear-gradient(135deg, #FFD3B0 0%, #FFAA7F 100%); }
.color-swatch[data-color="ocean"] { background: linear-gradient(135deg, #74C7EC 0%, #2E7CF6 100%); }
.color-swatch[data-color="mint"]  { background: linear-gradient(135deg, #9BE7C4 0%, #2BB673 100%); }
.color-swatch[data-color="lilac"] { background: linear-gradient(135deg, #C7B0FF 0%, #7B5CFF 100%); }
.color-swatch[data-color="sun"]   { background: linear-gradient(135deg, #FFE08A 0%, #FFB347 100%); }
.color-swatch[data-color="night"] { background: linear-gradient(135deg, #4A4E69 0%, #22223B 100%); }

.emoji-tabs { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.emoji-tab {
    padding: 6px 12px;
    background: var(--wv-surface);
    border: 1px solid var(--wv-border);
    border-radius: var(--wv-radius-pill);
    font-size: var(--wv-fs-xs);
    font-weight: 600;
    color: var(--wv-text-soft);
    cursor: pointer;
    transition: all var(--wv-trans);
}
.emoji-tab.is-active { background: var(--wv-text); color: #fff; border-color: var(--wv-text); }

/* -------------------- Marketing / Home -------------------- */
.marketing-shell {
    min-height: 100vh;
    background: var(--wv-bg);
    display: flex; flex-direction: column;
}
.marketing-nav {
    height: var(--wv-header-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px;
    border-bottom: 1px solid var(--wv-border);
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 50;
}
.marketing-nav__links { display: flex; gap: 8px; align-items: center; }
.marketing-nav__links a {
    padding: 8px 14px;
    color: var(--wv-text-soft);
    font-weight: 500;
    border-radius: var(--wv-radius);
    transition: all var(--wv-trans);
}
.marketing-nav__links a:hover { background: var(--wv-surface-soft); color: var(--wv-text); }

/* -------------------- Checker-Warnung (Modul 2 + 3) -------------------- */
.checker-warning {
    background: #FEF6E5;
    border: 1px solid #F5A623;
    border-left: 4px solid #F5A623;
    margin-bottom: 24px;
}
[data-theme="dark"] .checker-warning { background: rgba(245, 166, 35, 0.08); }
.checker-warning__head {
    display: grid; gap: 14px; align-items: center;
    grid-template-columns: auto 1fr auto;
    margin-bottom: 14px;
}
@media (max-width: 720px) {
    .checker-warning__head { grid-template-columns: 1fr; }
}
.checker-warning__icon { color: #B47100; flex-shrink: 0; }
[data-theme="dark"] .checker-warning__icon { color: #F5A623; }
.checker-warning__title strong { font-size: 16px; color: var(--wv-text); }
.checker-warning__issues { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.cw-issue {
    background: var(--wv-surface);
    border-radius: 12px;
    padding: 12px 14px;
    border-left: 3px solid var(--wv-border);
}
.cw-issue--critical { border-left-color: var(--wv-danger); }
.cw-issue--high     { border-left-color: var(--wv-warning); }
.cw-issue--medium   { border-left-color: var(--wv-info); }
.cw-issue--low      { border-left-color: var(--wv-text-muted); }
.cw-issue__head { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 6px; font-size: 12px; }
.cw-issue__sev {
    font-weight: 800; letter-spacing: 0.06em; padding: 2px 8px; border-radius: 6px;
    background: var(--wv-surface-soft); color: var(--wv-text);
}
.cw-issue__sev--critical { background: var(--wv-danger); color: #fff; }
.cw-issue__sev--high     { background: var(--wv-warning); color: #fff; }
.cw-issue__sev--medium   { background: var(--wv-info); color: #fff; }
.cw-issue__cat   { font-weight: 700; color: var(--wv-text-soft); text-transform: capitalize; }
.cw-issue__where { color: var(--wv-text-muted); font-family: monospace; font-size: 11px; }
.cw-issue__desc  { font-size: 14px; color: var(--wv-text); line-height: 1.5; }
.cw-issue__fix   { font-size: 13px; color: var(--wv-text-soft); margin-top: 6px; }

/* -------------------- Share-Liste -------------------- */
.share-list { display: flex; flex-direction: column; gap: 6px; }
.share-list__item {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding: 10px 12px;
    background: var(--wv-surface-soft);
    border-radius: var(--wv-radius);
    font-size: 14px;
}

/* -------------------- Prefs Toggle (Theme/Lang) -------------------- */
.prefs-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--wv-border);
    border-radius: var(--wv-radius-pill);
    color: var(--wv-text-soft);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--wv-trans);
}
.prefs-btn:hover { background: var(--wv-surface-soft); color: var(--wv-text); border-color: var(--wv-coral); }
.prefs-btn .icon { color: currentColor; }
[data-theme="dark"] .prefs-btn:hover { background: var(--wv-surface-soft); }

/* -------------------- Helpers -------------------- */
.flex { display: flex; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.w-full { width: 100%; }
.hidden { display: none; }
@media (max-width: 720px) { .hide-sm { display: none; } }
