:root {
  color-scheme: light;
  --paper: #f3f1ec;
  --white: #fff;
  --ink: #111318;
  --soft-ink: #343842;
  --muted: #6d7078;
  --line: rgba(17, 19, 24, .16);
  --cobalt: #153eff;
  --aqua: #42d7e8;
  --lime: #d9ff55;
  --lavender: #ded7ff;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 102px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 19, 24, .032) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 19, 24, .032) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 48rem);
}

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--cobalt);
  transform: translateY(-180%);
}

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

.shell {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 241, 236, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 94px;
  gap: 34px;
  align-items: center;
}

.brand-lockup {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-lockup strong,
.brand-lockup span {
  display: block;
}

.brand-lockup strong {
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 21px;
  line-height: 1.1;
}

.brand-lockup span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.3vw, 38px);
}

.primary-nav a {
  position: relative;
  padding: 32px 0 30px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 25px;
  height: 2px;
  background: var(--cobalt);
  transition: right .24s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.primary-nav a:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 6px;
}

.edition {
  margin: 0;
  color: var(--cobalt);
  font: 800 10px/1.35 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
  text-align: right;
}

.hero {
  min-height: calc(100vh - 92px);
  padding: clamp(62px, 7vw, 110px) 0 82px;
  display: grid;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(540px, 1.05fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: center;
}

.overline,
.section-number {
  margin-bottom: 24px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .19em;
}

h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: clamp(50px, 6.4vw, 92px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.055em;
}

.hero-tagline {
  margin-bottom: 16px;
  color: var(--cobalt);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
}

.hero-intro {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--soft-ink);
  font-size: 17px;
}

