:root {
  --tu-bg: #0b0a08;
  --tu-bg-soft: #151311;
  --tu-panel: #f3e8d7;
  --tu-panel-soft: #ebdfcd;
  --tu-text: #f8f2e8;
  --tu-text-dim: #c7bcae;
  --tu-dark: #151311;
  --tu-dark-soft: #26211b;
  --tu-accent: #f7c847;
  --tu-accent-deep: #d69b00;
  --tu-line: rgba(255, 255, 255, 0.08);
  --tu-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --tu-radius-xl: 30px;
  --tu-radius-lg: 24px;
  --tu-radius-md: 18px;
  --tu-radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body.tu-body {
  margin: 0;
  color: var(--tu-text);
  font-family: "Outfit", "Noto Sans KR", sans-serif;
  word-break: keep-all;
  overflow-wrap: normal;
  background:
    radial-gradient(circle at top left, rgba(247, 200, 71, 0.12), transparent 22%),
    linear-gradient(180deg, #0b0a08 0%, #12110f 40%, #0b0a08 100%);
}

body.tu-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 95%);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.tu-site-shell {
  width: min(1368px, calc(100% - 96px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.tu-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 172px 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}

.tu-logo-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tu-logo {
  display: inline-flex;
  flex-direction: column;
  font-size: 2.25rem;
  line-height: 0.82;
  letter-spacing: -0.08em;
  font-weight: 800;
}

.tu-logo-word {
  display: block;
}

.tu-logo-smile {
  color: var(--tu-accent);
}

.tu-logo-subtitle {
  color: var(--tu-text-dim);
  font-size: 0.9rem;
}

.tu-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.tu-nav-link {
  position: relative;
  padding: 12px 0;
  font-weight: 700;
  font-size: 0.98rem;
}

.tu-nav-link.is-active::after,
.tu-nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--tu-accent);
}

.tu-header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tu-icon-button,
.tu-profile-chip,
.tu-menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--tu-line);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
}

.tu-icon-button,
.tu-menu-toggle {
  cursor: pointer;
}

.tu-icon-button span {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.tu-icon-button span::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -2px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 999px;
}

.tu-bell span {
  width: 18px;
  height: 16px;
  border-radius: 10px 10px 6px 6px;
}

.tu-bell strong {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--tu-accent);
  color: #111;
  font-size: 0.78rem;
  font-weight: 800;
}

.tu-profile-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f8f2e8, #eadbc4);
  color: #111;
  font-weight: 800;
  font-size: 0.95rem;
}

.tu-menu-toggle {
  display: none;
  gap: 4px;
}

.tu-menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.tu-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tu-hero {
  position: relative;
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--tu-line);
  box-shadow: var(--tu-shadow);
  background: #050505;
}

.tu-hero-media,
.tu-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tu-hero-media img {
  object-fit: cover;
  object-position: center center;
}

.tu-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.7) 33%, rgba(7, 7, 7, 0.25) 58%, rgba(7, 7, 7, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.tu-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  max-width: 560px;
  min-height: 540px;
  padding: 42px 34px;
}

.tu-hero-badge,
.tu-kicker {
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  color: #f9dc7d;
  background: rgba(247, 200, 71, 0.12);
  border: 1px solid rgba(247, 200, 71, 0.24);
  font-size: 0.84rem;
  font-weight: 700;
}

