@font-face {
  font-family: "Julius Sans One";
  src: url("/assets/fonts/JuliusSansOne-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Italiana";
  src: url("/assets/fonts/Italiana-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "SkyHeart Clear Serif SC";
  src: url("/assets/fonts/SkyHeartClearSerifSC-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Zen Kurenaido";
  src: url("/assets/fonts/ZenKurenaido-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Gothic A1";
  src: url("/assets/fonts/GothicA1-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Baloo Bhaijaan 2";
  src: url("/assets/fonts/BalooBhaijaan2-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --background: #101011;
  --surface: #171719;
  --surface-strong: #202023;
  --ink: #f2f2f2;
  --muted: #b7b7bb;
  --quiet: #929297;
  --line: #38383d;
  --red: #e30613;
  --blue: #0055cc;
  --blue-active: #1268e4;
  --yellow: #ffd100;
  --header-height: 72px;
  color-scheme: dark;
  font-family: "Julius Sans One", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
  color: var(--ink);
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--ink);
  font-family: inherit;
  font-weight: 400;
  letter-spacing: 0;
}

body.legal-page,
body.support-page {
  font-family: "Italiana", Georgia, serif;
}

html[data-lang="zh"] body {
  font-family: "SkyHeart Clear Serif SC", "Songti SC", serif;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(24px, 3.25vw, 52px);
  border-bottom: 1px solid var(--line);
  background: var(--background);
}

.brand-mark {
  flex: 0 0 auto;
  display: grid;
  width: 52px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-symbol {
  display: block;
  width: 44px;
  height: 40px;
  background: currentColor;
  -webkit-mask-image: url("/assets/brand/e1-mark.png");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url("/assets/brand/e1-mark.png");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: color 180ms ease;
}

.brand-mark:hover .brand-symbol,
.brand-mark:focus-visible .brand-symbol {
  color: var(--red);
}

.site-nav {
  min-width: 0;
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: clamp(22px, 2.7vw, 44px);
  white-space: nowrap;
}

.site-nav a,
.language-toggle {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.language-toggle {
  appearance: none;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
}

.home-main {
  min-height: calc(100dvh - var(--header-height));
}

.home-hero {
  min-height: calc(100dvh - var(--header-height) - 108px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  min-width: 0;
  grid-column: 1 / span 7;
  align-self: center;
  padding: clamp(54px, 7vw, 108px) clamp(30px, 4.6vw, 76px);
}

.hero-copy h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(64px, 7.2vw, 116px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: 0;
}

.hero-description {
  max-width: 590px;
  margin: clamp(34px, 4vw, 58px) 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.55;
}

.primary-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  color: var(--ink);
  background: var(--blue);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, transform 120ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  border-color: var(--blue-active);
  background: var(--blue-active);
}

.primary-cta:active {
  transform: translateY(1px) scale(0.985);
}

.device-stage {
  position: relative;
  min-width: 0;
  min-height: 620px;
  grid-column: 8 / -1;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.iphone {
  position: relative;
  z-index: 1;
  height: min(calc(100dvh - var(--header-height) - 52px), 720px);
  min-height: 480px;
  aspect-ratio: 1350 / 2760;
}

.iphone-hardware {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.iphone-screen-mask {
  position: absolute;
  top: 2.5%;
  left: 5.333333%;
  width: 89.333333%;
  height: 95%;
  overflow: hidden;
  -webkit-mask-image: url("/assets/apple/iphone-17-pro-screen-mask.png");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("/assets/apple/iphone-17-pro-screen-mask.png");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.iphone-screen-mask img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

.principle-strip {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.principle {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px clamp(24px, 3.25vw, 52px);
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle-label,
.section-label,
.shortcut-count,
.home-link-index {
  color: var(--quiet);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.principle-value {
  color: var(--ink);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.35;
}

.home-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--line);
  gap: 1px;
  border-bottom: 1px solid var(--line);
}

.home-link {
  min-width: 0;
  min-height: 176px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 26px clamp(22px, 2.8vw, 42px);
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 120ms ease;
}

.home-link:hover,
.home-link:focus-visible {
  background: var(--surface-strong);
}

.home-link:active {
  transform: translateY(1px);
}

.home-link-primary,
.home-link-primary:hover,
.home-link-primary:focus-visible {
  background: var(--blue);
}

.home-link-primary .home-link-index {
  color: var(--ink);
}

.home-link strong {
  align-self: center;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.05;
}

.home-link > span:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.home-link-primary > span:last-child {
  color: var(--ink);
}

.site-footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(24px, 3.25vw, 52px);
  color: var(--quiet);
  background: var(--background);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--muted);
  text-underline-offset: 4px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .footer-brand-symbol {
  width: 29px;
  height: 27px;
  color: var(--muted);
}

.shortcuts-main {
  min-height: calc(100dvh - var(--header-height));
}

.shortcuts-hero {
  min-height: clamp(300px, 39dvh, 410px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(48px, 6vw, 90px) clamp(24px, 3.25vw, 52px) clamp(38px, 4vw, 62px);
}

.shortcuts-heading h1 {
  margin: 0;
  font-size: clamp(66px, 7.4vw, 112px);
  font-weight: 400;
  line-height: 0.91;
}

.shortcuts-heading {
  min-width: 0;
}

.shortcuts-heading p {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
}

.shortcut-count {
  display: block;
  margin-top: 18px;
}

.shortcut-app-icon {
  flex: 0 0 auto;
  width: clamp(82px, 8vw, 120px);
  height: auto;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.shortcut-card {
  min-width: 0;
  min-height: clamp(92px, 11dvh, 118px);
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  column-gap: 16px;
  padding: 18px clamp(18px, 2.2vw, 32px);
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 120ms ease;
}

.shortcut-card:nth-child(n + 9) {
  grid-column: span 4;
}

.shortcut-card:hover,
.shortcut-card:focus-visible {
  background: var(--surface-strong);
}

.shortcut-card:active {
  transform: translateY(1px);
}

.shortcut-card.is-recommended,
.shortcut-card.is-recommended:hover,
.shortcut-card.is-recommended:focus-visible {
  background: var(--blue);
}

.shortcut-code {
  grid-column: 1;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1;
}

.is-recommended .shortcut-code {
  color: var(--ink);
}

.shortcut-name {
  min-width: 0;
  grid-column: 1;
  align-self: center;
  overflow-wrap: anywhere;
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 400;
  line-height: 1.08;
}

.shortcut-card[lang="zh-Hans"] .shortcut-name {
  font-family: "SkyHeart Clear Serif SC", "Songti SC", serif;
  font-weight: 400;
}

.shortcut-card[lang="ja"] .shortcut-name {
  font-family: "Zen Kurenaido", "Hiragino Mincho ProN", serif;
  font-weight: 400;
}

.shortcut-card[lang="ko"] .shortcut-name {
  font-family: "Gothic A1", "Apple SD Gothic Neo", sans-serif;
  font-weight: 400;
}

.shortcut-card[lang="ru"] .shortcut-name {
  font-family: "Zen Kurenaido", serif;
}

.shortcut-card[lang="ar"] .shortcut-name {
  font-family: "Baloo Bhaijaan 2", "Geeza Pro", sans-serif;
  font-weight: 400;
  text-align: left;
}

.shortcut-action {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}

.shortcut-card:hover .shortcut-action,
.shortcut-card:focus-visible .shortcut-action {
  color: var(--yellow);
  transform: translateX(-2px);
}

.is-recommended .shortcut-action,
.is-recommended:hover .shortcut-action,
.is-recommended:focus-visible .shortcut-action {
  color: var(--ink);
}

.shortcut-status {
  grid-column: 1;
  color: var(--ink);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
}

.legal-main,
.support-main {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(24px, 3.25vw, 52px);
}

.document-hero,
.support-hero {
  min-height: clamp(420px, 60dvh, 620px);
  display: grid;
  align-content: center;
  padding: clamp(72px, 9vw, 140px) 0;
}

.support-hero {
  row-gap: clamp(32px, 4vw, 56px);
}

.document-hero h1,
.support-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(70px, 9vw, 138px);
  font-weight: 400;
  line-height: 0.9;
}

.document-intro {
  max-width: 720px;
  margin: clamp(32px, 4vw, 56px) 0 0;
}

.document-intro p,
.support-hero > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.6;
}

.document-intro span {
  display: block;
  margin-top: 24px;
  color: var(--quiet);
  font-size: 11px;
  text-transform: uppercase;
}

.legal-document {
  border-bottom: 1px solid var(--line);
}

.legal-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  padding: clamp(48px, 6vw, 82px) 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  grid-column: 1 / span 4;
  margin: 0;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.15;
}

.legal-copy {
  min-width: 0;
  grid-column: 5 / -1;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.7;
}

.legal-copy p {
  margin: 0 0 22px;
}

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

.legal-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 42px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.legal-copy li {
  position: relative;
  padding-left: 18px;
}

.legal-copy li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--red);
  content: "";
}

.legal-copy a {
  color: var(--ink);
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-summary {
  position: relative;
  margin-right: calc(clamp(24px, 3.25vw, 52px) * -1);
  margin-left: calc(clamp(24px, 3.25vw, 52px) * -1);
  padding-right: clamp(24px, 3.25vw, 52px);
  padding-left: clamp(24px, 3.25vw, 52px);
  border-top: 0;
  background: var(--blue);
}

.legal-summary .legal-copy li,
.legal-summary .legal-copy p {
  color: var(--ink);
}

.legal-summary .legal-copy li::before {
  background: var(--yellow);
}

.support-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-guidance,
.support-channel {
  min-height: 330px;
  display: grid;
  align-content: start;
  padding: clamp(38px, 5vw, 72px);
}

.support-guidance {
  border-right: 1px solid var(--line);
}

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

.support-guidance p {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.45;
}

.support-guidance .support-privacy-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
}

.support-channel .section-label {
  color: var(--ink);
}

.support-email {
  margin-top: 30px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1.2;
  text-underline-offset: 6px;
}

.support-channel .primary-cta {
  width: fit-content;
  margin-top: 44px;
  border-color: var(--ink);
  color: var(--background);
  background: var(--ink);
}

.support-channel .primary-cta:hover,
.support-channel .primary-cta:focus-visible {
  border-color: var(--yellow);
  background: var(--yellow);
}

.support-policy-link {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  color: var(--ink);
  text-decoration: none;
}

.support-policy-link span:first-child {
  font-size: clamp(22px, 2vw, 30px);
}

.support-policy-link span:last-child {
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
}

.support-policy-link:hover span:first-child,
.support-policy-link:focus-visible span:first-child {
  color: var(--red);
}

@media (max-width: 1100px) {
  .home-hero {
    min-height: 700px;
  }

  .hero-copy {
    grid-column: 1 / span 7;
    padding-right: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(62px, 8vw, 92px);
  }

  .device-stage {
    grid-column: 8 / -1;
  }

  .iphone {
    height: min(620px, calc(100dvh - 120px));
  }

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

  .shortcut-card {
    grid-column: span 4;
  }

  .shortcut-card:nth-child(n + 9) {
    grid-column: span 4;
  }

  .shortcut-card:last-child {
    grid-column: span 8;
  }

  .legal-copy ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

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

  .brand-mark {
    width: 42px;
    height: 40px;
  }

  .brand-symbol {
    width: 37px;
    height: 34px;
  }

  .site-nav {
    gap: clamp(12px, 3.8vw, 20px);
  }

  .site-nav a,
  .language-toggle {
    font-size: 10px;
  }

  .site-nav .nav-external {
    display: none;
  }

  .home-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    padding: 56px 20px 44px;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .hero-description {
    margin-top: 30px;
    font-size: 17px;
  }

  .device-stage {
    min-height: 0;
    padding: 32px 20px;
    overflow: visible;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .iphone {
    width: min(72vw, 300px);
    height: auto;
    min-height: 0;
  }

  .principle-strip {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 92px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

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

  .home-link {
    min-height: 150px;
    padding: 20px;
  }

  .home-link strong {
    font-size: 22px;
  }

  .site-footer {
    min-height: 100px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 24px 20px;
  }

  .shortcuts-hero {
    position: relative;
    min-height: 260px;
    display: block;
    padding: 42px 20px 28px;
  }

  .shortcuts-heading h1 {
    font-size: clamp(54px, 15vw, 66px);
  }

  .shortcuts-heading p {
    max-width: 270px;
    margin-top: 20px;
    font-size: 14px;
  }

  .shortcut-count {
    margin-top: 12px;
    font-size: 9px;
  }

  .shortcut-app-icon {
    position: absolute;
    top: 42px;
    right: 20px;
    width: 62px;
  }

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

  .shortcut-card,
  .shortcut-card:nth-child(n + 9) {
    min-height: 78px;
    grid-column: span 1;
    padding: 12px 14px;
  }

  .shortcut-card:last-child {
    grid-column: 1 / -1;
  }

  .shortcut-name {
    font-size: clamp(18px, 5.2vw, 21px);
  }

  .shortcut-code,
  .shortcut-status {
    font-size: 8px;
  }

  .shortcut-action {
    font-size: 10px;
  }

  .legal-main,
  .support-main {
    padding: 0 20px;
  }

  .document-hero,
  .support-hero {
    min-height: 390px;
    padding: 64px 0;
  }

  .document-hero h1,
  .support-hero h1 {
    font-size: clamp(60px, 17vw, 78px);
  }

  .document-intro {
    margin-top: 30px;
  }

  .support-hero {
    row-gap: 30px;
  }

  .document-intro p,
  .support-hero > p {
    font-size: 17px;
  }

  .legal-section {
    display: block;
    padding: 42px 0;
  }

  .legal-section h2 {
    margin-bottom: 28px;
    font-size: 27px;
  }

  .legal-copy p,
  .legal-copy li {
    font-size: 18px;
  }

  .legal-summary {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .support-contact {
    grid-template-columns: 1fr;
  }

  .support-guidance,
  .support-channel {
    min-height: 280px;
    padding: 38px 0;
  }

  .support-guidance {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .support-channel {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .support-guidance p {
    font-size: 22px;
  }

  .support-policy-link {
    min-height: 138px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .support-policy-link span:last-child {
    justify-self: auto;
  }
}

@media (max-width: 390px) {
  .site-nav {
    gap: 11px;
  }

  .site-nav a,
  .language-toggle {
    font-size: 9px;
  }

  .home-link {
    min-height: 142px;
    padding: 18px;
  }

  .home-link > span:last-child {
    font-size: 11px;
  }

  .shortcuts-hero {
    gap: 18px;
  }

  .shortcut-app-icon {
    top: 42px;
    right: 20px;
    width: 54px;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .shortcuts-hero {
    min-height: 220px;
    padding: 28px 20px 18px;
  }

  .shortcuts-heading h1 {
    font-size: 48px;
  }

  .shortcuts-heading p {
    max-width: 250px;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.4;
  }

  .shortcut-count {
    margin-top: 8px;
    font-size: 8px;
  }

  .shortcut-app-icon {
    top: 28px;
    width: 48px;
  }

  .shortcut-card,
  .shortcut-card:nth-child(n + 9) {
    min-height: 62px;
    padding: 8px 12px;
  }

  .shortcut-name {
    font-size: 18px;
  }
}

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