:root {
  --desk: #f3f0e9;
  --desk-cool: #edf1f1;
  --ink: #252b38;
  --muted: #687080;
  --indigo: #2c217e;
  --blue: #bedcff;
  --blue-deep: #4779b4;
  --mint: #ccebd9;
  --yellow: #ffeca0;
  --cream: #fffaf0;
  --paper: #fffefd;
  --line: rgba(53, 62, 76, 0.12);
  --shadow: 0 24px 55px rgba(82, 91, 102, 0.16), 0 4px 12px rgba(72, 79, 90, 0.09);
  --shadow-hover: 0 34px 70px rgba(68, 79, 94, 0.2), 0 8px 18px rgba(66, 74, 86, 0.12);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", Arial, sans-serif;
  --serif: Iowan Old Style, "Baskerville", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: light;
  background: var(--desk);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--desk);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.desk {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.94) 0 18%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 13% 12%, rgba(190, 220, 255, 0.24), transparent 29%),
    radial-gradient(circle at 88% 86%, rgba(204, 235, 217, 0.22), transparent 28%),
    linear-gradient(135deg, var(--desk) 0%, #f6f3ed 54%, var(--desk-cool) 100%);
}

.desk-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.21;
  mix-blend-mode: multiply;
  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='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.desk-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(430px circle at var(--pointer-x, 50%) var(--pointer-y, 45%),
              rgba(255, 255, 255, 0.6), transparent 72%);
}

.hero {
  position: absolute;
  z-index: 2;
  top: 42.5%;
  left: 38.5%;
  width: min(610px, 43vw);
  transform: translate(-50%, -50%);
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  color: #232938;
  font-size: clamp(50px, 5.55vw, 88px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 0.94;
  text-wrap: balance;
}

h1 em {
  color: var(--indigo);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 480px;
  margin: 26px 0 0;
  color: #596171;
  font-size: clamp(17px, 1.32vw, 21px);
  letter-spacing: -0.018em;
  line-height: 1.48;
}

.hero-meta {
  margin: 13px 0 0;
  color: #69717e;
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.01em;
}

.desk-object {
  position: absolute;
  z-index: 3;
  rotate: var(--rotation, 0deg);
}

.parallax-layer {
  will-change: transform;
}

.object-surface {
  transition:
    transform 420ms var(--spring),
    box-shadow 420ms var(--spring),
    filter 420ms var(--spring);
}

.desk-object:hover .object-surface,
.desk-object:focus-within .object-surface {
  transform: translateY(-7px) scale(1.018);
}

.icon-object {
  --rotation: -4deg;
  top: 8%;
  left: 6.8%;
}

.icon-card {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 9px;
}

.icon-card img {
  width: clamp(112px, 10vw, 172px);
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(83, 107, 128, 0.2));
}

.icon-card figcaption {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: #596273;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 8px 20px rgba(69, 80, 96, 0.08);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.shortcut-object {
  --rotation: 2.5deg;
  top: 7%;
  left: 47%;
}

.shortcut-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 34px rgba(62, 73, 88, 0.11), inset 0 1px rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px) saturate(1.2);
}

.shortcut-label {
  color: #777f8c;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.keys {
  display: flex;
  gap: 4px;
}

kbd {
  min-width: 26px;
  padding: 5px 7px 6px;
  border: 1px solid rgba(60, 69, 82, 0.13);
  border-bottom-width: 2px;
  border-radius: 7px;
  color: #4f5868;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(50, 58, 70, 0.07);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
}

.windows-object {
  --rotation: 5.5deg;
  top: 10.2%;
  right: 6.3%;
}

.windows-sticker {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  padding: 13px 17px 13px 14px;
  border: 1px solid rgba(71, 114, 89, 0.1);
  border-radius: 999px;
  color: #386049;
  background: var(--mint);
  box-shadow: 0 19px 35px rgba(71, 100, 84, 0.14), inset 0 1px rgba(255, 255, 255, 0.7);
}

