/* ===== Tokens ===== */
:root,
[data-theme="dark"] {
  --bg: #13100D;
  --bg-deep: #0B0907;
  --surface: #1A1612;
  --surface-2: #1D1915;
  --surface-3: #26211B;
  --line: #2C261F;
  --line-strong: #3A3229;
  --track: #2E2822;
  --text: #F6EFE4;
  --muted: #A89A88;
  --faint: #6F6356;
  --accent: #F2B632;
  --accent-hover: #F7CA63;
  --on-accent: #1A1409;
  --income: #7CC6B8;
  --income-bg: #172826;
  --expense: #F08A6C;
  --expense-bg: #2A1D17;
  --danger: #F08A6C;
  --shadow-accent: rgba(242, 182, 50, 0.25);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #FBF6EF;
  --bg-deep: #EFE6D8;
  --surface: #FFFFFF;
  --surface-2: #F7EEE2;
  --surface-3: #F1E6D6;
  --line: #EADFCF;
  --line-strong: #E2D3BF;
  --track: #F1E6D6;
  --text: #2A2118;
  --muted: #6B5D4F;
  --faint: #A89886;
  --accent: #B4492F;
  --accent-hover: #9C3D26;
  --on-accent: #FFF8F0;
  --income: #2E6B63;
  --income-bg: #E3F0EC;
  --expense: #9C3D26;
  --expense-bg: #FBEDE7;
  --danger: #9C3D26;
  --shadow-accent: rgba(180, 73, 47, 0.28);
  color-scheme: light;
}

:root {
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;
  --tabbar-h: 80px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  background: var(--bg-deep);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

#app {
  max-width: 480px;
  min-height: 100dvh;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
}

h1, h2, h3, p { margin: 0; }

button, input, select { font: inherit; color: inherit; }

button { cursor: pointer; }

a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.ic { display: inline-flex; line-height: 0; }
.ic svg {
  width: 1em; height: 1em;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ===== Boot ===== */
.boot {
  min-height: 100dvh;
  display: grid;
  place-items: center;
}

.brand-mark {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--on-accent);
  display: grid; place-items: center;
  font-size: 28px; font-weight: 800;
}
.boot .brand-mark { animation: pulse 1.4s ease-in-out infinite; }

@keyframes pulse { 50% { opacity: 0.55; transform: scale(0.94); } }

/* ===== Screen layouts ===== */
.screen {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: calc(var(--safe-top) + 48px) 24px calc(var(--safe-bottom) + 28px);
}

.screen--tabbed {
  gap: 18px;
  padding: calc(var(--safe-top) + 36px) 20px calc(var(--safe-bottom) + var(--tabbar-h) + 28px);
}

.push-bottom { margin-top: auto; }

.stack { display: flex; flex-direction: column; gap: 12px; }
.stack--tight { gap: 8px; }
.row { display: flex; align-items: center; gap: 12px; }
.row--between { justify-content: space-between; }

.muted { color: var(--muted); }
.small { font-size: 13px; line-height: 1.5; }
.center { text-align: center; }

