@font-face {
  font-family: "Figtree";
  src: url("assets/figtree-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: oklch(0.982 0.008 95);
  --white: oklch(1 0 0);
  --ink: oklch(0.16 0.018 275);
  --muted: oklch(0.47 0.018 275);
  --line: oklch(0.84 0.012 275);
  --soft-line: oklch(0.91 0.01 275);
  --violet: #b4a8ff;
  --mint: #9be7a8;
  --coral: #ff8c9e;
  --butter: #f4e36b;
  --sky: #86c7f2;
  --shell: 1280px;
  --gutter: clamp(20px, 4.2vw, 68px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
}

a,
button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
ol {
  margin: 0;
}

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

p {
  text-wrap: pretty;
}

.shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 13%, transparent);
  background: color-mix(in oklch, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  width: 84px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a,
.nav-download {
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.nav-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-download {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
}

.nav-download svg,
.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 200ms var(--ease);
}

.nav-download:hover svg,
.button:hover svg {
  transform: translate(2px, -2px);
}

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 3px 3px 0 color-mix(in oklch, var(--ink) 50%, transparent);
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-dark:hover {
  box-shadow: 5px 5px 0 color-mix(in oklch, var(--ink) 50%, transparent);
}

.button:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.brand:focus-visible,
.nav-links a:focus-visible,
.nav-download:focus-visible,
.button:focus-visible,
.play-trigger:focus-visible,
.footer a:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

.hero {
  padding-top: clamp(72px, 8.5vw, 132px);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(38px, 6vw, 100px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.hero-kicker {
  grid-column: 1 / -1;
  margin-bottom: clamp(-12px, -1vw, -4px);
  font-size: 13px;
  font-weight: 790;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

h1 {
  max-width: 890px;
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

h1 span {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

h1 span::after {
  position: absolute;
  right: -0.04em;
  bottom: 0.02em;
  left: -0.01em;
  z-index: -1;
  height: 0.28em;
  background: var(--coral);
  content: "";
  transform: rotate(-1.2deg);
  transform-origin: left center;
}

.mobile-break {
  display: none;
}

.hero-summary {
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 28px;
  padding-bottom: 8px;
}

.hero-summary p {
  max-width: 370px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.42;
}

.hero-stage {
  --near-x: 0px;
  --near-y: 0px;
  --far-x: 0px;
  --far-y: 0px;
  --far-neg-x: 0px;
  --far-neg-y: 0px;
  position: relative;
  height: clamp(640px, 64vw, 790px);
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: var(--violet);
  isolation: isolate;
}

.stage-block {
  position: absolute;
  z-index: -2;
}

.stage-block-butter {
  top: 0;
  right: 0;
  width: 27%;
  height: 47%;
  background: var(--butter);
}

.stage-block-mint {
  bottom: 0;
  left: 0;
  width: 31%;
  height: 43%;
  background: var(--mint);
}

.stage-block-coral {
  right: 12%;
  bottom: 0;
  width: 20%;
  height: 24%;
  background: var(--coral);
}

.stage-word {
  position: absolute;
  z-index: -1;
  font-size: clamp(92px, 13vw, 186px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.8;
  color: color-mix(in oklch, var(--ink) 92%, transparent);
}

.stage-word-one {
  top: 8%;
  left: -1.5%;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
}

.stage-word-two {
  right: -2%;
  bottom: 4%;
}

.device {
  position: absolute;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--ink) 34%, transparent);
  border-radius: clamp(30px, 4vw, 54px);
  background: #f5f5f7;
  box-shadow: 0 30px 70px color-mix(in oklch, var(--ink) 22%, transparent);
  will-change: transform;
}

.device img,
.capture-device img,
.boards-device img {
  width: 100%;
  height: auto;
}

.device-today {
  top: 4.5%;
  left: 50%;
  z-index: 3;
  width: clamp(330px, 34.5vw, 446px);
  transform: translate3d(calc(-50% + var(--near-x)), var(--near-y), 0) rotate(-0.7deg);
  animation: arrive-center 900ms 100ms var(--ease) both;
}

.device-boards {
  top: 18%;
  left: 6%;
  z-index: 2;
  width: clamp(240px, 24vw, 316px);
  transform: translate3d(var(--far-x), var(--far-y), 0) rotate(-7deg);
  animation: arrive-left 980ms 180ms var(--ease) both;
}

.device-voice {
  top: 16%;
  right: 5%;
  z-index: 2;
  width: clamp(240px, 24vw, 316px);
  transform: translate3d(var(--far-neg-x), var(--far-neg-y), 0) rotate(7deg);
  animation: arrive-right 980ms 230ms var(--ease) both;
}

.thought-slip {
  position: absolute;
  z-index: 6;
  padding: 12px 17px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  font-size: 14px;
  font-weight: 750;
  box-shadow: 3px 3px 0 var(--ink);
}

.thought-slip-one {
  top: 11%;
  left: 20%;
  transform: rotate(4deg);
}

.thought-slip-two {
  right: 18%;
  bottom: 9%;
  transform: rotate(-5deg);
}

.input-ribbon {
  overflow: hidden;
  margin-top: clamp(36px, 4vw, 56px);
  border-block: 1.5px solid var(--ink);
  background: var(--butter);
}

.ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding-block: 17px;
  animation: ticker 24s linear infinite;
}

.ribbon-track span {
  font-size: 19px;
  font-weight: 820;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ribbon-track i {
  font-style: normal;
}

.capture-section {
  padding-block: clamp(110px, 13vw, 190px);
  background: var(--butter);
}

.capture-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.84fr);
  align-items: center;
  gap: clamp(66px, 8vw, 128px);
}

.capture-visual {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  isolation: isolate;
}

.capture-plane {
  position: absolute;
  inset: 3% 0 3% 4%;
  z-index: -2;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: var(--violet);
  transform: rotate(-2.5deg);
}

.capture-device {
  width: min(67%, 410px);
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--ink) 38%, transparent);
  border-radius: 50px;
  background: #f5f5f7;
  box-shadow: 0 28px 66px color-mix(in oklch, var(--ink) 20%, transparent);
  transform: translate3d(var(--capture-x, 0), var(--capture-y, 0), 0) rotate(2.2deg);
  transition: transform 220ms var(--ease);
}

.speech-slip {
  position: absolute;
  top: 2%;
  left: -2%;
  z-index: 2;
  width: min(66%, 380px);
  padding: 21px 23px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-5deg);
}

.wave-label {
  position: absolute;
  right: 2%;
  bottom: 6%;
  z-index: 3;
  display: flex;
  height: 64px;
  align-items: center;
  gap: 5px;
  padding: 0 19px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(5deg);
}

.wave-label span {
  width: 4px;
  height: 16px;
  border-radius: 999px;
  background: var(--ink);
}

.wave-label span:nth-child(2),
.wave-label span:nth-child(6) {
  height: 26px;
}

.wave-label span:nth-child(3),
.wave-label span:nth-child(5) {
  height: 38px;
}

.wave-label span:nth-child(4) {
  height: 48px;
}

h2 {
  font-size: clamp(52px, 6.6vw, 88px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.section-lede {
  max-width: 530px;
  margin-top: 30px;
  color: color-mix(in oklch, var(--ink) 72%, transparent);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.43;
}

.capture-steps {
  margin-top: 56px;
  padding: 0;
  border-top: 1.5px solid var(--ink);
  list-style: none;
}

.capture-steps li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding-block: 19px;
  border-bottom: 1.5px solid var(--ink);
}

.capture-steps strong {
  font-size: 18px;
  line-height: 1.25;
}

.capture-steps p {
  color: color-mix(in oklch, var(--ink) 68%, transparent);
  font-size: 15px;
}

.boards-section {
  padding-block: clamp(120px, 14vw, 210px);
}

.boards-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  align-items: end;
  gap: 38px;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.boards-heading h2 {
  max-width: 840px;
}

.boards-heading > p:last-child {
  max-width: 390px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 21px);
}

.boards-stage {
  position: relative;
  display: grid;
  min-height: 830px;
  grid-template-columns: minmax(330px, 0.78fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
  overflow: hidden;
  padding: clamp(48px, 6vw, 90px);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: var(--mint);
}

.board-slips {
  display: grid;
  gap: 14px;
  transform: rotate(-3deg);
}

.board-slip {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 780;
  letter-spacing: -0.025em;
  box-shadow: 4px 4px 0 var(--ink);
}

.board-slip b {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.board-slip-butter { background: var(--butter); }
.board-slip-violet { background: var(--violet); }
.board-slip-mint { background: var(--white); }
.board-slip-sky { background: var(--sky); }
.board-slip-coral { background: var(--coral); }

.boards-device {
  align-self: end;
  width: min(100%, 440px);
  margin-bottom: -22%;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--ink) 38%, transparent);
  border-radius: 52px;
  background: #f5f5f7;
  box-shadow: 0 32px 70px color-mix(in oklch, var(--ink) 20%, transparent);
  transform: rotate(2.5deg);
}

.boards-note {
  position: absolute;
  right: 4%;
  bottom: 6%;
  z-index: 4;
  padding: 14px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.15;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-5deg);
}

