/* Client experience and motion polish.
   This layer intentionally stays independent from the marketplace logic. */
:root {
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
  --motion-fast: 180ms;
  --motion-page: 520ms;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
}

.site-header {
  transition: box-shadow var(--motion-fast) ease, background-color var(--motion-fast) ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(26, 26, 28, .09);
  background: rgba(255, 255, 255, .97);
}

.site-header nav a,
.mobile-nav a,
.sidebar a {
  position: relative;
  transition: color var(--motion-fast) ease, background-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--motion-ease);
}

.site-header nav a[aria-current="page"] {
  color: var(--green);
}

.site-header nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  animation: nav-line-in 280ms var(--motion-ease) both;
}

.mobile-nav a[aria-current="page"] {
  color: var(--green);
}

.sidebar a[aria-current="page"] {
  color: var(--ink);
  background: #fdeeee;
  transform: translateX(3px);
}

.button,
button,
.card,
.product-card,
.task-card,
.preview-step,
.preview-category {
  transition: transform var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) ease,
    border-color var(--motion-fast) ease, background-color var(--motion-fast) ease;
}

.button:active,
button:active {
  transform: translateY(1px) scale(.985);
}

.button.primary,
.button.gold {
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.button.primary::after,
.button.gold::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -45%;
  width: 32%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  transform: skewX(-18deg) translateX(-240%);
  transition: transform 600ms var(--motion-ease);
}

.button.primary:hover::after,
.button.gold:hover::after {
  transform: skewX(-18deg) translateX(650%);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(234, 40, 38, .28);
  outline-offset: 3px;
}

.experience-page-enter > section,
.experience-page-enter > .product-page {
  animation: page-enter var(--motion-page) var(--motion-ease) both;
}

.motion-card {
  animation: card-enter 460ms var(--motion-ease) both;
  animation-delay: var(--motion-delay, 0ms);
}

.preview-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: 40%;
  bottom: -300px;
  border-radius: 50%;
  background: rgba(234, 40, 38, .18);
  filter: blur(44px);
  animation: hero-glow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.preview-phone {
  animation: phone-float 5.5s ease-in-out infinite;
  will-change: transform;
}

.preview-job {
  transition: transform 240ms var(--motion-ease), box-shadow 240ms ease;
}

.preview-phone:hover .preview-job:first-of-type {
  transform: translateX(-4px);
}

.preview-phone:hover .preview-job:nth-of-type(2) {
  transform: translateX(4px);
}

.preview-step:hover,
.preview-category:hover,
.product-card:hover,
.task-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 40, 38, .42);
  box-shadow: 0 18px 42px rgba(26, 26, 28, .09);
}

.client-start-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #eee8e8;
  font-size: 13px;
  background: rgba(255,255,255,.06);
}

.client-start-note::before {
  content: "?";
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.client-confidence {
  margin: 28px 0 38px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
  box-shadow: 0 16px 45px rgba(26,26,28,.06);
}

.client-confidence-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.client-confidence-head h2 {
  margin: 5px 0 0;
  font-size: clamp(23px, 3vw, 31px);
  letter-spacing: -.035em;
}

.client-confidence-head p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
}

.client-confidence-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.client-confidence-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.client-confidence-step > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.client-confidence-step strong,
.client-confidence-step small {
  display: block;
}

.client-confidence-step small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.dashboard-quick-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff8f8;
}

.dashboard-quick-actions > strong {
  margin-right: auto;
}

.dashboard-quick-actions .button {
  min-height: 42px;
}

.workers-choice-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 16px;
}

.workers-choice-flow span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.workers-choice-flow b {
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  background: #fdeeee;
  color: #a72321;
}

.mobile-offer-shortcut {
  display: none;
}

.mobile-menu-toggle,
.mobile-header-post,
.mobile-drawer {
  display: none;
}

.legal-shell {
  min-height: 72vh;
  padding: clamp(42px, 7vw, 88px) 0 92px;
  background: #f7f7f5;
}

.legal-modern {
  max-width: 1240px;
}

.legal-hero {
  max-width: 900px;
  padding-bottom: 42px;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  font-size: clamp(46px, 7vw, 82px);
}

.legal-hero > p {
  max-width: 760px;
  color: #4f5054;
  font-size: clamp(17px, 2vw, 21px);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  color: #68696e;
  font-size: 14px;
  font-weight: 750;
}

