:root {
  color-scheme: light dark;
  --bg: #F1F5F9;
  --bg-deep: #FFFFFF;
  --surface: rgba(255, 255, 255, .72);
  --surface-strong: rgba(255, 255, 255, .88);
  --surface-soft: rgba(255, 255, 255, .56);
  --line: rgba(15, 23, 42, .08);
  --text: #0F172A;
  --muted: #475569;
  --navy: #0A1128;
  --blue: #00B4D8;
  --teal: #10B981;
  --green: #10B981;
  --gold: #F59E0B;
  --danger: #EF4444;
  --shadow: 0 12px 32px rgba(15, 23, 42, .08);
  --radius-lg: 26px;
  --radius-md: 18px;
  --tap: 44px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0A1128;
    --bg-deep: #121E36;
    --surface: rgba(18, 30, 54, .65);
    --surface-strong: rgba(26, 42, 74, .75);
    --surface-soft: rgba(18, 30, 54, .48);
    --line: rgba(255, 255, 255, .14);
    --text: #F8FAFC;
    --muted: #94A3B8;
    --shadow: 0 12px 32px rgba(0, 0, 0, .37);
  }
}

html[data-theme="light"] { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }
html[data-theme="dark"] {
  --bg: #0A1128; --bg-deep: #121E36; --surface: rgba(18,30,54,.65); --surface-strong: rgba(26,42,74,.75); --surface-soft: rgba(18,30,54,.48); --line: rgba(255,255,255,.14); --text: #F8FAFC; --muted: #94A3B8; --shadow: 0 12px 32px rgba(0,0,0,.37);
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; color: var(--text); background-color: var(--bg); background-image: radial-gradient(circle at 10% 20%, rgba(0,180,216,.12) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(16,185,129,.10) 0%, transparent 40%); background-attachment: fixed; min-height: 100dvh; overflow-x: hidden; }
button, input, select { font: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(25,118,210,.55); outline-offset: 3px; }
.ambient { position: fixed; pointer-events: none; filter: blur(2px); opacity: .7; z-index: -1; border-radius: 50%; }
.ambient-one { width: 36vw; height: 36vw; max-width: 470px; max-height: 470px; left: -16vw; top: 18vh; background: rgba(16,185,129,.12); }
.ambient-two { width: 32vw; height: 32vw; max-width: 420px; max-height: 420px; right: -10vw; top: 6vh; background: rgba(0,180,216,.12); }
.app-shell { width: min(100%, 1440px); margin: 0 auto; padding: 0 16px 112px; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0 20px; position: sticky; top: 0; z-index: 10; background: linear-gradient(var(--bg) 72%, transparent); }
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; overflow: hidden; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,180,216,.25); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-title { margin: 0; font-size: 20px; letter-spacing: -.04em; }
.brand-subtitle { margin: 2px 0 0; color: var(--muted); font-size: 12px; white-space: nowrap; }
.top-actions { display: flex; align-items: center; gap: 8px; }
.sync-pill { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; white-space: nowrap; }
.sync-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(72,184,120,.13); }
.icon-button, .button { min-height: var(--tap); border: 1px solid var(--line); border-radius: 14px; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.icon-button { width: var(--tap); display: grid; place-items: center; color: var(--text); background: var(--surface-soft); }
.icon-button:hover, .button:hover { transform: translateY(-2px); background: var(--surface-strong); }
.icon-button:active, .button:active { transform: scale(.97); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; color: var(--text); background: var(--surface-soft); font-weight: 700; }
.button.primary { color: #fff; border-color: transparent; background: linear-gradient(135deg, #00B4D8, #10B981); box-shadow: 0 10px 24px rgba(0,180,216,.25); }
.button.secondary { color: var(--blue); border-color: rgba(0,180,216,.25); background: rgba(0,180,216,.08); }
.button.ghost { background: transparent; }
.button.danger { color: var(--danger); border-color: rgba(201,81,90,.2); background: rgba(201,81,90,.07); }
.button.compact { min-height: 38px; padding: 8px 12px; font-size: 13px; }
.desktop-nav { display: none; }
.view { animation: reveal .32s ease both; }
@keyframes reveal { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.view-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin: 10px 0 20px; }
.view-heading h1 { margin: 0; font-size: clamp(27px, 5vw, 42px); line-height: 1.05; letter-spacing: -.045em; }
.view-heading p { margin: 8px 0 0; color: var(--muted); }
.eyebrow { margin: 0 0 8px; color: var(--teal); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.card { min-width: 0; padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.card h2, .card h3 { margin: 0; letter-spacing: -.025em; }
.hero-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.today-card { min-height: 236px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(135deg, #101B35 0%, #080E20 100%); color: #fff; border-color: rgba(0,180,216,.35); box-shadow: 0 16px 40px rgba(0,0,0,.34); position: relative; overflow: hidden; }
.today-card::after { content: ""; width: 230px; height: 230px; position: absolute; right: -80px; bottom: -100px; border-radius: 50%; background: rgba(255,255,255,.13); }
.today-card .eyebrow, .today-card .muted { color: rgba(255,255,255,.74); }
.today-card .card-top, .today-card .card-main, .today-card .today-footer { position: relative; z-index: 1; }
.card-top, .today-footer { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.today-footer { align-items: flex-end; }
.today-footer > .trend { flex: 0 0 auto; font-size: clamp(1.35rem, 2.5vw, 1.75rem); line-height: 1; letter-spacing: -.035em; white-space: nowrap; text-shadow: 0 0 18px rgba(16,185,129,.42); }
.muted { color: var(--muted); }
.tiny { font-size: 12px; }
.display-number { font-size: clamp(52px, 13vw, 88px); font-weight: 800; line-height: .9; letter-spacing: -.075em; white-space: nowrap; }
.unit { font-size: 18px; font-weight: 700; margin-left: 6px; }
.trend { color: var(--green); font-weight: 800; }
.trend.negative { color: var(--teal); }
.trend.warning { color: var(--gold); }
.goal-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 236px; background: linear-gradient(145deg, rgba(255,255,255,.76), rgba(0,180,216,.07)); }
html[data-theme="dark"] .goal-card { background: linear-gradient(145deg, rgba(18,30,54,.78), rgba(16,185,129,.10)); }
.goal-number { font-size: clamp(52px, 12vw, 78px); font-weight: 800; letter-spacing: -.07em; line-height: .95; color: var(--teal); white-space: nowrap; }
.progress-wrap { margin-top: 18px; }
.progress-label { display: flex; justify-content: space-between; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 700; }
.progress-track { height: 11px; margin-top: 8px; overflow: hidden; border-radius: 999px; background: rgba(12,49,69,.1); }
.progress-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), #ffd45a); box-shadow: 0 0 18px rgba(232,170,44,.45); transition: width .65s ease; }
.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 14px 0; }
.metric { padding: 16px; min-width: 0; }
.metric-label { color: var(--muted); font-size: 12px; font-weight: 700; }
.metric-value { margin-top: 7px; font-size: clamp(20px, 5vw, 28px); font-weight: 800; letter-spacing: -.04em; overflow-wrap: anywhere; }
.metric-note { margin-top: 3px; color: var(--muted); font-size: 12px; }
.section-grid { display: grid; gap: 14px; }
.chart-card { min-height: 270px; }
.chart-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.chart-header h2 { font-size: 18px; }
.chart-wrap { height: 190px; position: relative; }
canvas { width: 100%; height: 100%; display: block; }
.chart-legend { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; color: var(--muted); font-size: 12px; }
.legend-item { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.legend-dot.blue { background: var(--blue); }
.legend-dot.gold { background: var(--gold); }
.quick-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.form-grid { display: grid; gap: 14px; }
.field { min-width: 0; }
.field label { display: block; margin: 0 0 7px; color: var(--muted); font-size: 13px; font-weight: 800; }
.field input, .field select { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--text); border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); outline: none; }
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(25,118,210,.11); }
.field input[aria-invalid="true"] { border-color: var(--danger); }
.field-help { min-height: 17px; margin-top: 6px; color: var(--danger); font-size: 12px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.preview-card { display: flex; align-items: center; gap: 18px; margin-top: 14px; padding: 16px; border-radius: var(--radius-md); background: rgba(13,159,153,.09); border: 1px solid rgba(13,159,153,.17); }
.preview-bmi { font-size: 38px; font-weight: 800; color: var(--teal); letter-spacing: -.06em; }
.profile-switcher { display: flex; gap: 9px; overflow-x: auto; padding: 2px 0 4px; scrollbar-width: thin; }
.profile-chip { min-height: 44px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; color: var(--muted); background: var(--surface-soft); border: 1px solid var(--line); border-radius: 999px; font-weight: 800; }
.profile-chip.active { color: var(--text); border-color: rgba(25,118,210,.38); box-shadow: 0 5px 20px rgba(25,118,210,.13); }
.profile-avatar { width: 25px; height: 25px; display: grid; place-items: center; color: white; border-radius: 50%; font-size: 11px; font-weight: 800; }
.notice { display: flex; gap: 10px; align-items: flex-start; padding: 14px; color: var(--muted); border-radius: 16px; background: var(--surface-soft); border: 1px solid var(--line); font-size: 13px; line-height: 1.45; }
.notice strong { color: var(--text); }
.history-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.toolbar-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-select { min-height: 42px; padding: 8px 12px; color: var(--text); background: var(--surface-soft); border: 1px solid var(--line); border-radius: 12px; }
.history-list { display: grid; gap: 10px; }
.history-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.history-date { color: var(--muted); font-size: 12px; font-weight: 700; }
.history-weight { margin-top: 3px; font-size: 22px; font-weight: 800; letter-spacing: -.04em; }
.history-info { display: flex; flex-wrap: wrap; gap: 8px 13px; margin-top: 5px; color: var(--muted); font-size: 12px; }
.history-actions { display: flex; align-items: center; gap: 7px; }
.empty-state { padding: 34px 16px; color: var(--muted); text-align: center; }
.empty-state strong { display: block; margin-bottom: 6px; color: var(--text); }
.settings-grid { display: grid; gap: 14px; }
.settings-card { min-width: 0; }
.settings-card h2 { margin-bottom: 15px; font-size: 19px; }
.setting-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line); }
.setting-row:first-of-type { border-top: 0; padding-top: 0; }
.setting-copy { min-width: 0; }
.setting-copy strong { display: block; font-size: 14px; }
.setting-copy span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.profile-list { display: grid; gap: 10px; }
.profile-editor { display: grid; gap: 11px; padding: 15px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-md); }
.profile-editor-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.profile-editor-title { display: flex; align-items: center; gap: 9px; font-weight: 800; }
.color-input { width: 46px !important; padding: 3px !important; }
.switch { width: 48px; height: 28px; position: relative; flex: 0 0 auto; border: 0; border-radius: 999px; background: rgba(96,116,135,.3); }
.switch::after { content: ""; width: 22px; height: 22px; position: absolute; top: 3px; left: 3px; border-radius: 50%; background: white; transition: transform .2s ease; }
.switch.on { background: var(--teal); }
.switch.on::after { transform: translateX(20px); }
.tdee-layout { display: grid; gap: 14px; align-items: start; margin-top: 14px; }
.tdee-form, .tdee-side { min-width: 0; }
.tdee-side { display: grid; gap: 14px; }
.tdee-section-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.tdee-section-head h2, .tdee-calibration h2 { margin: 0; font-size: 22px; }
.tdee-fieldset { min-width: 0; margin: 0 0 22px; padding: 0; border: 0; }
.tdee-fieldset legend { margin-bottom: 11px; color: var(--text); font-size: 13px; font-weight: 800; }
.tdee-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 9px; }
.tdee-choice { min-height: 52px; display: flex; align-items: center; gap: 10px; padding: 10px 13px; color: var(--text); background: var(--surface-soft); border: 1px solid var(--line); border-radius: 14px; font-weight: 800; }
.tdee-choice strong { color: var(--muted); font-size: 22px; }
.tdee-choice.selected { border-color: rgba(0,180,216,.48); background: linear-gradient(135deg, rgba(0,180,216,.15), rgba(16,185,129,.15)); box-shadow: 0 6px 18px rgba(0,180,216,.12); }
.tdee-choice.selected strong { color: var(--blue); }
.tdee-met { margin-top: 10px; padding: 11px 13px; color: var(--teal); background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.17); border-radius: 12px; font-size: 13px; font-weight: 800; }
.tdee-submit { width: 100%; margin-top: 2px; }
.tdee-disclaimer { margin: 11px 0 0; text-align: center; }
.tdee-result { min-height: 350px; color: #F8FAFC; background: linear-gradient(135deg, #101B35 0%, #080E20 100%); border-color: rgba(0,180,216,.35); }
.tdee-result.empty { display: flex; flex-direction: column; justify-content: center; }
.tdee-result h2 { margin: 8px 0 10px; font-size: 25px; }
.tdee-result .muted, .tdee-result.empty p { color: #A9BBCD; }
.tdee-goal-label { margin: 10px 0 4px; color: #FFD1AE; font-size: 13px; font-weight: 800; }
.tdee-target { color: var(--gold); font-size: clamp(42px, 6vw, 64px); font-weight: 800; line-height: 1; letter-spacing: -.06em; white-space: nowrap; }
.tdee-target span, .tdee-maintenance span { color: #A9BBCD; font-size: 13px; letter-spacing: 0; }
.tdee-maintenance { margin: 18px 0 12px; padding: 15px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 15px; }
.tdee-maintenance small { display: block; color: #A9BBCD; font-size: 12px; }
.tdee-maintenance strong { display: block; margin-top: 3px; font-size: clamp(23px, 4vw, 33px); letter-spacing: -.035em; }
.tdee-stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
.tdee-stats > div { min-width: 0; padding: 11px; background: rgba(255,255,255,.06); border-radius: 12px; }
.tdee-stats small { display: block; color: #9BB2BE; font-size: 11px; }
.tdee-stats strong { display: block; margin-top: 3px; overflow-wrap: anywhere; }
.tdee-breakdown { display: flex; height: 10px; margin-top: 18px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.tdee-breakdown i { display: block; min-width: 0; }
.tdee-breakdown .resting, .tdee-legend .resting { background: #6AD9D0; }
.tdee-breakdown .movement, .tdee-legend .movement { background: #FFB875; }
.tdee-breakdown .training, .tdee-legend .training { background: #73A6ED; }
.tdee-breakdown .tef, .tdee-legend .tef { background: #C99BE8; }
.tdee-legend { display: flex; flex-wrap: wrap; gap: 7px 13px; margin-top: 9px; color: #B8C8D2; font-size: 11px; }
.tdee-legend i { width: 7px; height: 7px; display: inline-block; margin-right: 5px; border-radius: 50%; }
.tdee-calibration > .muted { margin: 7px 0 16px; }
.tdee-calibration-output { margin-top: 14px; padding: 13px; color: var(--teal); background: rgba(16,185,129,.08); border-radius: 13px; font-size: 13px; line-height: 1.45; }
.tdee-method summary { cursor: pointer; font-weight: 800; }
.tdee-method dl { display: grid; grid-template-columns: auto 1fr; gap: 9px 12px; margin: 17px 0 0; }
.tdee-method dt { color: var(--blue); font-weight: 800; }
.tdee-method dd { margin: 0; color: var(--muted); font-size: 13px; }
.modal-backdrop { position: fixed; inset: 0; z-index: 30; display: grid; place-items: center; padding: 16px; background: rgba(4,18,32,.52); backdrop-filter: blur(8px); }
.modal { width: min(100%, 430px); padding: 22px; background: var(--surface-strong); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 25px 90px rgba(0,0,0,.28); animation: reveal .2s ease both; }
.modal h2 { margin: 0 0 8px; font-size: 22px; }
.modal p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 14px; }
.modal-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.toast-root { position: fixed; left: 50%; bottom: calc(86px + env(safe-area-inset-bottom)); z-index: 40; width: min(calc(100% - 32px), 380px); transform: translateX(-50%); pointer-events: none; }
.toast { padding: 12px 16px; color: white; background: #10344f; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; box-shadow: 0 12px 30px rgba(0,0,0,.22); text-align: center; animation: toast-in .22s ease both; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 20; display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); background: rgba(235,246,247,.78); border-top: 1px solid var(--line); box-shadow: 0 -14px 35px rgba(8,35,52,.12); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); }
@media (prefers-color-scheme: dark) { .bottom-nav { background: rgba(6,25,41,.8); } }
html[data-theme="dark"] .bottom-nav { background: rgba(6,25,41,.8); }
.nav-item { min-height: 54px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--muted); background: transparent; border: 0; border-radius: 15px; font-size: 11px; font-weight: 800; }
.nav-item.active { color: var(--blue); background: linear-gradient(135deg, rgba(0,180,216,.18), rgba(16,185,129,.18)); }
.nav-icon { font-size: 20px; line-height: 1; }
.desktop-only { display: none !important; }

@media (min-width: 560px) {
  .app-shell { padding-inline: 24px; }
  .topbar { padding-top: 23px; }
  .hero-grid { grid-template-columns: minmax(0, 1.18fr) minmax(250px, .82fr); }
  .form-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .form-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .section-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .settings-grid { grid-template-columns: repeat(2, minmax(0,1fr)); align-items: start; }
  .settings-grid .profiles-card { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .app-shell { padding: 0 40px 50px; }
  .topbar { position: relative; padding: 28px 0 18px; background: transparent; }
  .desktop-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; margin-right: 8px; }
  .desktop-nav .nav-item { min-height: 40px; flex-direction: row; padding: 8px 12px; gap: 7px; }
  .desktop-nav .nav-icon { font-size: 17px; }
  .bottom-nav { display: none; }
  .desktop-only { display: inline-flex !important; }
  .metric-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .section-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .chart-card { min-height: 300px; }
  .history-list { gap: 0; }
  .history-row { grid-template-columns: 1.2fr .7fr .8fr 1fr auto; padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .history-row:first-child { border-top: 1px solid var(--line); }
  .history-row .history-info { margin-top: 0; }
  .history-actions { justify-content: flex-end; }
  .tdee-layout { grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: 18px; }
}

@media (min-width: 900px) and (max-width: 1120px) {
  .top-actions .sync-pill { display: none; }
  .desktop-nav .nav-item { padding-inline: 9px; }
}

@media (min-width: 1200px) {
  .app-shell { padding-inline: 54px; }
  .hero-grid { gap: 18px; }
  .card { padding: 24px; }
}

@media (pointer: fine) and (min-width: 900px) {
  .card { transition: transform .25s ease, box-shadow .25s ease; }
  .card:hover { transform: translateY(-2px); box-shadow: 0 28px 76px rgba(16,48,69,.16), 0 3px 12px rgba(16,48,69,.06); }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; } }
@media (prefers-reduced-transparency: reduce) { .card, .bottom-nav, .topbar { background: var(--surface-strong); backdrop-filter: none; -webkit-backdrop-filter: none; } }
@media (max-width: 400px) { .brand-subtitle { display: none; } .top-actions .sync-pill { display: none; } .app-shell { padding-inline: 12px; } .card { padding: 17px; border-radius: 22px; } .quick-actions .button { flex: 1 1 140px; } }