.windows-sticker svg {
  width: 28px;
  fill: currentColor;
  stroke: none;
  opacity: 0.8;
}

.windows-sticker span {
  display: grid;
  gap: 1px;
  font-size: 10px;
}

.windows-sticker strong {
  font-size: 13px;
}

.panel-object {
  --rotation: 1.2deg;
  top: 28%;
  right: 14.5%;
}

.panel-object .parallax-layer {
  position: relative;
}

.mini-app {
  width: clamp(280px, 22vw, 360px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 25px;
  background: rgba(234, 240, 245, 0.63);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(24px) saturate(1.22);
}

.desk-object:hover .mini-app,
.desk-object:focus-within .mini-app {
  box-shadow: var(--shadow-hover), inset 0 1px rgba(255, 255, 255, 0.9);
}

.mini-app-header {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  min-height: 38px;
  padding: 0 5px 9px;
  color: var(--indigo);
}

.mini-app-header strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.mini-chevron {
  display: grid;
  width: 29px;
  height: 29px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--indigo);
  background: rgba(255, 255, 255, 0.65);
  cursor: default;
}

.mini-chevron svg {
  width: 16px;
  stroke-width: 2;
}

.mini-actions {
  display: flex;
  gap: 10px;
}

.mini-actions svg {
  width: 17px;
  stroke-width: 1.8;
}

.mini-note {
  padding: 17px 17px 13px;
  border: 1px solid rgba(150, 121, 25, 0.08);
  border-radius: 19px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.23), transparent 43%),
    var(--yellow);
  box-shadow: 0 10px 23px rgba(89, 79, 41, 0.13), inset 0 1px rgba(255, 255, 255, 0.58);
}

.mini-note-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.mini-note-title h2 {
  margin: 0;
  color: var(--indigo);
  font-size: 16px;
  letter-spacing: -0.025em;
}

.mini-note-title svg {
  width: 16px;
  color: #8e8762;
  stroke-width: 1.5;
}

.mini-list {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}

.todo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  padding: 6px 2px;
  border: 0;
  border-radius: 8px;
  color: #3f4d67;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.todo:hover {
  background: rgba(255, 255, 255, 0.24);
}

.todo:focus-visible,
.download-card:focus-visible,
.maker-tag:focus-visible,
.dialog-close:focus-visible,
.privacy-link:focus-visible,
.dialog-done:focus-visible {
  outline: 3px solid rgba(44, 33, 126, 0.28);
  outline-offset: 3px;
}

.check {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1.5px solid rgba(44, 33, 126, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 280ms var(--spring), background-color 240ms ease, border-color 240ms ease;
}

.check svg {
  width: 12px;
  color: white;
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  stroke-width: 2;
  transition: stroke-dashoffset 240ms var(--spring);
}

.todo-label {
  position: relative;
  font-size: 13px;
  letter-spacing: -0.01em;
  transition: color 220ms ease;
}

.todo-label::after {
  position: absolute;
  top: 54%;
  right: -2px;
  left: -2px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--spring);
}

.todo.is-done .check {
  border-color: var(--indigo);
  background: var(--indigo);
}

.todo.is-done .check svg {
  stroke-dashoffset: 0;
}

.todo.is-done .todo-label {
  color: #7f8290;
}

.todo.is-done .todo-label::after {
  transform: scaleX(1);
}

.mini-note-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: rgba(65, 72, 91, 0.54);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-width: 270px;
  padding: 16px 17px;
  border: 1px solid rgba(76, 110, 147, 0.12);
  border-radius: 20px;
  color: #2e537d;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), transparent 44%),
    var(--blue);
  box-shadow: 0 22px 45px rgba(77, 108, 139, 0.17), inset 0 1px rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.hero-download {
  width: fit-content;
  min-width: 320px;
  margin-top: 25px;
  color: #244c78;
  box-shadow: 0 18px 38px rgba(66, 99, 134, 0.2), inset 0 1px rgba(255, 255, 255, 0.78);
  transition:
    transform 360ms var(--spring),
    box-shadow 360ms var(--spring),
    background-color 360ms var(--spring);
}

