.community-landing-page {
  --anchor-offset: 185px;
  overflow-x: hidden;
  background: #fff;
}

@supports (overflow: clip) {
  .community-landing-page {
    overflow-x: clip;
  }
}

.community-landing-page main {
  overflow: hidden;
}

@supports (overflow: clip) {
  .community-landing-page main {
    overflow: clip;
  }
}

.community-wrap {
  width: min(100% - (2 * var(--gutter)), 1180px);
  margin-inline: auto;
}

.community-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--fnd-magenta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-discord-mark {
  width: 1.3em;
  height: auto;
  flex: 0 0 auto;
}

.community-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 10, 36, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.community-button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 10, 36, 0.3);
}

.community-button:focus-visible {
  outline: 3px solid var(--warning);
  outline-offset: 4px;
}

.community-button--discord {
  border-color: #4752c4;
  background: #4752c4;
}

.community-button--discord:hover {
  border-color: #3c45a5;
  background: #3c45a5;
}

.community-button--light {
  border-color: #fff;
  color: var(--fnd-deep-navy);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 10, 36, 0.2);
}

.community-button--light:hover {
  border-color: #fff;
  color: var(--fnd-deep-navy);
  background: #fff5fa;
}

.community-button__arrow {
  display: inline-block;
  font-size: 1.15em;
  transition: transform 180ms ease;
}

.community-button:hover .community-button__arrow {
  transform: translate(2px, -2px);
}

/* Hero — a full-bleed, lived-in digital room. */
.community-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(118deg, rgba(0, 20, 53, 0.99) 0%, rgba(0, 43, 95, 0.98) 48%, rgba(24, 32, 82, 0.98) 100%);
}

.community-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 90%);
}

.community-hero__glow {
  position: absolute;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
  pointer-events: none;
}

.community-hero__glow--one {
  top: -12rem;
  right: 8%;
  background: #5865f2;
}

.community-hero__glow--two {
  bottom: -16rem;
  left: -7rem;
  background: var(--fnd-magenta);
}

.community-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
  width: min(100% - (2 * var(--gutter)), 1400px);
  min-height: min(740px, calc(100svh - 170px));
  margin-inline: auto;
  padding-block: clamp(3.25rem, 6vw, 5.5rem);
}

.community-hero__copy {
  position: relative;
  z-index: 2;
}

.community-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
  color: #dfe2ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: community-rise-in 620ms 80ms both ease-out;
}

.community-kicker .community-discord-mark {
  width: 1.45rem;
  color: #aeb5ff;
}

.community-hero h1 {
  max-width: none;
  margin: 0;
  color: #fff;
}

.community-hero__brand,
.community-hero__promise {
  display: block;
}

.community-hero__brand {
  max-width: 9ch;
  font-size: clamp(3.5rem, 6.7vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-wrap: balance;
  animation: community-rise-in 680ms 150ms both ease-out;
}

.community-hero__promise {
  margin-top: 1.3rem;
  color: #ffb4d3;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  animation: community-rise-in 680ms 220ms both ease-out;
}

.community-hero__lead {
  max-width: 41rem;
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.62;
  animation: community-rise-in 680ms 290ms both ease-out;
}

.community-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  margin-top: 1.8rem;
  animation: community-rise-in 680ms 360ms both ease-out;
}

.community-hero__actions .community-button {
  padding-inline: 1.35rem;
}

.community-hero__tour {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.2rem;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.42);
}

.community-hero__tour:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.community-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin: 1.65rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  animation: community-rise-in 680ms 430ms both ease-out;
}

.community-hero__proof span {
  display: inline-flex;
  gap: 0.3rem;
  align-items: baseline;
}

.community-hero__proof span + span::before {
  margin-right: 0.55rem;
  color: #ff7fb4;
  content: "•";
}

.community-hero__proof strong {
  color: #fff;
  font-size: 1rem;
}

