:root {
  color-scheme: light;
  --ink: #111318;
  --muted: #606570;
  --line: #dfe2e8;
  --paper: #ffffff;
  --canvas: #f5f6f8;
  --red: #ee314f;
  --pink: #f63870;
  --blue: #2596ed;
  --sky: #8ebdff;
  --yellow: #f4be28;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4vw;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  transform: rotate(-8deg);
}

.brand-mark i {
  display: block;
  border-radius: 2px;
}

.brand-mark i:nth-child(1) { background: var(--red); }
.brand-mark i:nth-child(2) { background: var(--blue); }
.brand-mark i:nth-child(3) { background: var(--yellow); }
.brand-mark i:nth-child(4) { background: var(--ink); }

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #353942;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--red);
}

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 58px;
  overflow: hidden;
  padding: 120px 7vw 58px;
  background: #f9fafb;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: 0;
  width: 52vw;
  height: 14px;
  background: var(--yellow);
  content: "";
  transform: skewX(-34deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #656a73;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  margin-right: auto;
  margin-left: auto;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  margin-right: auto;
  margin-bottom: 36px;
  margin-left: auto;
  color: #444953;
  font-size: 22px;
  line-height: 1.45;
}

.primary-link,
.store-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.primary-link:hover,
.store-link:hover {
  background: #2a2d34;
  transform: translateY(-2px);
}

.primary-link:focus-visible,
.store-link:focus-visible,
.orbit-app:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.app-orbit {
  display: grid;
  width: min(760px, 86vw);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.orbit-app {
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #353942;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.orbit-app img {
  width: 116px;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 25%;
  box-shadow: 0 22px 52px rgba(23, 27, 37, 0.16);
  object-fit: cover;
  transition: transform 180ms ease;
}

a.orbit-app:hover img {
  transform: translateY(-6px) rotate(2deg);
}

.apps-section {
  padding: 100px 7vw 112px;
}

.section-heading {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 0.38fr 1fr;
  gap: 40px;
  margin: 0 auto 54px;
}

.section-heading h2,
.more-products-heading h2,
.studio-section h2,
.contact-section h2 {
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.more-products-heading {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 0.38fr 1fr;
  gap: 40px;
  margin: 96px auto 42px;
  padding-top: 86px;
  border-top: 1px solid var(--line);
}

.more-products-heading h2 {
  max-width: 720px;
}

.more-product-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.more-product {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.more-product::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
}

.more-kiboopix::before { background: #3430a8; }
.more-remake::before { background: #16aaa5; }
.more-muse::before { background: #e995a3; }

.more-product-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.more-product-copy {
  margin: 42px 0 28px;
}

.more-product h3 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
}

.more-product-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.more-product .store-link {
  margin-top: auto;
}

.product {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
}

.product-tone::before { background: var(--pink); }
.product-song::before { background: #ba1730; }
.product-flip::before { background: var(--red); }
.product-poise::before { background: var(--sky); }

.product-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.product-icon {
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 24%;
  object-fit: cover;
}

.product-category {
  color: #6a6f78;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.product-copy {
  max-width: 480px;
  margin: 48px 0 30px;
}

.product h3 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0;
}

.product-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.store-link {
  width: fit-content;
  margin-top: auto;
  background: transparent;
  color: var(--ink);
}

.store-link:hover {
  background: var(--ink);
  color: #fff;
}

.coming-soon {
  margin: auto 0 0;
  color: #4979b1;
  font-size: 15px;
  font-weight: 750;
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 9vw;
  padding: 104px 7vw;
  background: #17191e;
  color: #fff;
}

.studio-section .eyebrow {
  color: #aeb4bf;
}

.studio-section > p {
  align-self: end;
  margin-bottom: 0;
  color: #c9ced7;
  font-size: 19px;
  line-height: 1.7;
}

.contact-section {
  padding: 110px 7vw 124px;
  background: var(--yellow);
}

.contact-section h2 {
  margin-bottom: 20px;
  font-size: 56px;
}

.contact-section > p:not(.eyebrow) {
  margin-bottom: 34px;
  font-size: 19px;
}

.primary-link-dark {
  word-break: break-word;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 7vw;
  background: #0f1013;
  color: #aeb4bf;
  font-size: 13px;
}

footer p {
  margin: 0;
}

footer a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 960px) {
  .hero {
    min-height: 680px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .orbit-app img {
    width: 92px;
  }

  .section-heading h2,
  .more-products-heading h2,
  .studio-section h2 {
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 20px;
  }

  .brand {
    font-size: 14px;
  }

  nav {
    gap: 16px;
  }

  nav a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 780px;
    justify-content: center;
    gap: 46px;
    padding: 116px 20px 56px;
    text-align: left;
  }

  h1 {
    font-size: 44px;
  }

  .hero-lede {
    max-width: 560px;
    margin-left: 0;
    font-size: 18px;
  }

  h1 {
    margin-left: 0;
  }

  .app-orbit {
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .orbit-app,
  .orbit-tone,
  .orbit-song,
  .orbit-flip,
  .orbit-poise {
    position: static;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .orbit-app img {
    width: 100%;
    max-width: 102px;
  }

  .orbit-app span {
    width: 100%;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
  }

  .apps-section,
  .contact-section {
    padding: 78px 20px;
  }

  .section-heading,
  .more-products-heading,
  .studio-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 6px;
  }

  .more-products-heading {
    gap: 6px;
    margin-top: 76px;
    padding-top: 68px;
  }

  .section-heading h2,
  .more-products-heading h2,
  .studio-section h2 {
    font-size: 34px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .more-product-grid {
    grid-template-columns: 1fr;
  }

  .product {
    min-height: 400px;
    padding: 26px;
  }

  .more-product {
    min-height: 390px;
    padding: 26px;
  }

  .product-icon {
    width: 78px;
  }

  .product-copy {
    margin-top: 36px;
  }

  .studio-section {
    gap: 34px;
    padding: 82px 20px;
  }

  .contact-section h2 {
    font-size: 42px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 20px;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    max-width: 132px;
    line-height: 1.15;
  }

  nav a:first-child {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  h1 {
    font-size: 40px;
  }

  .orbit-app img {
    max-width: 84px;
  }

  .product-category {
    max-width: 150px;
    text-align: right;
  }

  .primary-link-dark {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