.hero-download:hover,
.hero-download:focus-visible {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 32px 62px rgba(66, 99, 134, 0.22), inset 0 1px rgba(255, 255, 255, 0.8);
}

.hero-download:active {
  transform: translateY(-1px) scale(0.985);
}

.download-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.38);
}

.download-icon svg {
  width: 21px;
  stroke-width: 1.7;
}

.download-copy {
  display: grid;
  gap: 3px;
}

.download-copy strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.download-copy small {
  color: rgba(36, 70, 108, 0.82);
  font-size: 11px;
  font-weight: 600;
}

.download-arrow {
  width: 21px;
  stroke-width: 1.6;
}

.maker-object {
  --rotation: -5deg;
  left: 38%;
  bottom: 7%;
}

.maker-tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  min-height: 44px;
  padding: 12px 15px 12px 31px;
  border: 1px solid rgba(56, 67, 80, 0.1);
  border-radius: 5px 14px 14px 5px;
  color: #626b78;
  background: rgba(255, 254, 250, 0.82);
  box-shadow: 0 16px 30px rgba(65, 74, 86, 0.11);
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 12px 100%, 0 50%);
  font-size: 11px;
  text-decoration: none;
}

.tag-hole {
  position: absolute;
  left: 14px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(62, 71, 83, 0.12);
  border-radius: 50%;
  background: var(--desk);
}

.maker-tag strong {
  color: #3e4857;
}

.maker-tag svg {
  width: 14px;
  stroke-width: 1.6;
}

.edge-tab {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: calc(100% - 12px);
  bottom: auto;
  left: auto;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
  width: 48px;
  overflow: hidden;
  padding: 11px 15px 11px 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px 7px 16px 16px;
  color: #596575;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), transparent 48%),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 34px rgba(63, 74, 88, 0.14), inset 0 1px rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  opacity: 0.92;
  transform: translateY(-50%) rotate(-1.8deg);
  transform-origin: right center;
  transition:
    opacity 280ms ease,
    width 440ms var(--spring),
    transform 440ms var(--spring),
    box-shadow 440ms var(--spring);
}

.edge-tab:hover,
.panel-object:hover .edge-tab,
.panel-object:focus-within .edge-tab {
  opacity: 1;
  width: 214px;
  transform: translateY(-50%) rotate(-2.6deg);
  box-shadow: 0 24px 44px rgba(63, 74, 88, 0.16), inset 0 1px rgba(255, 255, 255, 0.94);
}

.edge-tab-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: #536378;
  background: rgba(255, 255, 255, 0.82);
}

.edge-tab-copy {
  display: grid;
  flex: 1 0 142px;
  gap: 1px;
  min-width: 0;
  opacity: 0;
  transform: translateX(5px);
  transition: opacity 260ms ease, transform 340ms var(--spring);
}

.edge-tab:hover .edge-tab-copy,
.panel-object:hover .edge-tab-copy,
.panel-object:focus-within .edge-tab-copy {
  opacity: 1;
  transform: translateX(0);
}

.edge-tab-copy small {
  color: #7a8392;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edge-tab-copy strong {
  color: #465367;
  font-size: 11px;
  line-height: 1.25;
}

.edge-tab-icon svg {
  width: 16px;
  stroke-width: 1.8;
}

.mobile-footnote {
  display: none;
}