/* The Discord-inspired visual uses public channel names and no member data. */
.community-room {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 1.45rem;
  color: #20243e;
  background: #f8f8fc;
  box-shadow:
    0 34px 70px rgba(0, 8, 33, 0.42),
    0 0 0 1px rgba(88, 101, 242, 0.14);
  animation: community-room-in 820ms 260ms both cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: 70% 50%;
}

.community-room::after {
  position: absolute;
  top: -45%;
  left: 8%;
  width: 30%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(18deg);
}

.community-room__topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 74px;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #dfe1eb;
  background: #fff;
}

.community-room__server-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 0.9rem;
  color: #fff;
  background: #5865f2;
  box-shadow: 0 8px 18px rgba(88, 101, 242, 0.25);
}

.community-room__server-icon .community-discord-mark {
  width: 1.55rem;
}

.community-room__topbar strong,
.community-room__topbar small {
  display: block;
}

.community-room__topbar strong {
  color: #1c2446;
  font-size: 0.94rem;
  line-height: 1.2;
}

.community-room__topbar small {
  margin-top: 0.12rem;
  color: #68708b;
  font-size: 0.76rem;
}

.community-room__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.36rem 0.58rem;
  border-radius: 999px;
  color: #294f36;
  background: #e6f5ea;
  font-size: 0.74rem;
  font-weight: 800;
}

.community-room__status i {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #2f8f4e;
  box-shadow: 0 0 0 4px rgba(47, 143, 78, 0.13);
}

.community-room__body {
  display: grid;
  grid-template-columns: minmax(185px, 0.38fr) minmax(0, 1fr);
  min-height: 390px;
}

.community-room__channels {
  padding: 1.2rem 0.8rem;
  border-right: 1px solid #dfe1eb;
  background: #eff0f6;
}

.community-room__label {
  display: block;
  margin: 0 0 0.7rem 0.55rem;
  color: #6a7188;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.community-room__channels ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-room__channels li {
  display: flex;
  min-height: 39px;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.48rem 0.55rem;
  border-radius: 0.55rem;
  color: #5b637b;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.community-room__channels li + li {
  margin-top: 0.2rem;
}

.community-room__channels li span {
  color: #9297aa;
  font-size: 1rem;
}

.community-room__channels li.is-active {
  color: #26305a;
  background: #fff;
  box-shadow: 0 4px 14px rgba(36, 42, 78, 0.06);
}

.community-room__channels li.is-active span {
  color: #5865f2;
}

.community-room__welcome {
  align-self: center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.community-room__eyebrow {
  margin: 0 0 0.55rem;
  color: #4a55c1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.community-room__welcome h2 {
  max-width: 14ch;
  margin-bottom: 0.8rem;
  color: #171e42;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: -0.035em;
}

.community-room__welcome > p:not(.community-room__eyebrow) {
  max-width: 35rem;
  color: #535c76;
  font-size: 0.9rem;
  line-height: 1.55;
}

.community-room__moments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.community-room__moments li {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid #e1e3ee;
  border-radius: 0.65rem;
  color: #3d4662;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.community-room__moments li span {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #9e0048;
  background: #ffecf4;
}

.community-room__team {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 74px;
  padding: 0.7rem 1rem;
  border-top: 1px solid #dfe1eb;
  background: #fff;
  color: #545c72;
  font-size: 0.72rem;
  font-weight: 700;
}

.community-avatar-stack {
  display: flex;
  padding-left: 0.35rem;
}

.community-avatar-stack img {
  width: 34px;
  height: 34px;
  margin-left: -0.35rem;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.community-room__team a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #4a55c1;
  font-size: 0.74rem;
  font-weight: 800;
}

/* Editorial value section. */
.community-belonging {
  padding-block: clamp(4rem, 9vw, 7.5rem);
  background: #fff;
}

.community-section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(340px, 1.15fr);
  column-gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.community-section-heading .community-eyebrow {
  grid-column: 1 / -1;
}

.community-section-heading h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--fnd-deep-navy);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
}

.community-section-heading > p:last-child {
  max-width: 38rem;
  margin: 0 0 0.45rem;
  color: #536079;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.68;
}

.community-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #ccd6e4;
  border-bottom: 1px solid #ccd6e4;
}

