:root {
  --bg: #f9f9f7;
  --surface: #fff;
  --surface-soft: #f3f3ef;
  --text: #141414;
  --muted: #6f6f68;
  --line: #d9d9d2;
  --line-strong: #141414;
  --green: #00a85a;
  --blue: #006dff;
  --max: 1060px;
  --page: clamp(20px, 4vw, 52px);
  --section: clamp(70px, 9vw, 112px);
  --radius: 8px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --fast: 180ms;
  --mid: 320ms;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.site-header {
  padding-top: 24px;
}

.nav,
.page,
.footer-inner {
  width: min(calc(100% - (var(--page) * 2)), var(--max));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
  animation: reveal-y 620ms var(--ease) both;
}

.brand,
.nav-links a,
.footer-links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand {
  font-weight: 620;
  letter-spacing: 0;
}

.brand::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--mid) var(--ease);
}

.brand:hover::after,
.brand:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--text);
}

.nav-links a {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 12px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
  transition: color var(--fast) ease, background var(--fast) ease;
}

.nav-links a::before {
  content: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--surface-soft);
  color: var(--text);
}

.nav-links a[aria-current="page"] {
  background: var(--text);
  color: var(--surface);
}

.hero {
  min-height: calc(100vh - 118px);
  padding: var(--section) 0 78px;
}

.hero-inner {
  max-width: 680px;
}

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

h1 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  padding: 0 18px;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--fast) ease, border-color var(--fast) ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: translateX(-101%);
  transform-origin: left;
  transition: transform var(--mid) var(--ease);
  z-index: -1;
}

.button:hover,
.button:focus-visible {
  color: var(--bg);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(0);
}

.section {
  padding: var(--section) 0 78px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 42px;
}

.timeline {
  position: relative;
  padding: 6px 0 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  bottom: 7px;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--line-strong);
  transform: translateX(-50%);
}

.timeline-end-dot {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--line-strong);
  transform: translateX(-50%);
}

.year {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 30px auto 24px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 560;
  padding: 6px 11px 7px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin: 0 0 64px;
  perspective: 1000px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  width: 10px;
  height: 10px;
  background: var(--surface);
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-50%) scale(.55);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
  z-index: 3;
}

.timeline-item.status-published::before {
  background: var(--line-strong);
}

.timeline-item.is-visible::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.timeline-item.left .app-card {
  grid-column: 1;
}

.timeline-item.right .app-card {
  grid-column: 2;
}

.app-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow:
    0 30px 72px rgba(20, 20, 20, .12),
    0 10px 28px rgba(20, 20, 20, .06),
    0 2px 8px rgba(20, 20, 20, .035);
  overflow: hidden;
  opacity: 0;
  transform: translateY(26px) scale(.992);
  filter: blur(10px);
  transform-origin: center bottom;
  transition: border-color var(--fast) ease, transform var(--mid) var(--ease);
  will-change: transform, opacity, filter;
}

.timeline-item.is-visible .app-card {
  animation: card-soft-reveal 860ms var(--ease) 80ms both;
}

.timeline-item.is-visible .app-copy > *,
.timeline-item.is-visible .shots img {
  animation: card-detail-in 620ms var(--ease) both;
}

.timeline-item.is-visible .app-copy > :nth-child(1) {
  animation-delay: 210ms;
}

.timeline-item.is-visible .app-copy > :nth-child(2) {
  animation-delay: 280ms;
}

.timeline-item.is-visible .app-copy > :nth-child(3) {
  animation-delay: 340ms;
}

.timeline-item.is-visible .app-copy > :nth-child(4) {
  animation-delay: 400ms;
}

.timeline-item.is-visible .shots img:nth-child(1) {
  animation-delay: 440ms;
}

.timeline-item.is-visible .shots img:nth-child(2) {
  animation-delay: 500ms;
}

.timeline-item.is-visible .shots img:nth-child(3) {
  animation-delay: 560ms;
}

.app-card:hover,
.app-card:focus-within {
  border-color: transparent;
  transform: none;
}

.app-copy {
  padding: 26px;
}

.app-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.app-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.app-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}

