:root {
  --ink: #111111;
  --paper: #f4f1e9;
  --white: #fffdf8;
  --lime: #d8ff42;
  --coral: #ff644f;
  --violet: #7858d8;
  --blue: #53bce8;
  --gray: #676767;
  --line: rgba(17, 17, 17, .2);
  --sans: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

main,
section,
article,
header,
footer,
nav,
div,
aside,
figure {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
th,
td,
figcaption,
a {
  overflow-wrap: anywhere;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  padding: 8px max(18px, 4vw);
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 30px;
  color: var(--white);
  background: rgba(17, 17, 17, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
}

.brand {
  width: 230px;
  display: block;
}

.brand img {
  width: 100%;
}

.topbar nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 44px);
}

.topbar nav a {
  padding: 9px 0;
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease;
}

.topbar nav a:hover {
  color: var(--lime);
}

.age {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: max(760px, calc(100vh - 76px));
  padding: clamp(50px, 7vw, 105px) max(20px, 5vw);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  align-items: end;
  gap: 55px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 10%;
  left: 42%;
  width: clamp(140px, 18vw, 290px);
  aspect-ratio: 1;
  content: "";
  background: var(--coral);
  border-radius: 50%;
  filter: blur(1px);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 360px;
  aspect-ratio: 1;
  content: "";
  border: 45px solid var(--lime);
  transform: rotate(18deg);
}

.hero-word {
  position: absolute;
  top: 7%;
  left: -2%;
  z-index: 0;
  margin: 0;
  color: transparent;
  font: 900 clamp(9rem, 26vw, 33rem)/.75 var(--sans);
  letter-spacing: -.09em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .17);
  white-space: nowrap;
}

.hero-title {
  position: relative;
  z-index: 3;
  max-width: 940px;
  align-self: end;
  padding-bottom: 30px;
}

.hero h1 {
  margin: 0;
  font: 900 clamp(4.5rem, 9vw, 10.5rem)/.82 var(--sans);
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  z-index: 4;
  width: min(100%, 680px);
  align-self: center;
  justify-self: center;
}

.hero-media figure {
  margin: 0;
}

.hero-media img {
  width: min(100%, 620px);
  aspect-ratio: 1;
  margin-inline: auto;
  object-fit: cover;
  border: 15px solid var(--white);
  border-radius: 50%;
  box-shadow: 22px 22px 0 var(--violet);
}

.hero-media figcaption {
  width: min(92%, 500px);
  margin: 28px auto 0;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--lime);
  font-size: .72rem;
  font-weight: 900;
  text-align: center;
  transform: rotate(-2deg);
}

.hero-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 5;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.65rem;
  font-weight: 900;
  text-decoration: none;
  transform: translateX(-50%);
  transition: background .25s ease, transform .25s ease;
}

.hero-arrow:hover {
  background: var(--lime);
  transform: translateX(-50%) translateY(4px);
}

.intro {
  padding: clamp(75px, 10vw, 150px) max(20px, 7vw);
  display: grid;
  grid-template-columns: minmax(120px, .35fr) minmax(0, 1.65fr);
  align-items: start;
  gap: clamp(35px, 8vw, 130px);
  background: var(--lime);
  border-bottom: 3px solid var(--ink);
}

.intro-mark {
  position: sticky;
  top: 110px;
  width: min(220px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--violet);
  border-radius: 50%;
  font: 900 clamp(3.5rem, 8vw, 8rem)/1 var(--sans);
  box-shadow: 13px 13px 0 var(--ink);
}