.legal-meta a {
  color: #b22220;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-status {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid #f2caca;
  border-radius: 15px;
  background: #fff0f0;
  color: #77201f;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 130px);
  overflow: auto;
  padding: 20px;
  border: 1px solid #dededb;
  border-radius: 18px;
  background: #fff;
}

.legal-toc > strong {
  display: block;
  margin-bottom: 13px;
  font-size: 15px;
}

.legal-toc nav {
  display: grid;
  gap: 2px;
}

.legal-toc a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
  padding: 7px 5px;
  border-radius: 8px;
  color: #55565a;
  font-size: 13px;
  line-height: 1.35;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: #991f1d;
  background: #fff1f1;
}

.legal-toc a span {
  color: #b52624;
  font-weight: 900;
}

.legal-document {
  min-width: 0;
}

.legal-summary,
.legal-clause,
.legal-operator,
.legal-review-note {
  border: 1px solid #dededb;
  border-radius: 20px;
  background: #fff;
}

.legal-summary {
  padding: clamp(22px, 4vw, 34px);
  margin-bottom: 18px;
}

.legal-summary h2,
.legal-clause h2 {
  color: #19191b;
}

.legal-summary h2 {
  font-size: 30px;
}

.legal-summary p,
.legal-clause p,
.legal-clause li,
.legal-definitions dd {
  color: #4e4f53;
  line-height: 1.72;
}

.legal-clause {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  margin-bottom: 14px;
  padding: clamp(22px, 4vw, 36px);
  scroll-margin-top: 100px;
}

.legal-clause-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: #fff;
  background: #ea2826;
  font-weight: 900;
}

.legal-clause h2 {
  margin: 5px 0 16px;
  font-size: clamp(23px, 3vw, 31px);
}

.legal-clause p:first-of-type {
  margin-top: 0;
}