.launch-dialog {
  width: min(650px, calc(100vw - 36px));
  max-height: calc(100dvh - 36px);
  margin: auto;
  padding: 0;
  overflow: hidden auto;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  color: var(--ink);
  background: rgba(255, 254, 250, 0.97);
  box-shadow:
    0 46px 110px rgba(35, 41, 56, 0.28),
    0 10px 30px rgba(60, 68, 82, 0.13),
    inset 0 1px rgba(255, 255, 255, 0.96);
  opacity: 0;
  transform: translateY(14px) scale(0.975);
  transition:
    opacity 280ms ease,
    transform 420ms var(--spring),
    overlay 280ms allow-discrete,
    display 280ms allow-discrete;
}

.launch-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@starting-style {
  .launch-dialog[open] {
    opacity: 0;
    transform: translateY(14px) scale(0.975);
  }

  .launch-dialog[open]::backdrop {
    opacity: 0;
  }
}

.launch-dialog::backdrop {
  background: rgba(39, 45, 57, 0.28);
  opacity: 1;
  backdrop-filter: blur(14px) saturate(0.88);
  transition:
    opacity 280ms ease,
    overlay 280ms allow-discrete,
    display 280ms allow-discrete;
}

.launch-dialog-content {
  position: relative;
  padding: 42px 44px 34px;
  background:
    radial-gradient(circle at 92% 3%, rgba(190, 220, 255, 0.32), transparent 29%),
    radial-gradient(circle at 4% 97%, rgba(204, 235, 217, 0.24), transparent 28%);
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(53, 62, 76, 0.1);
  border-radius: 50%;
  color: #687080;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: transform 260ms var(--spring), background-color 220ms ease;
}

.dialog-close:hover {
  transform: rotate(4deg) scale(1.06);
  background: rgba(255, 255, 255, 0.94);
}

.dialog-close svg {
  width: 17px;
  stroke-width: 1.7;
}

.launch-dialog-header {
  padding-right: 36px;
}

.download-status {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 17px;
  padding: 7px 11px 7px 8px;
  border: 1px solid rgba(71, 121, 180, 0.13);
  border-radius: 999px;
  color: #3f6f9f;
  background: rgba(190, 220, 255, 0.48);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.01em;
}

.download-status span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.download-status svg {
  width: 14px;
  stroke-width: 1.8;
}

.launch-dialog h2 {
  margin: 0;
  max-width: 13ch;
  color: #242b3a;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.launch-dialog-header > p {
  max-width: 520px;
  margin: 15px 0 0;
  color: #626b7b;
  font-size: 16px;
  letter-spacing: -0.012em;
  line-height: 1.5;
}

.launch-steps {
  display: grid;
  gap: 5px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.launch-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
}

.launch-step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 15px;
  box-shadow: 0 9px 18px rgba(73, 83, 96, 0.08), inset 0 1px rgba(255, 255, 255, 0.66);
}

.launch-step-icon svg {
  width: 24px;
  stroke-width: 1.55;
}

.step-yellow {
  color: #816522;
  background: var(--yellow);
}

.step-mint {
  color: #32715c;
  background: var(--mint);
}

.step-lilac {
  color: #6153a2;
  background: #ddd8ff;
}

.launch-steps li > span:last-child {
  display: grid;
  gap: 4px;
}

.launch-steps strong {
  color: #35415a;
  font-size: 15px;
  letter-spacing: -0.016em;
}

.launch-steps small {
  color: #697284;
  font-size: 13px;
  line-height: 1.42;
}

.launch-dialog-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.privacy-link,
.dialog-done {
  min-height: 48px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 700;
}

.privacy-link {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(44, 33, 126, 0.1);
  color: #fff;
  background: var(--indigo);
  box-shadow: 0 13px 26px rgba(44, 33, 126, 0.2);
  text-decoration: none;
  transition: transform 280ms var(--spring), box-shadow 280ms var(--spring);
}

.privacy-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(44, 33, 126, 0.24);
}

.privacy-link > svg:first-child {
  width: 18px;
  stroke-width: 1.6;
}

.privacy-arrow {
  width: 17px;
  margin-left: auto;
  stroke-width: 1.7;
}