.intro-copy {
  max-width: 1000px;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

.intro-copy p {
  margin: 0 0 1.5em;
}

.intro-copy p:first-child {
  font: 400 clamp(1.55rem, 2.8vw, 2.7rem)/1.35 var(--serif);
  letter-spacing: -.02em;
}

.archive {
  width: 100%;
}

.record {
  padding: clamp(55px, 8vw, 110px) max(14px, 4vw);
  display: grid;
  grid-template-columns: clamp(70px, 9vw, 150px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(12px, 3vw, 48px);
  border-bottom: 3px solid var(--ink);
}

.record:nth-child(4n + 1) {
  background: var(--paper);
}

.record:nth-child(4n + 2) {
  background: #e6defb;
}

.record:nth-child(4n + 3) {
  background: #d7eff6;
}

.record:nth-child(4n) {
  background: #ffd7cf;
}

.record-number {
  position: sticky;
  top: 105px;
  padding-top: 12px;
  color: var(--ink);
  border-top: 9px solid var(--ink);
  font: 900 clamp(2.2rem, 6vw, 6.5rem)/.8 var(--sans);
  letter-spacing: -.07em;
}

.record-card {
  width: min(1150px, 100%);
  justify-self: center;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
}

.record-heading {
  min-height: 220px;
  padding: clamp(28px, 5vw, 70px);
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  background: var(--lime);
  border-bottom: 3px solid var(--ink);
}

.record:nth-child(4n + 2) .record-heading {
  color: var(--white);
  background: var(--violet);
}

.record:nth-child(4n + 3) .record-heading {
  background: var(--blue);
}

.record:nth-child(4n) .record-heading {
  background: var(--coral);
}

.record-heading h2 {
  max-width: 950px;
  margin: 0;
  font: 900 clamp(2.7rem, 6vw, 6.5rem)/.9 var(--sans);
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.record-body {
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(35px, 6vw, 85px);
  color: #404040;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.record-body > :first-child {
  margin-top: 0;
}

.record-body > :last-child {
  margin-bottom: 0;
}

.record-body p {
  margin: 0 0 1.45em;
}

.record-body h3 {
  margin: 48px 0 18px;
  color: var(--ink);
  font: 900 clamp(1.7rem, 3vw, 2.8rem)/1.03 var(--sans);
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.record-body ul,
.record-body ol {
  margin: 28px 0 42px;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.record-body li {
  position: relative;
  min-height: 37px;
  margin: 10px 0;
  padding: 4px 0 4px 49px;
}

.record-body ul > li::before {
  position: absolute;
  top: 8px;
  left: 5px;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.record-body ol > li {
  counter-increment: item;
}

.record-body ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  content: counter(item);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-size: .72rem;
  font-weight: 900;
  transform: rotate(-4deg);
}

.record-body li ul,
.record-body li ol {
  margin: 12px 0 0;
}

.record-body aside {
  position: relative;
  max-width: 100%;
  margin: 45px 0;
  padding: 35px 40px 35px 75px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--coral);
}

.record-body aside::before {
  position: absolute;
  top: 30px;
  left: 27px;
  content: "✦";
  color: var(--lime);
  font-size: 1.7rem;
}

.record-body aside p:last-child {
  margin-bottom: 0;
}

.record-body figure {
  width: calc(100% + clamp(30px, 8vw, 120px));
  max-width: none;
  margin: 60px 0 60px calc(clamp(15px, 4vw, 60px) * -1);
  padding: 11px;
  background: var(--lime);
  border: 3px solid var(--ink);
  transform: rotate(-1deg);
}

.record-body figure:nth-of-type(even) {
  background: var(--coral);
  transform: rotate(1deg);
}

.record-body figure img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  background: #1d1d1d;
  border: 2px solid var(--ink);
}

.record-body figcaption {
  padding: 12px 7px 2px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
}

.table-scroll {
  width: calc(100% + clamp(30px, 8vw, 120px));
  max-width: none;
  margin: 52px 0 65px calc(clamp(15px, 4vw, 60px) * -1);
  overflow-x: auto;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--violet);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

table {
  width: max-content;
  min-width: 100%;
  max-width: none;
  border-collapse: collapse;
  background: var(--white);
}

.record-body > table,
.intro-copy > table {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: auto;
}

thead {
  color: var(--white);
  background: var(--ink);
}

th,
td {
  min-width: 150px;
  padding: 15px 17px;
  border: 1px solid var(--ink);
  text-align: left;
  vertical-align: top;
  font-size: .84rem;
  line-height: 1.5;
}

th {
  color: var(--lime);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

tbody tr:nth-child(even) {
  background: rgba(216, 255, 66, .18);
}

#faq .record-body {
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#faq .record-body p {
  margin: 0;
  padding: 24px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
}

strong {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.footer {
  min-height: 360px;
  padding: 75px max(22px, 6vw);
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  align-items: center;
  gap: 45px;
  color: var(--white);
  background:
    linear-gradient(115deg, transparent 68%, var(--violet) 68%),
    var(--ink);
  border-top: 18px solid var(--lime);
}

.footer-brand {
  width: min(330px, 75vw);
}

.footer-brand img {
  width: 100%;
}

.footer nav {
  display: flex;
  gap: 28px;
}

.footer nav a {
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer nav a:hover {
  color: var(--lime);
}

.footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .74rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
    gap: 25px;
  }

  .hero h1 {
    font-size: clamp(4rem, 10vw, 7.8rem);
  }

  .record {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .record-heading h2 {
    font-size: clamp(2.5rem, 7vw, 5rem);
  }
}

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

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .brand {
    width: 190px;
  }

  .topbar nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 22px;
    padding: 5px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .topbar nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 80px 18px 110px;
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .hero-title {
    order: 1;
  }

  .hero-media {
    order: 2;
    width: min(88%, 580px);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 14vw, 6.5rem);
  }

  .hero::before {
    top: 42%;
    left: -40px;
  }

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

  .intro-mark {
    position: static;
    width: 120px;
  }

  .record {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .record-number {
    position: static;
    width: 80px;
  }

  .record-card {
    box-shadow: 9px 9px 0 var(--ink);
  }

  #faq .record-body {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    margin-inline: auto;
  }

  .footer nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 440px) {
  .topbar {
    padding-inline: 13px;
  }

  .brand {
    width: 165px;
  }

  .age {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .hero-media img {
    border-width: 8px;
    box-shadow: 12px 12px 0 var(--violet);
  }

  .intro {
    padding-inline: 14px;
  }

  .record {
    padding-inline: 11px;
  }

  .record-heading {
    min-height: 180px;
    padding: 25px 20px;
  }

  .record-heading h2 {
    font-size: 2.55rem;
  }

  .record-body {
    padding: 32px 19px;
  }

  .record-body aside {
    padding: 30px 20px 30px 57px;
  }

  .record-body aside::before {
    left: 20px;
  }

  .record-body figure,
  .table-scroll {
    width: calc(100% + 20px);
    margin-left: -10px;
  }

  th,
  td {
    min-width: 140px;
    padding: 12px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
