:root {
  --community-ink: #071a35;
  --community-muted: #5b6c82;
  --community-line: rgba(7, 26, 53, 0.13);
  --community-paper: #f4f7fb;
  --community-white: #fff;
  --community-purple: #7047eb;
  --community-purple-dark: #5634cf;
  --community-blue: #3d8df5;
  --community-coral: #6b5cff;
  --community-mint: #61d8b5;
  --community-radius: 26px;
  --community-shadow: 0 28px 90px rgba(7, 26, 53, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--community-paper);
  color: var(--community-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.community-container {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

.community-skip {
  background: var(--community-ink);
  color: var(--community-white);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -100px;
  z-index: 100;
}

.community-skip:focus {
  top: 1rem;
}

.community-nav {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(244, 247, 251, 0.9);
  border-bottom: 1px solid var(--community-line);
  display: flex;
  height: 76px;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - 1184px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
}

.community-brand {
  align-items: center;
  display: inline-flex;
  gap: 0.72rem;
  text-decoration: none;
}

.community-brand > img {
  display: block;
  height: 44px;
  object-fit: contain;
  width: 44px;
}

.community-brand > span {
  display: grid;
  gap: 0.08rem;
}

.community-brand > span strong {
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.community-brand > span small {
  color: var(--community-muted);
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.community-nav-link {
  align-items: center;
  display: inline-flex;
  background: var(--community-ink);
  border-radius: 12px;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.5rem;
  padding: 0.72rem 0.9rem;
  text-decoration: none;
}

.community-nav-link span {
  transition: transform 180ms ease;
}

.community-nav-link:hover span {
  transform: translate(2px, -2px);
}

.community-hero {
  background:
    linear-gradient(rgba(7, 26, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 53, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #f8faff 0%, #f4f7fb 54%, #eef3ff 100%);
  background-size: 64px 64px, 64px 64px, auto;
  border-bottom: 1px solid var(--community-line);
  min-height: calc(100vh - 76px);
  overflow: hidden;
  position: relative;
}

.community-hero-glow {
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
}

.community-hero-glow-one {
  background: radial-gradient(circle, rgba(112, 71, 235, 0.23), transparent 70%);
  height: 700px;
  right: -180px;
  top: -190px;
  width: 700px;
}

.community-hero-glow-two {
  background: radial-gradient(circle, rgba(61, 141, 245, 0.16), transparent 70%);
  bottom: -320px;
  height: 650px;
  left: 18%;
  width: 650px;
}

.community-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.72fr);
  min-height: calc(100vh - 135px);
  padding-bottom: 4.5rem;
  padding-top: 4.5rem;
  position: relative;
}

.community-hero-copy {
  min-width: 0;
}

.community-eyebrow {
  align-items: center;
  color: var(--community-muted);
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.65rem;
  letter-spacing: 0.12em;
  margin: 0 0 1.3rem;
  text-transform: uppercase;
}

.community-eyebrow > span {
  background: var(--community-purple);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(101, 73, 237, 0.1);
  height: 7px;
  width: 7px;
}

.community-hero h1 {
  font-size: clamp(3.35rem, 4.8vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.96;
  margin: 0;
  max-width: 850px;
}

.community-hero h1 em {
  background: linear-gradient(110deg, var(--community-purple-dark), var(--community-blue) 76%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.community-hero-lead {
  color: var(--community-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  margin: 2rem 0 0;
  max-width: 680px;
}

.community-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.community-button {
  align-items: center;
  border: 1px solid var(--community-ink);
  border-radius: 14px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 750;
  gap: 1.4rem;
  justify-content: space-between;
  min-width: 232px;
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.community-button-primary {
  background: linear-gradient(115deg, var(--community-ink), #123c72);
  color: white;
}

.community-button-primary:hover {
  box-shadow: 0 15px 35px rgba(7, 26, 53, 0.22);
}

.community-button-secondary {
  background: rgba(255, 255, 255, 0.5);
}

.community-button-secondary:hover {
  background: white;
}

.community-microcopy {
  color: #83858b;
  font-size: 0.76rem;
  margin-top: 1rem;
}

.community-hero-object {
  aspect-ratio: 0.95;
  display: grid;
  place-items: center;
  position: relative;
}

.community-hero-object::before {
  background: linear-gradient(145deg, rgba(112, 71, 235, 0.15), rgba(61, 141, 245, 0.08));
  border-radius: 44px;
  content: "";
  height: 90%;
  position: absolute;
  transform: rotate(5deg);
  width: 88%;
}

.community-network-card {
  align-items: center;
  background:
    radial-gradient(circle at 72% 15%, rgba(112, 71, 235, 0.18), transparent 31%),
    linear-gradient(155deg, #ffffff, #f8faff);
  border: 1px solid rgba(7, 26, 53, 0.12);
  border-radius: 34px;
  box-shadow: var(--community-shadow);
  display: flex;
  flex-direction: column;
  height: 82%;
  justify-content: center;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.5rem, 3vw, 2.4rem) 5.5rem;
  position: relative;
  text-align: center;
  width: 78%;
  z-index: 2;
}

.community-network-card::after {
  background: linear-gradient(90deg, transparent, rgba(61, 141, 245, 0.7), transparent);
  bottom: 0;
  content: "";
  height: 3px;
  left: 12%;
  position: absolute;
  width: 76%;
}

.community-network-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 1.4rem;
}

.community-network-card-top span,
.community-network-card-top b {
  color: var(--community-muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-network-card-top span::before {
  background: var(--community-mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(97, 216, 181, 0.14);
  content: "";
  display: inline-block;
  height: 6px;
  margin-right: 0.5rem;
  width: 6px;
}

.community-network-card img {
  height: auto;
  margin-bottom: 1rem;
  width: clamp(105px, 12vw, 154px);
}

.community-network-card p {
  color: var(--community-ink);
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin: 0;
}

.community-network-card p strong {
  background: linear-gradient(105deg, var(--community-purple-dark), var(--community-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.community-network-card-bottom {
  bottom: 1.5rem;
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  left: 1rem;
  position: absolute;
  right: 1rem;
}

.community-network-card-bottom span {
  background: rgba(7, 26, 53, 0.055);
  border: 1px solid rgba(7, 26, 53, 0.08);
  border-radius: 999px;
  color: var(--community-muted);
  font-size: 0.53rem;
  font-weight: 750;
  padding: 0.38rem 0.52rem;
}

.community-orbit-label {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--community-line);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(31, 28, 54, 0.08);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  position: absolute;
  z-index: 3;
}

.label-one { left: 0; top: 24%; }
.label-two { right: 0; top: 17%; }
.label-three { bottom: 18%; left: 2%; }
.label-four { bottom: 11%; right: 1%; }

.community-ticker {
  border-top: 1px solid var(--community-line);
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
}

.community-ticker > div {
  align-items: center;
  animation: community-marquee 24s linear infinite;
  display: inline-flex;
  gap: 2.5rem;
  min-width: max-content;
  padding-left: 2.5rem;
}

.community-ticker span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.community-ticker b {
  color: var(--community-purple);
}

@keyframes community-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-28%); }
}

.community-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.community-section-heading {
  align-items: end;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 0.5fr;
  margin-bottom: 4.5rem;
}

.community-section-heading .community-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2rem;
}

.community-section-heading h2,
.community-register-heading h2,
.community-trust h2,
.community-faq h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin: 0;
}

.community-section-heading > p:last-child,
.community-register-heading > p:last-child {
  color: var(--community-muted);
  line-height: 1.7;
  margin: 0;
}

.community-audience-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

.community-audience-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--community-line);
  border-radius: var(--community-radius);
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.community-audience-card-dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(112, 71, 235, 0.3), transparent 30%),
    linear-gradient(145deg, #071a35, #103968);
  color: white;
}

.community-card-index {
  color: #8a8d94;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.community-audience-card h3 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 2rem 0 3rem;
  max-width: 500px;
}

.community-audience-card ul {
  border-top: 1px solid var(--community-line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.community-audience-card-dark ul {
  border-color: rgba(255, 255, 255, 0.16);
}

.community-audience-card li {
  border-bottom: 1px solid var(--community-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 2rem 1fr;
  padding: 1.25rem 0;
}

.community-audience-card-dark li {
  border-color: rgba(255, 255, 255, 0.16);
}

.community-audience-card li > span {
  color: #9699a0;
  font-size: 0.64rem;
  font-weight: 800;
}

.community-audience-card li strong {
  display: block;
  font-size: 0.92rem;
}

.community-audience-card li p {
  color: var(--community-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0.35rem 0 0;
}

.community-audience-card-dark li p {
  color: #a9abb1;
}

.community-audience-card > a {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: flex;
  font-size: 0.8rem;
  font-weight: 800;
  justify-content: space-between;
  margin-top: auto;
  padding: 1rem 0;
  text-decoration: none;
}

.community-how {
  background: white;
  border-bottom: 1px solid var(--community-line);
  border-top: 1px solid var(--community-line);
}

.community-steps {
  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.community-steps article {
  border: 1px solid var(--community-line);
  border-radius: 20px;
  min-height: 250px;
  padding: 2rem;
}

.community-steps article > span {
  color: var(--community-purple);
  font-size: 0.7rem;
  font-weight: 800;
}

.community-steps h3 {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  margin: 4rem 0 0.6rem;
}

.community-steps p {
  color: var(--community-muted);
  line-height: 1.55;
  margin: 0;
}

.community-steps > i {
  align-self: center;
  color: #989ba2;
  font-size: 1.5rem;
  font-style: normal;
  transform: rotate(-90deg);
}

.community-register {
  background:
    radial-gradient(circle at 18% 26%, rgba(112, 71, 235, 0.14), transparent 30%),
    radial-gradient(circle at 88% 68%, rgba(61, 141, 245, 0.13), transparent 26%),
    #edf3fb;
}

.community-register-heading {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 0.55fr;
  margin-bottom: 4rem;
}

.community-register-heading .community-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.5rem;
}

.community-form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

.community-form-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: var(--community-radius);
  box-shadow: var(--community-shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
  scroll-margin-top: 100px;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.community-form-card.is-selected {
  box-shadow: 0 0 0 4px rgba(101, 73, 237, 0.18), var(--community-shadow);
  transform: translateY(-4px);
}

.community-form-card-business {
  background:
    radial-gradient(circle at 90% 6%, rgba(112, 71, 235, 0.28), transparent 28%),
    linear-gradient(155deg, #071a35, #103968);
  color: white;
}

.community-form-card-head {
  align-items: center;
  border-bottom: 1px solid var(--community-line);
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.community-form-card-business .community-form-card-head {
  border-color: rgba(255, 255, 255, 0.15);
}

.community-form-card-head > span {
  align-items: center;
  background: #ece9ff;
  border-radius: 50%;
  color: var(--community-purple-dark);
  display: flex;
  font-size: 0.62rem;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.community-form-card-business .community-form-card-head > span {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.community-form-card-head p {
  color: var(--community-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
}

.community-form-card-head h3 {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  margin: 0;
}

.community-field {
  margin-bottom: 1rem;
}

.community-field-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

.community-field label {
  display: flex;
  font-size: 0.72rem;
  font-weight: 750;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.community-field label span {
  color: #999ba1;
  font-weight: 500;
}

.community-field input,
.community-field select {
  appearance: none;
  background: #f8f8f7;
  border: 1px solid rgba(17, 18, 20, 0.13);
  border-radius: 12px;
  color: var(--community-ink);
  min-height: 52px;
  outline: none;
  padding: 0 0.9rem;
  transition: border 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.community-form-card-business .community-field input,
.community-form-card-business .community-field select {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
  color: white;
}

.community-field input:focus,
.community-field select:focus {
  border-color: var(--community-purple);
  box-shadow: 0 0 0 3px rgba(101, 73, 237, 0.12);
}

.community-form-card-business .community-field select option {
  background: #0c2b51;
}

.community-submit {
  align-items: center;
  background: linear-gradient(110deg, var(--community-purple-dark), var(--community-blue));
  border: 0;
  border-radius: 13px;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: space-between;
  margin-top: 1.5rem;
  min-height: 56px;
  padding: 0 1.2rem;
  transition: background 180ms ease, transform 180ms ease;
  width: 100%;
}

.community-submit:hover {
  background: linear-gradient(110deg, #4728bd, #287adf);
  transform: translateY(-1px);
}

.community-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.community-form-privacy,
.community-form-feedback {
  color: #8a8c92;
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: center;
}

.community-form-feedback {
  color: #bf3434;
  min-height: 1rem;
}

.community-form-success {
  min-height: 450px;
  padding: 5rem 1rem;
  text-align: center;
}

.community-form-success > span,
.community-success-fallback > span {
  align-items: center;
  background: var(--community-mint);
  border-radius: 50%;
  display: inline-flex;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.community-form-success h3 {
  font-size: 2.5rem;
  letter-spacing: -0.05em;
  margin: 1.5rem 0 0.6rem;
}

.community-form-success p {
  color: var(--community-muted);
  line-height: 1.6;
}

.community-form-card-business .community-form-success p {
  color: #a9abb1;
}

.community-success-fallback {
  align-items: center;
  background: white;
  border: 1px solid var(--community-line);
  border-radius: 16px;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
}

.community-success-fallback strong {
  display: block;
}

.community-success-fallback p {
  color: var(--community-muted);
  margin: 0.2rem 0 0;
}

.community-honeypot {
  left: -10000px !important;
  position: absolute !important;
}

.community-trust {
  background: white;
}

.community-trust-grid,
.community-faq-grid {
  display: grid;
  gap: clamp(3rem, 9vw, 9rem);
  grid-template-columns: 0.8fr 1.2fr;
}

.community-trust-points {
  border-top: 1px solid var(--community-line);
}

.community-trust-points article {
  border-bottom: 1px solid var(--community-line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 2rem 1fr;
  padding: 1.5rem 0;
}

.community-trust-points article > span {
  color: var(--community-purple);
  font-size: 0.65rem;
  font-weight: 800;
}

.community-trust-points strong {
  font-size: 1rem;
}

.community-trust-points p {
  color: var(--community-muted);
  line-height: 1.6;
  margin: 0.4rem 0 0;
}

.community-faq {
  border-top: 1px solid var(--community-line);
}

.community-accordion {
  border-top: 1px solid var(--community-line);
}

.community-accordion details {
  border-bottom: 1px solid var(--community-line);
}

.community-accordion summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 1.4rem 0;
}

.community-accordion summary::-webkit-details-marker {
  display: none;
}

.community-accordion summary span {
  color: var(--community-muted);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.community-accordion details[open] summary span {
  transform: rotate(45deg);
}

.community-accordion details p {
  color: var(--community-muted);
  line-height: 1.65;
  margin: -0.3rem 0 1.5rem;
  max-width: 650px;
}

.community-footer {
  background:
    radial-gradient(circle at 75% 0%, rgba(112, 71, 235, 0.22), transparent 32%),
    linear-gradient(145deg, #041225, #0d2a52);
  color: white;
  padding: 3rem 0;
}

.community-footer .community-container {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: auto 1fr auto;
}

.community-footer p {
  color: #a7a9af;
  margin: 0;
  text-align: center;
}

.community-footer > .community-container > span {
  color: #7f8187;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.community-brand-footer > img {
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.community-brand-footer > span {
  color: white;
}

.community-brand-footer > span small {
  color: #9ba8ba;
}

@media (max-width: 920px) {
  .community-hero-grid,
  .community-section-heading,
  .community-register-heading,
  .community-trust-grid,
  .community-faq-grid {
    grid-template-columns: 1fr;
  }

  .community-hero-grid {
    padding-bottom: 4rem;
  }

  .community-hero-object {
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
  }

  .community-section-heading .community-eyebrow,
  .community-register-heading .community-eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .community-section-heading,
  .community-register-heading {
    gap: 2rem;
  }

  .community-steps {
    grid-template-columns: 1fr;
  }

  .community-steps > i {
    justify-self: center;
    transform: none;
  }
}

@media (max-width: 720px) {
  .community-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .community-nav {
    height: 68px;
    padding: 0 18px;
  }

  .community-nav-link {
    font-size: 0.72rem;
  }

  .community-brand > img {
    height: 40px;
    width: 40px;
  }

  .community-brand-footer > img {
    height: 42px;
    width: 42px;
  }

  .community-hero-grid {
    gap: 3rem;
    min-height: auto;
    padding-top: 4rem;
  }

  .community-hero h1 {
    font-size: clamp(2.85rem, 11.5vw, 4rem);
    letter-spacing: -0.065em;
  }

  .community-hero-actions {
    flex-direction: column;
  }

  .community-button {
    width: 100%;
  }

  .community-hero-object {
    max-width: 420px;
  }

  .community-audience-grid,
  .community-form-grid {
    grid-template-columns: 1fr;
  }

  .community-audience-card {
    min-height: 600px;
  }

  .community-field-row {
    grid-template-columns: 1fr;
  }

  .community-footer .community-container {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .community-footer p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .community-ticker > div {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
