:root {
  color-scheme: dark;
  --ink: #0f141b;
  --ink-2: #151f2a;
  --panel: #1c2833;
  --panel-2: #263542;
  --line: rgba(235, 244, 255, 0.14);
  --text: #edf4fb;
  --muted: #aebccc;
  --blue: #78a8ff;
  --green: #58c878;
  --teal: #42c4bd;
  --amber: #f2a24b;
  --purple: #b084f5;
  --red: #f36e6e;
  --paper: #f4f0e8;
  --radius: 8px;
  --page-max: 1280px;
  --page-gutter: max(4vw, calc((100vw - var(--page-max)) / 2));
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 76%);
  z-index: -2;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--paper);
  color: #111;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding: 0.8rem var(--page-gutter);
  background: rgba(15, 20, 27, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(15, 20, 27, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.12rem;
  font-weight: 900;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  text-align: center;
}

.header-cta {
  padding: 0 0.95rem;
  background: rgba(120, 168, 255, 0.16);
  border-color: rgba(120, 168, 255, 0.3);
  color: #dce8ff;
}

.button {
  min-width: 156px;
  padding: 0.84rem 1.1rem;
}

.button.primary {
  background: var(--green);
  color: #071109;
  box-shadow: 0 12px 32px rgba(88, 200, 120, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 2.3rem var(--page-gutter) 1.6rem;
  background:
    linear-gradient(115deg, rgba(15, 20, 27, 0.95) 0%, rgba(17, 26, 36, 0.76) 42%, rgba(37, 26, 39, 0.66) 100%),
    linear-gradient(180deg, #17212c, #10151d);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(to top, var(--ink), transparent);
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100%, var(--page-max));
  transform: translateX(-50%);
  overflow: hidden;
}

.stage-grid {
  position: absolute;
  inset: 7% 4% 0;
  background:
    linear-gradient(90deg, rgba(242, 162, 75, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(66, 196, 189, 0.07) 1px, transparent 1px);
  background-size: 74px 74px;
  transform: perspective(720px) rotateX(62deg) translateY(11%);
  transform-origin: bottom;
  opacity: 0.62;
}

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

.hero-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.hero-wordmark img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
}

.hero-wordmark span {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 0.8rem;
  font-size: 3.25rem;
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  color: var(--text);
  font-size: 2.5rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-subtitle {
  max-width: 540px;
  margin-bottom: 1.15rem;
  color: #d0dbe7;
  font-size: 1rem;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.platform-strip span {
  padding: 0.42rem 0.56rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #dbe6ef;
  font-size: 0.82rem;
  font-weight: 760;
}

.mac-shell {
  position: absolute;
  right: clamp(1rem, 4vw, 5rem);
  top: 13%;
  width: clamp(500px, 44vw, 690px);
  transform: rotate(-3deg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #121a23;
  box-shadow: var(--shadow);
  opacity: 0.92;
}

.mac-bar {
  display: flex;
  gap: 0.42rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mac-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--red);
}

.mac-bar span:nth-child(2) {
  background: var(--amber);
}

.mac-bar span:nth-child(3) {
  background: var(--green);
}

.live-console {
  padding: 1.2rem;
}

.console-header,
.timeline-head,
.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.console-header p,
.mini-panel p,
.timeline-head span,
.visual-topline span {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.console-header h2 {
  margin: 0.18rem 0 0;
  font-size: 2rem;
}

.console-header strong,
.timeline-head b,
.visual-topline b {
  padding: 0.52rem 0.68rem;
  border-radius: var(--radius);
  background: rgba(120, 168, 255, 0.14);
  color: #dce7ff;
}

.console-meta {
  margin: 0.7rem 0 1rem;
  color: var(--muted);
  font-weight: 760;
}

.transport-grid,
.live-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.control,
.live-buttons span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.34);
}

.green {
  background: var(--green);
}

.teal {
  background: var(--teal);
}

.blue {
  background: var(--blue);
}

.purple {
  background: var(--purple);
}

.amber {
  background: var(--amber);
}

.red {
  background: var(--red);
}

.console-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mini-panel {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.mini-panel ol {
  display: grid;
  gap: 0.44rem;
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: #dce6f2;
}

.mini-panel li {
  padding-left: 0.2rem;
}

.mini-panel .current {
  color: var(--green);
  font-weight: 900;
}

.cue-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.62rem;
  color: #e9f1fb;
}

.cue-row span {
  color: var(--muted);
}

.ipad-shell {
  position: absolute;
  right: clamp(16rem, 24vw, 29rem);
  bottom: 8%;
  width: clamp(260px, 22vw, 340px);
  padding: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #111820;
  transform: rotate(5deg);
  box-shadow: var(--shadow);
}

.tablet-screen {
  position: relative;
  min-height: 250px;
  border-radius: 18px;
  overflow: hidden;
  padding: 1rem;
  background: linear-gradient(145deg, #1c2833, #111820);
}

.timeline-lanes,
.wide-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.34rem;
  margin-top: 2.1rem;
  height: 128px;
}

.timeline-lanes span,
.wide-timeline i {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline-cue,
.marker {
  position: absolute;
  border-radius: 8px;
  padding: 0.46rem 0.62rem;
  color: #ffffff;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.32);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

.cue-a {
  left: 12%;
  top: 92px;
  background: var(--purple);
}

.cue-b {
  left: 47%;
  top: 126px;
  background: var(--amber);
}

.cue-c {
  right: 8%;
  top: 168px;
  background: var(--blue);
}

.feature-overview,
.workflow,
.details,
.platforms,
.launch {
  padding: 5.2rem var(--page-gutter);
}

.feature-overview,
.details {
  background: var(--ink);
}

.workflow {
  background: linear-gradient(180deg, #151c25, #10151b);
}

.platforms {
  background: #171812;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 1.2rem;
}

.section-heading p:last-child {
  max-width: 680px;
  font-size: 1.04rem;
}

.feature-grid,
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.platform-card {
  min-height: 240px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.032));
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  color: #091018;
  font-weight: 950;
}

.feature-card h3,
.platform-card h3,
.detail-list h3 {
  margin-bottom: 0.6rem;
}

.feature-card p,
.platform-card p,
.detail-list p {
  margin-bottom: 0;
}

.detail-list a {
  color: #dce8ff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(120, 168, 255, 0.45);
  text-underline-offset: 0.18em;
}

.workflow-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.tab-button {
  min-width: 110px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.tab-button.active {
  background: var(--paper);
  color: #111820;
}

.workflow-stage {
  position: relative;
}

.workflow-panel {
  display: none;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 1.25rem;
}

.workflow-panel.active {
  display: grid;
}

.workflow-copy,
.screen-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.workflow-copy {
  padding: 1.45rem;
}

.workflow-copy h3 {
  margin-bottom: 0.75rem;
  font-size: 1.72rem;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: #d9e3ee;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--green);
}

.screen-visual {
  min-height: 430px;
  overflow: hidden;
  padding: 1.2rem;
  background:
    linear-gradient(145deg, rgba(120, 168, 255, 0.12), transparent 45%),
    #141d26;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 1.3rem;
}

.setup-grid span,
.set-row,
.cache-line,
.upcoming-line {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.setup-grid span {
  padding: 0.7rem;
  color: #dce6f2;
  font-weight: 850;
  text-align: center;
}

.wide-timeline {
  grid-template-columns: repeat(8, 1fr);
  height: 245px;
  margin-top: 0.6rem;
}

.marker.one {
  left: 10%;
  top: 85px;
  background: var(--purple);
}

.marker.two {
  left: 42%;
  top: 145px;
  background: var(--amber);
}

.marker.three {
  right: 9%;
  top: 72px;
  background: var(--blue);
}

.setlist-visual {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.set-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 0.85rem;
  row-gap: 0.2rem;
  padding: 0.9rem;
}

.set-row span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-weight: 900;
}

.set-row b {
  color: var(--text);
}

.set-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.set-row.active {
  border-color: rgba(88, 200, 120, 0.48);
}

.set-row.active span {
  background: var(--green);
  color: #061108;
}

.live-visual {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.live-buttons {
  margin: 0;
  gap: 0.65rem;
}

.live-buttons .live-button {
  position: relative;
  min-height: 72px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.live-button::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.16);
}

.live-button::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px),
    radial-gradient(circle at 76% 62%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px);
  background-size: 15px 15px, 19px 19px;
  pointer-events: none;
}

.live-button b {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  line-height: 1;
}

.sf-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 26px;
  height: 26px;
  opacity: 0.92;
}

.sf-icon path {
  vector-effect: non-scaling-stroke;
}

.live-button.pad {
  background: linear-gradient(135deg, rgba(66, 196, 189, 0.78), rgba(66, 196, 189, 0.46));
  box-shadow: 0 10px 22px rgba(66, 196, 189, 0.18);
}

.live-button.start {
  background: linear-gradient(135deg, rgba(88, 200, 120, 0.78), rgba(88, 200, 120, 0.46));
  box-shadow: 0 10px 22px rgba(88, 200, 120, 0.18);
}

.live-button.next {
  background: linear-gradient(135deg, rgba(120, 168, 255, 0.78), rgba(120, 168, 255, 0.46));
  box-shadow: 0 10px 22px rgba(120, 168, 255, 0.18);
}

.live-button.guide {
  background: linear-gradient(135deg, rgba(176, 132, 245, 0.78), rgba(176, 132, 245, 0.46));
  box-shadow: 0 10px 22px rgba(176, 132, 245, 0.18);
}

.live-button.metro {
  background: linear-gradient(135deg, rgba(242, 162, 75, 0.78), rgba(242, 162, 75, 0.46));
  box-shadow: 0 10px 22px rgba(242, 162, 75, 0.18);
}

.live-button.stop {
  background: linear-gradient(135deg, rgba(243, 110, 110, 0.78), rgba(243, 110, 110, 0.46));
  box-shadow: 0 10px 22px rgba(243, 110, 110, 0.18);
}

.cache-line,
.upcoming-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 54px;
  padding: 0.82rem;
}

.cache-line span {
  flex: 1;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 82%, rgba(255, 255, 255, 0.12) 82%);
}