.service-note {
  max-width: 680px;
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service-note span {
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 800;
}

.service-note p {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.65;
}

.hero-images {
  position: relative;
  min-height: 690px;
}

.hero-image {
  margin: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 84%;
  background: #d9d9d9;
}

.hero-image-main::before {
  content: "ARCHIVE VIEW / 01";
  position: absolute;
  left: -38px;
  top: 6px;
  z-index: 2;
  color: var(--cobalt);
  font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .14em;
  writing-mode: vertical-rl;
}

.hero-image-main figcaption {
  position: absolute;
  right: 0;
  bottom: -50px;
  max-width: 86%;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.hero-image-inset {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 37%;
  height: 47%;
  padding: 10px;
  background: var(--lime);
}

.hero-image-inset figcaption {
  position: absolute;
  left: 10px;
  bottom: 8px;
  padding: 5px 7px;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  letter-spacing: .08em;
}

.identity-band {
  color: var(--white);
  background: var(--ink);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.identity-grid p {
  min-height: 126px;
  margin: 0;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  color: #bcbfc7;
  font-size: 12px;
}

.identity-grid p:first-child {
  padding-left: 0;
}

.identity-grid p:last-child {
  border-right: 0;
}

.identity-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--aqua);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.identity-grid strong {
  color: var(--white);
  font-size: 15px;
}

.brand-section,
.works-section,
.archive-section,
.updates-section,
.app-section,
.contact-section {
  padding: clamp(92px, 10vw, 158px) 0;
}

.brand-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(52px, 8vw, 132px);
}

.section-label {
  padding-top: 10px;
  border-top: 4px solid var(--cobalt);
}

.section-label span {
  color: var(--cobalt);
  font: 800 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .14em;
}

.section-label p {
  margin-top: 20px;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
}

.brand-statement > h2,
.works-heading h2,
.archive-intro h2,
.updates-copy > h2,
.app-heading h2,
.contact-layout h2,
.interlude-copy h2 {
  margin-bottom: 30px;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.lead {
  max-width: 940px;
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.8;
}

.brand-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-ledger article {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.brand-ledger article:first-child {
  padding-left: 0;
}

.brand-ledger article:last-child {
  border-right: 0;
}

.ledger-key {
  color: var(--cobalt);
  font: 800 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .14em;
}

.brand-ledger h3 {
  margin: 78px 0 16px;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.brand-ledger article > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.visual-interlude {
  color: var(--white);
  background: var(--cobalt);
}

.interlude-grid {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  gap: clamp(58px, 8vw, 140px);
  align-items: center;
}

.interlude-image {
  margin: 0;
  transform: translateY(72px);
}

.interlude-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.interlude-copy {
  padding: 120px 0;
}

.interlude-copy .overline {
  color: var(--lime);
}

.interlude-copy p:not(.overline) {
  max-width: 710px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

.interlude-copy dl {
  margin: 46px 0 0;
}

.interlude-copy dl > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.interlude-copy dt {
  color: var(--lime);
  font-size: 12px;
}

.interlude-copy dd {
  margin: 0;
  font-size: 13px;
}

.works-section {
  padding-top: clamp(160px, 16vw, 250px);
}

.works-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(330px, .6fr);
  gap: 90px;
  align-items: end;
}

.works-heading > p {
  margin-bottom: 40px;
  color: var(--muted);
}

.index-table {
  margin-top: 64px;
  border-top: 1px solid var(--ink);
}

.index-row {
  display: grid;
  grid-template-columns: 150px 1.35fr 160px 1fr;
  gap: 30px;
  align-items: center;
  min-height: 148px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.index-head {
  min-height: 54px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.index-code {
  color: var(--cobalt);
  font: 800 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.index-row h3 {
  margin: 0 0 8px;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 29px;
  font-weight: 500;
}

.index-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.status {
  display: inline-flex;
  width: max-content;
  padding: 5px 9px;
  color: #132000;
  background: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.works-panorama {
  position: relative;
  margin: 92px 0 0;
}

.works-panorama img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 44%;
}

.works-panorama figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(490px, 48%);
  padding: 26px;
  color: var(--white);
  background: rgba(17, 19, 24, .92);
}

.works-panorama figcaption span {
  color: var(--aqua);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.works-panorama figcaption p {
  margin: 10px 0 0;
  font-size: 13px;
}

.archive-section {
  background: var(--lavender);
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1.28fr);
  gap: clamp(60px, 8vw, 130px);
}

.archive-intro p:last-child {
  max-width: 620px;
  color: var(--soft-ink);
}

.archive-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: archive;
}

.archive-flow li {
  min-height: 190px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 36px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(17, 19, 24, .28);
}

.archive-flow li:last-child {
  border-bottom: 1px solid rgba(17, 19, 24, .28);
}

.archive-flow > li > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--cobalt);
  border-radius: 50%;
  font: 800 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.archive-flow h3 {
  margin: 0 0 12px;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
}

.archive-flow p {
  margin: 0;
  color: var(--soft-ink);
}

.updates-section {
  color: var(--white);
  background: var(--ink);
}

.updates-layout {
  display: grid;
  grid-template-columns: minmax(350px, .74fr) minmax(0, 1.26fr);
  gap: clamp(62px, 9vw, 150px);
  align-items: start;
}

.updates-image {
  position: sticky;
  top: 126px;
}

.updates-image img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.updates-image p {
  margin: 12px 0 0;
  color: #8d919c;
  font-size: 11px;
}

.updates-copy .section-number {
  color: var(--aqua);
}

.updates-copy .lead {
  color: #c9ccd4;
}

.update-board {
  margin-top: 64px;
}

.update-board article {
  display: grid;
  grid-template-columns: 110px minmax(230px, .8fr) 1fr;
  gap: 34px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.update-board article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.update-board span {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 800;
}

.update-board h3 {
  margin: 0;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.update-board p {
  margin: 0;
  color: #a9acb5;
  font-size: 14px;
}

.app-section {
  background: var(--white);
}

.app-heading {
  max-width: 1040px;
}

.app-heading > p:last-child {
  max-width: 760px;
  color: var(--muted);
}

.channel-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 70px;
  border: 1px solid var(--ink);
}

.channel-compare article {
  min-height: 280px;
  padding: clamp(30px, 4vw, 54px);
}

.channel-compare article:first-child {
  color: var(--white);
  background: var(--cobalt);
  border-right: 1px solid var(--ink);
}

.channel-compare article:last-child {
  background: var(--lime);
}

.channel-compare span {
  font: 800 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .15em;
}

.channel-compare h3 {
  margin: 70px 0 14px;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}

.channel-compare p {
  margin: 0;
}

.faq-list {
  margin-top: 82px;
}

details {
  border-top: 1px solid var(--ink);
}

details:last-child {
  border-bottom: 1px solid var(--ink);
}

summary {
  position: relative;
  padding: 26px 64px 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 21px;
  color: var(--cobalt);
  font-size: 32px;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 950px;
  padding: 0 90px 26px 0;
  color: var(--muted);
}

.contact-section {
  color: var(--white);
  background: var(--cobalt);
}

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
}

.contact-layout .section-number {
  color: var(--lime);
}

.contact-copy > p {
  max-width: 780px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

.contact-copy dl {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.contact-copy dl > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.contact-copy dt {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.contact-copy dd {
  margin: 0;
}

.site-footer {
  padding: 58px 0;
  color: #b6b9c2;
  background: #08090c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr;
  gap: 64px;
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 19px;
}

.footer-brand span {
  margin-top: 5px;
  color: var(--aqua);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.footer-grid > p {
  margin: 0;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .header-grid {
    grid-template-columns: 260px 1fr;
  }

  .edition {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(430px, .86fr);
  }

  .hero-images {
    min-height: 620px;
  }

  .brand-ledger {
    grid-template-columns: 1fr;
  }

  .brand-ledger article,
  .brand-ledger article:first-child {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-ledger article:last-child {
    border-bottom: 0;
  }

  .brand-ledger h3 {
    margin-top: 28px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 154px;
  }

  .header-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px 0 0;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .primary-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    padding: 13px 0 17px;
  }

  .primary-nav a::after {
    bottom: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout,
  .interlude-grid,
  .works-heading,
  .archive-layout,
  .updates-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-images {
    min-height: 760px;
  }

  .hero-image-main {
    width: 74%;
  }

  .identity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .identity-grid p:first-child {
    padding-left: 28px;
  }

  .identity-grid p:nth-child(2) {
    border-right: 0;
  }

  .identity-grid p:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .brand-layout {
    grid-template-columns: 150px 1fr;
    gap: 52px;
  }

  .interlude-image {
    max-width: 680px;
    transform: translateY(58px);
  }

  .interlude-copy {
    padding-top: 100px;
  }

  .index-row {
    grid-template-columns: 110px 1fr 130px;
  }

  .index-row > p:last-child,
  .index-head span:last-child {
    display: none;
  }

  .updates-image {
    position: static;
    max-width: 560px;
  }

  .update-board article {
    grid-template-columns: 100px 1fr;
  }

  .update-board article p {
    grid-column: 2;
  }

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

  .footer-grid > p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 138px;
  }

  .shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    position: sticky;
  }

  .brand-lockup span {
    display: none;
  }

  .brand-lockup strong {
    font-size: 18px;
  }

  .primary-nav {
    gap: 20px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .hero {
    padding: 52px 0 58px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 68px);
  }

  .hero-intro {
    font-size: 15px;
  }

  .service-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-images {
    min-height: 520px;
  }

  .hero-image-main {
    width: 78%;
    height: 82%;
  }

  .hero-image-inset {
    width: 43%;
    height: 45%;
  }

  .hero-image-main figcaption {
    max-width: 100%;
    bottom: -44px;
    font-size: 9px;
  }

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

  .identity-grid p,
  .identity-grid p:first-child {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .brand-section,
  .works-section,
  .archive-section,
  .updates-section,
  .app-section,
  .contact-section {
    padding: 80px 0;
  }

  .brand-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-label {
    max-width: 180px;
  }

  .brand-statement > h2,
  .works-heading h2,
  .archive-intro h2,
  .updates-copy > h2,
  .app-heading h2,
  .contact-layout h2,
  .interlude-copy h2 {
    font-size: clamp(37px, 11vw, 54px);
  }

  .lead {
    font-size: 17px;
  }

  .brand-ledger {
    margin-top: 48px;
  }

  .interlude-image {
    transform: translateY(38px);
  }

  .interlude-copy {
    padding: 76px 0;
  }

  .interlude-copy dl > div {
    grid-template-columns: 110px 1fr;
  }

  .works-section {
    padding-top: 118px;
  }

  .works-heading {
    gap: 10px;
  }

  .works-heading > p {
    margin-bottom: 0;
  }

  .index-head {
    display: none;
  }

  .index-row {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 28px 0;
  }

  .index-row > p:last-child {
    display: block;
  }

  .works-panorama {
    margin-top: 62px;
  }

  .works-panorama img {
    aspect-ratio: 4 / 5;
  }

  .works-panorama figcaption {
    position: static;
    width: 100%;
  }

  .archive-layout {
    gap: 46px;
  }

  .archive-flow li {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .archive-flow > li > span {
    width: 44px;
    height: 44px;
  }

  .updates-layout {
    gap: 50px;
  }

  .update-board article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .update-board article p {
    grid-column: auto;
  }

  .channel-compare {
    grid-template-columns: 1fr;
  }

  .channel-compare article:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .channel-compare h3 {
    margin-top: 46px;
  }

  details p {
    padding-right: 0;
  }

  .contact-layout {
    gap: 30px;
  }

  .contact-copy dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-grid > p:last-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
