:root {
  --paper: #f4f0e8;
  --ink: #171717;
  --blue: #3455ff;
  --lime: #c7ff3d;
  --coral: #ff6846;
  --lilac: #c7b6ff;
  --white: #fffdf8;
  --line: 2px solid var(--ink);
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --page-pad: clamp(1rem, 3vw, 3.5rem);
  --radius-sm: 0.7rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.18;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
ul,
dl,
dd {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border: var(--line);
  border-radius: 999px;
  background: var(--lime);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  top: 0.8rem;
  left: 50%;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: min(calc(100% - 2rem), 1440px);
  min-height: 4.4rem;
  padding: 0.55rem 0.7rem 0.55rem 0.8rem;
  border: var(--line);
  border-radius: 1.1rem;
  background: rgba(244, 240, 232, 0.88);
  box-shadow: 5px 5px 0 rgba(23, 23, 23, 0.12);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.brand__mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  font-size: 0.91rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-contact) {
  position: relative;
}

.site-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-contact):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 0.8rem 1rem;
  border: var(--line);
  border-radius: 0.7rem;
  background: var(--ink);
  color: var(--white);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.nav-contact:hover {
  box-shadow: 4px 4px 0 var(--coral);
  transform: translate(-2px, -2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(28rem, 0.94fr);
  gap: clamp(2rem, 5vw, 6rem);
  min-height: 100svh;
  padding: clamp(8.5rem, 13vh, 10rem) var(--page-pad) 4.5rem;
  align-items: center;
}

.hero__copy {
  max-width: 860px;
}

.hero__signal {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border: var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 600;
}

.signal-dot {
  width: 0.62rem;
  height: 0.62rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(199, 255, 61, 0.4);
}

.hero h1 {
  max-width: 9ch;
  margin-top: clamp(1.4rem, 3vh, 2.4rem);
  font-family: var(--display);
  font-size: clamp(4.4rem, 9.2vw, 10.4rem);
  font-variation-settings: "wdth" 86;
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.78;
}

.hero__keep {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.hero__keep::after {
  position: absolute;
  right: -0.08em;
  bottom: -0.15em;
  left: 0.05em;
  height: 0.11em;
  border-radius: 99px;
  content: "";
  background: var(--coral);
  transform: rotate(-2deg);
}

.hero__intro {
  max-width: 37rem;
  margin-top: clamp(2rem, 4vw, 3.2rem);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.5rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: 14rem;
  padding: 1rem 1.1rem;
  border: var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.button--ink {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--blue);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.button--ink:hover {
  box-shadow: 8px 8px 0 var(--coral);
  transform: translate(-3px, -3px);
}

.text-link {
  border-bottom: 1.5px solid currentColor;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-system {
  position: relative;
  aspect-ratio: 0.92;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  border: var(--line);
  border-radius: 48% 48% var(--radius-lg) var(--radius-lg);
  background: var(--lilac);
  box-shadow: 12px 12px 0 var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.hero-system__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23, 23, 23, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.16) 1px, transparent 1px);
  background-size: 2.4rem 2.4rem;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-system__core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 44%;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 7px 7px 0 var(--ink);
  transform: translate(-50%, -50%);
}

.core-e {
  font-family: var(--display);
  font-size: clamp(6rem, 11vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.7;
}

.core-copy {
  position: absolute;
  right: 11%;
  bottom: 19%;
  padding: 0.35rem 0.45rem;
  border: 1.5px solid var(--ink);
  background: var(--white);
  font-family: var(--display);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  font-weight: 750;
  line-height: 0.92;
  transform: rotate(-7deg);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit--outer {
  width: 78%;
  aspect-ratio: 1;
}

.orbit--inner {
  width: 59%;
  aspect-ratio: 1;
  border-style: dashed;
}

.orbit-dot {
  position: absolute;
  z-index: 2;
  width: clamp(2.2rem, 4vw, 3.4rem);
  aspect-ratio: 1;
  border: var(--line);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
}

.orbit-dot--blue {
  top: 15%;
  left: 24%;
  background: var(--blue);
}

.orbit-dot--coral {
  right: 15%;
  bottom: 24%;
  background: var(--coral);
}

.system-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: clamp(0.68rem, 1.2vw, 0.82rem);
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
}

.system-label span {
  color: var(--blue);
}

.system-label--apps {
  top: 10%;
  right: 11%;
  transform: rotate(4deg);
}

.system-label--commerce {
  top: 56%;
  left: 3%;
  transform: rotate(-5deg);
}

.system-label--growth {
  right: 10%;
  bottom: 9%;
  transform: rotate(3deg);
}

.hero-system__note {
  position: absolute;
  bottom: 4%;
  left: 5%;
  font-size: clamp(0.68rem, 1vw, 0.8rem);
  font-weight: 650;
  line-height: 1.3;
}

.hero__foot {
  position: absolute;
  right: var(--page-pad);
  bottom: 1.2rem;
  left: var(--page-pad);
  display: flex;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
}

.ticker {
  width: calc(100% + 2rem);
  margin-left: -1rem;
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  transform: rotate(-1.15deg);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 1rem 0;
  animation: ticker 27s linear infinite;
}

.ticker span {
  padding: 0 1.1rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.ticker i {
  color: var(--lime);
  font-size: 1.3rem;
  font-style: normal;
}

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

.section-shell {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: 3rem;
  align-items: end;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-kicker::before {
  width: 1.35rem;
  height: 1.35rem;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  content: "";
  background: var(--coral);
}

.section-heading h2,
.commerce-heading h2,
.about-statement h2,
.contact-section h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.section-heading h2 {
  font-size: clamp(3.8rem, 7.8vw, 8.4rem);
}

.section-heading > p {
  max-width: 34rem;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.apps-showcase {
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(3rem, 6vw, 6rem);
}

.app-feature {
  position: relative;
  min-height: 650px;
  padding: 1.25rem;
  border: var(--line);
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
  overflow: hidden;
}

.app-feature::after {
  position: absolute;
  top: 15%;
  left: -18%;
  width: 92%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 253, 248, 0.6);
  border-radius: 50%;
  content: "";
}

.app-feature__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 650;
}

.app-feature__top span {
  padding: 0.2rem 0.55rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.phone {
  position: absolute;
  top: 13%;
  left: 50%;
  z-index: 3;
  width: min(55%, 270px);
  aspect-ratio: 0.51;
  padding: 0.42rem;
  border: var(--line);
  border-radius: 2.8rem;
  background: var(--ink);
  box-shadow: 12px 14px 0 rgba(23, 23, 23, 0.25);
  transform: translateX(-50%) rotate(5deg);
}

.phone__speaker {
  position: absolute;
  top: 1rem;
  left: 50%;
  z-index: 2;
  width: 36%;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone__screen {
  position: relative;
  height: 100%;
  border: 1px solid var(--ink);
  border-radius: 2.35rem;
  background: #a9c8f4;
  overflow: hidden;
}

.phone__screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  transform: scale(1.47);
  transform-origin: 50% 73%;
}

.phone__hello {
  font-size: 0.7rem;
  font-weight: 650;
}

.phone__action {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.phone__tap {
  z-index: 1;
  margin-top: 1.5rem;
  padding: 0.65rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  text-align: center;
}

.app-feature__caption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 4;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: right;
}

.app-directory {
  align-self: stretch;
  border-top: var(--line);
}

.app-row {
  display: grid;
  grid-template-columns: 2.5rem minmax(12rem, 1fr) minmax(8rem, 0.55fr) 2rem;
  gap: 1rem;
  align-items: center;
  min-height: 6.85rem;
  padding: 1rem 0.35rem;
  border-bottom: var(--line);
  transition: background 170ms ease, padding 170ms ease;
}

.app-row:not(.app-row--all):hover {
  padding-right: 1rem;
  padding-left: 1rem;
  background: var(--lilac);
}

.app-row__index {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 750;
}

.app-row__name {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.3rem);
  font-weight: 750;
  letter-spacing: -0.05em;
}

.app-row__type {
  font-size: 0.85rem;
}

.app-row__arrow {
  font-size: 1.35rem;
  text-align: right;
}

.app-row--all {
  display: flex;
  justify-content: space-between;
  min-height: 4.8rem;
  padding-inline: 1rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 650;
}

.commerce-section {
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--white);
}

.commerce-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.32fr);
  column-gap: 4rem;
  align-items: end;
}

.commerce-heading .section-kicker {
  grid-column: 1 / -1;
}

.commerce-heading .section-kicker::before {
  border-color: var(--white);
  background: var(--lime);
}

.commerce-heading h2 {
  font-size: clamp(4.3rem, 8.9vw, 9.7rem);
}

.commerce-heading > p:last-child {
  max-width: 30rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.commerce-directory {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.commerce-card {
  position: relative;
  display: flex;
  min-height: 31rem;
  padding: clamp(1.25rem, 2vw, 2rem);
  flex-direction: column;
  border: 2px solid var(--white);
  border-radius: var(--radius-md);
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.commerce-card:hover {
  z-index: 2;
  box-shadow: 8px 8px 0 var(--white);
  transform: translate(-4px, -4px);
}

.commerce-card--blue {
  grid-column: span 7;
  background: var(--blue);
  color: var(--white);
}

.commerce-card--lime {
  grid-column: span 5;
  background: var(--lime);
}

.commerce-card--paper {
  grid-column: span 5;
  background: var(--paper);
}

.commerce-card--coral {
  grid-column: span 7;
  background: var(--coral);
}

.commerce-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
}

.commerce-card__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 1.4rem;
}

.commerce-card h3 {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5.8vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.83;
}

.commerce-card > p {
  max-width: 31rem;
  margin-top: 1.25rem;
  font-size: 1rem;
}

.commerce-card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1.5px solid currentColor;
  font-size: 0.86rem;
  font-weight: 600;
}

.commerce-card li {
  display: flex;
  gap: 0.55rem;
}

.commerce-card li::before {
  content: "+";
}

.commerce-cta {
  display: grid;
  grid-template-columns: 0.4fr 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.6rem 1.8rem;
  border: 2px solid var(--white);
  border-radius: var(--radius-md);
  background: var(--lilac);
  color: var(--ink);
}

.commerce-cta strong {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 3.4rem);
  letter-spacing: -0.05em;
}