.tu-hero h1,
.tu-generic-hero h1 {
  margin: 0;
  font-size: clamp(2.9rem, 4vw, 4.8rem);
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.tu-hero h1 span {
  display: block;
}

.tu-accent {
  color: var(--tu-accent);
}

.tu-hero p,
.tu-generic-hero p {
  margin: 0;
  max-width: 500px;
  color: #eee0cc;
  font-size: 1rem;
  line-height: 1.55;
}

.tu-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tu-button {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tu-button:hover {
  transform: translateY(-2px);
}

.tu-button-primary {
  color: #111;
  background: linear-gradient(180deg, #ffd86b 0%, #f2c541 100%);
  box-shadow: 0 14px 34px rgba(247, 200, 71, 0.24);
}

.tu-button-secondary {
  color: var(--tu-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tu-button-ghost {
  color: #f7d36e;
  border: 1px dashed rgba(247, 200, 71, 0.4);
  background: transparent;
}

.tu-button-dark {
  width: 100%;
  background: #111;
  color: var(--tu-text);
}

.tu-member-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tu-member-row p {
  margin: 0;
  color: #f9d86a;
  font-weight: 700;
  font-size: 0.95rem;
}

.tu-member-stack {
  display: flex;
  align-items: center;
}

.tu-member-stack img {
  width: 38px;
  height: 38px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid rgba(12, 12, 12, 0.95);
  background: #111;
}

.tu-member-stack img:first-child {
  margin-left: 0;
}

.tu-dashboard-grid,
.tu-page-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.tu-panel {
  grid-column: span 3;
  border-radius: var(--tu-radius-lg);
  padding: 18px;
  background: linear-gradient(180deg, rgba(248, 241, 230, 0.99), rgba(237, 226, 208, 0.98));
  color: var(--tu-dark);
  box-shadow: var(--tu-shadow);
  border: 1px solid rgba(19, 19, 19, 0.08);
}

.tu-panel-dark {
  background: linear-gradient(180deg, #181715, #0f0f0f);
  color: var(--tu-text);
  border-color: rgba(255, 255, 255, 0.05);
}

.tu-panel-summary {
  background: linear-gradient(180deg, #171615, #0f0f0f);
  color: var(--tu-text);
}

.tu-panel-heading,
.tu-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.tu-panel-heading h2,
.tu-section-heading h2,
.tu-panel h2,
.tu-panel h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.35;
}

.tu-panel-heading a,
.tu-text-link {
  color: #6d6154;
  font-weight: 700;
  font-size: 0.84rem;
}

.tu-panel-dark .tu-panel-heading a,
.tu-panel-summary .tu-panel-heading a {
  color: #d8c9a7;
}

.tu-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
}

.tu-chip.is-success {
  background: rgba(89, 178, 105, 0.2);
  color: #1d7f35;
}

.tu-mission-panel {
  background: linear-gradient(180deg, #fbf6ee, #efe4d2);
}

.tu-mission-card,
.tu-summary-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tu-mission-main {
  display: grid;
  grid-template-columns: 1fr 148px;
  gap: 10px;
  align-items: center;
}

.tu-mission-copy h3 {
  margin: 12px 0 10px;
  font-size: 1.18rem;
  line-height: 1.28;
}

.tu-mission-copy p,
.tu-summons-card p,
.tu-post-item span,
.tu-panel p,
.tu-summary-top p,
.tu-settings-note {
  color: #5d544a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.tu-report-card,
.tu-summons-card,
.tu-post-item,
.tu-loop-card {
  border-radius: 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.58);
  padding: 14px;
}

.tu-report-top,
.tu-summary-top,
.tu-summons-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tu-avatar-image,
.tu-summary-image {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.tu-summary-image {
  width: 60px;
  height: 60px;
}

.tu-kindness-line {
  display: block;
  margin-bottom: 14px;
}

.tu-report-card p,
.tu-post-item h3 {
  margin: 10px 0 14px;
  line-height: 1.45;
  font-size: 0.95rem;
}

.tu-report-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.tu-report-gallery img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.tu-report-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #675b4f;
  font-weight: 700;
  font-size: 0.84rem;
}

.tu-summons-list,
.tu-post-list,
.tu-report-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tu-summons-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tu-summons-card img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.tu-summons-card h3 {
  margin: 8px 0 4px;
  font-size: 0.98rem;
}

.tu-vote-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tu-vote-agenda {
  color: var(--tu-accent);
  font-weight: 800;
}

.tu-vote-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}

.tu-vote-card p {
  color: #b8aa94;
  font-size: 0.84rem;
}

.tu-vote-ring {
  align-self: flex-end;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.08);
  color: #f7e9c3;
  font-size: 0.78rem;
  font-weight: 800;
  transform: rotate(-12deg);
}

.tu-vote-bar,
.tu-progress-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.tu-vote-bar span,
.tu-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tu-accent), #ffdc72);
}

.tu-vote-stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #f1ddaf;
  font-weight: 700;
  font-size: 0.84rem;
}

.tu-podium-grid,
.tu-goods-grid,
.tu-loop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tu-podium-card,
.tu-good-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.05);
}

.tu-podium-image,
.tu-good-asset {
  width: 100%;
  border-radius: 16px;
  background: #fffdf9;
}

.tu-rank {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: var(--tu-accent);
  font-weight: 800;
}

.tu-podium-card em {
  color: var(--tu-accent-deep);
  font-style: normal;
  font-weight: 800;
}

.tu-post-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.tu-summary-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tu-summary-stats div {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.tu-summary-stats span {
  display: block;
  margin-bottom: 8px;
  color: #baa98f;
  font-size: 0.8rem;
}

.tu-summary-stats strong {
  font-size: 1.38rem;
}

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

.tu-panel-summary .tu-summary-top p,
.tu-panel-summary .tu-progress span,
.tu-panel-dark p {
  color: #baa98f;
}

.tu-generic-hero {
  padding: 28px 26px;
  border-radius: 30px;
  border: 1px solid var(--tu-line);
  background: linear-gradient(180deg, #171615, #111);
  box-shadow: var(--tu-shadow);
}

.tu-page-grid .tu-panel,
.tu-loop-card {
  grid-column: span 4;
}

.tu-span-2 {
  grid-column: span 8 !important;
}

.tu-span-3 {
  grid-column: span 12 !important;
}

.tu-form-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tu-report-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tu-report-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #251f1a;
  font-weight: 700;
}

.tu-report-form textarea,
.tu-report-form input,
.tu-report-form select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(21, 19, 17, 0.12);
  background: rgba(255, 255, 255, 0.85);
  padding: 14px 16px;
  font: inherit;
}

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

