:root {
  --ink: #101112;
  --paper: #f2f1ed;
  --white: #ffffff;
  --red: #ef3f2f;
  --cyan: #63d9d1;
  --line: rgba(16, 17, 18, 0.16);
  --muted: #676967;
  --header-h: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input {
  cursor: none;
}

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

button,
input {
  font: inherit;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--white);
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  mix-blend-mode: difference;
}

.cursor-ring span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 5px;
  height: 5px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: translate(-65%, -50%) rotate(-45deg);
  opacity: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 13, 14, 0.48);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 14px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 2px;
  width: 18px;
  height: 18px;
  place-content: center;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.brand-mark i {
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: currentColor;
}

nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
}

nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

nav a:hover {
  color: var(--white);
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
}

.header-action span {
  font-size: 20px;
}

.hero {
  position: relative;
  min-height: 680px;
  height: calc(100svh - 44px);
  max-height: 920px;
  overflow: hidden;
  color: var(--white);
  background: #161819;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  background: rgba(9, 10, 11, 0.72);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 56vw);
  padding: clamp(150px, 19vh, 210px) 0 0 clamp(32px, 7vw, 112px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(72px, 10vw, 148px);
  line-height: 0.82;
  font-weight: 760;
}

.hero-copy {
  max-width: 520px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 190px;
  height: 50px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.primary-button:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.primary-button span {
  font-size: 18px;
}

.primary-button.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.platform-note {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.platform-note b {
  color: var(--white);
  font-size: 13px;
}

.corner-pulse {
  position: absolute;
  z-index: 3;
  top: 88px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.corner-pulse span,
.stage-corner span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 63, 47, 0.5);
  animation: pulse 2s infinite;
}

.corner-pulse small {
  font-size: 10px;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
}

.scroll-cue span {
  display: block;
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 16px rgba(239, 63, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 63, 47, 0); }
}

.section-pad {
  padding: 110px clamp(28px, 7vw, 112px);
}

.intro {
  min-height: 600px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 8vw;
  align-items: start;
}

.split-heading {
  margin: 0;
  max-width: 850px;
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 1.02;
  font-weight: 700;
}

.split-heading.light {
  color: var(--white);
}

.intro-copy {
  padding-top: 10px;
}

.intro-copy > p,
.features-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 72px;
}

.stat-row div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.stat-row strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
}