.pill.published {
  color: var(--green);
  background: rgba(0, 168, 90, .13);
}

.pill.concept {
  color: var(--blue);
  background: rgba(0, 109, 255, .12);
}

.pill.system {
  color: var(--muted);
  background: var(--surface-soft);
  border-color: transparent;
}

.app-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: 0;
}

.app-heading h3 {
  margin-bottom: 0;
}

.app-card p {
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px;
  transition: color var(--fast) ease;
}

.store-link,
.arrow-link {
  display: inline-flex;
  color: currentColor;
  font-weight: 560;
}

.store-link {
  color: var(--blue);
  min-height: 30px;
  align-items: center;
}

.app-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 12px;
}

.app-actions .store-link {
  white-space: nowrap;
}

.app-store-link {
  display: flex;
  width: fit-content;
  transition: opacity var(--fast) ease, transform var(--mid) var(--ease);
}

.app-copy > .app-store-link {
  margin-top: 12px;
}

.app-store-link:hover,
.app-store-link:focus-visible {
  opacity: .82;
  transform: translateY(-1px);
}

.app-store-link img {
  display: block;
  width: 132px;
  height: auto;
}

.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 10px 10px;
}

.shots-link {
  transition: opacity var(--fast) ease;
}

.shots-link:hover,
.shots-link:focus-visible {
  opacity: .86;
}

.shots img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: top center;
  background: var(--soft);
  display: block;
}

.shots.wide img {
  aspect-ratio: 16 / 9;
}

.contact-panel,
.legal-panel {
  padding: var(--section) 0 78px;
}

.publishing-panel {
  padding: var(--section) 0 104px;
}

.visual-panel {
  position: relative;
  min-height: clamp(430px, 56vh, 560px);
  display: grid;
  align-items: center;
  overflow: clip;
  padding: clamp(70px, 8vw, 96px) 0 clamp(70px, 8vw, 96px);
  isolation: isolate;
}

.visual-panel::before,
.visual-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.visual-panel-publishing::before,
.visual-panel-publishing::after {
  content: none;
}

.visual-panel-contact::before,
.visual-panel-contact::after {
  content: none;
}

.callout {
  max-width: min(600px, 58%);
  position: relative;
  z-index: 1;
}

.visual-panel-publishing .callout {
  max-width: min(600px, 52%);
}

.contact-composition {
  position: absolute;
  z-index: 0;
  right: clamp(-8px, .8vw, 12px);
  top: 54%;
  width: clamp(280px, 31.5vw, 468px);
  aspect-ratio: 1260 / 1024;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-envelope {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: none;
  will-change: transform;
  --start-rotate: -1deg;
  --move-x: 6px;
  --move-y: -8px;
  --move-rotate: 1.2deg;
  animation: contact-float 7.8s cubic-bezier(.45, 0, .2, 1) infinite alternate;
}

.publishing-icons {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 57%;
  width: clamp(340px, 37.5vw, 550px);
  height: clamp(300px, 32vw, 455px);
  transform: translateY(-50%);
  pointer-events: none;
}

.floating-icon {
  --start-rotate: 0deg;
  --move-x: 0px;
  --move-y: -12px;
  --move-rotate: 5deg;
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(20, 20, 20, .045);
  box-shadow:
    0 20px 42px rgba(20, 20, 20, .075),
    0 2px 7px rgba(20, 20, 20, .04);
  transform: rotate(var(--start-rotate));
  animation: icon-float 7.5s cubic-bezier(.45, 0, .2, 1) infinite alternate;
  will-change: transform;
  z-index: 1;
}

.floating-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.icon-app {
  overflow: hidden;
}

.icon-platform {
  overflow: hidden;
}

.platform-ios {
  left: 13%;
  top: 36%;
  width: 62px;
  height: 62px;
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(145, 146, 141, .96), rgba(113, 114, 108, .96) 54%, rgba(83, 84, 78, .96));
  --start-rotate: -7deg;
  --move-x: -9px;
  --move-y: -18px;
  --move-rotate: 6deg;
}