.tu-form-success {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(74, 187, 104, 0.16);
  color: #177334;
  font-weight: 700;
}

.tu-footer {
  display: grid;
  grid-template-columns: 1fr 1.8fr auto;
  gap: 20px;
  align-items: end;
  margin-top: 18px;
}

.tu-footer-brand {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--tu-line);
  background: rgba(255, 255, 255, 0.04);
}

.tu-footer-logo {
  font-size: 1.7rem;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.tu-footer-brand p {
  color: var(--tu-text-dim);
}

.tu-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #c5b9aa;
  font-size: 0.9rem;
}

.tu-footer-socials {
  display: flex;
  gap: 12px;
}

.tu-footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--tu-line);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1200px) {
  .tu-hero-copy {
    max-width: 540px;
    min-height: 500px;
  }

  .tu-dashboard-grid .tu-panel,
  .tu-page-grid .tu-panel {
    grid-column: span 6 !important;
  }

  .tu-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .tu-site-shell {
    width: min(100% - 28px, 1368px);
  }

  .tu-header {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .tu-menu-toggle {
    display: grid;
  }

  .tu-nav {
    position: fixed;
    inset: 88px 12px auto;
    padding: 18px;
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: rgba(16, 15, 13, 0.96);
    border: 1px solid var(--tu-line);
    box-shadow: var(--tu-shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.tu-menu-open .tu-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .tu-nav-link {
    width: 100%;
    padding: 10px 0;
  }

  .tu-hero {
    min-height: 680px;
  }

  .tu-hero-copy {
    min-height: 680px;
    max-width: 100%;
    padding: 30px 22px;
    justify-content: flex-start;
  }

  .tu-hero::after {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.52) 0%, rgba(7, 7, 7, 0.8) 32%, rgba(7, 7, 7, 0.92) 70%, rgba(7, 7, 7, 0.95) 100%);
  }

  .tu-dashboard-grid .tu-panel,
  .tu-page-grid .tu-panel,
  .tu-loop-card {
    grid-column: span 12 !important;
  }

  .tu-mission-main,
  .tu-post-item,
  .tu-summons-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .tu-summary-stats,
  .tu-podium-grid,
  .tu-goods-grid,
  .tu-loop-grid,
  .tu-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .tu-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo tools"
      "toggle tools";
    gap: 14px;
  }

  .tu-logo-block {
    grid-area: logo;
  }

  .tu-menu-toggle {
    grid-area: toggle;
  }

  .tu-header-tools {
    grid-area: tools;
  }

  .tu-hero {
    min-height: 620px;
    border-radius: 26px;
  }

  .tu-hero-copy {
    min-height: 620px;
    padding: 24px 18px;
  }

  .tu-hero h1,
  .tu-generic-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .tu-hero p,
  .tu-generic-hero p {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .tu-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .tu-button {
    width: 100%;
  }

  .tu-panel,
  .tu-generic-hero {
    border-radius: 22px;
    padding: 18px;
  }

  .tu-report-gallery {
    grid-template-columns: 1fr;
  }
}
v {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.tu-summary-stats span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.tu-summary-stats strong {
  font-size: 1.7rem;
}

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

.tu-generic-hero {
  padding: 34px 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(247, 200, 70, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.94), rgba(12, 12, 12, 0.96));
  border: 1px solid var(--tu-line);
  box-shadow: var(--tu-shadow);
}

.tu-page-grid .tu-panel,
.tu-loop-card {
  grid-column: span 4;
}

.tu-span-2 {
  grid-column: span 8 !important;
}

.tu-span-3 {
  grid-column: span 12 !important;
}

.tu-single-card {
  color: #1b1713;
}

.tu-form-panel {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.tu-report-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tu-report-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #2a241e;
  font-weight: 700;
}

.tu-report-form textarea,
.tu-report-form input,
.tu-report-form select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
}

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

.tu-form-success {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(74, 187, 104, 0.14);
  color: #177334;
  font-weight: 700;
}

.tu-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr auto;
  gap: 20px;
  margin-top: 26px;
  padding: 24px 18px 8px;
  align-items: end;
}

.tu-footer-brand {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tu-line);
}

.tu-footer-logo {
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.tu-footer-brand p {
  color: var(--tu-muted);
}

.tu-footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  color: #c9bcab;
}

.tu-footer-socials {
  display: flex;
  gap: 12px;
}

.tu-footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tu-line);
  color: #f2e6d0;
  font-weight: 800;
}