.stat-row span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.experience {
  min-height: 840px;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(600px, 1.24fr);
  gap: 6vw;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.section-kicker.light {
  color: var(--cyan);
}

.experience-copy > p {
  max-width: 520px;
  margin: 32px 0 42px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.mode-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mode-item {
  width: 100%;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-align: left;
  transition: color 200ms ease, padding 200ms ease;
}

.mode-item span {
  color: var(--red);
  font-size: 10px;
}

.mode-item:hover,
.mode-item.active {
  padding-left: 12px;
  color: var(--white);
}

.product-stage {
  position: relative;
  aspect-ratio: 1.32;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: #24272a;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 34px 34px;
}

.stage-topbar {
  position: relative;
  z-index: 2;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(0, 0, 0, 0.24);
  font-size: 9px;
}

.launcher-panel {
  position: absolute;
  inset: 34px 0 0;
  padding: 34px 42px 30px;
  background: rgba(12, 14, 15, 0.58);
  backdrop-filter: blur(18px);
}

.launcher-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.launcher-heading h3 {
  margin: 0;
  font-size: 18px;
}

.search-box {
  width: 220px;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.search-box > span {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
}

.search-box > span::after {
  content: "";
  display: block;
  width: 4px;
  height: 1px;
  margin: 7px 0 0 7px;
  background: rgba(255, 255, 255, 0.68);
  transform: rotate(45deg);
}

.search-box input {
  width: 100%;
  color: white;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 11px;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(68px, 1fr));
  gap: 24px 18px;
  margin-top: 45px;
}

.app-item {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 5px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 9px;
  transition: background 180ms ease;
}

.app-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.app-item.is-hidden {
  display: none;
}

.app-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  border-radius: 13px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
}

.calendar { color: #202224; background: #f4f4f1; }
.music { background: #ef4968; }
.terminal { background: #2b2d30; border: 1px solid #606367; font-family: monospace; font-size: 14px; }
.maps { background: #71c887; }
.maps::after { content: ""; width: 45px; height: 6px; background: #f3da5f; transform: rotate(-35deg); }
.photos { background: #eee; color: #ea6b42; }
.reminders { background: #f3f3f0; color: #4f79e8; }
.messages { background: #5bd765; }
.mail { background: #4b9af0; }
.settings { color: #51555b; background: #c7cbd0; }

.folder {
  grid-template-columns: repeat(2, 16px);
  grid-template-rows: repeat(2, 16px);
  gap: 4px;
  place-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.folder b {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #6ba9ee;
}

.folder b:nth-child(2) { background: #ef7185; }
.folder b:nth-child(3) { background: #75d093; }
.folder b:nth-child(4) { background: #ddd266; }

.page-dots {
  position: absolute;
  right: 16px;
  top: 50%;
  display: grid;
  gap: 7px;
}

.page-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

.page-dots i.active {
  width: 6px;
  height: 6px;
  margin-left: -1px;
  background: white;
}

.folder-popover {
  position: absolute;
  z-index: 4;
  inset: 50% auto auto 50%;
  width: 280px;
  padding: 22px;
  color: white;
  text-align: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 7px;
  background: rgba(49, 52, 55, 0.92);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  transform: translate(-50%, -50%) scale(.86);
  opacity: 0;
  pointer-events: none;
}

.folder-popover.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.folder-popover strong {
  font-size: 14px;
}

.folder-popover > div {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.folder-close {
  position: absolute;
  top: 8px;
  right: 10px;
  color: rgba(255,255,255,.7);
  background: transparent;
  border: 0;
  font-size: 18px;
}

.stage-corner {
  position: absolute;
  z-index: 5;
  right: 12px;
  bottom: 12px;
}

.features-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 7vw;
  align-items: end;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 78px;
}

.feature-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #e7e6e1;
}

.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  grid-column: span 7;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 5;
}

.feature-index {
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 0;
  font-size: 25px;
}

.feature-card p {
  max-width: 420px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.mini-search {
  position: absolute;
  top: 98px;
  right: 8%;
  left: 8%;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(16,17,18,.08);
}

.mini-search i {
  width: 17px;
  height: 17px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.mini-search b {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--red);
}

.page-visual {
  position: absolute;
  top: 82px;
  right: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.page-visual b {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #777;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 19px;
}

.page-visual b.selected {
  color: white;
  border-color: var(--red);
  background: var(--red);
}

.folder-visual {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 180px;
  height: 180px;
  display: grid;
  grid-template-columns: repeat(2, 58px);
  gap: 13px;
  place-content: center;
  border-radius: 30px;
  background: #c9c9c4;
  transform: translateX(-50%) rotate(4deg);
}

.folder-visual i {
  border-radius: 14px;
  background: #56a6eb;
}

.folder-visual i:nth-child(2) { background: #ea657c; }
.folder-visual i:nth-child(3) { background: #63c888; }
.folder-visual i:nth-child(4) { background: #e0cb59; }

.native-visual {
  position: absolute;
  top: 86px;
  right: 10%;
  left: 10%;
  height: 130px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.native-visual span {
  flex: 1;
  height: 34%;
  background: var(--cyan);
}

.native-visual span:nth-child(2) { height: 62%; background: var(--red); }
.native-visual span:nth-child(3) { height: 88%; background: var(--ink); }

.workflow {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 0.8fr);
  gap: 8vw;
  color: white;
  background: #282b2c;
}

.workflow-sticky {
  align-self: start;
  position: sticky;
  top: 130px;
}

.workflow-steps article {
  min-height: 210px;
  padding: 32px 0 54px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.workflow-steps article > span {
  color: var(--red);
  font-size: 11px;
}

.workflow-steps h3 {
  margin: 24px 0 12px;
  font-size: 29px;
}

.workflow-steps p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}

.closing {
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: var(--red);
}

.closing p {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  font-size: 15px;
  font-weight: 700;
}

.closing h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 42px;
  font-size: clamp(58px, 10vw, 148px);
  line-height: .9;
}

.closing .primary-button {
  position: relative;
  z-index: 2;
}

.download-meta {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
}

.closing-grid {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(64vw, 700px);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  transform: translate(-50%, -50%) rotate(8deg);
  opacity: .14;
}

.closing-grid i {
  border: 2px solid var(--ink);
  border-radius: 18%;
}

footer {
  min-height: 140px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(28px, 7vw, 112px);
  color: rgba(255,255,255,.72);
  background: var(--ink);
  font-size: 11px;
}

footer > span {
  justify-self: end;
}

.mobile-download {
  display: none;
}

@media (min-width: 1800px) {
  .section-pad {
    padding-right: max(9vw, calc((100vw - 1620px) / 2));
    padding-left: max(9vw, calc((100vw - 1620px) / 2));
  }

  .hero-content {
    padding-left: max(9vw, calc((100vw - 1620px) / 2));
  }

  footer {
    padding-right: max(9vw, calc((100vw - 1620px) / 2));
    padding-left: max(9vw, calc((100vw - 1620px) / 2));
  }
}

@media (max-width: 1220px) {
  .experience {
    grid-template-columns: minmax(280px, .7fr) minmax(540px, 1.3fr);
    gap: 4vw;
  }

  .launcher-panel {
    padding-right: 28px;
    padding-left: 28px;
  }

  .app-grid {
    column-gap: 10px;
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-content {
    width: 78vw;
  }

  .hero-shade {
    width: 76%;
  }

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

  .product-stage {
    width: min(100%, 820px);
    min-height: 520px;
    justify-self: center;
  }

  .feature-card:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: 60px;
  }

  .site-header {
    padding: 0 18px;
  }

  .header-action {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 620px;
    max-height: none;
    padding-bottom: 70px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    width: 100%;
    background: rgba(9, 10, 11, 0.66);
  }

  .hero-content {
    width: 100%;
    padding: 126px 24px 0;
  }

  .hero h1 {
    font-size: clamp(60px, 20vw, 92px);
  }

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

  .corner-pulse {
    display: none;
  }

  .section-pad {
    padding: 80px 24px;
  }

  .intro-grid,
  .features-head,
  .workflow {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    margin-top: 42px;
  }

  .stat-row {
    margin-top: 46px;
  }

  .experience {
    gap: 52px;
  }

  .product-stage {
    width: auto;
    min-height: 450px;
    margin-right: -14px;
    margin-left: -14px;
  }

  .launcher-panel {
    padding: 26px 16px;
  }

  .launcher-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .search-box {
    width: 100%;
  }

  .app-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 4px;
    margin-top: 26px;
  }

  .app-item:nth-child(n+9) {
    display: none;
  }

  .app-icon {
    width: 46px;
    height: 46px;
  }

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

  .feature-card:nth-child(n) {
    grid-column: auto;
    min-height: 390px;
  }

  .workflow-sticky {
    position: static;
  }

  .workflow-steps {
    margin-top: 56px;
  }

  footer {
    padding-bottom: 108px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  footer > span {
    justify-self: start;
  }

  .mobile-download {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 18px;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 6px;
    background: rgba(16,17,18,.92);
    box-shadow: 0 14px 40px rgba(0,0,0,.28);
    backdrop-filter: blur(18px);
  }

  .mobile-download > span {
    display: grid;
    gap: 3px;
  }

  .mobile-download b {
    font-size: 13px;
  }

  .mobile-download small {
    color: rgba(255,255,255,.58);
    font-size: 9px;
  }

  .mobile-download strong {
    min-width: 74px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--ink);
    border-radius: 4px;
    background: var(--white);
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 13vw, 54px);
  }

  .hero-copy {
    max-width: 100%;
    font-size: 15px;
  }

  .primary-button {
    width: 100%;
  }

  .stat-row {
    gap: 8px;
  }

  .stat-row strong {
    font-size: 30px;
  }

  .product-stage {
    min-height: 430px;
  }

  .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .app-item:nth-child(n+7) {
    display: none;
  }

  .closing {
    min-height: 620px;
    padding: 70px 22px 120px;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
