:root {
  color-scheme: dark;
  --bg: #080b14;
  --bg-soft: #111522;
  --panel: rgba(48, 47, 52, 0.96);
  --panel-2: rgba(32, 34, 44, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(213, 129, 255, 0.32);
  --text: #f4f1f8;
  --muted: #b9b2bf;
  --dim: #7f7b88;
  --violet: #b56fc7;
  --violet-strong: #8c3cff;
  --amber: #ff9a1f;
  --danger: #ff4b3e;
  --success: #50d9a7;
  --shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(140, 60, 255, 0.18), transparent 26%),
    radial-gradient(circle at left 20%, rgba(255, 154, 31, 0.12), transparent 18%),
    linear-gradient(180deg, #090c14, #090b11 38%, #07080d);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.backdrop__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent);
}

.backdrop__glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
}

.backdrop__glow--violet {
  top: -12vw;
  right: -10vw;
  background: rgba(140, 60, 255, 0.5);
}

.backdrop__glow--amber {
  left: -16vw;
  bottom: -16vw;
  background: rgba(255, 154, 31, 0.28);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px 36px 12px;
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.96), rgba(8, 10, 18, 0.72), transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  width: 168px;
  max-width: min(34vw, 168px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.topbar__inner {
  width: min(780px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.topbar__link-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar__link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.topbar__link:hover {
  transform: translateY(-1px);
}

.topbar__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.96);
  outline-offset: 3px;
}

.topbar__link--primary {
  border-color: rgba(255, 194, 128, 0.28);
  color: #fff6ea;
  background:
    linear-gradient(135deg, rgba(255, 194, 128, 0.24), rgba(214, 122, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 32px rgba(255, 154, 31, 0.18);
}

.topbar__link--primary:hover,
.topbar__link--primary:focus-visible {
  border-color: rgba(255, 208, 150, 0.54);
  background:
    linear-gradient(135deg, rgba(255, 205, 150, 0.34), rgba(214, 122, 255, 0.2)),
    rgba(255, 255, 255, 0.1);
}

.topbar__link--secondary:hover,
.topbar__link--secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 28px rgba(0, 0, 0, 0.22);
}

.topbar__toggle {
  border: 0;
  padding: 0;
  min-height: 0;
  background: transparent;
  cursor: pointer;
}

.topbar__toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.96);
  outline-offset: 4px;
}

.topbar__toggle-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  width: 158px;
  min-height: 44px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(24, 28, 42, 0.96), rgba(17, 21, 32, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 32px rgba(0, 0, 0, 0.28);
}

.topbar__toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(91, 118, 184, 0.92), rgba(58, 73, 112, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 20px rgba(32, 52, 98, 0.34);
  transition: transform 180ms ease;
}

.topbar__toggle.is-english .topbar__toggle-thumb {
  transform: translateX(100%);
}

.topbar__toggle-side {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  transition: color 180ms ease;
}

.topbar__toggle:not(.is-english) .topbar__toggle-side--pt,
.topbar__toggle.is-english .topbar__toggle-side--en {
  color: #f8fbff;
}

.topbar__toggle-flag {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.topbar__toggle-flag svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
}

.shell {
  width: min(780px, calc(100% - 64px));
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.experience {
  width: min(100%, 780px);
  margin: 10px auto 0;
  position: relative;
}

.reward-shell {
  display: grid;
  gap: 18px;
}

.reward-hero,
.progress-panel,
.reward-summary {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.reward-hero {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(24, 28, 40, 0.96), rgba(12, 15, 24, 0.98)),
    linear-gradient(135deg, rgba(140, 60, 255, 0.12), rgba(255, 154, 31, 0.08));
}

.reward-hero__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.reward-hero__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: auto;
}

.reward-hero__language {
  margin-left: auto;
}