.commerce-cta__arrow {
  font-size: clamp(2rem, 4vw, 4rem);
  transition: transform 180ms ease;
}

.commerce-cta:hover .commerce-cta__arrow {
  transform: translate(0.25rem, -0.25rem);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.55fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.about-statement h2 {
  font-size: clamp(4rem, 7.7vw, 8.2rem);
}

.about-statement h2 span {
  color: var(--blue);
}

.about-copy {
  padding-top: 2.5rem;
}

.about-copy > p {
  max-width: 39rem;
}

.about-copy__lead {
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.3vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.company-facts {
  margin-top: 4rem;
  border-top: var(--line);
}

.company-facts div {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink);
}

.company-facts dt {
  font-size: 0.77rem;
  font-weight: 700;
}

.company-facts dd {
  font-size: 0.88rem;
}

.contact-section {
  position: relative;
  display: flex;
  min-height: 80svh;
  padding: clamp(6rem, 11vw, 11rem) var(--page-pad);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: var(--line);
  background: var(--lime);
  text-align: center;
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  width: 25vw;
  min-width: 14rem;
  aspect-ratio: 1;
  border: var(--line);
  border-radius: 50%;
  content: "";
}

.contact-section::before {
  top: -16%;
  left: -7%;
  background: var(--blue);
}

.contact-section::after {
  right: -8%;
  bottom: -26%;
  background: var(--coral);
}

.contact-section > * {
  position: relative;
  z-index: 2;
}

.contact-section > p {
  margin-bottom: 1.75rem;
  font-weight: 650;
}

.contact-section h2 {
  font-size: clamp(6rem, 15vw, 15rem);
  line-height: 0.72;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
  margin-top: 3.5rem;
  padding: 1rem 1.2rem;
  border: var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 700;
}

.contact-section__sticker {
  position: absolute;
  top: 15%;
  right: 10%;
  display: grid;
  width: clamp(5.5rem, 9vw, 8rem);
  aspect-ratio: 1;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--white);
  font-family: var(--display);
  font-weight: 800;
  transform: rotate(10deg);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.45fr 0.7fr;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 5rem) var(--page-pad);
  background: var(--ink);
  color: var(--white);
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer__brand .brand__mark {
  border-color: var(--white);
  background: var(--lime);
  color: var(--ink);
}