.platform-android {
  right: 7%;
  top: 50%;
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(128, 209, 146, .9), rgba(82, 185, 112, .9) 54%, rgba(54, 150, 90, .9));
  --start-rotate: 8deg;
  --move-x: 11px;
  --move-y: -13px;
  --move-rotate: -7deg;
  animation-delay: -2s;
}

.icon-space {
  left: 39%;
  top: 7%;
  width: 74px;
  height: 74px;
  z-index: 2;
  --start-rotate: 5deg;
  --move-x: 8px;
  --move-y: 15px;
  --move-rotate: -8deg;
  animation-delay: -1.1s;
}

.icon-uv {
  right: 10%;
  top: 24%;
  width: 68px;
  height: 68px;
  z-index: 2;
  --start-rotate: -4deg;
  --move-x: 13px;
  --move-y: -10px;
  --move-rotate: 5deg;
  animation-delay: -3.2s;
}

.icon-tower {
  left: 32%;
  top: 48%;
  width: 96px;
  height: 96px;
  border-radius: 25px;
  z-index: 2;
  --start-rotate: -10deg;
  --move-x: -11px;
  --move-y: 12px;
  --move-rotate: 7deg;
  animation-delay: -2.7s;
}

.icon-food {
  right: 31%;
  bottom: 14%;
  width: 78px;
  height: 78px;
  border-radius: 23px;
  z-index: 2;
  --start-rotate: 7deg;
  --move-x: 9px;
  --move-y: 17px;
  --move-rotate: -5deg;
  animation-delay: -.5s;
}

.icon-paint {
  left: 7%;
  bottom: 32%;
  width: 70px;
  height: 70px;
  border-radius: 21px;
  z-index: 2;
  --start-rotate: 12deg;
  --move-x: -8px;
  --move-y: -13px;
  --move-rotate: -8deg;
  animation-delay: -4.4s;
}

.icon-rose {
  left: 57%;
  top: 35%;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(169, 205, 240, .9), rgba(127, 174, 224, .9) 54%, rgba(92, 145, 202, .9));
  --start-rotate: 14deg;
  --move-x: 12px;
  --move-y: -9px;
  --move-rotate: -10deg;
  animation-delay: -5.2s;
}

.icon-indigo {
  right: 4%;
  bottom: 25%;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(238, 238, 234, .94), rgba(211, 213, 206, .94) 54%, rgba(175, 178, 169, .94));
  --start-rotate: -13deg;
  --move-x: -10px;
  --move-y: 11px;
  --move-rotate: 7deg;
  animation-delay: -3.7s;
}

.icon-amber {
  left: 23%;
  top: 68%;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(239, 209, 111, .9), rgba(220, 179, 83, .9) 54%, rgba(193, 145, 60, .9));
  --start-rotate: -4deg;
  --move-x: -5px;
  --move-y: 16px;
  --move-rotate: 8deg;
  animation-delay: -2.4s;
}

.icon-mint {
  left: 70%;
  top: 8%;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(139, 212, 198, .9), rgba(93, 189, 171, .9) 54%, rgba(58, 159, 145, .9));
  --start-rotate: 9deg;
  --move-x: 7px;
  --move-y: -12px;
  --move-rotate: -6deg;
  animation-delay: -4.9s;
}

.icon-red {
  left: 65%;
  top: 58%;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(232, 145, 132, .9), rgba(202, 101, 89, .9) 54%, rgba(170, 75, 66, .9));
  --start-rotate: -8deg;
  --move-x: 9px;
  --move-y: 13px;
  --move-rotate: 7deg;
  animation-delay: -3.1s;
}

.callout p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.16;
  font-weight: 500;
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.platform-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(20, 20, 20, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 24px rgba(20, 20, 20, .045);
  color: var(--text);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 560;
}

.arrow-link {
  margin-top: 28px;
  min-height: 44px;
  font-size: 20px;
}

.legal-panel {
  max-width: 820px;
}

.legal-panel h2 {
  margin-top: 36px;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
}

.legal-panel h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 560;
}