.reward-hero__eyebrow,
.progress-panel__eyebrow {
  color: #a19cb0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reward-hero__title {
  margin: 8px 0 6px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.reward-hero__subtitle {
  margin: 0;
  max-width: 460px;
  color: #d4cfdb;
  font-size: 1rem;
}

.reward-hero__level,
.progress-panel__level,
.reward-summary__value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reward-hero__level {
  appearance: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.reward-hero__level:hover,
.reward-hero__level:focus-visible {
  border-color: rgba(104, 157, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(11, 18, 36, 0.22);
}

.reward-hero__level:focus-visible {
  outline: 2px solid rgba(104, 157, 255, 0.48);
  outline-offset: 3px;
}

.language-switch {
  position: relative;
}

.language-switch__trigger,
.language-switch__option {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.07);
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 156px;
  border-radius: 18px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.language-switch__trigger:hover,
.language-switch__trigger:focus-visible,
.language-switch__option:hover,
.language-switch__option:focus-visible {
  border-color: rgba(104, 157, 255, 0.42);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.language-switch__trigger:focus-visible,
.language-switch__option:focus-visible {
  outline: 2px solid rgba(104, 157, 255, 0.48);
  outline-offset: 3px;
}

.language-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 188px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(24, 29, 44, 0.98), rgba(18, 22, 34, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.language-switch__option {
  width: 100%;
  justify-content: flex-start;
  min-width: 0;
}

.language-switch__option.is-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(104, 157, 255, 0.46);
}

.language-switch__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.language-switch__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
}

.reward-hero__level-icon,
.reward-summary__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  color: var(--amber);
}

.reward-hero__level-icon svg,
.reward-summary__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.reward-hero__cover {
  display: grid;
  gap: 18px;
  padding: 22px;
  min-height: 180px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.reward-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(10, 10, 14, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.reward-hero__badge-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  color: #fff;
}

.reward-hero__badge-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.reward-hero__network {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.reward-hero__handle {
  color: #ddd3e6;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.reward-hero__description {
  margin: auto 0 0;
  max-width: 520px;
  color: #f0edf5;
  line-height: 1.55;
}

.progress-panel {
  padding: 18px 22px 22px;
  background: linear-gradient(180deg, rgba(20, 22, 30, 0.96), rgba(14, 16, 24, 0.98));
}

.progress-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.dock {
  --dock-size: 56px;
  position: relative;
  display: block;
  padding: 14px 12px;
  border-radius: 24px 24px 0 0;
  background: rgba(66, 63, 66, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0;
  overflow: hidden;
}

.dock__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}

.dock__item {
  flex: 0 0 var(--dock-size);
  width: var(--dock-size);
  height: var(--dock-size);
  border-radius: 50%;
  border: 0;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.dock__segment {
  flex: 1 1 auto;
  min-width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.dock__glyph {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dock__item svg {
  width: 100%;
  height: 100%;
  display: block;
  color: #ffffff;
}

.dock__item:disabled {
  opacity: 1;
  cursor: default;
}

.dock__item--active {
  background: linear-gradient(135deg, #ff7038, #d43c84);
  box-shadow: 0 18px 30px rgba(212, 60, 132, 0.28);
}

.dock__item--done {
  background: linear-gradient(135deg, #b46ef8, #7d56ff);
  box-shadow: 0 14px 28px rgba(125, 86, 255, 0.22);
}

.modal {
  position: relative;
  background: linear-gradient(180deg, rgba(58, 57, 59, 0.98), rgba(63, 62, 64, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0 0 24px 24px;
  padding: 0 0 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal__cover {
  height: 132px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 154, 31, 0.52), transparent 14%),
    linear-gradient(120deg, rgba(5, 5, 8, 0.98), rgba(10, 10, 13, 0.96)),
    linear-gradient(110deg, transparent 0 44%, rgba(255, 154, 31, 0.9) 44.6%, transparent 45%),
    linear-gradient(66deg, transparent 0 72%, rgba(181, 111, 199, 0.92) 72.5%, transparent 73%);
  position: relative;
}

.cover-youtube {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 154, 31, 0.52), transparent 14%),
    linear-gradient(120deg, rgba(5, 5, 8, 0.98), rgba(10, 10, 13, 0.96)),
    linear-gradient(110deg, transparent 0 44%, rgba(255, 154, 31, 0.9) 44.6%, transparent 45%),
    linear-gradient(66deg, transparent 0 72%, rgba(181, 111, 199, 0.92) 72.5%, transparent 73%);
}

.cover-instagram {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 146, 64, 0.62), transparent 16%),
    radial-gradient(circle at 74% 26%, rgba(164, 74, 255, 0.34), transparent 22%),
    linear-gradient(135deg, rgba(10, 10, 12, 0.98), rgba(22, 10, 32, 0.96)),
    linear-gradient(76deg, transparent 0 68%, rgba(255, 80, 140, 0.86) 68.5%, transparent 69%);
}

.cover-facebook {
  background:
    radial-gradient(circle at 14% 18%, rgba(80, 140, 255, 0.56), transparent 14%),
    linear-gradient(135deg, rgba(5, 8, 16, 0.98), rgba(12, 24, 46, 0.96)),
    linear-gradient(112deg, transparent 0 64%, rgba(62, 120, 255, 0.8) 64.4%, transparent 65%);
}

.cover-x {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 12%),
    linear-gradient(135deg, rgba(8, 8, 10, 0.98), rgba(18, 18, 22, 0.96)),
    linear-gradient(124deg, transparent 0 38%, rgba(181, 111, 199, 0.7) 38.4%, transparent 39%),
    linear-gradient(56deg, transparent 0 72%, rgba(255, 255, 255, 0.18) 72.4%, transparent 73%);
}

.cover-tiktok {
  background:
    radial-gradient(circle at 16% 18%, rgba(58, 244, 240, 0.42), transparent 14%),
    radial-gradient(circle at 80% 22%, rgba(255, 58, 102, 0.34), transparent 20%),
    linear-gradient(135deg, rgba(5, 8, 12, 0.98), rgba(14, 16, 24, 0.96)),
    linear-gradient(122deg, transparent 0 42%, rgba(255, 58, 102, 0.72) 42.4%, transparent 43%),
    linear-gradient(60deg, transparent 0 74%, rgba(58, 244, 240, 0.48) 74.4%, transparent 75%);
}

.cover-apoiar {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 120, 120, 0.42), transparent 14%),
    linear-gradient(135deg, rgba(17, 10, 16, 0.98), rgba(28, 14, 26, 0.96)),
    linear-gradient(114deg, transparent 0 46%, rgba(255, 99, 132, 0.74) 46.4%, transparent 47%),
    linear-gradient(58deg, transparent 0 72%, rgba(255, 184, 108, 0.38) 72.4%, transparent 73%);
}

.cover-generic {
  background:
    radial-gradient(circle at 18% 18%, rgba(105, 166, 255, 0.34), transparent 14%),
    linear-gradient(135deg, rgba(10, 11, 18, 0.98), rgba(20, 22, 34, 0.96)),
    linear-gradient(118deg, transparent 0 44%, rgba(140, 104, 255, 0.56) 44.4%, transparent 45%),
    linear-gradient(62deg, transparent 0 74%, rgba(95, 172, 255, 0.34) 74.4%, transparent 75%);
}

.modal__badge {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(181, 111, 199, 0.64), transparent 16%),
    radial-gradient(circle at 64% 68%, rgba(140, 60, 255, 0.82), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.18));
  border: 3px solid rgba(56, 55, 56, 1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
}

.modal__badge-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d6b3ff;
}

.modal__badge-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.modal__body {
  padding: 46px 22px 0;
  text-align: center;
}

.modal__network {
  margin: 8px 0 4px;
  font-size: clamp(1.72rem, 3vw, 2.45rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.eyebrow {
  color: #d6ccdb;
  letter-spacing: 0.24em;
  font-size: 0.65rem;
  margin: 0 0 8px;
}

.modal__title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.modal__handle {
  margin-top: 6px;
  color: #8f95a1;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.modal__lede {
  max-width: 560px;
  margin: 16px auto 14px;
  color: #e7e3e9;
  font-size: 0.92rem;
  line-height: 1.3;
}

.flash {
  margin: 0 auto 20px;
  width: min(760px, 100%);
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 20, 0.18);
  text-align: left;
  color: var(--text);
}

.flash.success {
  border-color: rgba(80, 217, 167, 0.34);
  color: #c5f7e8;
}

.flash.error {
  border-color: rgba(255, 75, 62, 0.35);
  color: #ffd0cb;
}

.flow-chip {
  width: min(760px, 100%);
  margin: 0 auto 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(80, 217, 167, 0.28);
  color: #c5f7e8;
  text-align: left;
  background: rgba(18, 18, 20, 0.14);
}

.progress-shell {
  max-width: 630px;
  margin: 8px auto 18px;
}

.progress-shell__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.progress-shell__label {
  font-size: clamp(1.05rem, 2.4vw, 1.65rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.progress-shell__meta {
  color: #c7c0c9;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.progress {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(132, 174, 214, 0.46);
  overflow: hidden;
}

.progress > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #d18ddb, #9d57da 46%, #fba44e);
  box-shadow: 0 0 18px rgba(181, 111, 199, 0.42);
  transition: width 200ms linear;
}

.tasks {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.task-card {
  background: rgba(23, 22, 27, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 18px 18px 16px;
  display: grid;
  gap: 14px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.task-card--current {
  border-color: var(--line-strong);
  box-shadow:
    inset 0 0 0 1px rgba(181, 111, 199, 0.16),
    0 18px 36px rgba(140, 60, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(40, 27, 59, 0.86), rgba(20, 18, 28, 0.98)),
    rgba(23, 22, 27, 0.52);
  scroll-margin-top: 96px;
}

.task-card--done {
  border-color: rgba(80, 217, 167, 0.18);
}

.task-card--pending {
  opacity: 0.82;
}

.task-card__top,
.task-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.task-card__social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.task-card__step-index {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d5cde0;
  font-size: 1.1rem;
  font-weight: 800;
}

.social-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: white;
  background: linear-gradient(135deg, rgba(255, 154, 31, 0.28), rgba(181, 111, 199, 0.3));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.social-icon--current {
  background: linear-gradient(135deg, #ff9a1f, #8c3cff);
  box-shadow: 0 16px 26px rgba(140, 60, 255, 0.24);
}

.social-icon--done {
  background: linear-gradient(135deg, rgba(80, 217, 167, 0.42), rgba(58, 167, 210, 0.34));
}

.task-card__copy {
  min-width: 0;
  flex: 1 1 auto;
}

.task-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.task-card__title {
  margin: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.task-card__reward {
  color: var(--amber);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.task-card__hint {
  color: var(--muted);
  font-size: 0.95rem;
}

.status-pill {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill.available,
.status-pill.opened {
  background: rgba(181, 111, 199, 0.14);
  color: #f1c7ff;
}

.status-pill.completed,
.status-pill.finished {
  background: rgba(80, 217, 167, 0.16);
  color: #bdf6e3;
}

.status-pill.locked {
  background: rgba(255, 255, 255, 0.08);
  color: #cac5d0;
}

.status-pill.expired {
  background: rgba(255, 75, 62, 0.16);
  color: #ffd0cb;
}

.task-card__desc {
  margin: 0;
  color: #ddd7e2;
  line-height: 1.4;
}

.task-meta {
  color: var(--dim);
  font-size: 0.92rem;
}

.task-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 320px);
  margin-left: auto;
}

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

.actions-grid--main {
  margin-bottom: 10px;
}

button {
  appearance: none;
  border: 0;
  border-radius: 10px;
  min-height: 40px;
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 140ms ease, opacity 140ms ease, filter 140ms ease;
}

button:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

button:disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

.btn-primary {
  color: white;
  background: linear-gradient(90deg, #c78bd7, #bb80d0);
}

.btn-success {
  color: white;
  background: linear-gradient(90deg, #76c466, #67bc61);
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.btn-danger {
  color: white;
  background: linear-gradient(90deg, #ff5346, #ff4032);
}

.btn-solid {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  color: #b9d5ff;
  background: transparent;
  border: 1px solid rgba(104, 157, 255, 0.4);
}

.result {
  margin-top: 0;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(80, 217, 167, 0.2);
  background: linear-gradient(180deg, rgba(17, 27, 27, 0.72), rgba(11, 17, 16, 0.78));
  text-align: left;
}

.reward-summary {
  padding: 18px 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(180deg, rgba(21, 21, 28, 0.98), rgba(15, 14, 20, 0.98));
}

.reward-summary__value strong {
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
}

.reward-summary__button {
  min-width: min(100%, 320px);
}

.result h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.result__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  color: #d8b7ff;
}

.result__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.result p {
  margin: 0;
  color: #cde6df;
}

.key-box {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: Consolas, "Courier New", monospace;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  word-break: break-all;
}

.vault {
  margin-top: 18px;
  padding: 14px 24px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(23, 28, 42, 0.94), rgba(16, 19, 29, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  scroll-margin-top: 28px;
}

.vault__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.vault__header > div {
  display: grid;
  gap: 0;
}

.vault__eyebrow {
  color: #99a3b5;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.vault__title {
  margin: 0;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.vault__empty {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #c9ced8;
}

.vault__grid {
  display: grid;
  grid-template-columns: minmax(0, 5.4fr) minmax(96px, 1fr) minmax(104px, 0.95fr) minmax(128px, 1.15fr);
  gap: 14px;
  align-items: center;
}

.vault__grid--head {
  padding: 0 10px 12px;
  color: #8f95a1;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.vault__grid--row {
  padding: 14px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.vault__key-shell {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vault__key-eye {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(158, 203, 255, 0.24);
  background: rgba(158, 203, 255, 0.08);
  color: #bad9ff;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.vault__key-toggle-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
}

.vault__key-toggle-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.vault__key-eye:hover {
  color: #eef6ff;
  border-color: rgba(186, 217, 255, 0.44);
  background: rgba(158, 203, 255, 0.14);
  transform: translateY(-1px);
}

.vault__key {
  display: block;
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.88rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: #f5efff;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.vault__key--copy {
  cursor: pointer;
}

.vault__key-text {
  display: block;
}

.vault__key-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(10, 13, 20, 0.96);
  border: 1px solid rgba(186, 217, 255, 0.18);
  color: #eef6ff;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.3);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 2;
}

.vault__key-tooltip.is-success {
  background: rgba(16, 34, 24, 0.98);
  border-color: rgba(122, 255, 184, 0.42);
  color: #dfffea;
  box-shadow: 0 16px 30px rgba(54, 230, 137, 0.22);
}

.vault__key--copy:hover,
.vault__key--copy:focus-visible {
  border-color: rgba(186, 217, 255, 0.34);
  box-shadow: 0 0 16px rgba(120, 168, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.vault__key--copy.is-copied {
  border-color: rgba(122, 255, 184, 0.82);
  box-shadow:
    0 0 0 1px rgba(122, 255, 184, 0.24),
    0 0 28px rgba(54, 230, 137, 0.34),
    0 0 52px rgba(54, 230, 137, 0.16);
  background: linear-gradient(180deg, rgba(90, 255, 176, 0.12), rgba(90, 255, 176, 0.06));
}

.vault__key--copy:hover .vault__key-tooltip,
.vault__key--copy:focus-visible .vault__key-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.vault__key-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.vault__key--copy.is-copied,
.vault__key-tooltip.is-visible {
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.vault__key--copy.is-fading {
  border-color: rgba(122, 255, 184, 0.22);
  box-shadow:
    0 0 0 1px rgba(122, 255, 184, 0.08),
    0 0 14px rgba(54, 230, 137, 0.12);
  background: linear-gradient(180deg, rgba(90, 255, 176, 0.04), rgba(90, 255, 176, 0.02));
}

.vault__key-tooltip.is-fading {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(4px);
}

.vault__key.is-hidden {
  color: rgba(226, 234, 255, 0.76);
  background: linear-gradient(180deg, rgba(153, 173, 204, 0.08), rgba(153, 173, 204, 0.04));
  border-color: rgba(153, 173, 204, 0.16);
  user-select: none;
}

.vault__key.is-visible {
  color: #f5efff;
}

.vault__metric {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  text-align: center;
}

.vault__status-cell,
.vault__action-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault__action-button {
  min-height: 48px;
  padding: 0 18px;
  min-width: 112px;
  white-space: normal;
  line-height: 1.1;
  text-align: center;
}

.vault__grid--row > :nth-child(2),
.vault__grid--row > :nth-child(3),
.vault__grid--row > :nth-child(4) {
  padding-inline: 4px;
}

.vault__hint {
  margin-top: 10px;
  color: #c9ced8;
  font-size: 0.78rem;
}

.status-pill.active {
  background: rgba(80, 217, 167, 0.16);
  color: #bdf6e3;
}

.app-loading {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 28px 0 18px;
}

.app-loading__dots {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.app-loading__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: app-loading-pulse 1.2s ease-in-out infinite;
}

.app-loading__dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.app-loading__dots span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes app-loading-pulse {
  0%,
  80%,
  100% {
    opacity: 0.32;
    transform: translateY(0) scale(0.88);
  }

  40% {
    opacity: 1;
    transform: translateY(-1px) scale(1);
  }
}

.seo-footer {
  margin-top: 30px;
  text-align: center;
}

.seo-footer__eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-footer h2,
.seo-footer h3,
.seo-footer p {
  margin-top: 0;
}

.seo-footer h2 {
  max-width: 13ch;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.seo-footer__lead {
  max-width: 52ch;
  margin: 0 auto 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.68;
}

.seo-footer__signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  padding: 0;
  margin: 0 auto 22px;
  list-style: none;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.9rem;
}

.seo-footer__signals li {
  position: relative;
  padding-left: 14px;
}

.seo-footer__signals li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 185, 115, 0.58);
}

.seo-footer__layout {
  position: relative;
  display: grid;
  gap: 44px;
}

.seo-footer__row {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.32fr) minmax(0, 0.82fr);
  align-items: start;
}

.seo-footer__story {
  padding: 4px 0;
  text-align: left;
}

.seo-footer__row > .seo-footer__story:first-child {
  grid-column: 1;
}

.seo-footer__story h3 {
  max-width: 12ch;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.seo-footer__story p {
  max-width: 34ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.8;
}

.seo-footer__story--compact h3 {
  max-width: 10ch;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.seo-footer__story--compact p {
  max-width: 26ch;
  font-size: 0.94rem;
  line-height: 1.72;
}

.seo-footer__story--right {
  grid-column: 3;
  justify-self: end;
}

.seo-footer__story--bottom {
  max-width: 30ch;
  margin: 10px auto 0;
  text-align: center;
}

.seo-footer__story--bottom h3,
.seo-footer__story--bottom p {
  margin-left: auto;
  margin-right: auto;
}

.seo-footer__layout::before {
  content: "";
  position: absolute;
  pointer-events: none;
  left: 12%;
  top: 54px;
  width: 76%;
  height: 286px;
  opacity: 0.82;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 760 286' fill='none'%3E%3Cpath d='M14 55C82 57 136 58 198 58C256 58 308 55 366 55C416 55 468 58 514 66C561 74 592 89 612 111C631 133 638 161 632 188C626 215 605 238 578 251C551 264 516 267 484 265' stroke='rgba(255,185,115,0.58)' stroke-width='2.5' stroke-linecap='round' stroke-dasharray='4 12'/%3E%3Ccircle cx='14' cy='55' r='3.5' fill='rgba(255,185,115,0.72)'/%3E%3Ccircle cx='366' cy='55' r='3.5' fill='rgba(255,185,115,0.72)'/%3E%3Ccircle cx='484' cy='265' r='3.5' fill='rgba(255,185,115,0.72)'/%3E%3C/svg%3E");
}

@media (max-width: 980px) {
  .topbar {
    padding: 16px 18px 12px;
  }

  .topbar__inner {
    width: min(100%, calc(100% - 12px));
  }

  .topbar__actions,
  .topbar__links {
    gap: 8px;
  }

  .topbar__link {
    padding: 0 16px;
    letter-spacing: 0.14em;
  }

  .topbar__toggle-track {
    width: 148px;
  }

  .seo-footer__row {
      grid-template-columns: 1fr;
      gap: 22px;
  }

  .seo-footer__layout::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .app-loading {
    min-height: 240px;
    padding-top: 18px;
  }

  .shell {
    width: min(100%, calc(100% - 18px));
  }

  .hero-strip__panel {
    height: 140px;
  }

  .dock {
    --dock-size: 62px;
    padding: 14px 10px;
    overflow-x: auto;
  }

  .dock__items {
    min-width: 0;
    padding: 0;
    gap: 8px;
  }

  .dock__item {
    width: var(--dock-size);
    height: var(--dock-size);
  }

  .modal__body {
    padding: 58px 18px 0;
  }

  .modal__lede {
    font-size: 1rem;
  }

  .reward-hero,
  .progress-panel,
  .reward-summary,
  .vault {
    border-radius: 20px;
  }

  .reward-hero,
  .progress-panel,
  .reward-summary {
    padding-left: 18px;
    padding-right: 18px;
  }

  .reward-hero__cover {
    padding: 18px;
    min-height: 0;
  }

  .reward-hero__actions {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .reward-hero__badge {
    width: 100%;
  }

  .task-card__title-row,
  .task-card__bottom,
  .progress-panel__header,
  .reward-summary,
  .topbar__inner {
    align-items: stretch;
  }

  .topbar__inner {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .topbar__actions {
    width: auto;
    margin-left: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .topbar__links {
    width: auto;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .topbar__link {
    width: auto;
    min-height: 44px;
  }

  .topbar__toggle {
    width: auto;
  }

  .topbar__toggle-track {
    width: 148px;
  }

  .language-switch,
  .language-switch__trigger {
    width: 100%;
  }

  .language-switch__menu {
    left: 0;
    min-width: 0;
  }

  .task-card__actions,
  .actions-grid {
    grid-template-columns: 1fr;
  }

  .task-card__actions {
    justify-self: end;
    margin-left: auto;
  }

  .vault__grid {
    grid-template-columns: 1fr;
  }

  .vault__grid--head {
    display: none;
  }

  .vault__grid--row {
    padding: 14px;
  }

  .vault__action-button {
    width: 100%;
  }

  .vault__key {
    font-size: 0.96rem;
  }

  .seo-footer {
    margin-top: 24px;
  }

  .seo-footer h2 {
    max-width: none;
  }

  .seo-footer__signals {
    gap: 12px;
    margin-bottom: 18px;
  }

  .seo-footer__signals li {
    width: 100%;
    padding-left: 0;
  }

  .seo-footer__signals li::before {
    display: none;
  }

  .seo-footer__story {
    padding: 0;
  }

  .seo-footer__story h3,
  .seo-footer__story p {
    max-width: none;
  }

  .seo-footer__story--right,
  .seo-footer__story--bottom {
    justify-self: stretch;
    text-align: left;
  }

  .seo-footer__story--bottom h3,
  .seo-footer__story--bottom p {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 12px 10px 8px;
  }

  .topbar__inner {
    width: 100%;
    gap: 8px;
  }

  .brand__logo {
    width: 38px;
    height: 38px;
  }

  .topbar__actions {
    gap: 6px;
  }

  .topbar__links {
    gap: 6px;
  }

  .topbar__link {
    width: 44px;
    min-height: 40px;
    padding: 0;
    gap: 0;
  }

  .topbar__link span:last-child {
    display: none;
  }

  .topbar__link-icon {
    margin: 0;
  }

  .topbar__toggle-track {
    width: 128px;
    min-height: 40px;
  }

  .topbar__toggle-side {
    font-size: 0.68rem;
  }

  .topbar__toggle-flag {
    width: 18px;
    height: 18px;
  }

  .shell {
    width: min(100%, calc(100% - 14px));
    margin-bottom: 28px;
  }

  .experience {
    margin-top: 6px;
  }

  .reward-shell {
    gap: 12px;
  }

  .reward-hero,
  .progress-panel,
  .reward-summary {
    padding: 14px;
  }

  .reward-hero,
  .progress-panel,
  .reward-summary,
  .vault {
    border-radius: 16px;
  }

  .reward-hero__head {
    gap: 12px;
    margin-bottom: 12px;
  }

  .reward-hero__title {
    font-size: clamp(1.56rem, 11vw, 2.35rem);
    line-height: 1.04;
  }

  .reward-hero__subtitle {
    font-size: 0.92rem;
  }

  .reward-hero__cover {
    padding: 14px;
  }

  .reward-hero__level,
  .reward-summary__button,
  .task-card__action,
  .vault__action-button {
    min-height: 42px;
  }

  .progress-panel__header,
  .reward-summary,
  .task-card__title-row,
  .task-card__bottom {
    gap: 10px;
  }

  .dock {
    --dock-size: 52px;
    padding: 12px 8px;
  }

  .dock__items {
    gap: 6px;
  }

  .task-card {
    padding: 14px;
    gap: 12px;
  }

  .task-card__actions,
  .actions-grid {
    width: 100%;
  }

  .vault__grid--row {
    padding: 12px;
  }

  .vault__key {
    padding: 11px 12px;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
  }

  .modal__body {
    max-height: min(82vh, 620px);
    overflow-y: auto;
    padding: 36px 14px 0;
  }

  .modal__lede {
    font-size: 0.94rem;
  }

  .seo-footer {
    margin-top: 18px;
  }
}