@media (max-width: 1200px) {
  .tu-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .tu-nav {
    justify-content: flex-start;
  }

  .tu-hero {
    grid-template-columns: 1fr;
  }

  .tu-dashboard-grid .tu-panel,
  .tu-page-grid .tu-panel {
    grid-column: span 6 !important;
  }

  .tu-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .tu-site-shell {
    width: min(100% - 20px, 1500px);
  }

  .tu-hero,
  .tu-generic-hero,
  .tu-panel {
    border-radius: 24px;
  }

  .tu-hero {
    min-height: auto;
    padding: 24px 18px;
  }

  .tu-hero-copy {
    padding: 0;
  }

  .tu-stage-banner {
    position: static;
    transform: none;
    margin-bottom: 20px;
  }

  .tu-stage-graffiti {
    display: none;
  }

  .tu-crew {
    min-height: 320px;
    transform: scale(0.82);
    transform-origin: bottom center;
  }

  .tu-dashboard-grid .tu-panel,
  .tu-page-grid .tu-panel,
  .tu-loop-card {
    grid-column: span 12 !important;
  }

  .tu-summary-stats,
  .tu-podium-grid,
  .tu-goods-grid,
  .tu-loop-grid,
  .tu-form-grid {
    grid-template-columns: 1fr;
  }

  .tu-post-item,
  .tu-summons-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Generated-art dashboard refresh. */
:root {
  --tu-radius-xl: 12px;
  --tu-radius-lg: 8px;
  --tu-radius-md: 8px;
  --tu-radius-sm: 8px;
}

body.tu-body {
  background: #090908;
}

.tu-site-shell {
  width: min(1512px, calc(100% - 48px));
  padding: 14px 0 26px;
}

.tu-header {
  grid-template-columns: 180px 1fr auto;
  margin-bottom: 10px;
}

.tu-logo,
.tu-hero h1,
.tu-generic-hero h1,
.tu-footer-logo {
  letter-spacing: 0;
}

.tu-logo {
  font-size: 2rem;
}

.tu-nav {
  gap: 34px;
}

.tu-nav-link {
  font-size: 0.96rem;
}

.tu-profile-avatar {
  object-fit: cover;
  border-radius: 50%;
}

.tu-main {
  gap: 10px;
}

.tu-hero {
  min-height: 398px;
  border-radius: 10px;
  border-color: rgba(255, 255, 255, 0.1);
}

.tu-hero-media img {
  object-position: center center;
}

.tu-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 31%, rgba(5, 5, 5, 0.32) 60%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
}

.tu-hero-copy {
  min-height: 398px;
  max-width: 610px;
  padding: 30px 30px 28px;
  gap: 13px;
}

.tu-hero .tu-hero-badge {
  display: none;
}

.tu-hero h1 {
  font-size: clamp(2.35rem, 3.25vw, 3.75rem);
  line-height: 1.16;
}

.tu-hero p {
  max-width: 455px;
  color: #e9decf;
}

.tu-button {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 22px;
}

.tu-dashboard-grid,
.tu-page-grid {
  gap: 10px;
}

.tu-panel {
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.tu-panel-heading {
  margin-bottom: 11px;
}

.tu-panel-heading h2,
.tu-section-heading h2,
.tu-panel h2,
.tu-panel h3 {
  font-size: 0.98rem;
}

.tu-report-card,
.tu-summons-card,
.tu-post-item,
.tu-loop-card,
.tu-podium-card,
.tu-good-card,
.tu-summary-stats div {
  border-radius: 8px;
}

.tu-mission-main {
  grid-template-columns: 1fr 132px;
}

.tu-mission-main img,
.tu-podium-image,
.tu-good-asset,
.tu-report-gallery img {
  border-radius: 8px;
  object-fit: cover;
}

.tu-mission-main img {
  aspect-ratio: 1;
}

.tu-avatar-image,
.tu-summary-image,
.tu-member-stack img {
  object-fit: cover;
}

.tu-report-gallery img {
  aspect-ratio: 5 / 3;
}

.tu-podium-image,
.tu-good-asset {
  aspect-ratio: 1;
}

.tu-panel-dark,
.tu-panel-summary {
  background: linear-gradient(180deg, #151514, #0d0d0c);
}

@media (max-width: 1200px) {
  .tu-header {
    grid-template-columns: 170px 1fr auto;
  }

  .tu-hero-copy {
    min-height: 430px;
  }

  .tu-hero {
    min-height: 430px;
  }
}

@media (max-width: 920px) {
  .tu-site-shell {
    width: min(100% - 24px, 1512px);
  }

  .tu-header {
    grid-template-columns: 1fr auto auto;
  }

  .tu-hero,
  .tu-hero-copy {
    min-height: 620px;
  }

  .tu-hero-media img {
    object-position: 62% center;
  }

  .tu-hero::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.82) 42%, rgba(5, 5, 5, 0.96) 100%);
  }
}

