/* components.css — вигляд кнопок, карток, бейджів та інших елементів. */

/* Донати фізосіб через LiqPay — знову приховано 24.08.2026 (ПриватБанк
   вдруге відхилив заявку). Клас .liqpay-pending лишається в розмітці
   навмисно — коли банк погодить, досить закоментувати правило нижче. */
.liqpay-pending { display: none !important; }
/* Поки картку «Друзі проєкту» приховано — центруємо решту карток замість grid
   (repeat(3,1fr) лишав би порожню третю колонку). Працюватиме коректно й після
   повернення третьої картки — flex з wrap просто покаже всі три в ряд. */
#org .grid-3 { display: flex; flex-wrap: wrap; justify-content: center; }
#org .grid-3 > .card.pkg { flex: 1 1 340px; max-width: 380px; }

/* Банер згоди на cookie (Google Consent Mode) — вузька смуга знизу, не блокує сторінку. */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 1rem 1.5rem; background: var(--surface-card); border-top: 1px solid var(--border-soft);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  transform: translateY(110%); transition: transform var(--transition);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar__text { margin: 0; font-size: .88rem; color: var(--on-surface); max-width: 620px; flex: 1 1 320px; }
.cookie-bar__text a { color: var(--primary-light); }
.cookie-bar__actions { display: flex; gap: .75rem; flex: 0 0 auto; }
.cookie-bar .btn { padding: 10px 20px; font-size: .9rem; }
@media (max-width: 640px) {
  .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-bar__actions { justify-content: center; }
}