.community-values article {
  position: relative;
  padding: clamp(1.7rem, 4vw, 2.8rem);
}

.community-values article:first-child {
  padding-left: 0;
}

.community-values article:last-child {
  padding-right: 0;
}

.community-values article + article {
  border-left: 1px solid #ccd6e4;
}

.community-values__number {
  display: block;
  margin-bottom: 1.7rem;
  color: var(--fnd-magenta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.community-values h3 {
  max-width: 14ch;
  color: var(--fnd-deep-navy);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.025em;
}

.community-values p {
  margin: 0;
  color: #59657a;
  line-height: 1.7;
}

/* Channel breadth — motion is thematic and removed for reduced-motion users. */
.community-channels {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(88, 101, 242, 0.35), transparent 30rem),
    radial-gradient(circle at 8% 80%, rgba(201, 0, 90, 0.3), transparent 28rem),
    #071c3e;
}

.community-channels::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.22;
  content: "";
}

.community-channels .community-eyebrow {
  color: #ffacd0;
}

.community-channels__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  column-gap: clamp(2.5rem, 8vw, 7rem);
  align-items: end;
}

.community-channels__intro .community-eyebrow {
  grid-column: 1 / -1;
}

.community-channels__intro h2 {
  max-width: 16ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 4.55rem);
  letter-spacing: -0.05em;
}

.community-channels__intro > p:last-child {
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.community-channel-rails {
  display: grid;
  gap: 0.95rem;
  margin-block: clamp(2.8rem, 6vw, 5rem);
  transform: rotate(-1.5deg) scale(1.02);
}

.community-channel-rail {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-channel-rail--one {
  animation: community-rail-one 1.2s 700ms both ease-out;
}

.community-channel-rail--two {
  animation: community-rail-two 1.2s 820ms both ease-out;
}

.community-channel-rail li {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin: 0;
  padding: 0.75rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  font-size: clamp(0.88rem, 1.3vw, 1.02rem);
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.community-channel-rail li::before {
  margin-right: 0.55rem;
  color: #ff80b7;
  content: "#";
}

.community-channel-rail--two li::before {
  color: #aeb5ff;
}

.community-channel-rail li + li {
  margin-top: 0;
}

.community-resource-thread {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.community-resource-thread__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--fnd-magenta);
  font-size: 1.35rem;
  box-shadow: 0 12px 26px rgba(201, 0, 90, 0.3);
}

.community-resource-thread h3 {
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.community-resource-thread p:not(.community-eyebrow) {
  max-width: 47rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.6;
}

.community-resource-thread > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  text-decoration-color: #ff91c0;
}

.community-resource-thread > a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

/* Join flow. */
.community-join {
  padding-block: clamp(4rem, 9vw, 7.5rem);
  background:
    linear-gradient(145deg, #fff 0%, #fff8fb 52%, #eef3ff 100%);
}

.community-join__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(400px, 1.22fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.community-join__intro {
  position: sticky;
  top: 130px;
}

.community-join__intro h2 {
  max-width: 12ch;
  color: var(--fnd-deep-navy);
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
  letter-spacing: -0.055em;
}

.community-join__intro > p:last-child {
  max-width: 32rem;
  color: #59657a;
  font-size: 1.08rem;
  line-height: 1.68;
}

.community-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.community-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.4rem;
  align-items: start;
  margin: 0;
  padding: 1.75rem 0;
  border-top: 1px solid #cdd7e6;
}

.community-steps li:last-child {
  border-bottom: 1px solid #cdd7e6;
}

.community-steps__number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid #bbc5d7;
  border-radius: 50%;
  color: var(--fnd-magenta);
  font-size: 0.9rem;
  font-weight: 900;
}

.community-steps h3 {
  margin: 0 0 0.45rem;
  color: var(--fnd-deep-navy);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.community-steps p {
  max-width: 36rem;
  margin: 0;
  color: #59657a;
  line-height: 1.64;
}

.community-join__invitation {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 0.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 1rem;
  color: #fff;
  background:
    linear-gradient(120deg, var(--fnd-deep-navy), #213274 62%, #4752c4);
  box-shadow: 0 22px 46px rgba(0, 26, 59, 0.18);
}

.community-join__invitation p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 800;
}

.community-join__invitation > span {
  max-width: 10rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.45;
}

/* Safety is prominent without overpowering the invitation. */
.community-boundaries {
  padding-block: clamp(2.7rem, 5vw, 4rem);
  color: var(--fnd-deep-navy);
  background: #fff4bf;
}

.community-boundaries .community-eyebrow {
  color: #7a4500;
}

.community-boundaries__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.community-boundaries h2 {
  margin: 0;
  color: var(--fnd-deep-navy);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  letter-spacing: -0.045em;
}

.community-boundaries__inner > div:last-child p {
  margin-bottom: 0.7rem;
  color: #233957;
  line-height: 1.68;
}

.community-boundaries a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.45rem;
  color: #85103f;
  font-weight: 800;
}

.community-boundaries a:hover {
  color: var(--fnd-deep-navy);
}

/* Final conversion moment. */
.community-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.15), transparent 20rem),
    linear-gradient(125deg, #a6004b 0%, #c9005a 46%, #002b5f 100%);
}