.site-footer__brand p {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.87rem;
  font-weight: 600;
}

.site-footer__links a:hover {
  color: var(--lime);
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.75rem;
  text-align: right;
}

.hero__signal,
.hero h1,
.hero__intro,
.hero__actions,
.hero-system {
  opacity: 0;
  animation: hero-in 640ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.hero h1 {
  animation-delay: 90ms;
}

.hero__intro,
.hero-system {
  animation-delay: 170ms;
}

.hero__actions {
  animation-delay: 250ms;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-system {
  animation-name: hero-system-in;
}

@keyframes hero-system-in {
  from {
    opacity: 0;
    transform: translate(1.25rem, 1.25rem);
    box-shadow: 0 0 0 var(--ink);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
    box-shadow: 12px 12px 0 var(--ink);
  }
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr 0.8fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 10.5vw, 7.4rem);
  }

  .apps-showcase {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .app-feature {
    min-height: 590px;
  }

  .commerce-card {
    min-height: 28rem;
  }

  .about-section {
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.8rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: 700 0.85rem var(--body);
  }

  .nav-toggle__icon,
  .nav-toggle__icon::before {
    display: block;
    width: 1.35rem;
    height: 2px;
    content: "";
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle__icon::before {
    transform: translateY(5px);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon {
    transform: rotate(45deg) translateY(3px);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: var(--line);
    border-radius: 1rem;
    background: var(--paper);
    box-shadow: 6px 6px 0 var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem;
    border-bottom: 1px solid var(--ink);
  }

  .site-nav .nav-contact {
    margin-top: 0.5rem;
    border: var(--line);
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 8.5rem;
    padding-bottom: 5.5rem;
  }

  .hero__copy {
    max-width: none;
  }

  .hero-system {
    width: min(100%, 560px);
    margin: 1rem auto 0;
  }

  .section-heading--split,
  .commerce-heading,
  .about-section {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 1.75rem;
  }

  .apps-showcase {
    grid-template-columns: 1fr;
  }

  .app-feature {
    min-height: 680px;
  }

  .commerce-heading {
    gap: 2rem;
  }

  .commerce-directory {
    grid-template-columns: 1fr 1fr;
  }

  .commerce-card--blue,
  .commerce-card--lime,
  .commerce-card--paper,
  .commerce-card--coral {
    grid-column: auto;
  }

  .commerce-card {
    min-height: 31rem;
  }

  .commerce-card h3 {
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .about-section {
    gap: 2rem;
  }

  .about-copy {
    padding-top: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
    flex-direction: row;
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 1rem;
  }

  .brand__name {
    display: none;
  }

  .site-header {
    top: 0.55rem;
    width: calc(100% - 1rem);
    min-height: 3.8rem;
  }

  .brand__mark {
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7.2rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 23vw, 6.8rem);
    line-height: 0.79;
  }

  .hero__signal {
    font-size: 0.72rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .text-link {
    font-size: 0.78rem;
  }

  .hero-system {
    aspect-ratio: 0.88;
    border-radius: 46% 46% 1.25rem 1.25rem;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .system-label--commerce {
    left: 2%;
  }

  .hero__foot {
    position: static;
    grid-column: 1;
    margin-top: 1.3rem;
  }

  .hero__foot p:first-child {
    display: none;
  }

  .hero__foot p:last-child {
    margin-left: auto;
  }

  .section-shell {
    padding-block: 5rem;
  }

  .section-heading h2 {
    font-size: clamp(3.6rem, 20vw, 6rem);
  }

  .app-feature {
    min-height: 570px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .phone {
    width: min(61%, 245px);
  }

  .app-row {
    grid-template-columns: 2.2rem 1fr 2rem;
    min-height: 5.6rem;
  }

  .app-row__type {
    display: none;
  }

  .app-row__name {
    font-size: 1.45rem;
  }

  .app-row--all {
    display: flex;
    font-size: 0.78rem;
  }

  .commerce-heading h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .commerce-directory {
    grid-template-columns: 1fr;
  }

  .commerce-card {
    min-height: 28rem;
  }

  .commerce-card h3 {
    font-size: clamp(3.4rem, 18vw, 5.5rem);
  }

  .commerce-cta {
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
  }

  .commerce-cta > span:first-child {
    grid-column: 1 / -1;
    font-size: 0.78rem;
  }

  .commerce-cta strong {
    font-size: 1.55rem;
  }

  .about-statement h2 {
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  .company-facts div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .contact-section {
    min-height: 72svh;
  }

  .contact-section h2 {
    font-size: clamp(5.4rem, 27vw, 8rem);
  }

  .contact-section__sticker {
    top: 12%;
    right: 4%;
  }

  .contact-email {
    gap: 0.65rem;
    max-width: 100%;
    padding-inline: 0.85rem;
    font-size: 0.7rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    grid-column: auto;
    flex-direction: column;
  }
}

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

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