@media (max-width: 560px) {
  html,
  body.tu-body {
    overflow-x: hidden;
  }

  .tu-site-shell {
    width: min(100% - 16px, 1512px);
  }

  .tu-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo tools"
      "toggle toggle";
    overflow: hidden;
  }

  .tu-header-tools {
    gap: 8px;
    justify-self: end;
  }

  .tu-header-tools .tu-icon-button {
    display: none;
  }

  .tu-menu-toggle {
    justify-self: start;
  }

  .tu-hero,
  .tu-hero-copy {
    min-height: 600px;
  }

  .tu-hero-copy {
    padding: 22px 18px;
  }

  .tu-hero h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 6.5vw, 1.75rem);
    line-height: 1.18;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .tu-hero h1 span {
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .tu-hero p,
  .tu-member-row p {
    max-width: 100%;
    font-size: 0.9rem;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .tu-member-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .tu-member-row p {
    flex: 1 1 auto;
    min-width: 0;
  }

  .tu-mission-main {
    grid-template-columns: 1fr;
  }

  .tu-mission-main img {
    width: 100%;
    max-height: 220px;
  }
}

/* Reference-precision pass: hero typography, overlay header, compact dashboard. */
:root {
  --tu-cream-card: #f4ecdf;
  --tu-cream-card-2: #eadfce;
}

.tu-site-shell {
  position: relative;
  width: min(1488px, calc(100% - 60px));
  padding-top: 0;
}

.tu-header {
  position: absolute;
  top: 16px;
  left: 14px;
  right: 14px;
  z-index: 40;
  grid-template-columns: 260px 1fr auto;
  margin-bottom: 0;
}

.tu-logo {
  font-size: 2.18rem;
  line-height: 0.82;
}

.tu-logo-subtitle {
  font-size: 0.86rem;
}

.tu-nav {
  gap: 36px;
}

.tu-nav-link {
  padding: 10px 0 14px;
  color: #fff9eb;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.tu-header-tools {
  gap: 12px;
}

.tu-icon-button,
.tu-profile-chip {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.34);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.tu-main {
  gap: 10px;
}

.tu-hero {
  min-height: 418px;
  border-radius: 8px;
}

.tu-hero-media img {
  object-position: center 48%;
}

.tu-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.78) 27%, rgba(3, 3, 3, 0.18) 62%, rgba(3, 3, 3, 0.02) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.22));
}

.tu-hero-copy {
  min-height: 418px;
  max-width: 650px;
  padding: 106px 0 28px 28px;
  gap: 13px;
}

.tu-hero h1 {
  font-size: clamp(2.45rem, 3.15vw, 3.35rem);
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.tu-hero h1 span {
  display: block;
}

.tu-hero h1 em {
  color: var(--tu-accent);
  font-style: normal;
}

.tu-hero p {
  max-width: 470px;
  color: #f1e6d8;
  font-size: 1.02rem;
  line-height: 1.62;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62);
}