.community-final::before,
.community-final::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.community-final::before {
  top: -16rem;
  right: -8rem;
  width: 34rem;
  height: 34rem;
}

.community-final::after {
  right: 10rem;
  bottom: -13rem;
  width: 22rem;
  height: 22rem;
}

.community-final__inner {
  text-align: center;
}

.community-final .community-eyebrow {
  color: #ffe0ed;
}

.community-final h2 {
  max-width: 15ch;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.community-final__inner > p:not(.community-eyebrow) {
  max-width: 42rem;
  margin: 0 auto 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.community-other-support {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.2rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.87rem;
}

.community-other-support a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #fff;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.48);
}

.community-other-support a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

/* Progressive reveal: content remains visible when JavaScript is unavailable. */
.community-motion-ready [data-community-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.community-motion-ready [data-community-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes community-rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes community-room-in {
  from {
    opacity: 0;
    transform: translate3d(42px, 24px, 0) rotate(1.8deg) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-0.8deg) scale(1);
  }
}

@keyframes community-rail-one {
  from {
    transform: translateX(-2rem);
  }
  to {
    transform: translateX(-10rem);
  }
}

@keyframes community-rail-two {
  from {
    transform: translateX(-11rem);
  }
  to {
    transform: translateX(-3rem);
  }
}

@media (max-width: 1120px) {
  .community-hero__inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
    gap: 2.4rem;
  }

  .community-hero__brand {
    font-size: clamp(3.4rem, 6.4vw, 5.4rem);
  }

  .community-room__body {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .community-room__channels li {
    padding-inline: 0.42rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 980px) {
  .community-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: clamp(3rem, 8vw, 5rem);
  }

  .community-hero__copy {
    max-width: 48rem;
  }

  .community-hero__brand {
    max-width: none;
    font-size: clamp(4rem, 12vw, 7rem);
  }

  .community-room {
    width: min(100%, 780px);
    margin-inline: auto;
  }

  .community-section-heading,
  .community-channels__intro,
  .community-boundaries__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .community-section-heading h2,
  .community-channels__intro h2 {
    max-width: 15ch;
  }

  .community-section-heading > p:last-child,
  .community-channels__intro > p:last-child {
    max-width: 42rem;
  }

  .community-join__layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .community-join__intro {
    position: static;
  }

  .community-join__intro h2 {
    max-width: 15ch;
  }

  .community-join__invitation {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .community-landing-page {
    --anchor-offset: 240px;
  }

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

  .community-values article,
  .community-values article:first-child,
  .community-values article:last-child {
    padding: 1.7rem 0;
  }

  .community-values article + article {
    border-top: 1px solid #ccd6e4;
    border-left: 0;
  }

  .community-values h3 {
    max-width: none;
  }

  .community-resource-thread {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .community-resource-thread > a {
    grid-column: 2;
    justify-self: start;
  }

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

  .community-join__invitation .community-button {
    justify-self: start;
  }

  .community-join__invitation > span {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .community-hero__inner {
    width: min(100% - 2rem, 1400px);
    padding-block: 2.8rem 3.4rem;
  }

  .community-kicker {
    align-items: flex-start;
    font-size: 0.69rem;
  }

  .community-hero__brand {
    max-width: 8ch;
    font-size: clamp(3.45rem, 17vw, 5.2rem);
  }

  .community-hero__promise {
    margin-top: 1rem;
    font-size: 1.45rem;
  }

  .community-hero__lead {
    font-size: 1rem;
  }

  .community-hero__actions {
    display: grid;
    align-items: stretch;
  }

  .community-hero__actions .community-button {
    width: 100%;
  }

  .community-hero__tour {
    justify-content: center;
  }

  .community-hero__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: start;
    font-size: 0.68rem;
  }

  .community-hero__proof span {
    display: block;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .community-hero__proof span + span::before {
    display: none;
  }

  .community-hero__proof strong {
    display: block;
    margin-bottom: 0.12rem;
    font-size: 0.86rem;
  }

  .community-room {
    border-radius: 1rem;
    transform: none;
  }

  .community-room__topbar {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 68px;
    padding: 0.65rem 0.75rem;
  }

  .community-room__server-icon {
    width: 42px;
    height: 42px;
  }

  .community-room__status {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 3.55rem;
    margin-top: -0.75rem;
  }

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

  .community-room__channels {
    padding: 0.9rem 0.75rem;
    border-right: 0;
    border-bottom: 1px solid #dfe1eb;
  }

  .community-room__channels ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .community-room__channels li,
  .community-room__channels li + li {
    min-height: 34px;
    margin: 0;
    padding: 0.38rem 0.5rem;
    background: #fff;
    font-size: 0.65rem;
  }

  .community-room__welcome {
    padding: 1.35rem 1rem;
  }

  .community-room__welcome h2 {
    font-size: 1.85rem;
  }

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

  .community-room__team {
    grid-template-columns: auto minmax(0, 1fr);
    padding-inline: 0.8rem;
  }

  .community-room__team a {
    grid-column: 2;
    min-height: 44px;
    margin-top: -0.55rem;
  }

  .community-belonging,
  .community-channels,
  .community-join,
  .community-final {
    padding-block: 4rem;
  }

  .community-section-heading h2,
  .community-channels__intro h2,
  .community-join__intro h2,
  .community-final h2 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .community-channel-rails {
    margin-block: 2.5rem 3.2rem;
    transform: rotate(-1deg) scale(1.01);
  }

  .community-channel-rail {
    gap: 0.55rem;
  }

  .community-channel-rail li {
    min-height: 44px;
    padding: 0.62rem 0.8rem;
    font-size: 0.78rem;
  }

  .community-resource-thread {
    grid-template-columns: 1fr;
    padding-block: 1.45rem;
  }

  .community-resource-thread > a {
    grid-column: auto;
  }

  .community-resource-thread__icon {
    width: 48px;
    height: 48px;
  }

  .community-steps li {
    gap: 0.85rem;
    padding-block: 1.35rem;
  }

  .community-steps__number {
    width: 42px;
    height: 42px;
  }

  .community-join__invitation .community-button {
    width: 100%;
  }

  .community-boundaries {
    padding-block: 3rem;
  }

  .community-boundaries h2 {
    font-size: 2.45rem;
  }

  .community-final::before {
    right: -20rem;
  }

  .community-other-support {
    display: grid;
    justify-items: center;
    gap: 0;
  }
}

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

  .community-motion-ready [data-community-reveal],
  .community-motion-ready [data-community-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  .community-channel-rails {
    transform: none;
  }

  .community-channel-rail {
    flex-wrap: wrap;
    width: auto;
    padding-inline: var(--gutter);
    transform: none !important;
    will-change: auto;
  }

  .community-room {
    translate: none;
  }
}