.title-xl { font-size: 32px; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
.title-lg { font-size: 28px; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
.title-md { font-size: 17px; font-weight: 700; }
.lead { font-size: 16px; color: var(--muted); }

/* ===== Brand ===== */
.brand { display: flex; align-items: center; gap: 10px; }
.brand .brand-mark { width: 38px; height: 38px; border-radius: 12px; font-size: 20px; }
.brand-name { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }

/* ===== Buttons ===== */
.btn {
  min-height: 58px;
  padding: 0 24px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 16px; font-weight: 800;
  text-decoration: none;
  transition: background-color 0.15s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn .ic { font-size: 20px; }

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover:not([disabled]) { background: var(--accent-hover); color: var(--on-accent); }

.btn--secondary { background: var(--surface-2); color: var(--text); border-color: var(--line-strong); font-weight: 700; }
.btn--secondary:hover:not([disabled]) { background: var(--surface-3); color: var(--text); }

.btn--ghost { background: transparent; color: var(--muted); min-height: 44px; font-weight: 600; font-size: 15px; }
.btn--ghost:hover { color: var(--text); }

.btn--danger { background: transparent; color: var(--danger); border-color: var(--line-strong); font-weight: 700; }

.btn--block { width: 100%; }

.icon-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  display: grid; place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.icon-btn--bare { border: none; background: transparent; font-size: 24px; }

.g-mark {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid currentColor;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800;
}

/* ===== Login hero ===== */
.hero-art {
  height: 280px;
  border-radius: 28px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-chip {
  position: absolute; left: 20px; top: 22px;
  background: var(--surface-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-chip b { font-size: 22px; font-weight: 800; }
.hero-chip .up { color: var(--income); font-size: 12px; font-weight: 700; }

/* ===== Fields ===== */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; }

.input {
  height: 56px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  padding: 0 18px;
  font-size: 17px; font-weight: 600;
  color: var(--text);
  width: 100%;
}
.input::placeholder { color: var(--faint); font-weight: 500; }
.input:focus { outline: none; border-color: var(--accent); }

.field-error { color: var(--danger); font-size: 14px; font-weight: 600; }

/* ===== Onboarding ===== */
.step-top { display: flex; align-items: center; gap: 12px; min-height: 44px; }
.progress {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(var(--steps, 4), minmax(0, 1fr));
  gap: 8px;
}
.progress span { height: 5px; border-radius: 3px; background: var(--track); transition: background-color 0.25s; }
.progress span.on { background: var(--accent); }

.step-head { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.step-icon {
  width: 84px; height: 84px;
  border-radius: 26px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 44px;
}
.step-head h1 { margin-top: 8px; }
.step-head p { max-width: 320px; }

.options { display: flex; flex-direction: column; gap: 10px; }

.option {
  min-height: 62px;
  border-radius: 20px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  padding: 8px 18px 8px 10px;
  text-align: left;
  color: var(--text);
  transition: border-color 0.15s;
}
.option[aria-checked="true"],
.option[aria-pressed="true"] { border-color: var(--accent); }
.option-tile {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--surface-3);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 800;
  flex-shrink: 0;
}
.option-tile--sm { font-size: 12px; }
.option-label { flex: 1; font-size: 17px; font-weight: 700; }
.option-check { color: var(--accent); font-size: 24px; visibility: hidden; }
.option[aria-checked="true"] .option-check,
.option[aria-pressed="true"] .option-check { visibility: visible; }
.option-check svg { stroke-width: 2.4; }

.name-box {
  display: flex; align-items: center; gap: 8px;
  height: 70px;
  border-radius: 35px;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  padding: 0 8px 0 22px;
}
.name-box:focus-within { border-color: var(--accent); }
.name-box input {
  flex: 1; min-width: 0;
  border: none; outline: none; background: transparent;
  font-size: 20px; font-weight: 700; color: var(--text);
}
.name-box input::placeholder { color: var(--faint); }
.name-box button {
  width: 54px; height: 54px;
  border-radius: 50%; border: none;
  background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center;
  font-size: 22px;
}
.name-box button[disabled] { background: var(--track); color: var(--muted); cursor: not-allowed; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  padding: 9px 14px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 14px; font-weight: 600;
}

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px;
}
.card--hero { background: var(--surface-2); border-radius: 26px; padding: 20px; }

.big-number { font-size: 40px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }

.segmented {
  display: inline-flex; gap: 2px;
  background: var(--bg);
  padding: 3px;
  border-radius: var(--r-sm);
}
.segmented button {
  min-width: 44px; height: 34px;
  border: none; border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-size: 13px; font-weight: 700;
}
.segmented button[aria-pressed="true"] { background: var(--accent); color: var(--on-accent); }

.empty {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 22px;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-lg);
}
.empty .ic { font-size: 28px; color: var(--accent); }
.empty h2 { font-size: 17px; font-weight: 700; }

/* ===== Settings list ===== */
.list { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 4px 16px; }
.list-row {
  min-height: 56px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.list-row:last-child { border-bottom: none; }
.list-row > span:first-child { flex: 1; font-weight: 600; }
.list-label { font-size: 13px; font-weight: 700; color: var(--muted); padding: 0 4px; }

/* ===== Tab bar ===== */
.tabbar {
  position: fixed;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 100%; max-width: 480px;
  height: calc(var(--tabbar-h) + var(--safe-bottom));
  padding: 8px 8px var(--safe-bottom);
  background: var(--surface);
  border-top: 1px solid var(--line);
  display: flex; align-items: flex-start; justify-content: space-around;
  z-index: 10;
}
.tab {
  min-width: 62px; min-height: 50px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700;
  color: var(--muted);
  text-decoration: none;
}
.tab .ic { font-size: 22px; }
.tab[aria-current="page"] { color: var(--accent); }
.tab:hover { color: var(--text); }
.tab[aria-current="page"]:hover { color: var(--accent); }

.fab {
  width: 58px; height: 58px;
  margin-top: -26px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--on-accent);
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 8px 20px var(--shadow-accent);
}
.fab svg { stroke-width: 2.4; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--safe-bottom) + var(--tabbar-h) + 16px);
  transform: translateX(-50%);
  max-width: calc(100% - 40px);
  background: var(--text);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 600;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Uzun seçenek listelerinde "Devam et" butonu ekranın altında sabit kalır. */
.sticky-cta {
  position: sticky;
  bottom: calc(var(--safe-bottom) + 16px);
  box-shadow: 0 -12px 24px var(--bg);
}

/* =====================================================
   2. aşama: bütçe, ödemeler, kayıt formu
   ===================================================== */

.is-income { color: var(--income); }
.is-expense { color: var(--expense); }

.field-label { font-size: 14px; font-weight: 600; }
.hint { font-size: 13px; line-height: 1.5; color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 12px 14px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

select.input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; font-size: 16px; }
input[type="date"].input { font-size: 16px; }

.link-btn { border: none; background: none; padding: 4px 0; color: var(--accent); font-size: 13px; font-weight: 700; }
.link-text { color: var(--accent); font-size: 14px; font-weight: 700; text-decoration: none; }

/* ----- Ay değiştirici ----- */
.month-switch {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 4px;
}
.month-switch-label { display: flex; flex-direction: column; align-items: center; text-align: center; }
.month-switch-label .title-md { text-transform: capitalize; }

/* ----- Özet ----- */
.summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.summary-grid > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.summary-grid b { font-size: clamp(14px, 4.2vw, 17px); font-weight: 800; white-space: nowrap; }

.bar { height: 8px; border-radius: 4px; background: var(--track); overflow: hidden; }
.bar span { display: block; height: 100%; border-radius: 4px; background: var(--accent); }

.card--link { text-decoration: none; color: var(--text); }
.card--link:hover { color: var(--text); border-color: var(--line-strong); }

.stat { border-radius: 18px; padding: 14px; display: flex; flex-direction: column; gap: 2px; }
.stat span { font-size: 13px; font-weight: 600; }
.stat b { font-size: 19px; font-weight: 800; }
.stat--pay { background: var(--expense-bg); color: var(--expense); }
.stat--in { background: var(--income-bg); color: var(--income); }

/* ----- Satırlar ----- */
.section-head { display: flex; align-items: baseline; justify-content: space-between; padding: 0 4px; }
.section-head h2 { font-size: 14px; font-weight: 700; color: var(--muted); }
.section-head span { font-size: 14px; font-weight: 800; }

.rows { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 2px 14px; }
.rows--plain { background: none; border: none; padding: 0; }

.row-item {
  width: 100%;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 2px;
  background: none; border: none; border-bottom: 1px solid var(--line);
  text-align: left; color: var(--text);
}
.rows > :last-child { border-bottom: none; }
.row-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.row-title { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.row-name { font-size: 15px; font-weight: 700; overflow-wrap: anywhere; }
.row-meta { font-size: 13px; color: var(--muted); }
.row-amount { font-size: 15px; font-weight: 800; white-space: nowrap; }
.is-paid .row-name, .is-paid .row-amount { color: var(--muted); }

.tag { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 7px; }
.tag .ic { font-size: 12px; }
.tag--income { background: var(--income-bg); color: var(--income); }
.tag--expense { background: var(--expense-bg); color: var(--expense); }
.tag--muted { background: var(--surface-3); color: var(--muted); }
.tag--done { background: var(--surface-3); color: var(--text); }

.mini-bar { height: 5px; border-radius: 3px; background: var(--track); overflow: hidden; margin-top: 3px; max-width: 220px; }
.mini-bar span { display: block; height: 100%; background: var(--accent); border-radius: 3px; }

/* ----- Ödeme satırları ----- */
.pay-row { display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--line); }
.pay-open {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  background: none; border: none; text-align: left; color: var(--text);
}
.date-box {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--expense-bg); color: var(--expense);
  display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.05;
}
.date-box b { font-size: 16px; }
.date-box small { font-size: 10px; font-weight: 700; text-transform: uppercase; }
.date-box--in { background: var(--income-bg); color: var(--income); }
.is-paid .date-box { background: var(--surface-3); color: var(--muted); }
.pay-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }

