:root {
  --charcoal: #100e0d;
  --charcoal-2: #171310;
  --charcoal-3: #211a16;
  --ember: #e07a2a;
  --ember-dark: #9f4e18;
  --bone: #f1e2cc;
  --muted: #b9a99a;
  --line: rgba(241, 226, 204, 0.16);
  --line-strong: rgba(241, 226, 204, 0.34);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--charcoal);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 42%, rgba(224, 122, 42, 0.045), transparent 28rem),
    var(--charcoal);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: var(--ember);
  pointer-events: none;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--ember);
  color: var(--charcoal);
}

:focus-visible {
  outline: 3px solid var(--bone);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--bone);
  color: var(--charcoal);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 2px;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 14, 13, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 44px auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-self: start;
  column-gap: 12px;
  color: var(--bone);
  text-decoration: none;
}

.brand img {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
}

.brand__name {
  align-self: end;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand__meta {
  align-self: start;
  margin-top: 5px;
  color: var(--ember);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
}

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

.site-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(241, 226, 204, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--bone);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-connect {
  display: grid;
  justify-self: end;
  min-width: 190px;
  padding: 10px 14px;
  border: 1px solid rgba(224, 122, 42, 0.55);
  border-radius: 2px;
  background: rgba(224, 122, 42, 0.08);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.header-connect:hover {
  border-color: var(--ember);
  background: rgba(224, 122, 42, 0.16);
}

.header-connect__label {
  color: var(--ember);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-connect__address {
  margin-top: 2px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  min-height: 840px;
  padding-top: 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero__texture,
.hero__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__texture {
  background:
    linear-gradient(90deg, rgba(16, 14, 13, 0.42), rgba(16, 14, 13, 0.2) 52%, rgba(16, 14, 13, 0.55)),
    linear-gradient(0deg, rgba(16, 14, 13, 0.18), rgba(16, 14, 13, 0.08)),
    url("assets/site/hero-background.webp") center / cover no-repeat;
  filter: saturate(0.88);
}

.hero__grid {
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(241, 226, 204, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 226, 204, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black 5%, transparent 72%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 72px;
  align-items: center;
  padding-block: 84px 156px;
}

.hero__copy {
  max-width: 650px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--ember);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border: 2px solid rgba(16, 14, 13, 0.5);
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 3px rgba(224, 122, 42, 0.16);
  animation: ember-pulse 2.4s ease-in-out infinite;
}

@keyframes ember-pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(224, 122, 42, 0);
  }
}

.hero h1,
.section-heading h2,
.wipe-section h2,
.community-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.018em;
  line-height: 0.87;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(72px, 7.4vw, 104px);
  letter-spacing: -0.005em;
  text-shadow: 0 8px 44px rgba(0, 0, 0, 0.35);
}

.hero__promise {
  margin: 26px 0 0;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__promise span {
  color: var(--ember);
}

.hero__intro {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(241, 226, 204, 0.7);
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  border-color: var(--ember);
  background: var(--ember);
  color: var(--charcoal);
}

.button--primary:hover {
  background: #f18a36;
}

.button--secondary {
  background: rgba(16, 14, 13, 0.46);
  color: var(--bone);
}

.button--secondary:hover {
  border-color: var(--bone);
  background: rgba(241, 226, 204, 0.08);
}

.connect-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 550px;
  min-height: 58px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: rgba(16, 14, 13, 0.72);
  backdrop-filter: blur(8px);
}

.connect-bar__label {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 15px;
  border-right: 1px solid var(--line);
  color: var(--ember);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.connect-bar code {
  padding: 0 18px;
  color: var(--bone);
  font-size: 14px;
  font-weight: 700;
  user-select: all;
}

.connect-bar button {
  align-self: stretch;
  min-width: 76px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.connect-bar button:hover {
  background: var(--ember);
  color: var(--charcoal);
}

.server-preview {
  position: relative;
  align-self: center;
  padding: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(16, 14, 13, 0.82);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
}

.server-preview::before,
.server-preview::after {
  position: absolute;
  width: 42px;
  height: 42px;
  content: "";
  pointer-events: none;
}

.server-preview::before {
  top: -8px;
  left: -8px;
  border-top: 2px solid var(--ember);
  border-left: 2px solid var(--ember);
}

.server-preview::after {
  right: -8px;
  bottom: -8px;
  border-right: 2px solid var(--ember);
  border-bottom: 2px solid var(--ember);
}

.server-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-label {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--bone);
}

.live-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

.server-preview > img {
  width: 100%;
  border: 1px solid rgba(241, 226, 204, 0.08);
}

.server-preview__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 14px 0 0;
  border-top: 1px solid var(--line);
}

.server-preview__facts div {
  padding: 14px 12px 4px;
  border-right: 1px solid var(--line);
}

.server-preview__facts div:last-child {
  border-right: 0;
}

.server-preview__facts dt {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.server-preview__facts dd {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.hero__rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 92px;
  border-top: 1px solid var(--line);
  background: rgba(16, 14, 13, 0.9);
}

.hero__rail span {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__rail span:last-child {
  border-right: 0;
}

.hero__rail strong {
  color: var(--bone);
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.03em;
}

.server-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  padding-block: 144px;
}

.section-heading {
  position: sticky;
  top: 132px;
  align-self: start;
}

.section-heading h2,
.wipe-section h2,
.community-section h2 {
  font-size: clamp(52px, 6.5vw, 88px);
}

.section-heading > p:last-child,
.wipe-section__copy > p:last-child,
.community-section__copy > p:last-child {
  max-width: 530px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 32px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(241, 226, 204, 0.018);
  transition: background 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  z-index: 1;
  background: rgba(241, 226, 204, 0.045);
  transform: translateY(-3px);
}

.feature-card--accent {
  background: var(--ember);
  color: var(--charcoal);
}

.feature-card--accent:hover {
  background: #eb8432;
}

.feature-card__index {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.feature-card--accent .feature-card__index {
  color: rgba(16, 14, 13, 0.58);
}

.feature-card__mark {
  display: block;
  margin-top: 30px;
  color: var(--bone);
  font-family: var(--display);
  font-size: 76px;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.feature-card--accent .feature-card__mark {
  color: var(--charcoal);
}

.feature-card h3 {
  margin: 32px 0 0;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.feature-card--accent p {
  color: rgba(16, 14, 13, 0.72);
}

.wipe-section {
  position: relative;
  padding-block: 144px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(16, 14, 13, 0.98) 0 38%, rgba(16, 14, 13, 0.68)),
    url("assets/site/hero-background.webp") center 68% / cover no-repeat;
}

.wipe-section::after {
  position: absolute;
  right: -13vw;
  bottom: -31vw;
  width: 60vw;
  aspect-ratio: 1;
  border: 1px solid rgba(224, 122, 42, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 7vw rgba(224, 122, 42, 0.025),
    0 0 0 14vw rgba(224, 122, 42, 0.018);
  pointer-events: none;
}

.wipe-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.wipe-console {
  padding: 28px;
  border: 1px solid var(--line-strong);
  background: rgba(16, 14, 13, 0.84);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.wipe-console__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wipe-console__topline strong {
  color: var(--ember);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.countdown div {
  min-width: 0;
  padding: 24px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.countdown strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(38px, 4.3vw, 64px);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1;
}

.countdown span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wipe-schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0 0;
}

.wipe-schedule div {
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.wipe-schedule div:first-child {
  padding-left: 0;
}

.wipe-schedule div:last-child {
  padding-right: 0;
  border-right: 0;
}

.wipe-schedule dt {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wipe-schedule dd {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 800;
}

.community-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.36fr 0.8fr 1fr;
  gap: 52px;
  align-items: center;
  padding-block: 138px;
}

.community-section__mark {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 49.8%, rgba(224, 122, 42, 0.18) 50%, transparent 50.2%),
    rgba(241, 226, 204, 0.018);
}

.community-section__mark img {
  width: 62%;
  height: auto;
}

.community-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
  padding: 26px 30px;
  border: 1px solid var(--line-strong);
  background: rgba(241, 226, 204, 0.025);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.community-link:hover {
  border-color: var(--ember);
  background: rgba(224, 122, 42, 0.08);
  transform: translateY(-3px);
}

.community-link span {
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 800;
  word-break: break-word;
}

.community-link small {
  display: block;
  margin-bottom: 8px;
  color: var(--ember);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.community-link strong {
  color: var(--ember);
  font-size: 32px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0908;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 116px;
}

.site-footer__brand {
  display: grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
}

.site-footer__brand img {
  grid-row: 1 / 3;
}

.site-footer__brand strong {
  align-self: end;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.site-footer__brand span {
  align-self: start;
  margin-top: 4px;
  color: var(--ember);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.site-footer p {
  margin: 0;
  color: rgba(185, 169, 154, 0.62);
  font-size: 10px;
  text-align: center;
}

.footer-copy {
  justify-self: end;
  padding: 10px 0 10px 16px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  cursor: pointer;
}

.footer-copy span {
  display: inline-block;
  margin-left: 12px;
  padding: 6px 11px;
  background: var(--ember);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.copy-toast {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  padding: 13px 17px;
  border: 1px solid var(--ember);
  background: var(--bone);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 90px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-block: 92px 76px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(88px, 14vw, 150px);
  }

  .server-preview {
    width: min(680px, 100%);
  }

  .hero__rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero__rail span {
    gap: 7px;
    font-size: 8px;
  }

  .hero__rail strong {
    font-size: 22px;
  }

  .server-section,
  .wipe-section__inner {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .section-heading {
    position: static;
  }

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

  .community-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .page-width {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 15px;
  }

  .brand {
    grid-template-columns: 36px auto;
    column-gap: 9px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand__name {
    font-size: 20px;
  }

  .brand__meta {
    display: none;
  }

  .header-connect {
    display: block;
    min-width: 0;
    padding: 9px 12px;
    text-align: center;
  }

  .header-connect__label {
    font-size: 8px;
  }

  .header-connect__address {
    display: none;
  }

  .hero {
    display: block;
    padding-top: 68px;
    padding-bottom: 0;
  }

  .hero__inner {
    gap: 48px;
    padding-block: 70px 58px;
  }

  .hero h1 {
    font-size: clamp(57px, 18vw, 86px);
  }

  .hero__promise {
    font-size: clamp(23px, 7.5vw, 32px);
    line-height: 1.05;
  }

  .hero__intro {
    font-size: 15px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .connect-bar {
    grid-template-columns: 1fr auto;
  }

  .connect-bar__label {
    display: none;
  }

  .connect-bar code {
    min-width: 0;
    padding-inline: 12px;
    font-size: 12px;
  }

  .server-preview {
    padding: 9px;
  }

  .server-preview__head span:first-child {
    display: none;
  }

  .server-preview__head {
    justify-content: flex-end;
  }

  .server-preview__facts div {
    padding-inline: 8px;
  }

  .server-preview__facts dd {
    font-size: 12px;
  }

  .hero__rail {
    grid-template-columns: repeat(3, 1fr);
    position: static;
    min-height: 0;
  }

  .hero__rail span {
    min-height: 68px;
    border-bottom: 1px solid var(--line);
  }

  .hero__rail span:nth-child(n + 4) {
    grid-column: span 1;
  }

  .server-section,
  .wipe-section,
  .community-section {
    padding-block: 90px;
  }

  .section-heading h2,
  .wipe-section h2,
  .community-section h2 {
    font-size: clamp(48px, 17vw, 68px);
  }

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

  .feature-card {
    min-height: 270px;
    padding: 26px;
  }

  .wipe-console {
    padding: 16px;
  }

  .wipe-console__topline {
    display: grid;
    gap: 5px;
  }

  .countdown strong {
    font-size: clamp(30px, 10vw, 44px);
  }

  .countdown div {
    padding: 18px 4px;
  }

  .countdown span {
    font-size: 7px;
    letter-spacing: 0.09em;
  }

  .wipe-schedule {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wipe-schedule div,
  .wipe-schedule div:first-child,
  .wipe-schedule div:last-child {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .wipe-schedule div:last-child {
    border-bottom: 0;
  }

  .community-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .community-section__mark {
    width: 150px;
  }

  .community-link {
    grid-column: auto;
    min-height: 110px;
    padding: 20px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    padding-block: 34px;
  }

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

  .footer-copy {
    justify-self: stretch;
    text-align: left;
  }

  .copy-toast {
    right: 15px;
    bottom: 15px;
    left: 15px;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