.legal-clause ul {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.legal-definitions {
  display: grid;
  grid-template-columns: minmax(100px, 150px) 1fr;
  gap: 12px 18px;
  margin: 0;
}

.legal-definitions dt {
  color: #202124;
  font-weight: 900;
}

.legal-definitions dd {
  margin: 0;
}

.legal-operator {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-top: 38px;
  padding: clamp(24px, 5vw, 42px);
  color: #fff;
  background: #18181a;
  border-color: #18181a;
}

.legal-operator h2 {
  margin: 8px 0 0;
  color: #fff;
}

.legal-operator p {
  margin: 0;
  color: #dedee1;
}

.legal-operator a {
  color: #ff6a68;
}

.legal-review-note {
  margin-top: 14px;
  padding: 17px 20px;
  border-color: #ead8ad;
  background: #fff9e8;
  color: #654f16;
  font-size: 14px;
}

@keyframes page-enter {
  from { opacity: .01; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes card-enter {
  from { opacity: .01; transform: translateY(16px) scale(.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes nav-line-in {
  from { transform: scaleX(.2); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes phone-float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-9px); }
}

@keyframes hero-glow {
  from { transform: translate3d(-20px, 0, 0) scale(.9); opacity: .45; }
  to { transform: translate3d(80px, -35px, 0) scale(1.2); opacity: .8; }
}

@media (max-width: 800px) {
  html { scroll-behavior: auto; }
  body.mobile-drawer-open { overflow: hidden; }
  .site-header {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    gap: 8px;
    height: 70px;
    min-height: 70px;
    padding: 0 14px;
  }
  .site-header > .brand {
    justify-self: center;
    min-width: 0;
  }
  .site-header > .brand .brand-logo-asset { width: 34px; height: 34px; }
  .site-header > .brand span { font-size: 18px; }
  .site-header #header-actions { display: none; }
  .mobile-menu-toggle,
  .mobile-header-post {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
  }
  .mobile-menu-toggle {
    gap: 5px;
    padding: 12px;
    background: transparent;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 5px;
    background: #1b1b1d;
    transition: transform .18s ease, opacity .18s ease;
  }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .mobile-header-post {
    justify-self: end;
    color: #fff;
    background: #ea2826;
    font-size: 29px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 9px 24px rgba(234, 40, 38, .24);
  }
  .mobile-drawer {
    position: fixed;
    z-index: 30;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    color: #fff;
    background: #111114;
    animation: drawer-enter .2s ease both;
  }
  .mobile-drawer[hidden] { display: none; }
  .mobile-drawer-scroll {
    flex: 1;
    overflow: auto;
    padding: 14px 26px 105px;
  }
  .mobile-drawer details {
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
  .mobile-drawer summary {
    position: relative;
    padding: 23px 3px;
    list-style: none;
    cursor: pointer;
    font-size: 19px;
    font-weight: 900;
  }
  .mobile-drawer summary::-webkit-details-marker { display: none; }
  .mobile-drawer summary::after {
    content: '›';
    position: absolute;
    right: 4px;
    color: #ff5a57;
    font-size: 28px;
    transform: rotate(90deg);
    transition: transform .18s ease;
  }
  .mobile-drawer details[open] summary::after { transform: rotate(-90deg); }
  .mobile-drawer nav,
  .mobile-drawer-account {
    display: grid;
    padding: 0 3px 20px;
  }
  .mobile-drawer nav a,
  .mobile-drawer-account a,
  .mobile-drawer-account button {
    padding: 13px 0;
    border: 0;
    color: #c7c7cc;
    background: transparent;
    font: inherit;
    font-size: 17px;
    text-align: left;
  }
  .mobile-drawer nav a:hover,
  .mobile-drawer-account a:hover,
  .mobile-drawer-account button:hover { color: #fff; }
  .mobile-drawer-account .drawer-account-primary { color: #ff5b58; font-weight: 900; }
  .mobile-drawer-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 18px 28px calc(18px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,.12);
    background: #111114;
    color: #a9a9ae;
    font-size: 13px;
  }
  .mobile-drawer-footer strong { color: #fff; }
  .site-header nav a[aria-current="page"]::after { display: none; }
  .preview-phone { animation-name: phone-float-mobile; }
  .client-confidence { margin: 22px 0 30px; padding: 18px; }
  .client-confidence-head { display: block; }
  .client-confidence-head p { margin-top: 8px; }
  .client-confidence-steps { grid-template-columns: 1fr; }
  .dashboard-quick-actions > strong { flex-basis: 100%; }
  .dashboard-quick-actions .button { flex: 1 1 135px; text-align: center; }
  .workers-choice-flow {
    display: flex;
    gap: 8px;
    margin: 18px -18px 14px;
    padding: 0 18px 4px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .workers-choice-flow::-webkit-scrollbar { display: none; }
  .workers-choice-flow span { flex: 0 0 205px; scroll-snap-align: start; }
  .workers-directory-polish #workers-search { padding: 18px; border-radius: 18px; background: #fff; }
  .mobile-offer-shortcut {
    position: fixed;
    right: 12px;
    bottom: calc(79px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 62px;
    padding: 10px 16px;
    border: 0;
    border-radius: 17px;
    color: #fff;
    background: #171719;
    box-shadow: 0 16px 42px rgba(17, 18, 20, .28);
    text-align: left;
  }
  .mobile-offer-shortcut span,
  .mobile-offer-shortcut small,
  .mobile-offer-shortcut strong { display: block; }
  .mobile-offer-shortcut small { margin-bottom: 1px; color: #d8d8da; font-size: 11px; font-weight: 700; }
  .mobile-offer-shortcut strong { font-size: 17px; }
  .mobile-offer-shortcut > b { color: #ff5754; font-size: 25px; }
  body:has(.mobile-offer-shortcut) #toast { bottom: calc(154px + env(safe-area-inset-bottom)); }
  .legal-shell { padding: 34px 0 110px; }
  .legal-hero { padding-bottom: 28px; }
  .legal-hero h1 { font-size: 48px; }
  .legal-meta { display: grid; gap: 7px; }
  .legal-layout { grid-template-columns: 1fr; gap: 18px; }
  .legal-toc { position: static; max-height: none; }
  .legal-toc nav { grid-template-columns: 1fr 1fr; gap: 2px 8px; }
  .legal-clause { grid-template-columns: 1fr; gap: 12px; padding: 22px 19px; }
  .legal-clause-number { width: 38px; height: 38px; }
  .legal-definitions { grid-template-columns: 1fr; gap: 4px; }
  .legal-definitions dd { margin-bottom: 10px; }
  .legal-operator { display: block; }
  .legal-operator p { margin-top: 22px; }
}

.community-shell {
  padding: 56px 0 110px;
  color: #181719;
  background:
    radial-gradient(circle at 92% 4%, rgba(234,40,38,.09), transparent 25%),
    #fbfaf9;
}
.community-container { max-width: 1100px; }
.community-hero {
  max-width: 870px;
  padding: 34px 0 58px;
}
.community-hero h1 {
  max-width: 760px;
  margin: 12px 0 20px;
  font-size: clamp(54px, 8vw, 92px);
  line-height: .93;
  letter-spacing: -.07em;
}
.community-hero > p {
  max-width: 780px;
  margin: 0;
  color: #514c4e;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.45;
}
.community-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: #777174;
  font-size: 13px;
  font-weight: 800;
}
.community-meta span {
  padding: 8px 12px;
  border: 1px solid #dfd9d9;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
}
.community-roles,
.community-group {
  scroll-margin-top: 96px;
  padding: 42px;
  border: 1px solid #e4dfdf;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(33,24,24,.045);
}
.community-section-head { max-width: 780px; }
.community-section-head h2 {
  margin: 9px 0 12px;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.community-section-head > p {
  margin: 0;
  color: #6b6568;
  font-size: 17px;
  line-height: 1.6;
}
.community-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.community-role-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid #f0dddd;
  border-radius: 22px;
  color: #181719;
  background: #fff4f3;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.community-role-card:hover {
  transform: translateY(-3px);
  border-color: #ea2826;
  box-shadow: 0 16px 35px rgba(196,30,27,.1);
}
.community-role-card > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ea2826;
  font-size: 20px;
  font-weight: 950;
}
.community-role-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 22px;
}
.community-role-card p { margin: 0; color: #615b5e; line-height: 1.45; }
.community-role-card > b { color: #ea2826; font-size: 26px; }
.community-jump {
  position: sticky;
  z-index: 4;
  top: 76px;
  display: flex;
  gap: 8px;
  margin: 24px 0;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid #e4dfdf;
  border-radius: 18px;
  background: rgba(251,250,249,.92);
  box-shadow: 0 12px 32px rgba(20,18,18,.06);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}
.community-jump::-webkit-scrollbar { display: none; }
.community-jump a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 11px;
  color: #3d393a;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
.community-jump a:hover { color: #fff; background: #181719; }
.community-groups { display: grid; gap: 24px; }
.community-group:nth-child(even) { background: #171719; color: #fff; }
.community-group:nth-child(even) .community-section-head > p,
.community-group:nth-child(even) .community-rule p { color: #c8c4c5; }
.community-rule-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin-top: 30px;
}
.community-rule {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 24px 0;
  border-top: 1px solid rgba(125,115,117,.25);
}
.community-rule > span {
  color: #ea2826;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
}
.community-rule h3 { margin: -3px 0 7px; font-size: 19px; }
.community-rule p { margin: 0; color: #696366; line-height: 1.55; }
.community-report {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-top: 24px;
  padding: 40px 42px;
  border-radius: 28px;
  color: #fff;
  background: #9f1d1b;
}
.community-report h2 { margin: 8px 0; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.04em; }
.community-report p { max-width: 720px; margin: 0; color: #ffe2e0; line-height: 1.55; }
.community-report .product-kicker { color: #fff; }
.community-report .button { flex: 0 0 auto; border-color: #fff; color: #181719; background: #fff; }
.community-legal-note {
  max-width: 900px;
  margin: 24px auto 0;
  color: #716b6d;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.community-legal-note a { color: #b51f1d; font-weight: 850; }

@keyframes drawer-enter {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes phone-float-mobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (hover: none) {
  .preview-step:hover,
  .preview-category:hover,
  .product-card:hover,
  .task-card:hover { transform: none; box-shadow: none; }
}

@media (max-width: 720px) {
  .community-shell { padding: 22px 0 92px; }
  .community-hero { padding: 24px 2px 36px; }
  .community-hero h1 { font-size: clamp(47px, 15vw, 67px); }
  .community-hero > p { font-size: 18px; }
  .community-roles,
  .community-group { padding: 24px 20px; border-radius: 22px; }
  .community-section-head h2 { font-size: 34px; }
  .community-role-grid,
  .community-rule-list { grid-template-columns: 1fr; }
  .community-role-card { min-height: 128px; padding: 19px; }
  .community-jump { top: 68px; margin: 16px 0; border-radius: 15px; }
  .community-rule { grid-template-columns: 34px 1fr; gap: 10px; padding: 21px 0; }
  .community-report { display: block; padding: 28px 22px; border-radius: 22px; }
  .community-report .button { display: inline-flex; margin-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
