:root {
  --teal: #17666f;
  --teal-deep: #0e3d44;
  --ink: #082428;
  --cream: #f3ead6;
  --cream-dim: #c9bba0;
  --throat: #e11d32;
  --line: rgba(243, 234, 214, 0.16);
  --ink-line: rgba(8, 36, 40, 0.12);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino,
    Georgia, serif;
  --font-body: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;

  --step--1: 0.8rem;
  --step-0: 1.05rem;
  --step-1: 1.3125rem;
  --step-2: clamp(1.65rem, 1.2rem + 1.2vw, 2.1rem);
  --step-3: clamp(2.1rem, 1.3rem + 2.4vw, 3.4rem);
  --step-4: clamp(3.4rem, 1.6rem + 6.4vw, 6.75rem);

  --pad: clamp(1.25rem, 4vw, 5.5rem);
  --measure: 38rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--cream);
  background: var(--teal);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  font-feature-settings: "ss02" 0, "kern" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--throat);
  color: var(--cream);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--cream);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 20;
}

.skip:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem var(--pad);
  background: var(--teal);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--cream);
}

.wordmark em {
  font-style: italic;
  font-weight: 500;
  color: var(--throat);
  margin-left: 0.18em;
}

.site-header nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-header nav a {
  text-decoration: none;
  color: var(--cream);
  opacity: 0.82;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  opacity: 1;
}

.hero {
  min-height: calc(100svh - 3.6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  background: var(--teal);
  overflow: hidden;
}

.hero-copy {
  padding: 3.5rem var(--pad) 4.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 44rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.lede {
  margin: 1.5rem 0 0;
  max-width: 32rem;
  font-size: var(--step-1);
  line-height: 1.45;
  color: color-mix(in srgb, var(--cream) 88%, var(--teal));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 2.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.16s var(--ease), color 0.16s var(--ease),
    border-color 0.16s var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.btn-solid {
  background: var(--cream);
  color: var(--ink);
}

.btn-solid:hover {
  background: var(--throat);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: color-mix(in srgb, var(--cream) 45%, transparent);
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.hero-art {
  display: grid;
  place-items: end center;
  pointer-events: none;
}

.hero-art img {
  width: 128%;
  max-width: none;
  height: auto;
  transform: translate(12%, 8%);
}

.why {
  background: var(--cream);
  color: var(--ink);
  padding: 7.5rem var(--pad) 8.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  grid-template-areas:
    "kicker kicker"
    "title body";
  column-gap: 4rem;
  row-gap: 1.25rem;
  align-items: start;
  max-width: 72rem;
}

.section-kicker {
  grid-area: kicker;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--throat);
}

.why h2,
.switch h2,
.download h2,
.pair h2,
.steps h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-wrap: balance;
  line-height: 1.05;
}

.why h2 {
  grid-area: title;
  margin: 0;
  font-size: var(--step-3);
  max-width: 14ch;
}

.why-body {
  grid-area: body;
  max-width: var(--measure);
  padding-top: 0.4rem;
}

.why-body p {
  margin: 0 0 1.1rem;
  font-size: var(--step-1);
  line-height: 1.5;
}

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

.tape {
  margin: 0;
}

.tape video {
  width: 100%;
  background: #0a2024;
}

.tape figcaption {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.tape-store {
  margin: 3.4rem 0 0 auto;
  max-width: 52rem;
}

.tape-store figcaption {
  color: color-mix(in srgb, var(--ink) 62%, var(--cream));
}

.pair {
  background: var(--ink);
  padding: 8rem var(--pad) 8.5rem;
}

.pair .section-kicker {
  margin: 0 0 1.4rem;
}

.pair h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
  max-width: 16ch;
}

.tape-pro {
  margin: 2.8rem 0 0;
  max-width: 64rem;
}

.tape-pro figcaption {
  color: var(--cream-dim);
}

.pair-body {
  margin: 2rem 0 0 min(28vw, 20rem);
  max-width: 34rem;
  font-size: var(--step-1);
  line-height: 1.5;
  color: color-mix(in srgb, var(--cream) 86%, var(--ink));
}

.switch {
  background: var(--cream);
  color: var(--ink);
  padding: 7.5rem var(--pad) 8.5rem;
}

.switch h2 {
  margin: 0.6rem 0 0;
  font-size: var(--step-3);
}

.switch-lede {
  margin: 1.2rem 0 0;
  max-width: 34rem;
  font-size: var(--step-1);
}

.steps {
  list-style: none;
  margin: 4.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 4.25rem;
}

.steps li {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1.5rem 2rem;
  align-items: start;
  max-width: 38rem;
}

.steps li:nth-child(2) {
  margin-left: auto;
  max-width: 42rem;
}

.steps li:nth-child(3) {
  max-width: 36rem;
  margin-left: clamp(0rem, 8vw, 8rem);
}

.steps .n {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--throat);
}

.steps h3 {
  margin: 0.15rem 0 0.7rem;
  font-size: var(--step-2);
}

.steps p {
  margin: 0 0 0.8rem;
}

.steps p:last-child {
  margin-bottom: 0;
}

.steps a {
  color: var(--teal-deep);
  font-weight: 600;
  text-underline-offset: 0.18em;
}

.steps a:hover {
  color: var(--throat);
}

.download {
  background: var(--teal-deep);
  padding: 8.5rem var(--pad) 9rem;
}

.download h2 {
  margin: 0.6rem 0 0;
  font-size: var(--step-3);
  max-width: 16ch;
}

.download-lede {
  margin: 1.4rem 0 0;
  max-width: 34rem;
  font-size: var(--step-1);
  color: color-mix(in srgb, var(--cream) 88%, var(--teal-deep));
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 2.6rem;
}

.download-soon {
  margin: 1.5rem 0 0;
  color: var(--cream-dim);
}

.download-meta {
  margin: 1.1rem 0 0;
  max-width: 32rem;
  font-size: var(--step--1);
  letter-spacing: 0.01em;
  color: var(--cream-dim);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem var(--pad) 2rem;
  background: var(--ink);
  color: var(--cream-dim);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
  max-width: 38rem;
}

.site-footer a {
  color: var(--cream);
  text-underline-offset: 0.16em;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-top: 2.2rem;
    padding-bottom: 1.5rem;
    max-width: none;
  }

  .hero-art {
    min-height: 52vw;
    place-items: center;
  }

  .hero-art img {
    width: min(92vw, 34rem);
    transform: translate(8%, 12%);
  }

  .why-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "body";
  }

  .why h2 {
    max-width: 16ch;
  }

  .pair-body {
    margin-left: 0;
  }

  .tape-store,
  .tape-pro {
    max-width: none;
    margin-left: 0;
  }

  .steps li,
  .steps li:nth-child(2),
  .steps li:nth-child(3) {
    margin-left: 0;
    max-width: 38rem;
    grid-template-columns: 4.5rem 1fr;
  }

  .site-footer {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 640px) {
  .site-header nav a:not(.nav-store) {
    display: none;
  }

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

  .steps {
    gap: 3.2rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: rise 0.9s var(--ease) both;
  }

  .hero-art img {
    animation: rise-art 0.95s var(--ease) 0.1s both;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise-art {
  from {
    opacity: 0;
    transform: translate(12%, 14%);
  }
  to {
    opacity: 1;
    transform: translate(12%, 8%);
  }
}

@media (max-width: 960px) {
  @keyframes rise-art {
    from {
      opacity: 0;
      transform: translate(8%, 18%);
    }
    to {
      opacity: 1;
      transform: translate(8%, 12%);
    }
  }
}