.details-section {
  padding-block: clamp(110px, 13vw, 190px);
  border-block: 1.5px solid var(--ink);
  background: var(--coral);
}

.details-intro {
  margin-bottom: clamp(60px, 8vw, 108px);
}

.details-intro h2 {
  max-width: 900px;
}

.detail-lines {
  border-top: 1.5px solid var(--ink);
}

.detail-lines article {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 1fr);
  align-items: baseline;
  gap: 24px;
  padding-block: 25px;
  border-bottom: 1.5px solid var(--ink);
}

.detail-lines h3 {
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.detail-lines p {
  color: color-mix(in oklch, var(--ink) 72%, transparent);
  font-size: clamp(16px, 1.5vw, 20px);
}

.film-section {
  padding-block: clamp(110px, 13vw, 190px);
  background: var(--violet);
}

.film-inner {
  display: grid;
  grid-template-columns: minmax(370px, 0.78fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.film-copy > p {
  max-width: 470px;
  margin-top: 30px;
  color: color-mix(in oklch, var(--ink) 72%, transparent);
  font-size: clamp(19px, 1.7vw, 22px);
}

.play-trigger {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  gap: 11px;
  margin-top: 40px;
  padding: 0 22px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 760;
  box-shadow: 4px 4px 0 color-mix(in oklch, var(--ink) 48%, transparent);
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.play-trigger:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 color-mix(in oklch, var(--ink) 48%, transparent);
}

.play-trigger svg {
  width: 18px;
  fill: currentColor;
}

.play-trigger span {
  color: color-mix(in oklch, var(--white) 60%, transparent);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.film-stage {
  position: relative;
  display: grid;
  min-height: 790px;
  place-items: center;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: var(--mint);
}

.film-type {
  position: absolute;
  top: 8%;
  right: -10%;
  font-size: 152px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.75;
  transform: rotate(90deg);
  transform-origin: center;
}

.launch-video {
  position: relative;
  z-index: 2;
  width: min(74%, 390px);
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--ink) 38%, transparent);
  border-radius: 46px;
  background: #f5f5f7;
  box-shadow: 0 30px 70px color-mix(in oklch, var(--ink) 22%, transparent);
  transform: rotate(-2deg);
}

.film-section.is-playing .launch-video {
  transform: rotate(0deg);
}

.film-section.is-playing .play-trigger {
  opacity: 0.64;
}

.closing {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(390px, 0.7fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(70px, 9vw, 132px);
  padding-block: clamp(110px, 13vw, 190px);
}

.closing-art {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}

.closing-art img {
  position: relative;
  z-index: 2;
  width: 44%;
  border: 1.5px solid var(--ink);
  border-radius: 23%;
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-4deg);
}

.closing-square {
  position: absolute;
  width: 49%;
  aspect-ratio: 1;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
}

.closing-square-mint {
  top: 6%;
  left: 8%;
  background: var(--mint);
  transform: rotate(-9deg);
}

.closing-square-violet {
  top: 11%;
  right: 3%;
  background: var(--violet);
  transform: rotate(7deg);
}

.closing-square-coral {
  right: 17%;
  bottom: 4%;
  background: var(--coral);
  transform: rotate(-2deg);
}

.closing-logo {
  width: 116px;
  height: auto;
  margin-bottom: 42px;
}

.closing-copy h2 {
  max-width: 680px;
}

.closing-copy > p {
  margin-top: 26px;
  color: var(--muted);
  font-size: 19px;
}

.closing-copy .button {
  margin-top: 34px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  padding-block: 48px 34px;
  border-top: 1.5px solid var(--ink);
}

.footer-brand img {
  width: 76px;
  height: auto;
}

.footer-brand p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

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

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: 12px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes arrive-center {
  from { opacity: 0; transform: translate3d(-50%, 80px, 0) rotate(2deg) scale(0.96); }
}

@keyframes arrive-left {
  from { opacity: 0; transform: translate3d(-80px, 60px, 0) rotate(-13deg); }
}

@keyframes arrive-right {
  from { opacity: 0; transform: translate3d(80px, 60px, 0) rotate(13deg); }
}

@media (max-width: 1080px) {
  .hero-intro {
    grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.55fr);
  }

  .hero-stage {
    height: 680px;
  }

  .device-today {
    width: 390px;
  }

  .device-boards,
  .device-voice {
    width: 270px;
  }

  .capture-inner,
  .film-inner {
    gap: 64px;
  }

  .capture-visual {
    min-height: 650px;
  }

  .boards-stage {
    min-height: 730px;
  }

  .film-stage {
    min-height: 700px;
  }
}

@media (max-width: 860px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-intro,
  .capture-inner,
  .film-inner,
  .closing {
    grid-template-columns: 1fr;
  }

  .hero-summary {
    max-width: 580px;
  }

  .hero-stage {
    height: 660px;
  }

  .device-today {
    width: 370px;
  }

  .device-boards,
  .device-voice {
    width: 248px;
  }

  .capture-inner {
    gap: 90px;
  }

  .capture-copy {
    max-width: 650px;
  }

  .capture-visual {
    width: min(100%, 680px);
    min-height: 720px;
    margin-inline: auto;
  }

  .boards-heading {
    grid-template-columns: 1fr;
  }

  .boards-heading > p:last-child {
    max-width: 520px;
  }

  .boards-stage {
    min-height: 680px;
    grid-template-columns: minmax(270px, 0.8fr) minmax(290px, 0.7fr);
    padding: 44px;
  }

  .board-slip {
    min-height: 68px;
  }

  .detail-lines article {
    grid-template-columns: minmax(220px, 0.7fr) 1fr;
  }

  .detail-lines p {
    grid-column: auto;
  }

  .film-inner {
    gap: 74px;
  }

  .film-copy {
    max-width: 700px;
  }

  .film-stage {
    width: min(100%, 660px);
    min-height: 780px;
    margin-inline: auto;
  }

  .closing {
    gap: 84px;
  }

  .closing-art {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .closing-copy {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  .nav {
    min-height: 64px;
  }

  .brand img {
    width: 76px;
  }

  .nav-download {
    font-size: 13px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-intro {
    gap: 28px;
    padding-bottom: 54px;
  }

  .hero-kicker {
    margin-bottom: 3px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 62px);
    line-height: 0.91;
  }

  .mobile-break {
    display: block;
  }

  .hero-summary {
    gap: 24px;
  }

  .hero-summary p {
    font-size: 18px;
  }

  .button {
    min-height: 52px;
    padding-inline: 20px;
  }

  .hero-stage {
    height: 560px;
    margin-inline: -8px;
  }

  .device {
    border-radius: 34px;
  }

  .device-today {
    top: 6%;
    width: 264px;
  }

  .device-boards,
  .device-voice {
    top: 24%;
    width: 184px;
  }

  .device-boards {
    left: -8%;
  }

  .device-voice {
    right: -8%;
  }

  .thought-slip {
    padding: 9px 11px;
    font-size: 11px;
  }

  .thought-slip-one {
    top: 11%;
    left: 3%;
  }

  .thought-slip-two {
    right: 2%;
    bottom: 7%;
  }

  .stage-word {
    font-size: 76px;
  }

  .input-ribbon {
    margin-top: 28px;
  }

  .capture-section,
  .boards-section,
  .details-section,
  .film-section,
  .closing {
    padding-block: 104px;
  }

  .capture-inner {
    gap: 76px;
  }

  .capture-visual {
    min-height: 560px;
  }

  .capture-plane {
    inset: 4% 1%;
  }

  .capture-device {
    width: min(74%, 312px);
    border-radius: 39px;
  }

  .speech-slip {
    top: -1%;
    left: 0;
    width: 72%;
    padding: 16px;
    font-size: 15px;
  }

  .wave-label {
    right: 0;
    bottom: 4%;
    height: 54px;
    padding-inline: 15px;
  }

  h2 {
    font-size: clamp(49px, 14.5vw, 68px);
  }

  .section-lede {
    margin-top: 24px;
    font-size: 18px;
  }

  .capture-steps {
    margin-top: 42px;
  }

  .boards-heading {
    margin-bottom: 48px;
  }

  .boards-stage {
    display: block;
    min-height: 780px;
    padding: 35px 24px;
  }

  .board-slips {
    position: relative;
    z-index: 2;
    width: 88%;
    gap: 9px;
  }

  .board-slip {
    min-height: 58px;
    padding-inline: 18px;
    font-size: 19px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .boards-device {
    position: absolute;
    right: 5%;
    bottom: -10%;
    width: 70%;
    margin: 0;
    border-radius: 42px;
  }

  .boards-note {
    right: auto;
    bottom: 4%;
    left: 5%;
  }

  .details-intro {
    margin-bottom: 55px;
  }

  .detail-lines article {
    grid-template-columns: 1fr;
    gap: 8px 12px;
    padding-block: 21px;
  }

  .detail-lines h3 {
    font-size: 23px;
  }

  .detail-lines p {
    font-size: 15px;
  }

  .film-inner {
    gap: 62px;
  }

  .film-stage {
    min-height: 650px;
  }

  .launch-video {
    width: 76%;
    border-radius: 38px;
  }

  .film-type {
    right: -18%;
    font-size: 106px;
  }

  .closing {
    min-height: 0;
    gap: 70px;
  }

  .closing-art {
    width: 100%;
  }

  .closing-logo {
    width: 98px;
    margin-bottom: 32px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ribbon-track {
    transform: translateX(-12%);
  }
}