.dialog-done {
  padding: 12px 18px;
  border: 1px solid rgba(53, 62, 76, 0.12);
  color: #596273;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: transform 260ms var(--spring), background-color 220ms ease;
}

.dialog-done:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96);
}

.launch-dialog-footnote {
  margin: 18px 0 0;
  color: #8a92a0;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1180px) {
  .hero {
    left: 37.5%;
    width: 48vw;
  }

  .panel-object {
    right: 5.8%;
  }

  .icon-object {
    left: 4.5%;
  }

  .windows-object {
    right: 3.8%;
  }

  .maker-object {
    left: 35%;
  }

  .edge-tab {
    right: calc(100% - 12px);
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .icon-object {
    top: 3.5%;
  }

  .shortcut-object,
  .windows-object {
    top: 4%;
  }

  .panel-object {
    top: 25%;
  }

  .edge-tab {
    right: calc(100% - 12px);
  }

  .maker-object {
    bottom: 2.8%;
  }

  .mini-app {
    transform-origin: right center;
    scale: 0.92;
  }
}

@media (max-width: 900px) {
  .desk {
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    gap: 22px;
    overflow: hidden;
    padding: 34px 20px 28px;
  }

  .desk-glow {
    display: none;
  }

  .hero,
  .desk-object {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    rotate: 0deg;
    transform: none;
  }

  .hero {
    order: 1;
    padding: 22px 2px 14px;
  }

  .eyebrow {
    margin-bottom: 13px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(42px, 11.5vw, 66px);
  }

  .hero-copy {
    margin-top: 21px;
    font-size: 17px;
  }

  .hero-meta {
    margin-top: 16px;
  }

  .icon-object {
    order: 2;
  }

  .icon-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding-left: 2px;
  }

  .icon-card img {
    width: 88px;
  }

  .icon-card figcaption {
    font-size: 12px;
  }

  .hero-download {
    width: 100%;
    min-width: 0;
  }

  .panel-object {
    order: 3;
  }

  .mini-app {
    width: 100%;
  }

  .shortcut-object {
    order: 4;
  }

  .shortcut-card {
    justify-content: space-between;
  }

  .windows-object {
    order: 5;
  }

  .windows-sticker {
    width: fit-content;
  }

  .maker-object {
    order: 6;
  }

  .maker-tag {
    width: fit-content;
  }

  .edge-tab {
    display: none;
  }

  .mobile-footnote {
    order: 7;
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 14px auto 0;
    color: #69717e;
    font-size: 12px;
    text-align: center;
  }

}

@media (max-width: 520px) {
  .desk {
    gap: 18px;
    padding-inline: 14px;
  }

  .hero {
    padding-inline: 5px;
  }

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

  .windows-sticker,
  .maker-tag {
    width: 100%;
  }

  .maker-tag {
    justify-content: center;
  }

  .launch-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 24px;
  }

  .launch-dialog-content {
    padding: 31px 20px 24px;
  }

  .dialog-close {
    top: 15px;
    right: 15px;
  }

  .launch-dialog-header {
    padding-right: 26px;
  }

  .launch-dialog h2 {
    max-width: 10ch;
    font-size: 31px;
  }

  .launch-dialog-header > p {
    font-size: 14px;
  }

  .launch-steps {
    margin-top: 20px;
  }

  .launch-steps li {
    align-items: start;
    gap: 12px;
    padding: 9px 0;
  }

  .launch-step-icon {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .launch-step-icon svg {
    width: 22px;
  }

  .launch-steps strong {
    font-size: 14px;
  }

  .launch-steps small {
    font-size: 12px;
  }

  .launch-dialog-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 20px;
  }

  .privacy-link,
  .dialog-done {
    width: 100%;
  }
}

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

  .parallax-layer {
    transform: none !important;
    will-change: auto;
  }

  .desk-object:hover .object-surface,
  .desk-object:focus-within .object-surface {
    transform: none;
  }
}