.tu-hero-flag {
  position: absolute;
  top: 36px;
  left: min(72vw, 1010px);
  width: 220px;
  padding: 16px 18px;
  transform: rotate(8deg);
  transform-origin: top left;
  color: #f5ead7;
  background: rgba(12, 12, 12, 0.76);
  border: 1px solid rgba(247, 200, 71, 0.22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

.tu-hero-flag::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.tu-hero-flag strong {
  display: block;
  font-size: 1.55rem;
  line-height: 0.88;
  font-weight: 800;
}

.tu-hero-flag span {
  color: var(--tu-accent);
}

.tu-hero-flag small {
  display: block;
  margin-top: 12px;
  font-size: 0.68rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.tu-hero-actions {
  gap: 14px;
}

.tu-button {
  min-height: 44px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.tu-hero-actions .tu-button {
  min-width: 178px;
}

.tu-member-row {
  gap: 14px;
}

.tu-member-row p {
  color: #fff2ca;
}

.tu-member-row p::first-letter {
  color: var(--tu-accent);
}

.tu-dashboard-grid {
  gap: 10px;
  align-items: start;
  grid-auto-flow: dense;
}

.tu-panel {
  padding: 13px 14px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 32%),
    linear-gradient(180deg, var(--tu-cream-card), var(--tu-cream-card-2));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.tu-panel-dark,
.tu-panel-summary {
  background:
    radial-gradient(circle at 78% 28%, rgba(247, 200, 71, 0.08), transparent 26%),
    linear-gradient(180deg, #171716, #0b0b0a);
}

.tu-panel-heading {
  align-items: center;
  margin-bottom: 10px;
}

.tu-panel-heading h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 800;
}

.tu-panel-heading h2::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #111 0 3px, transparent 4px),
    linear-gradient(180deg, #ffd762, #e5aa13);
  box-shadow: inset 0 0 0 2px rgba(17, 17, 17, 0.1);
}

.tu-panel-heading a,
.tu-text-link {
  font-size: 0.78rem;
}

.tu-mission-card,
.tu-summary-card,
.tu-vote-card {
  gap: 10px;
}

.tu-mission-main {
  grid-template-columns: 1fr 132px;
  gap: 12px;
}

.tu-mission-main img {
  width: 132px;
  height: 132px;
}

.tu-mission-copy h3 {
  margin: 10px 0 8px;
  font-size: 1.15rem;
}

.tu-mission-card small {
  font-size: 0.8rem;
}

.tu-report-card,
.tu-summons-card,
.tu-post-item,
.tu-loop-card {
  padding: 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.tu-report-top {
  gap: 10px;
}

.tu-avatar-image {
  width: 42px;
  height: 42px;
}

.tu-report-card p {
  margin: 8px 0 9px;
}

.tu-kindness-line {
  margin-bottom: 9px;
}

.tu-report-gallery {
  gap: 6px;
  margin-bottom: 8px;
}

.tu-report-gallery img {
  aspect-ratio: 1.72;
}

.tu-report-meta {
  font-size: 0.78rem;
}

.tu-summons-list,
.tu-post-list {
  gap: 7px;
}

.tu-summons-card {
  min-height: 58px;
  padding: 7px 9px;
  gap: 8px;
}

.tu-summons-card img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.tu-summons-meta {
  min-width: 0;
  gap: 9px;
}

.tu-summons-meta > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 2px;
  align-items: center;
  min-width: 0;
}

.tu-summons-meta .tu-chip {
  grid-row: 1 / 3;
  padding: 4px 7px;
  font-size: 0.62rem;
}

.tu-summons-card h3 {
  margin: 0;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tu-summons-card p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tu-summons-card strong {
  white-space: nowrap;
  font-size: 0.92rem;
}

.tu-vote-card {
  position: relative;
  min-height: 238px;
}

.tu-vote-card h3,
.tu-vote-card p,
.tu-vote-agenda {
  max-width: calc(100% - 116px);
}

.tu-vote-ring {
  position: absolute;
  top: 44px;
  right: 10px;
  width: 88px;
  height: 88px;
  font-size: 0.72rem;
}

.tu-vote-bar {
  margin-top: 26px;
  height: 9px;
}

.tu-vote-stats {
  font-size: 0.78rem;
}

.tu-podium-grid,
.tu-goods-grid {
  gap: 8px;
}

.tu-podium-card,
.tu-good-card {
  padding: 9px;
  border-radius: 8px;
  gap: 6px;
}

.tu-podium-card strong,
.tu-good-card h3 {
  font-size: 0.84rem;
  line-height: 1.24;
}

.tu-podium-card p,
.tu-good-card strong {
  font-size: 0.76rem;
}

.tu-rank {
  width: 30px;
  height: 30px;
}

.tu-post-item {
  min-height: 56px;
}

.tu-summary-card {
  padding: 2px 0 0;
}

.tu-summary-top {
  padding: 8px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.tu-summary-stats {
  gap: 8px;
}

.tu-summary-stats div {
  padding: 9px;
  border-radius: 8px;
}

.tu-summary-stats strong {
  font-size: 1.22rem;
}

.tu-progress-bar,
.tu-vote-bar {
  height: 8px;
}

@media (max-width: 1200px) {
  .tu-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 10px;
  }

  .tu-hero-copy {
    padding-top: 36px;
  }

  .tu-hero-flag {
    display: none;
  }
}

@media (max-width: 560px) {
  .tu-hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 58px 16px 22px;
  }

  .tu-hero h1 {
    max-width: calc(100vw - 78px);
    font-size: clamp(1.36rem, 6.35vw, 1.66rem);
    line-height: 1.22;
  }

  .tu-hero h1 span {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .tu-hero p,
  .tu-member-row p {
    width: min(100%, 260px);
    max-width: calc(100vw - 126px);
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .tu-hero-actions,
  .tu-member-row {
    width: 100%;
    max-width: calc(100vw - 78px);
  }

  .tu-hero-actions .tu-button {
    width: 100%;
    min-width: 0;
  }

  .tu-mission-main {
    grid-template-columns: 1fr;
  }

  .tu-mission-main img {
    width: 100%;
    height: 180px;
    max-height: 180px;
    object-fit: cover;
  }
}

/* Dedicated missions page. */
body.tu-body:not(.home) .tu-header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  grid-template-columns: 260px 1fr auto;
  margin-bottom: 12px;
}

body.tu-body:not(.home) .tu-site-shell {
  width: min(1512px, calc(100% - 32px));
}

body.tu-body:not(.home) .tu-nav-link {
  text-shadow: none;
}

.tu-missions-page {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 370px;
  gap: 14px;
  align-items: start;
}

.tu-mission-sidebar,
.tu-mission-center,
.tu-mission-rail {
  min-width: 0;
}

.tu-mission-sidebar {
  position: sticky;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tu-mission-title h1 {
  margin: 0 0 10px;
  color: #fff8ea;
  font-size: 2.15rem;
  line-height: 1;
}

.tu-mission-title p {
  margin: 0;
  color: #d8ccba;
  font-size: 0.98rem;
  line-height: 1.55;
}

.tu-mission-side-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tu-mission-side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  color: #d8ccba;
  font-weight: 800;
}

.tu-mission-side-nav a.is-active,
.tu-mission-side-nav a:hover {
  color: #ffd45b;
  background: rgba(255, 255, 255, 0.07);
}

.tu-mission-side-nav span {
  width: 22px;
  color: #ffd45b;
  text-align: center;
}

.tu-mission-remember {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(28, 27, 25, 0.84), rgba(14, 14, 13, 0.9)),
    radial-gradient(circle at 80% 70%, rgba(247, 200, 71, 0.14), transparent 36%);
}

.tu-mission-remember strong {
  display: block;
  margin-bottom: 12px;
  color: #fff8ea;
  font-size: 1.02rem;
}

.tu-mission-remember p {
  position: relative;
  z-index: 1;
  width: 128px;
  margin: 0;
  color: #e1d5c4;
  line-height: 1.55;
}

.tu-mission-remember img {
  position: absolute;
  right: -4px;
  bottom: -16px;
  width: 150px;
  border-radius: 50%;
}

.tu-mission-center {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tu-mission-hero-card,
.tu-mission-feed,
.tu-rail-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.tu-mission-hero-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 188px minmax(220px, 0.72fr);
  gap: 14px;
  align-items: center;
  padding: 18px 18px 18px 26px;
  color: #12110f;
  background:
    radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.75), transparent 42%),
    linear-gradient(135deg, #fbf4ea 0%, #eee3d3 100%);
}

.tu-mission-kicker {
  display: block;
  margin-bottom: 14px;
  color: #111;
  font-weight: 900;
}

.tu-mission-hero-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 1.78vw, 2rem);
  line-height: 1.3;
}

.tu-mission-hero-copy p {
  margin: 10px 0 12px;
  color: #171512;
  font-weight: 800;
}

.tu-difficulty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #6d6257;
}