.badge { font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 7px; background: var(--surface-3); color: var(--muted); white-space: nowrap; }
.badge--soon { background: var(--accent); color: var(--on-accent); }
.badge--late { background: var(--expense-bg); color: var(--expense); }
.badge--done { background: var(--surface-3); color: var(--text); }

.check-btn {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: transparent; color: transparent;
  display: grid; place-items: center; font-size: 20px;
}
.check-btn:hover { color: var(--muted); }
.check-btn[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.check-btn svg { stroke-width: 2.6; }

/* ----- Takvim ----- */
.calendar { padding: 14px 10px; display: flex; flex-direction: column; gap: 6px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 2px; }
.cal-head span { text-align: center; font-size: 12px; font-weight: 700; color: var(--muted); }
.cal-cell {
  height: 42px; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: 14px; font-weight: 500;
}
.cal-cell.is-past { color: var(--faint); }
.cal-cell.is-today { background: var(--accent); color: var(--on-accent); font-weight: 800; }
.cal-dots { display: flex; gap: 3px; height: 6px; }
.dot { display: inline-block; width: 6px; height: 6px; border-radius: 3px; }
.dot--pay { background: var(--expense); }
.dot--in { background: var(--income); }
.is-today .dot { background: var(--on-accent); }
.cal-legend { display: flex; justify-content: center; gap: 16px; font-size: 12px; color: var(--muted); padding-top: 4px; }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }

/* ----- Alttan açılan form ----- */
dialog.sheet {
  width: 100%; max-width: 480px;
  max-height: 92dvh;
  margin: auto auto 0;
  padding: 0;
  border: none;
  border-radius: 28px 28px 0 0;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}
dialog.sheet[open] { animation: sheet-up 0.22s ease-out; }
dialog.sheet::backdrop { background: rgba(0, 0, 0, 0.6); }
@keyframes sheet-up { from { transform: translateY(40px); opacity: 0.6; } }

.sheet-body {
  max-height: 92dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px 20px calc(var(--safe-bottom) + 24px);
  display: flex; flex-direction: column; gap: 18px;
}
.grabber { width: 40px; height: 5px; border-radius: 3px; background: var(--line-strong); margin: 0 auto; }
.sheet-head { display: flex; align-items: center; gap: 8px; }
.sheet-title { flex: 1; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.sheet-form { gap: 16px; }

.option-text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.option-hint { font-size: 13px; color: var(--muted); font-weight: 500; }
.option-go { color: var(--muted); font-size: 20px; }

.money-box {
  display: flex; align-items: center; gap: 8px;
  height: 58px; padding: 0 18px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
}
.money-box:focus-within { border-color: var(--accent); }
.money-box span { font-size: 20px; font-weight: 800; color: var(--muted); }
.money-box input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-size: 22px; font-weight: 800; color: var(--text); }

.segmented--wide { display: flex; width: 100%; background: var(--surface); border: 1px solid var(--line); }
.segmented--wide button { flex: 1; height: 42px; font-size: 14px; }

.count-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.count-chip {
  height: 46px; border-radius: 12px;
  border: 1.5px solid var(--line-strong);
  background: var(--surface); color: var(--text);
  font-size: 15px; font-weight: 800;
}
.count-chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.count-grid .input { height: 46px; padding: 0 10px; font-size: 15px; text-align: center; grid-column: span 2; }

.preview { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.preview[hidden] { display: none; }
.preview-amount { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }

.paid-box { display: flex; flex-direction: column; gap: 10px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 14px; }
