@font-face {
  font-family: "Archivo Black";
  src: url("fonts/ArchivoBlack-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Caveat";
  src: url("fonts/Caveat-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --red: #FF4B26;
  --blue: #2437DE;
  --paper: #F4EDDE;
  --ink: #17150F;
  --white: #FFFFFF;
  --surface: var(--paper);
  --text: var(--ink);
  --border: var(--ink);
  --panel: var(--white);
  --reverse: var(--ink);
  --reverse-text: var(--paper);
  --muted: rgba(23, 21, 15, 0.55);
  --grain: url("textures/grain.svg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--red);
  color: var(--paper);
  border: 3px solid var(--border);
  font-family: "Archivo Black", sans-serif;
  text-decoration: none;
}

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

.grain-layer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background-image: var(--grain);
  background-repeat: repeat;
}

.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 3px solid var(--border);
  background: var(--surface);
}

.header-inner,
.section-inner,
.hero {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
}

.wordmark,
.footer-mark {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
}

.wordmark {
  font-size: 20px;
}

.misprint {
  position: relative;
  isolation: isolate;
}

.misprint::before {
  position: absolute;
  z-index: -1;
  content: attr(data-echo);
  color: var(--red);
  pointer-events: none;
  white-space: nowrap;
}

.misprint-red::before {
  left: -3px;
  top: 2px;
  color: var(--red);
}

.misprint-blue::before {
  left: 4px;
  top: -3px;
  color: var(--blue);
}

.wordmark::before {
  left: -2px;
  top: 1.5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav > a:not(.nav-store) {
  text-decoration: none;
  text-underline-offset: 5px;
}

.desktop-nav > a:not(.nav-store):hover {
  color: var(--red);
  text-decoration: underline;
}

.nav-store,
.app-store-button,
.pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-store {
  border: 2.5px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  background: var(--reverse);
  color: var(--reverse-text);
  box-shadow: 3px 3px 0 var(--red);
  font-family: "Archivo Black", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.mobile-store {
  display: none;
}

.pressable {
  transition: transform 100ms ease, box-shadow 100ms ease;
}

.pressable:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 transparent;
}

.hero-desktop {
  display: flex;
  min-height: 654px;
  align-items: center;
  gap: 40px;
  padding: 64px 48px 72px;
}

.hero-copy {
  display: flex;
  flex: 1.1;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  padding: 5px 12px;
  transform: rotate(-2deg);
  background: var(--reverse);
  color: var(--reverse-text);
  font-family: "Archivo Black", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
}

.hero-title {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(60px, 6.1vw, 76px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-title > span {
  display: block;
  width: max-content;
}

.hero-title .misprint-red::before {
  left: -5px;
  top: 4px;
}

.hero-title .misprint-blue::before {
  left: 5px;
  top: -4px;
}

.hero-summary {
  max-width: 460px;
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.app-store-button {
  gap: 12px;
  border: 3px solid var(--border);
  border-radius: 999px;
  padding: 16px 28px;
  background: var(--reverse);
  color: var(--reverse-text);
  box-shadow: 5px 5px 0 var(--red);
}

.app-store-button svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.app-store-button span {
  display: flex;
  flex-direction: column;
}

.app-store-button small {
  font-size: 11px;
  opacity: 0.75;
}

.app-store-button strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.aside {
  margin: 0;
  font-family: "Caveat", cursive;
}

.hero-aside {
  transform: rotate(-3deg);
  color: var(--blue);
  font-size: 24px;
}

.hero-art {
  position: relative;
  flex: 1;
  min-height: 520px;
}

.action-ticket {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 180px;
  width: 330px;
  margin: 0;
  padding: 24px 22px;
  transform: rotate(-3deg);
  border: 3px solid var(--border);
  background: var(--panel);
  box-shadow: 7px 7px 0 var(--border);
  color: var(--text);
}

.ticket-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  font-size: 11px;
  font-weight: 700;
}

.ticket-meta span:first-child {
  color: var(--red);
  font-family: "Archivo Black", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
}

.action-ticket > p {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

.ticket-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.ticket-note > span:first-child {
  padding: 4px 10px;
  background: var(--reverse);
  color: var(--reverse-text);
  font-family: "Archivo Black", sans-serif;
  font-size: 13px;
}

.ticket-note .aside {
  color: var(--blue);
  font-size: 20px;
}

.timer-card {
  position: absolute;
  top: 210px;
  right: 0;
  padding: 30px 40px 36px;
  transform: rotate(2deg);
  border: 3px solid var(--border);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--blue);
}

.timer-label {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: "Archivo Black", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
}

.timer {
  position: relative;
  white-space: nowrap;
  font-family: "Archivo Black", sans-serif;
  font-size: 110px;
  letter-spacing: -5px;
  line-height: 0.95;
}

.timer > span {
  display: block;
}

.timer-red,
.timer-blue {
  position: absolute;
}

.timer-red {
  top: 3px;
  left: -4px;
  color: var(--red);
}

.timer-blue {
  top: -3px;
  left: 4px;
  color: var(--blue);
}

.timer-ink {
  position: relative;
  color: var(--paper);
}

.drift-aside {
  position: absolute;
  top: 420px;
  right: 300px;
  transform: rotate(-4deg);
  color: var(--red);
  font-size: 26px;
  white-space: nowrap;
}

.halftone {
  background-repeat: repeat;
}

.hero-dots {
  position: absolute;
  z-index: 1;
  top: 60px;
  right: 60px;
  width: 120px;
  height: 120px;
  transform: rotate(10deg);
  background-image: radial-gradient(rgba(255, 75, 38, 0.4) 2.5px, transparent 2.5px);
  background-size: 11px 11px;
}

.hero-mobile,
.how-mobile,
.science-mobile,
.pricing-mobile,
.footer-mobile {
  display: none;
}

.how-section,
.science-section,
.pricing-section,
.site-footer {
  border-top: 3px solid var(--border);
}

.how-section {
  background: var(--panel);
}

.how-desktop,
.science-desktop {
  padding: 56px 48px;
}

.section-kicker {
  margin: 0 0 26px;
  font-family: "Archivo Black", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
}

.kicker-red {
  color: var(--red);
}

.kicker-blue {
  color: var(--blue);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card,
.step-row {
  border: 3px solid var(--border);
  background: var(--surface);
}

.step-card {
  padding: 26px 24px;
}

.step-red {
  box-shadow: 6px 6px 0 var(--red);
}

.step-card.step-red {
  transform: rotate(-0.5deg);
}

.step-blue {
  box-shadow: 6px 6px 0 var(--blue);
}

.step-card.step-blue {
  transform: rotate(0.5deg);
}

.step-ink {
  box-shadow: 6px 6px 0 var(--border);
}

.step-card.step-ink {
  transform: rotate(-0.4deg);
}

.step-number {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 44px;
  line-height: 1;
}

.step-red .step-number {
  color: var(--red);
}

.step-blue .step-number {
  color: var(--blue);
}

.step-card h3,
.science-grid h3 {
  margin: 12px 0 8px;
  font-family: "Archivo Black", sans-serif;
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
}

.step-card p,
.science-grid p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
}

.science-title {
  max-width: 700px;
  margin: 0 0 30px;
  font-family: "Archivo Black", sans-serif;
  font-size: 38px;
  line-height: 1.05;
  text-transform: uppercase;
}

.science-title::before,
.pricing-title::before {
  width: 100%;
  white-space: normal;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.science-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.science-grid h3 {
  margin: 0;
  font-size: 17px;
}

.science-grid p span,
.science-mobile span {
  opacity: 0.55;
}

.science-grid .halftone {
  width: 80px;
  height: 36px;
  background-size: 9px 9px;
}

.red-dots {
  background-image: radial-gradient(var(--red) 2px, transparent 2px);
}

.blue-dots {
  background-image: radial-gradient(var(--blue) 2px, transparent 2px);
}

.ink-dots {
  background-image: radial-gradient(var(--text) 2px, transparent 2px);
}

.pricing-section {
  position: relative;
  background: var(--ink);
  color: var(--paper);
}

.anchor-target {
  position: absolute;
  top: 0;
  left: 0;
}

.pricing-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px;
}

.pricing-desktop > div {
  flex: 1;
}

.pricing-title {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.pricing-desktop p {
  margin: 12px 0 0;
  font-size: 16px;
  opacity: 0.85;
}

.pricing-section strong {
  color: var(--red);
}

.pricing-button {
  flex: 0 0 auto;
  border: 3px solid var(--paper);
  border-radius: 999px;
  padding: 18px 32px;
  background: var(--red);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--paper);
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.site-footer {
  background: var(--surface);
}

.footer-inner {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.footer-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  font-size: 13px;
  font-weight: 500;
}

.footer-mark {
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 26px;
  font-weight: 700;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-desktop p {
  margin: 0;
  opacity: 0.55;
}

@media (max-width: 1239px) and (min-width: 721px) {
  .hero-desktop {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }

  .hero-title {
    font-size: clamp(56px, 6.1vw, 72px);
  }

  .hero-copy {
    flex: none;
  }

  .hero-summary {
    font-size: 17px;
  }

  .hero-aside {
    display: none;
  }

  .hero-art {
    flex: none;
    align-self: center;
    width: min(100%, 680px);
    min-height: 500px;
  }

  .action-ticket {
    right: auto;
    left: 12px;
    width: 330px;
  }

  .timer-card {
    top: 230px;
  }

  .timer {
    font-size: 88px;
  }

  .drift-aside {
    top: 430px;
    right: 190px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-behavior: auto;
  }

  .header-inner {
    padding: 16px 20px;
  }

  .wordmark {
    font-size: 16px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-store {
    display: inline-flex;
    padding: 8px 14px;
    border-width: 0;
    box-shadow: 2.5px 2.5px 0 var(--red);
    font-size: 10.5px;
  }

  .hero-desktop,
  .how-desktop,
  .science-desktop,
  .pricing-desktop,
  .footer-desktop {
    display: none;
  }

  .hero-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 40px 20px 44px;
  }

  .hero-mobile .eyebrow {
    padding: 4px 10px;
    font-size: 10.5px;
  }

  .hero-mobile .hero-title {
    margin-left: -4px;
    font-size: clamp(37px, calc(12.86vw - 4.15px), 46px);
    letter-spacing: -1px;
    line-height: 1;
  }

  .hero-mobile .hero-title .misprint-red::before {
    left: -3px;
    top: 2.5px;
  }

  .hero-mobile .hero-title .misprint-blue::before {
    left: 3px;
    top: -2.5px;
  }

  .hero-mobile .hero-summary {
    max-width: none;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .mobile-art {
    position: relative;
    width: 100%;
    margin: 8px 0;
  }

  .mobile-art .action-ticket {
    position: relative;
    top: auto;
    right: auto;
    left: 0;
    width: calc(82% + 38px);
    padding: 18px 16px;
    transform: rotate(-2deg);
    box-shadow: 5px 5px 0 var(--border);
  }

  .mobile-art .ticket-meta {
    display: block;
    margin-bottom: 6px;
    padding: 0;
    border: 0;
    color: var(--red);
    font-family: "Archivo Black", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
  }

  .mobile-art .action-ticket > p {
    font-size: 17px;
    line-height: 1.15;
  }

  .mobile-art .timer-card {
    position: relative;
    top: auto;
    right: 0;
    width: calc(56% + 44px);
    margin: -8px 0 0 auto;
    padding: 14px 22px 18px;
    transform: rotate(1.5deg);
    border: 0;
    box-shadow: 5px 5px 0 var(--blue);
  }

  .mobile-art .timer {
    font-size: 52px;
    letter-spacing: -2px;
    line-height: 1;
  }

  .mobile-art .timer-red {
    top: 2px;
    left: -2.5px;
  }

  .mobile-art .timer-blue {
    top: -2px;
    left: 2.5px;
  }

  .hero-mobile > .app-store-button {
    align-self: stretch;
    gap: 12px;
    padding: 16px 18px;
    font-family: "Archivo Black", sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .how-mobile,
  .science-mobile,
  .pricing-mobile,
  .footer-mobile {
    display: block;
  }

  .how-mobile,
  .science-mobile {
    padding: 34px 20px;
  }

  .how-mobile .section-kicker {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .steps-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .step-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 16px;
    border-width: 2.5px;
  }

  .step-row.step-red,
  .step-row.step-blue,
  .step-row.step-ink {
    transform: none;
    box-shadow: 4px 4px 0 var(--red);
  }

  .step-row.step-blue {
    box-shadow-color: var(--blue);
  }

  .step-row.step-ink {
    box-shadow-color: var(--border);
  }

  .step-row .step-number {
    flex: 0 0 auto;
    font-size: 26px;
  }

  .step-row p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .science-mobile .section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .science-mobile > p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .pricing-mobile {
    padding: 34px 20px;
  }

  .pricing-mobile .pricing-title {
    font-size: 24px;
    line-height: 1.1;
  }

  .pricing-mobile > p {
    margin: 12px 0 16px;
    font-size: 14px;
    opacity: 0.85;
  }

  .pricing-mobile .pricing-button {
    display: flex;
    width: 100%;
    padding: 16px 12px;
    box-shadow: 4px 4px 0 var(--paper);
    font-size: 15px;
  }

  .footer-mobile {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 20px;
    font-size: 12px;
    font-weight: 700;
  }

  .footer-mobile a {
    text-decoration: none;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface: var(--ink);
    --text: var(--paper);
    --border: var(--paper);
    --panel: #24211A;
    --reverse: var(--paper);
    --reverse-text: var(--ink);
    --muted: rgba(244, 237, 222, 0.55);
    --grain: url("textures/grain-dark.svg");
  }

  .pricing-section {
    border-top-color: var(--paper);
  }

  .timer-card {
    border-color: var(--paper);
  }

  .pricing-title {
    color: var(--paper);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