/* ── Кнопки ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.btn--primary { background: var(--primary-light); color: #fff; }
.btn--primary:hover { background: #1d4ed8; }
.btn--accent { background: var(--gradient-accent); color: #fff; }
.btn--secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn--secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--outline { background: transparent; color: var(--primary-light); border: 2px solid var(--primary-light); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }

/* ── Картки фактів / особливостей ── */
.card {
  background: var(--surface-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.card__title { font-size: var(--fs-h3); color: var(--primary); margin-bottom: 0.5rem; }
.card__text { color: var(--on-surface-muted); }

/* Картки на світлому фоні секції "Що це за гра" */
.fact { display: flex; gap: 1rem; align-items: flex-start; background: var(--surface-card); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.fact__icon { font-size: 1.75rem; }

/* ── Крок ── */
.step { text-align: center; padding: 1.25rem 0.75rem; }
.step__num {
  width: 40px; height: 40px; margin: 0 auto 0.75rem; border-radius: 50%;
  background: var(--gradient-accent); color: #fff; display: grid; place-items: center; font-weight: 700;
}
.step__icon { font-size: 2rem; }
.step__portrait { height: 56px; width: auto; margin: 0.35rem auto 0; display: block; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
.step__title { font-family: var(--font-head); font-weight: 800; letter-spacing: 1px; margin: 0.5rem 0; color: var(--primary); }
.step__text { font-size: 0.95rem; color: var(--on-surface-muted); }

/* ── Таймлайн item ── */
.tl-item__card { background: var(--surface-card); border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm); border-left: 4px solid #d1d5db; }
.tl-item__date { font-weight: 700; color: var(--primary-light); }
.tl-item__phase { font-size: var(--fs-h3); color: var(--primary); margin: 0.15rem 0 0.5rem; }
.tl-item__desc { color: var(--on-surface-muted); font-size: 0.95rem; }
.tl-item[data-status="completed"] .tl-item__dot { background: var(--accent-green); }
.tl-item[data-status="completed"] .tl-item__card { border-left-color: var(--accent-green); }
.tl-item[data-status="active"] .tl-item__dot { background: var(--primary-light); }
.tl-item[data-status="active"] .tl-item__card { border-left-color: var(--primary-light); }
.badge { display: inline-block; font-size: 0.75rem; font-weight: 700; padding: 2px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px; }
.badge--completed { background: #d1fae5; color: #047857; }
.badge--active { background: #dbeafe; color: #1d4ed8; }
.badge--upcoming { background: #f3f4f6; color: #6b7280; }
.badge--wip { background: rgba(245,158,11,.15); color: #b45309; }

/* ── Галерея скриншотів ── */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.gallery img { border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform var(--transition); }
.gallery img:hover { transform: scale(1.03); }

/* ── Секція «Про гру»: розкладка, тріада, дрібні факти ── */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.about-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); position: sticky; top: 2rem; }
.triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.75rem; }
.triad__item { text-align: center; padding: 1.1rem .75rem; background: var(--surface-card); border: 1px solid var(--border-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.triad__icon { font-size: 1.9rem; }
.triad__title { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: 1.5px; color: var(--accent); margin: .35rem 0; }
.triad__text { color: var(--on-surface-muted); font-size: .82rem; line-height: 1.4; }
.facts-mini { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.25rem; margin-top: 1.5rem; font-size: .85rem; color: var(--on-surface-muted); }
.facts-mini span { white-space: nowrap; }
/* Блок «Гра розробляється за підтримки МФВ» (у кінці секції «Про гру»).
   Тема-залежний: світлий удень, темний уночі — як картки тріади. */
.supported { display: flex; gap: 1.25rem; align-items: center; margin-top: 1.75rem; padding: 1.5rem; background: var(--surface-card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.supported__logo { flex: 0 0 auto; width: 118px; display: grid; place-items: center; background: transparent; border: 0; box-shadow: none; }
.supported__logo img { max-width: 118px; max-height: 118px; object-fit: contain; background: transparent; box-shadow: none; border: 0; }
/* Кольоровий логотип удень, білий — уночі */
.supported__logo .logo-dark { display: none; }
[data-theme="dark"] .supported__logo .logo-light { display: none; }
[data-theme="dark"] .supported__logo .logo-dark { display: block; }
.supported__title { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--primary); margin-bottom: .4rem; line-height: 1.3; }
.supported__desc { color: var(--on-surface-muted); font-size: .86rem; line-height: 1.5; }

/* Примітка про фінансування проєкту (МФВ) — під кнопками в hero на game.html/project.html. */
.hero-funding-note { font-style: italic; color: var(--on-surface-muted); font-size: .92rem; line-height: 1.5; max-width: 960px; margin: .5rem auto 0; text-align: center; }

/* ── Секція «Партнери»: featured-донор зверху + сітка громад ── */
.partner { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--surface-card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 1.5rem; }
.partner__logo { flex: 0 0 auto; width: 96px; height: 96px; display: grid; place-items: center; background: #fff; border-radius: var(--radius); }
.partner__logo img { max-height: 82px; max-width: 82px; object-fit: contain; }
/* Логотип МФВ — більший (вертикальний знак) */
.partner__logo--mfv { width: 118px; height: 118px; }
.partner__logo--mfv img { max-height: 114px; max-width: 114px; }
.partner__title { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--primary); margin-bottom: .4rem; }
.partner__desc { font-size: .86rem; color: var(--on-surface-muted); line-height: 1.5; }
.partner__desc--tbd { font-style: italic; opacity: .65; }
.partner__links { margin-top: .6rem; font-size: .85rem; }
.partner__links a { color: var(--primary-light); font-weight: 600; }
/* Featured (МФВ) — на всю ширину, більший логотип */
.partner--featured { align-items: center; margin-bottom: 1.5rem; }
.partner--featured .partner__logo { width: 220px; height: 130px; }
.partner--featured .partner__logo img { max-height: 108px; max-width: 200px; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
/* Картка-запрошення — по центру під сіткою громад */
.invite-wrap { display: flex; justify-content: center; margin-top: 1.5rem; }
.invite-wrap .partner--invite { max-width: 640px; width: 100%; }
/* Картка-запрошення «Приєднай громаду до світу 3D гри» */
.partner--invite { border: 2px dashed var(--primary-light); background: transparent; }
.partner--invite .partner__logo { background: var(--surface-alt); font-size: 2.5rem; }
.partner--invite .partner__title { color: var(--primary-light); }

/* ── Секція «Команда»: сітка 3×3, картки з фото та біо при наведенні ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-grid > .tm:last-child { grid-column: 2; }
.tm { position: relative; overflow: hidden; text-align: center; background: var(--surface-card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 1.5rem 1rem; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.tm:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tm__photo { position: relative; z-index: 2; width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: top center; margin: 0 auto 1rem; border: 3px solid var(--surface); box-shadow: 0 0 0 2px var(--accent); background: var(--surface-alt); }
.tm__ph { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1rem; display: grid; place-items: center; font-size: 3rem; background: var(--surface-alt); color: var(--on-surface-muted); border: 3px solid var(--surface); box-shadow: 0 0 0 2px var(--border-soft); }
.tm__name { position: relative; z-index: 2; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--primary); }
.tm__role { position: relative; z-index: 1; color: var(--on-surface-muted); font-size: .9rem; margin-top: .35rem; }
/* Затемнюється лише тло картки — фото й ім'я лишаються поверх */
.tm--bio::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(12,22,38,.28); opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.tm--bio:hover::after { opacity: 1; }
/* Біо виїжджає знизу, не перекриваючи ім'я */
.tm__tip { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; max-height: 40%; overflow: auto; background: #0c1626; color: #e8edf5; font-size: .68rem; line-height: 1.4; text-align: left; padding: .65rem .85rem; transform: translateY(100%); transition: transform .32s ease; }
.tm--bio:hover .tm__tip { transform: translateY(0); }

/* ── «Інструментарій гри» — механізми участі / структура ОМС / ролі (game.html + project.html) ── */
.tools-block { max-width: 920px; margin: 0 auto 2.75rem; }
.tools-block:last-child { margin-bottom: 0; }
.tools-block h3 { font-family: var(--font-head); font-weight: 800; color: var(--primary); font-size: 1.05rem; text-align: center; margin-bottom: 1.1rem; }
.tools-legend { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; justify-content: center; margin-bottom: 1.75rem; font-size: .78rem; color: var(--on-surface-muted); }
.tools-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.tools-legend span::before { content: ""; width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.tools-legend .lg--r1::before { background: var(--accent-green); }
.tools-legend .lg--r2::before { background: #eab308; }
.tools-legend .lg--r3::before { background: var(--primary-light); }
.tools-grid { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
.tool-chip { font-size: .82rem; font-weight: 600; padding: .45rem .9rem; border-radius: 999px; background: var(--surface-alt); color: var(--on-surface-muted); border: 1px solid var(--border-soft); }
.tool-chip--r1 { background: rgba(16,185,129,.14); color: #047857; border-color: transparent; font-weight: 700; }
.tool-chip--r2 { background: rgba(234,179,8,.16); color: #854d0e; border-color: transparent; font-weight: 700; }
.tool-chip--r3 { background: rgba(37,99,235,.14); color: #1d4ed8; border-color: transparent; font-weight: 700; }
[data-theme="dark"] .tool-chip--r1 { background: rgba(16,185,129,.22); color: #4ade80; }
[data-theme="dark"] .tool-chip--r2 { background: rgba(234,179,8,.22); color: #fde047; }
[data-theme="dark"] .tool-chip--r3 { background: rgba(106,163,255,.22); color: #9cc0ff; }

/* ── HUD-кільця «Інструментарій гри» — агрегована статистика під заголовком секції ── */
.tools-stats { background: #0c1626; border-radius: var(--radius-lg); padding: 2rem 1.25rem; margin: 0 auto 2.5rem; max-width: 920px; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.1rem; }
.stat-ring-card { text-align: center; }
.stat-ring { --pct: 0; width: 100px; height: 100px; border-radius: 50%; margin: 0 auto .75rem; position: relative;
  background: conic-gradient(var(--accent-green) calc(var(--pct) * 1%), rgba(255,255,255,.1) 0);
  filter: drop-shadow(0 0 8px rgba(16,185,129,.45)); }
.stat-ring::before { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: #0c1626; }
.stat-ring__val { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-ring__pct { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: #fff; line-height: 1; }
.stat-ring__frac { font-size: .66rem; color: #8fa3c4; margin-top: .2rem; }
.stat-ring-card__label { color: #cdd9ef; font-size: .82rem; font-weight: 600; }

/* Мʼякий лінк «дізнайся більше» на game.html — однаковий патерн у кількох секціях головної */
.section-more-link { display: inline-block; margin-top: 1.75rem; color: var(--primary-light); font-weight: 600; font-size: .95rem; text-align: center; }
.section-more-link:hover { text-decoration: underline; }
.section-more-link-wrap { text-align: center; }

/* Ключові дати в підзаголовку таймлайну (інлайн-пігулки) */
.keydates-line { margin-top: 1rem; color: var(--on-surface-muted); font-size: 1.05rem; }
.keydate-pill { display: inline-block; font-family: var(--font-head); font-weight: 700; color: #3b2500; background: var(--gradient-accent); padding: .15rem .6rem; border-radius: 6px; white-space: nowrap; }

/* Бейдж ключової дати */
.keydate { display: inline-flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 1rem 1.5rem; }
.keydate__d { font-size: 1.5rem; font-weight: 800; color: var(--accent); }

/* ── Модальне вікно форм наміру (sponsorship.html) ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(12, 22, 38, 0.6); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 1.25rem;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--surface-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  padding: 1.4rem 1.75rem 1.5rem; position: relative;
  transform: translateY(12px); transition: transform var(--transition);
}
.modal--wide { max-width: 660px; }
.modal-overlay.is-open .modal { transform: translateY(0); }
.modal__close {
  position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-alt); color: var(--on-surface-muted); font-size: 1.1rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer; transition: background var(--transition);
}
.modal__close:hover { background: var(--border-soft); }
.modal__title { font-size: var(--fs-h3); color: var(--primary); padding-right: 1rem; }
/* Заголовок + рівень пакета в один рядок */
.modal-head { display: flex; align-items: center; justify-content: flex-start; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; padding-right: 1.5rem; }
.modal-head .modal__title { margin-bottom: 0; padding-right: 0; }
.modal__tier-pill {
  display: inline-block; background: rgba(245,158,11,.16); color: var(--accent);
  font-weight: 800; font-size: .82rem; padding: .3rem .75rem; border-radius: 999px;
  white-space: nowrap;
}

/* ── Вміст модалок реєстрації (гравець/громада/комбінована) — спільний для всіх сторінок ── */
.reg-title { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; margin: 0 0 .75rem; color: var(--primary); padding-right: 1.5rem; }
.reg-text { color: var(--on-surface); font-size: .95rem; line-height: 1.6; margin: 0 0 1.4rem; }
.reg-text b { color: var(--primary); }
.reg-cta { display: flex; flex-direction: column; gap: .6rem; }
.reg-cta .btn { width: 100%; }
.reg-choice { display: flex; flex-direction: column; gap: .75rem; margin-top: .5rem; }
.reg-note { margin-top: 1rem; font-size: .78rem; color: var(--on-surface-muted); text-align: center; }

/* Двоколонкова розкладка форми наміру */
.col2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.75rem; }
.col-divider { border-left: 1px solid var(--border-soft); padding-left: 1.75rem; }
@media (max-width: 640px) { .col2 { grid-template-columns: 1fr; } .col-divider { border-left: 0; padding-left: 0; margin-top: .3rem; } }

.form-field { display: block; margin-bottom: .55rem; }
.form-field span { display: block; font-size: 0.82rem; font-weight: 600; color: var(--on-surface); margin-bottom: 0.3rem; }
.form-field span.optional { font-weight: 400; color: var(--on-surface-muted); }
/* Мітки живуть усередині поля (placeholder) — підпис лишається лише для читачів з екранним диктором */
.labels-in-field .form-field span {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%; border: 1px solid var(--border-soft); border-radius: var(--radius);
  background: var(--surface); color: var(--on-surface); padding: 0.65rem 0.8rem;
  font-family: var(--font-main); font-size: 0.92rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--primary-light); outline-offset: 1px;
}
.form-field textarea { resize: vertical; min-height: 64px; }
.form-check { display: flex; gap: 0.5rem; align-items: flex-start; margin: .35rem 0 .7rem; font-size: 0.82rem; color: var(--on-surface-muted); }
.form-check input { margin-top: 0.2rem; }
.form-status { font-size: 0.85rem; padding: 0.6rem 0.8rem; border-radius: var(--radius); margin-bottom: 1rem; display: none; }
.form-status.is-visible { display: block; }
.form-status.is-error { background: rgba(239,68,68,0.1); color: var(--danger); }
.form-status.is-success { background: rgba(16,185,129,0.12); color: #047857; }
[data-theme="dark"] .form-status.is-success { color: var(--accent-green); }
.modal .btn { width: 100%; }

/* ── Форма «Задонатити» — спільна для будь-якої сторінки з розміткою #donatePanel
   (точна копія стилів donate/donate.html, .dn-* класи) ── */
.dn-title { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; margin: 0 0 6px; color: var(--primary); }
.dn-sub { margin: 0 0 20px; color: var(--on-surface-muted); font-size: .92rem; }
.dn-toggle { display: flex; gap: 8px; margin-bottom: 16px; }
.dn-toggle button { flex: 1; padding: 10px; border: 1px solid var(--border-soft); background: transparent; border-radius: var(--radius); cursor: pointer; font-family: var(--font-main); font-size: .92rem; font-weight: 600; color: var(--on-surface-muted); transition: var(--transition); }
.dn-toggle button.active { background: var(--primary-light); color: #fff; border-color: var(--primary-light); }
.dn-amounts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 14px; }
.dn-amounts button { padding: 14px; border: 2px solid var(--border-soft); background: transparent; border-radius: var(--radius); cursor: pointer; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--on-surface); transition: var(--transition); }
.dn-amounts button:hover { border-color: var(--accent); }
.dn-amounts button.active { border-color: var(--accent); background: linear-gradient(135deg, rgba(245,158,11,.14), rgba(217,119,6,.14)); color: var(--on-surface); }
.dn-custom { position: relative; margin-bottom: 20px; }
.dn-custom input { width: 100%; padding: 14px 14px 14px 40px; font-size: 1rem; font-family: var(--font-main); border: 2px solid var(--border-soft); border-radius: var(--radius); outline: none; background: var(--surface); color: var(--on-surface); }
.dn-custom input:focus { border-color: var(--accent); }
.dn-sign { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); font-size: 1rem; color: var(--on-surface-muted); }
.dn-pay-btn { width: 100%; padding: 15px; border: none; border-radius: var(--radius); background: var(--gradient-accent); color: #3b2500; font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-sm); }
.dn-pay-btn:hover { box-shadow: var(--shadow-md); }
.dn-note { margin: 16px 0 0; font-size: .78rem; color: var(--on-surface-muted); text-align: center; }
.dn-note a { color: var(--primary-light); }
.dn-note a.dn-emph { font-weight: 700; text-decoration: underline; }
.dn-tier { margin: -6px 0 20px; padding: 10px 14px; border-radius: var(--radius); background: var(--surface-alt); border: 1px solid var(--border-soft); text-align: center; font-size: .88rem; font-weight: 700; color: var(--on-surface); }
