/* ============================================================================
   KOREVRA SERVE — Employee app (portal-app / .ea-*)
   Warm paper, saffron subsidy, Fraunces money. Tokens only — dark-safe.
   ==========================================================================*/
.portal-app .ea-phone { background: var(--bg); }
.portal-app .ea-screen { position: relative; }
.ea-view { min-height: 100%; display: flex; flex-direction: column; }
.ea-view-in { flex: 1; display: flex; flex-direction: column; gap: 14px; padding: 50px 16px 20px; }
@media (max-width: 640px) { .ea-view-in { padding-top: max(16px, env(safe-area-inset-top)); } }
.ea-stack { display: flex; flex-direction: column; gap: 14px; }
.ea-press { transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-base), background var(--t-fast), opacity var(--t-base); }
.ea-press:active { transform: scale(0.97); }
.ea-k { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-3); }
.ea-link { color: var(--saffron-ink); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 4px; min-height: 28px; }
.ea-link .ic { width: 14px; height: 14px; }
.ea-page-h { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 4px; }
.ea-page-h h2 { font-size: 28px; }

/* ---- header ---- */
.ea-head { display: flex; align-items: center; gap: 12px; }
.ea-head-user { border-radius: 50%; min-width: 44px; min-height: 44px; display: grid; place-items: center; }
.ea-greet { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }
.ea-sub { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.ea-clock { font-variant-numeric: tabular-nums; }

/* ---- tab bar ---- */
.ea-tabbar { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--card); border-top: 1px solid var(--line); padding: 6px 6px calc(6px + env(safe-area-inset-bottom)); flex: none; z-index: 4; position: relative; }
.ea-tab { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: 52px; border-radius: 14px; font-size: 11px; font-weight: 700; color: var(--ink-4); transition: color var(--t-fast), background var(--t-fast), transform var(--t-fast); }
.ea-tab .ic { width: 22px; height: 22px; transition: transform var(--t-base) var(--ease-spring); }
.ea-tab:active { transform: scale(0.94); }
.ea-tab.is-on { color: var(--saffron-ink); }
.ea-tab.is-on .ic { transform: translateY(-2px); }
.ea-tab.is-on::after { content: ''; position: absolute; bottom: 4px; width: 18px; height: 3px; border-radius: 2px; background: var(--saffron); animation: pop-in 0.4s var(--ease-spring) both; }
.ea-tab-badge { position: absolute; top: 4px; left: calc(50% + 6px); min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--paprika); color: #fff; font-size: 11px; font-weight: 800; display: none; align-items: center; justify-content: center; box-shadow: 0 0 0 2px var(--card); }
.ea-tab-badge.is-on { display: inline-flex; animation: pop-in 0.4s var(--ease-spring) both; }