.cache-line strong {
  color: var(--green);
}

.upcoming-line b {
  color: var(--muted);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.detail-list article {
  padding: 1.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.platform-card {
  min-height: 210px;
  background: rgba(255, 255, 255, 0.055);
}

.platform-card.featured {
  border-color: rgba(242, 162, 75, 0.44);
  background: rgba(242, 162, 75, 0.1);
}

.platform-card span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.62rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font-weight: 900;
}

.launch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background:
    linear-gradient(90deg, rgba(88, 200, 120, 0.15), transparent 45%),
    #10151b;
}

.launch div {
  max-width: 650px;
}

.launch p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem var(--page-gutter);
  border-top: 1px solid var(--line);
  background: #0b0f14;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer a {
  color: #dce8ff;
  font-weight: 800;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .mac-shell {
    right: -20vw;
    width: min(660px, 78vw);
    opacity: 0.62;
  }

  .ipad-shell {
    right: 5vw;
    width: min(320px, 36vw);
    bottom: 5%;
    opacity: 0.72;
  }

  .feature-grid,
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-panel.active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 4vw;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .header-cta {
    min-height: 38px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-top: 2rem;
    padding-bottom: 1.4rem;
  }

  .hero-scene {
    position: relative;
    left: auto;
    width: 100%;
    height: 310px;
    margin-top: 1.75rem;
    transform: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-copy {
    max-width: 100%;
    z-index: 3;
  }

  .hero-wordmark img {
    width: 46px;
    height: 46px;
  }

  .hero-wordmark span {
    font-size: 1.88rem;
  }

  h1 {
    font-size: 2.12rem;
    line-height: 1;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .mac-shell {
    top: 1.7rem;
    right: -280px;
    width: 580px;
    min-width: 0;
    opacity: 0.56;
  }

  .ipad-shell {
    right: 0.7rem;
    bottom: 1.2rem;
    width: min(235px, 58vw);
    min-width: 0;
    opacity: 0.9;
  }

  .button {
    width: 100%;
  }

  .feature-overview,
  .workflow,
  .details,
  .platforms,
  .launch {
    padding-block: 3.6rem;
  }

  .feature-grid,
  .platform-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .workflow-tabs {
    width: 100%;
  }

  .tab-button {
    min-width: 0;
  }

  .screen-visual {
    min-height: 360px;
  }

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

  .live-buttons,
  .transport-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer a {
    margin-left: 0;
  }

  .footer-links {
    margin-left: 0;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mac-shell,
  .ipad-shell {
    animation: settle-in 700ms ease-out both;
  }

  .ipad-shell {
    animation-delay: 120ms;
  }
}

@keyframes settle-in {
  from {
    opacity: 0;
    translate: 0 24px;
  }
}
