:root {
  --ink: #171815;
  --paper: #f1efe7;
  --lime: #d9ff43;
  --muted: #777870;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgb(23 24 21 / 20%);
}

.wordmark {
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.05em;
}

.wordmark span {
  color: #8da600;
}

.nav-status,
.eyebrow,
.receipt,
.statement > p,
.statement-footer,
.site-footer {
  font-family: Consolas, "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
}

.nav-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94b000;
  box-shadow: 0 0 0 5px rgb(217 255 67 / 35%);
}

.hero {
  min-height: 760px;
  padding: 42px clamp(22px, 5vw, 76px) 72px;
}

.eyebrow {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.55fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
  min-height: 620px;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(76px, 10.8vw, 168px);
  font-weight: 630;
  line-height: 0.82;
  letter-spacing: -0.085em;
}

.hero-copy p {
  max-width: 520px;
  margin: 48px 0 0;
  color: #52534d;
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.receipt {
  position: relative;
  padding: 25px 25px 27px;
  background: var(--lime);
  box-shadow: 18px 18px 0 var(--ink);
  font-size: 10px;
  transform: rotate(1.5deg);
}

.receipt::before,
.receipt::after {
  position: absolute;
  right: -11px;
  left: -11px;
  height: 18px;
  background: linear-gradient(135deg, transparent 8px, var(--lime) 0) 0 0 /
    18px 18px repeat-x;
  content: "";
}

.receipt::before {
  top: -9px;
  transform: rotate(180deg);
}

.receipt::after {
  bottom: -9px;
}

.receipt header,
.receipt footer,
.receipt dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.receipt-mark {
  padding: 48px 0 38px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(88px, 9vw, 142px);
  font-weight: 780;
  line-height: 0.8;
  letter-spacing: -0.1em;
}

.rule {
  height: 1px;
  margin: 0 0 11px;
  background: var(--ink);
}

.rule.dashed {
  height: 0;
  margin: 15px 0 18px;
  border-top: 1px dashed var(--ink);
}

.receipt dl {
  margin: 0;
}

.receipt dl div {
  padding: 8px 0;
}

.receipt dt,
.receipt dd {
  margin: 0;
}

.receipt dd {
  font-weight: 760;
}

.statement {
  padding: 120px clamp(22px, 5vw, 76px) 42px;
  background: var(--ink);
  color: var(--paper);
}

.statement > p {
  margin: 0 0 70px;
  color: var(--lime);
  font-size: 10px;
}

.statement h2 {
  margin: 0;
  font-size: clamp(43px, 7vw, 108px);
  font-weight: 520;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.statement-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
  padding-top: 20px;
  border-top: 1px solid #45463f;
  color: #92938a;
  font-size: 9px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(22px, 5vw, 76px);
  background: var(--ink);
  color: #797a72;
  font-size: 9px;
}

.site-footer a {
  color: var(--paper);
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 76px;
  }

  .hero-copy h1 {
    font-size: clamp(62px, 19vw, 112px);
  }

  .hero-copy p {
    margin-top: 32px;
  }

  .receipt {
    width: min(100%, 430px);
    margin: 28px 18px 24px 0;
    justify-self: end;
  }

  .statement {
    padding-top: 86px;
  }

  .statement > p {
    margin-bottom: 48px;
  }

  .statement-footer,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .statement-footer {
    margin-top: 80px;
  }
}

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