/* ---- wallet card ---- */
.ea-walletcard { position: relative; overflow: hidden; border-radius: var(--r-3); padding: 16px 18px; color: #fff; background: linear-gradient(135deg, var(--saffron-700) 0%, var(--paprika-600) 100%); box-shadow: 0 14px 34px rgba(228, 87, 46, 0.28); isolation: isolate; }
.ea-walletcard.is-hero { padding: 22px 20px; }
.ea-walletcard-l { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.ea-walletcard .ea-bal { font-size: 36px; line-height: 1.05; margin: 6px 0 10px; color: #fff; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12); }
.ea-walletcard.is-hero .ea-bal { font-size: 46px; }
.ea-walletcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ea-walletcard-note { font-size: 12px; opacity: 0.9; line-height: 1.3; }
.ea-btn-glass { background: rgba(255, 255, 255, 0.18); color: #fff; border-color: rgba(255, 255, 255, 0.35); backdrop-filter: blur(6px); flex: none; min-height: 36px; }
.ea-btn-glass:hover { background: rgba(255, 255, 255, 0.28); }
.ea-walletcard-orb { position: absolute; right: -40px; top: -50px; width: 170px; height: 170px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 65%); pointer-events: none; z-index: -1; }

/* ---- subsidy hero ---- */
.ea-hero { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: var(--r-3); border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow-1); position: relative; overflow: hidden; animation: fade-up 0.5s var(--ease-out) both; }
.ea-hero.is-ready { background: linear-gradient(135deg, var(--card) 0%, var(--card-2) 100%); border-color: color-mix(in srgb, var(--saffron) 45%, var(--line)); }
.ea-hero.is-ready::before { content: ''; position: absolute; inset: 0; background: radial-gradient(260px 140px at 100% 0%, var(--saffron-wash), transparent 70%); pointer-events: none; }
.ea-hero.is-used { border-color: color-mix(in srgb, var(--basil) 35%, var(--line)); }
.ea-hero.is-refused { border-color: color-mix(in srgb, var(--rose) 35%, var(--line)); }
.ea-hero-ring { flex: none; position: relative; }
.ea-hero-ring .ring-fg { animation: ea-ring-draw 1.1s var(--ease-out) both; }
@keyframes ea-ring-draw { from { stroke-dashoffset: 239; } }
.ea-ring-amt { font-size: 14px; color: var(--saffron-ink); }
.ea-hero-tick { flex: none; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--basil); color: #fff; box-shadow: 0 8px 20px rgba(31, 157, 106, 0.35); }
.ea-hero-tick .ic { width: 28px; height: 28px; }
.ea-hero-tick.is-no { background: var(--rose-wash); color: var(--rose-ink); box-shadow: none; }
.ea-hero-body { position: relative; min-width: 0; }
.ea-hero-k { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-3); }
.ea-hero-t { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin: 2px 0 4px; }
.ea-hero-s { font-size: 12.5px; color: var(--ink-2); line-height: 1.4; }
.ea-hero-rules { margin-top: 4px; }

/* ---- today card + timeline ---- */
.ea-today { padding: 16px; }
#ea-today > .ea-today { animation: fade-up 0.5s var(--ease-out) both; }
.ea-today-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.ea-today-head h3 { font-size: 19px; }
.ea-today.is-empty p { margin: 0 0 14px; }
.ea-today.ea-status-ready { border-color: color-mix(in srgb, var(--basil) 50%, var(--line)); box-shadow: 0 0 0 4px var(--basil-wash), var(--shadow-1); }
.ea-tl { list-style: none; margin: 0 0 14px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.ea-tl::before { content: ''; position: absolute; top: 9px; left: 12.5%; right: 12.5%; height: 2px; background: var(--line-2); }
.ea-tl::after { content: ''; position: absolute; top: 9px; left: 12.5%; height: 2px; background: var(--basil); width: calc(75% * var(--p, 0)); transition: width 0.7s var(--ease-out); }
.ea-tl[data-step="1"]::after { --p: 0.3333; } .ea-tl[data-step="2"]::after { --p: 0.6667; } .ea-tl[data-step="3"]::after { --p: 1; }
.ea-tl-step { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; position: relative; }
.ea-tl-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--card); border: 2px solid var(--line-2); display: grid; place-items: center; color: #fff; transition: background var(--t-base), border-color var(--t-base); }
.ea-tl-dot .ic { width: 12px; height: 12px; stroke-width: 3; }
.ea-tl-step.is-done .ea-tl-dot { background: var(--basil); border-color: var(--basil); }
.ea-tl-step.is-now .ea-tl-dot { border-color: var(--saffron); background: var(--saffron); box-shadow: 0 0 0 4px var(--saffron-wash); animation: pop-in 0.45s var(--ease-spring) both, ea-glow 2s ease-in-out 0.5s infinite; }
@keyframes ea-glow { 0%, 100% { box-shadow: 0 0 0 4px var(--saffron-wash); } 50% { box-shadow: 0 0 0 8px var(--saffron-wash); } }
.ea-status-ready .ea-tl-step.is-now .ea-tl-dot { border-color: var(--basil); background: var(--basil); box-shadow: 0 0 0 4px var(--basil-wash); animation-name: pop-in, ea-glow-basil; }
@keyframes ea-glow-basil { 0%, 100% { box-shadow: 0 0 0 4px var(--basil-wash); } 50% { box-shadow: 0 0 0 8px var(--basil-wash); } }
.ea-tl-l { font-size: 11.5px; font-weight: 700; color: var(--ink-4); }
.ea-tl-step.is-done .ea-tl-l, .ea-tl-step.is-now .ea-tl-l { color: var(--ink); }
.ea-tl-t { font-size: 10.5px; color: var(--ink-3); font-variant-numeric: tabular-nums; min-height: 12px; }
.ea-today-code { display: flex; gap: 14px; align-items: center; padding: 12px; border-radius: var(--r-2); background: var(--bg-2); margin-bottom: 12px; }
.ea-qr { background: #fff; border-radius: 12px; padding: 6px; display: inline-grid; place-items: center; flex: none; box-shadow: var(--shadow-1); }
.ea-qr svg { width: 100%; height: auto; }
.ea-today-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ea-today-meta .pickup-code { font-size: 36px; color: var(--ink); margin: 0 0 6px; }
.ea-today-meta .small { margin-top: 6px; }
.ea-sync { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 12px; font-weight: 600; color: var(--paprika-ink); }
.ea-today-money { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 18px; margin-bottom: 12px; }
.ea-today-acts { display: flex; gap: 8px; flex-wrap: wrap; }
.ea-today-acts .btn { min-height: 40px; }
.ea-chip-pop .chip.pop-in { animation: pop-in 0.45s var(--ease-spring) both; }

/* ---- quick actions + popular ---- */
.ea-quick { display: flex; flex-direction: column; gap: 10px; }
.ea-quick-main { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--r-3); background: var(--ink); color: var(--inverse); text-align: left; box-shadow: var(--shadow-2); }
.ea-quick-main > .ic:first-child { width: 26px; height: 26px; color: var(--saffron); }
.ea-quick-main span { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ea-quick-main b { font-size: 16px; } .ea-quick-main small { font-size: 12.5px; opacity: 0.75; }
.ea-quick-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ea-quick-btn { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 8px; border-radius: var(--r-2); background: var(--card); border: 1px solid var(--line); font-size: 12.5px; font-weight: 700; color: var(--ink-2); min-height: 64px; box-shadow: var(--shadow-1); }
.ea-quick-btn .ic { width: 22px; height: 22px; color: var(--saffron-ink); }
.ea-block-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ea-block-head h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.ea-pop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ea-pop-card { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 10px; border-radius: var(--r-2); background: var(--card); border: 1px solid var(--line); text-align: left; box-shadow: var(--shadow-1); min-height: 44px; }
.ea-pop-card:disabled { opacity: 0.55; }
.ea-pop-n { font-size: 12.5px; font-weight: 700; line-height: 1.2; }
.ea-pop-p { font-size: 14px; }
.ea-pop-s { font-size: 11px; color: var(--ink-3); }
.ea-tile { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 24px; background: hsl(var(--h) 70% 90%); box-shadow: inset 0 0 0 1px hsl(var(--h) 50% 75% / 0.6); flex: none; }
.ea-tile-lg { width: 64px; height: 64px; font-size: 32px; border-radius: 16px; }
.ea-tile-sm { width: 34px; height: 34px; font-size: 18px; border-radius: 9px; }
[data-theme="dark"] .ea-tile { background: hsl(var(--h) 40% 22%); box-shadow: inset 0 0 0 1px hsl(var(--h) 45% 35% / 0.7); }

/* ---- menu ---- */
.ea-cats { width: 100%; overflow-x: auto; scrollbar-width: none; }
.ea-cats::-webkit-scrollbar { display: none; }
.ea-cats button { flex: 1; min-height: 36px; white-space: nowrap; }
.ea-dishes { display: flex; flex-direction: column; gap: 10px; }
.ea-dish { display: flex; gap: 12px; padding: 12px; transition: opacity var(--t-base), transform var(--t-base); }
.ea-dish.is-out { opacity: 0.6; }
.ea-dish.is-out .ea-tile { filter: grayscale(0.8); }
.ea-dish-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.ea-dish-top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.ea-dish-top h4 { font-size: 15px; line-height: 1.25; }
.ea-dish-p { font-size: 16px; flex: none; }
.ea-dish-d { font-size: 12.5px; color: var(--ink-3); line-height: 1.35; }
.ea-dish-tags { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.ea-dish-tags .chip { padding: 3px 8px; font-size: 11px; }
.ea-prep { display: inline-flex; align-items: center; gap: 3px; font-size: 11.5px; color: var(--ink-3); font-weight: 600; }
.ea-prep .ic { width: 12px; height: 12px; }
.ea-dish-add { display: flex; justify-content: flex-end; margin-top: 2px; }
.ea-dish-add .btn { min-height: 36px; }
.ea-dish-add .stepper button, .ea-line .stepper button { width: 36px; height: 36px; }
.ea-qty.ea-pop { animation: ea-qty-pop 0.3s var(--ease-spring); }
@keyframes ea-qty-pop { 0% { transform: scale(1); } 50% { transform: scale(1.35); } 100% { transform: scale(1); } }
.ea-bar-wrap { position: sticky; bottom: 8px; margin-top: auto; padding-top: 8px; z-index: 3; }
.ea-bar { display: flex; align-items: center; gap: 12px; width: 100%; padding: 12px 14px; border-radius: var(--r-3); background: var(--ink); color: var(--inverse); box-shadow: var(--shadow-3); text-align: left; animation: fade-up 0.35s var(--ease-out) both; min-height: 56px; }
.ea-bar > span.grow { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ea-bar b { font-size: 15px; } .ea-bar small { font-size: 12px; opacity: 0.75; }
.ea-bar .money { font-size: 18px; }
.ea-bar .badge-n { background: var(--saffron); color: #17121F; min-width: 24px; height: 24px; font-size: 13px; }
.ea-bar .ic { color: var(--saffron); }

/* ---- orders ---- */
.ea-group { margin-bottom: 8px; }
.ea-group-h { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-3); padding: 8px 0 4px; position: sticky; top: 0; background: var(--bg); z-index: 1; }
.ea-order { width: 100%; text-align: left; min-height: 64px; border-radius: 10px; }
.ea-order:hover { background: var(--bg-2); }
.ea-order-em { font-size: 22px; flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-2); display: grid; place-items: center; letter-spacing: -4px; }
.ea-order .t, .ea-stm .t { display: block; font-size: 14px; line-height: 1.3; }
.ea-order .s, .ea-stm .s { display: block; margin-top: 2px; }
.ea-order-r { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex: none; }
.ea-order-r .money { font-size: 15px; }
.ea-order-r .chip { padding: 2px 8px; font-size: 11px; }

/* ---- sheets (rendered in body > .modal, scoped by .ea-sheet) ---- */
.ea-sheet { display: flex; flex-direction: column; gap: 10px; }
.ea-sheet-acts { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; margin-top: 10px; padding-bottom: env(safe-area-inset-bottom); }
.ea-sheet-acts .btn { min-height: 44px; }
.ea-sheet-acts .btn-block { width: 100%; }
.ea-kv { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 14px; padding: 5px 0; }
.ea-kv > span:first-child { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); }
.ea-kv b { font-weight: 700; }
.ea-kv-big { font-size: 17px; border-top: 1px dashed var(--line-2); margin-top: 4px; padding-top: 9px; }
.ea-kv.ink-saffron > span:first-child { color: var(--saffron-ink); }
.ea-quote { background: var(--bg-2); border-radius: var(--r-2); padding: 8px 14px; }
.ea-lines { display: flex; flex-direction: column; }
.ea-line { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.ea-line:last-child { border-bottom: 0; }
.ea-line-q { font-weight: 800; color: var(--ink-3); min-width: 26px; }
.ea-line-m { min-width: 64px; text-align: right; }
.ea-line .grow { min-width: 0; font-size: 14px; }
.ea-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ea-amt { display: inline-flex; align-items: center; gap: 5px; min-height: 40px; padding: 8px 14px; border-radius: var(--r-pill); background: var(--bg-2); border: 1.5px solid transparent; font-weight: 700; font-size: 14px; color: var(--ink-2); font-variant-numeric: tabular-nums; transition: all var(--t-fast); }
.ea-amt:active { transform: scale(0.95); }
.ea-amt.is-on { background: var(--saffron-wash); border-color: var(--saffron); color: var(--saffron-ink); }
.ea-amt .ic { width: 14px; height: 14px; }
.ea-slots { max-height: 132px; overflow-y: auto; }
.ea-seg { display: flex; width: 100%; overflow-x: auto; scrollbar-width: none; }
.ea-seg::-webkit-scrollbar { display: none; }
.ea-seg button { flex: 1; min-height: 38px; white-space: nowrap; padding: 7px 10px; }
.ea-note { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--ink-2); line-height: 1.45; padding: 12px; border-radius: var(--r-2); background: var(--teal-wash); }
.ea-note .ic { flex: none; color: var(--teal-ink); margin-top: 2px; }
.ea-detail-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.ea-code-sm { font-size: 28px; }
.ea-split { background: var(--bg-2); border-radius: var(--r-2); padding: 6px 14px; }
.ea-journal { padding: 10px 12px; border-radius: var(--r-2); border: 1px solid var(--line); background: var(--card-2); display: flex; flex-direction: column; gap: 3px; }
.ea-qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 10px 0; }
.ea-qr-c { margin: 6px auto; }
.ea-success { align-items: center; text-align: center; gap: 8px; padding-top: 4px; }
.ea-success h2 { font-size: 28px; }
.ea-success-tick { width: 72px; height: 72px; border-radius: 50%; background: var(--basil); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(31, 157, 106, 0.4); }
.ea-success-tick .ic { width: 36px; height: 36px; stroke-width: 2.6; }
.ea-success .pickup-code { color: var(--ink); }
.ea-success .ea-sheet-acts { width: 100%; }
.ea-myqr { align-items: center; text-align: center; gap: 6px; }
.ea-myqr h3 { margin-top: 6px; }
.ea-myqr .ea-note { text-align: left; }
.ea-rules { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ea-rules li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.4; }
.ea-rules .ic { flex: none; margin-top: 3px; }
.ea-priv h4 { font-size: 14px; margin-bottom: 3px; }
.ea-priv p { font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.ea-persona { width: 100%; text-align: left; min-height: 60px; border-radius: 10px; }
.ea-persona.is-cur { background: var(--saffron-wash); padding-left: 8px; padding-right: 8px; }
.ea-persona .s .chip { vertical-align: middle; }
.ea-err { animation: pop-in 0.35s var(--ease-spring) both; }

/* ---- wallet ---- */
.ea-tabs { margin-top: 4px; }
.ea-tabs .tab { flex: 1; justify-content: center; min-height: 44px; }
.ea-stm { min-height: 60px; }
.ea-stm-ic { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; flex: none; background: var(--bg-2); color: var(--ink-2); }
.ea-stm-ic.is-in { background: var(--basil-wash); color: var(--basil-ink); }
.ea-stm-ic.is-out { background: var(--saffron-wash); color: var(--saffron-ink); }
.ea-subst { padding: 16px; }
.ea-subst-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.ea-subst-v { font-size: 26px; line-height: 1.1; margin-top: 2px; }
.ea-subst-row { min-height: 56px; }
.ea-subst-day { font-size: 12px; font-weight: 700; color: var(--ink-3); width: 62px; flex: none; line-height: 1.2; }

/* ---- more ---- */
.ea-profile h3 { font-size: 20px; }
.ea-list { padding: 4px 6px; display: flex; flex-direction: column; }
.ea-row { display: flex; align-items: center; gap: 12px; width: 100%; padding: 12px 10px; min-height: 56px; border-bottom: 1px solid var(--line); text-align: left; border-radius: 10px; }
.ea-row:last-child { border-bottom: 0; }
.ea-row > .ic, .ea-row .ic-w .ic { width: 22px; height: 22px; color: var(--saffron-ink); flex: none; }
.ea-row .ic-w { display: grid; place-items: center; flex: none; }
.ea-row > .ic:last-child { color: var(--ink-4); width: 18px; height: 18px; }
.ea-row .grow { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ea-row b { font-size: 14.5px; } .ea-row small { font-size: 12px; color: var(--ink-3); }
.ea-row .switch { min-width: 44px; }
.ea-stars { display: inline-flex; gap: 0; }
.ea-star { width: 32px; height: 44px; display: grid; place-items: center; color: var(--ink-4); transition: color var(--t-fast), transform var(--t-fast); }
.ea-star .ic { width: 20px; height: 20px; }
.ea-star.is-on { color: var(--saffron); }
.ea-star.is-on .ic { fill: var(--saffron); }
.ea-star:active { transform: scale(0.85); }
.ea-version { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 14px 0 6px; text-align: center; }

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .ea-hero-ring .ring-fg, .ea-tl-step.is-now .ea-tl-dot, .ea-tab.is-on::after, .ea-bar, #ea-today > .ea-today, .ea-hero { animation: none !important; }
}