.legal-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.legal-panel .legal-emphasis {
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.legal-panel ul {
  margin: -4px 0 20px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-panel li + li {
  margin-top: 4px;
}

.site-footer {
  padding-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reveal-y {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-soft-reveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(26px) scale(.992);
  }

  62% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes card-detail-in {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes icon-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--start-rotate));
  }

  100% {
    transform: translate3d(var(--move-x), var(--move-y), 0) rotate(calc(var(--start-rotate) + var(--move-rotate)));
  }
}

@keyframes contact-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--start-rotate, 0deg));
  }

  100% {
    transform: translate3d(var(--move-x, 8px), var(--move-y, -14px), 0) rotate(calc(var(--start-rotate, 0deg) + var(--move-rotate, 4deg)));
  }
}

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

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    max-width: 100%;
    overflow-x: auto;
  }

  .hero {
    min-height: calc(100vh - 130px);
  }

  .visual-panel {
    width: calc(100% + var(--page));
    margin-right: calc(var(--page) * -1);
    min-height: 500px;
    padding: 54px 0 82px;
  }

  .visual-panel-publishing {
    min-height: 560px;
  }

  .callout {
    max-width: 100%;
  }

  .visual-panel-publishing .callout {
    max-width: min(100%, 82%);
  }

  .visual-panel-publishing .callout p {
    max-width: min(100%, 76%);
  }

  .contact-composition {
    right: calc(var(--page) * -1);
    top: auto;
    bottom: 24px;
    width: min(62vw, 300px);
    aspect-ratio: 1260 / 1024;
    height: auto;
    opacity: .82;
    transform: none;
  }

  .contact-envelope {
    width: 100%;
    height: auto;
  }

  .publishing-icons {
    right: calc(var(--page) * -1);
    top: 220px;
    bottom: auto;
    width: min(66vw, 315px);
    height: min(56vw, 270px);
    opacity: .86;
    transform: none;
  }

  .floating-icon {
    width: clamp(46px, 12vw, 60px);
    height: clamp(46px, 12vw, 60px);
    border-radius: 16px;
    box-shadow:
      0 16px 30px rgba(20, 20, 20, .07),
      0 2px 8px rgba(20, 20, 20, .04);
  }

  .platform-ios,
  .platform-android {
    width: clamp(52px, 13vw, 64px);
    height: clamp(52px, 13vw, 64px);
    border-radius: 18px;
  }

  .icon-space,
  .icon-uv,
  .icon-food,
  .icon-paint,
  .icon-rose,
  .icon-indigo,
  .icon-red {
    width: clamp(44px, 11vw, 58px);
    height: clamp(44px, 11vw, 58px);
  }

  .icon-amber {
    width: clamp(38px, 9.5vw, 48px);
    height: clamp(38px, 9.5vw, 48px);
  }

  .icon-mint {
    width: clamp(36px, 9vw, 46px);
    height: clamp(36px, 9vw, 46px);
  }

  .icon-tower {
    width: clamp(60px, 15vw, 76px);
    height: clamp(60px, 15vw, 76px);
  }

  .platform-ios {
    left: 11%;
    top: 34%;
  }

  .platform-android {
    right: 0;
    top: 52%;
  }

  .icon-space {
    left: 38%;
    top: 4%;
  }

  .icon-uv {
    right: 0;
    top: 22%;
  }

  .icon-tower {
    left: 31%;
    top: 48%;
  }

  .icon-food {
    right: 28%;
    bottom: 10%;
  }

  .icon-paint {
    left: 4%;
    bottom: 30%;
  }

  .icon-rose {
    left: 58%;
    top: 35%;
  }

  .icon-indigo {
    right: 0;
    bottom: 22%;
  }

  .icon-amber {
    left: 21%;
    top: 72%;
  }

  .icon-mint {
    left: 72%;
    top: 5%;
  }

  .icon-red {
    left: 66%;
    top: 60%;
  }

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

  .year {
    margin-left: 0;
  }

  .timeline-item {
    display: block;
    padding-left: 24px;
    margin-bottom: 52px;
  }

  .timeline::before {
    left: 5px;
  }

  .timeline::after {
    left: 5px;
  }

  .timeline-end-dot {
    left: 5px;
  }

  .timeline-item::before {
    left: 5px;
  }

  .shots {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .shots img:nth-child(3) {
    display: none;
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