.tu-difficulty strong {
  color: #f2bd28;
}

.tu-difficulty i {
  color: #d9d0c5;
  font-style: normal;
}

.tu-mission-hero-copy .tu-button {
  width: 174px;
}

.tu-mission-runner {
  width: 188px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.tu-mission-brief {
  padding: 13px 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.32);
}

.tu-mission-brief h3 {
  margin: 0 0 9px;
  font-size: 1rem;
}

.tu-mission-brief p {
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  color: #2b251f;
  line-height: 1.55;
  font-weight: 800;
}

.tu-mission-brief dl {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 0 11px;
}

.tu-mission-brief div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 8px;
}

.tu-mission-brief dt {
  color: #5e554c;
  font-size: 0.76rem;
}

.tu-mission-brief dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
}

.tu-mission-brief .tu-button {
  min-height: 38px;
}

.tu-mission-brief .tu-button {
  width: 100%;
}

.tu-mission-feed {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tu-mission-feed-head {
  display: grid;
  grid-template-columns: auto 1fr 174px auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.tu-mission-feed-head h2 {
  margin: 0;
  color: #fff8ea;
  font-size: 1.16rem;
}

.tu-filter-tabs {
  display: flex;
  gap: 0;
}

.tu-filter-tabs button,
.tu-filter-select,
.tu-checkbox {
  min-height: 38px;
  color: #ddd1c0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
}

.tu-filter-tabs button {
  padding: 0 16px;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.tu-filter-tabs button:first-child {
  border-radius: 8px 0 0 8px;
}

.tu-filter-tabs button:last-child {
  border-radius: 0 8px 8px 0;
}

.tu-filter-tabs button.is-active {
  color: #111;
  background: linear-gradient(180deg, #ffd86a, #f0bd28);
}

.tu-filter-select {
  display: flex;
  align-items: center;
  border-radius: 8px;
}

.tu-filter-select span {
  display: none;
}

.tu-filter-select select {
  width: 100%;
  padding: 0 12px;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
}

.tu-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.tu-mission-report-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tu-mission-report-row {
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr) 110px;
  grid-template-areas:
    "photo copy stamp"
    "photo copy actions";
  gap: 12px;
  align-items: center;
  min-height: 140px;
  padding: 8px;
  color: #14120f;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45), transparent 64%),
    linear-gradient(180deg, #f7f0e7, #ebe0cf);
}

.tu-mission-report-photo {
  grid-area: photo;
  width: 166px;
  height: 124px;
  border-radius: 6px;
  object-fit: cover;
}

.tu-mission-report-copy {
  grid-area: copy;
  min-width: 0;
}

.tu-report-author {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 3px;
}

.tu-report-author img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.tu-report-author span {
  margin-left: 4px;
  color: #6d6257;
  font-size: 0.82rem;
}

.tu-op-chip {
  display: inline-flex;
  margin-bottom: 3px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #2a210e;
  background: #f5c54b;
  font-size: 0.72rem;
  font-weight: 900;
}

.tu-mission-report-copy h3 {
  margin: 0 0 4px;
  font-size: 1.06rem;
}

.tu-mission-report-copy p {
  margin: 0 0 6px;
  color: #3d342b;
  font-size: 0.86rem;
}

.tu-report-tags {
  display: flex;
  gap: 26px;
  color: #6f6459;
  font-size: 0.72rem;
}

.tu-report-tags strong {
  color: #27913f;
  font-size: 1rem;
}

.tu-mission-stamp {
  grid-area: stamp;
  justify-self: center;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: #2c2a28;
  border: 4px double rgba(17, 17, 17, 0.46);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-12deg);
  opacity: 0.75;
}

.tu-report-actions {
  grid-area: actions;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  color: #312b25;
  font-size: 0.82rem;
}

.tu-load-more {
  display: grid;
  place-items: center;
  min-height: 36px;
  margin-top: 8px;
  color: #f4ead9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.tu-mission-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tu-rail-card {
  padding: 14px;
  color: #f4ead9;
  background:
    radial-gradient(circle at 78% 22%, rgba(247, 200, 71, 0.08), transparent 30%),
    linear-gradient(180deg, #191918, #10100f);
}

.tu-rail-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 11px;
}

.tu-rail-head h2 {
  margin: 0;
  font-size: 0.98rem;
}

.tu-rail-head a {
  color: #cfc0ac;
  font-size: 0.78rem;
}

.tu-mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.tu-mini-stat-grid div {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.tu-mini-stat-grid span,
.tu-level-card span,
.tu-level-card em {
  display: block;
  color: #bdaF9c;
  font-size: 0.76rem;
}

.tu-mini-stat-grid strong {
  display: block;
  margin-top: 4px;
  color: #fff8ea;
  font-size: 1.18rem;
}

.tu-mini-stat-grid div:nth-child(2) strong {
  color: #ffd153;
}

.tu-level-card {
  display: grid;
  grid-template-columns: 1fr 108px;
  gap: 14px;
  align-items: center;
}

.tu-level-card strong {
  display: block;
  margin: 6px 0 8px;
  color: #fff8ea;
  font-size: 1.24rem;
}

.tu-level-card div:first-child::after {
  content: "";
  display: block;
  width: 64%;
  height: 8px;
  margin: 8px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd153, #f0ba23);
  box-shadow: 84px 0 0 rgba(255, 255, 255, 0.14);
}

.tu-badge-medal {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 6px double #d9aa3e;
  border-radius: 50%;
  color: #ffe1a0;
  background:
    radial-gradient(circle, rgba(255, 210, 86, 0.1), transparent 58%),
    #171512;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-15deg);
}

.tu-category-list,
.tu-top-damage {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tu-category-list li,
.tu-top-damage li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  color: #d5c7b6;
}

.tu-category-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 31px;
  padding-bottom: 5px;
  font-size: 0.9rem;
}

.tu-category-list li::before {
  content: "●";
  color: #ffd153;
}

.tu-category-list li.is-active {
  color: #ffd153;
  font-weight: 900;
}

.tu-top-damage li {
  grid-template-columns: 22px 30px 1fr auto;
}

.tu-top-damage img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.tu-top-damage em {
  color: #ffd153;
  font-style: normal;
  font-weight: 900;
}

.tu-rail-card .tu-button {
  width: 100%;
  margin-top: 16px;
}

@media (max-width: 1280px) {
  .tu-missions-page {
    grid-template-columns: 220px minmax(540px, 1fr);
  }

  .tu-mission-rail {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body.tu-body:not(.home) .tu-header {
    grid-template-columns: 1fr auto auto;
  }

  .tu-missions-page {
    grid-template-columns: 1fr;
  }

  .tu-mission-sidebar {
    position: static;
  }

  .tu-mission-side-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tu-mission-remember {
    display: none;
  }

  .tu-mission-hero-card {
    grid-template-columns: 1fr;
  }

  .tu-mission-runner {
    justify-self: center;
  }

  .tu-mission-feed-head {
    grid-template-columns: 1fr;
  }

  .tu-mission-rail {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body.tu-body:not(.home) .tu-header {
    grid-template-columns: 1fr auto;
  }

  .tu-mission-side-nav {
    grid-template-columns: 1fr;
  }

  .tu-mission-hero-card {
    padding: 18px;
  }

  .tu-mission-report-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "copy"
      "stamp"
      "actions";
  }

  .tu-mission-report-photo {
    width: 100%;
    height: 180px;
  }

  .tu-mission-stamp {
    justify-self: start;
  }

  .tu-report-actions {
    justify-content: flex-start;
  }

  .tu-report-tags {
    flex-direction: column;
    gap: 4px;
  }
}
