:root {
  --bg: #ffffff;
  --bg-soft: #f2f8ff;
  --bg-blue: #eaf5ff;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #10213b;
  --text-soft: #5f6d81;
  --muted: #8a97aa;
  --border: #dbe7f3;
  --blue: #2f80ed;
  --blue-dark: #1764ce;
  --teal: #20c4c8;
  --red: #ff4b55;
  --green: #24b46b;
  --orange: #ff9238;
  --violet: #7d5cff;
  --shadow-sm: 0 10px 24px rgba(29, 52, 84, 0.08);
  --shadow-md: 0 18px 48px rgba(29, 52, 84, 0.13);
  --shadow-device: 0 26px 72px rgba(10, 31, 55, 0.24);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(219, 231, 243, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  color: var(--text);
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-download {
  padding: 12px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(47, 128, 237, 0.24);
}

.nav-download:hover {
  color: #fff;
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
}

.section-blue {
  background:
    linear-gradient(180deg, rgba(234, 245, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid #e6f0fa;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 34px 0 20px;
}

.hero-copy {
  padding-top: 22px;
}

.hero-copy h1 {
  max-width: 590px;
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

.headline-rule {
  width: 84px;
  height: 4px;
  margin: 22px 0 28px;
  background: var(--teal);
  border-radius: 2px;
}

.hero-copy p {
  max-width: 545px;
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button svg {
  width: 21px;
  height: 21px;
  margin-right: 10px;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(47, 128, 237, 0.25);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--blue);
  background: #fff;
  border-color: var(--blue);
}

.button-secondary:hover {
  border-color: var(--blue-dark);
  color: var(--blue-dark);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(82px, 1fr));
  gap: 18px;
  max-width: 540px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.proof-list svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--blue);
  background: #eaf4ff;
  border-radius: 999px;
}

.proof-list li:nth-child(1) svg {
  color: var(--green);
  background: #e8f8f0;
}

.proof-list li:nth-child(3) svg {
  color: #4e6fee;
  background: #eef3ff;
}

.proof-list li:nth-child(4) svg {
  color: #4b87ff;
  background: #edf5ff;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.phone {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 10px solid #111927;
  border-bottom-width: 12px;
  border-radius: 36px;
  box-shadow: var(--shadow-device);
}

.phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 2;
  width: 9px;
  height: 9px;
  background: #111927;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-side {
  position: absolute;
  top: 72px;
  width: 208px;
  height: 454px;
  opacity: 0.98;
}

.phone-left {
  left: 0;
  transform: rotate(-4deg);
}

.phone-main {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 244px;
  height: 520px;
  transform: translateX(-50%);
}

.phone-right {
  right: 0;
  transform: rotate(4deg);
}

.formats-section,
.tools-section,
.screenshots-section,
.faq-section,
.download-section {
  padding: 88px 0;
}

.formats-section {
  padding-top: 44px;
}

.section-heading {
  max-width: 620px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: 0;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.format-card {
  min-height: 236px;
  padding: 34px 28px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.format-card h3 {
  margin: 20px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.format-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.file-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 66px;
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 12px 20px rgba(16, 33, 59, 0.12);
}

.file-mark::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 16px solid rgba(255, 255, 255, 0.72);
  border-left: 16px solid transparent;
}

.file-pdf {
  background: var(--red);
  font-size: 16px;
}

.file-word {
  background: var(--blue);
  font-size: 27px;
}

.file-excel {
  background: var(--green);
  font-size: 27px;
}

.file-ppt {
  background: var(--orange);
  font-size: 27px;
}

.features-section {
  padding: 96px 0;
  border-top: 1px solid #e8f2fb;
  border-bottom: 1px solid #e8f2fb;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 16px 1fr;
  column-gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(219, 231, 243, 0.95);
}

.feature-list article:last-child {
  border-bottom: 0;
}

.feature-dot {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
}

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

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

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

.feature-list h3,
.annotation-list h3,
.tool-item h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}

.feature-list p,
.annotation-list p,
.tool-item p {
  margin: 7px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.feature-media {
  position: relative;
  min-height: 620px;
}

.phone-static {
  position: absolute;
  right: 86px;
  top: 0;
  width: 270px;
  height: 586px;
  z-index: 2;
}

.mini-screen {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 250px;
  height: 420px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.mini-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.tool-item {
  min-height: 166px;
  padding: 24px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.tool-item svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 8px;
}

.tool-item.blue svg {
  color: var(--blue);
  background: #e9f3ff;
}

.tool-item.violet svg {
  color: var(--violet);
  background: #f0ecff;
}

.tool-item.red svg {
  color: var(--red);
  background: #fff0f1;
}

.tool-item.green svg {
  color: var(--green);
  background: #e9f8f0;
}

.tool-item.orange svg {
  color: var(--orange);
  background: #fff4e8;
}

.tools-media {
  min-height: 590px;
  display: grid;
  place-items: center;
}

.phone-tools {
  width: 280px;
  height: 590px;
  border-color: #121c2c;
}

.reading-section {
  padding: 96px 0;
  border-top: 1px solid #e8f2fb;
  border-bottom: 1px solid #e8f2fb;
}

.reading-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: center;
}

.annotation-list {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.annotation-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.annotation-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--teal);
  background: #e7faf8;
  border-radius: var(--radius);
}

.annotation-list article:nth-child(2) span {
  color: var(--orange);
  background: #fff4e7;
}

.annotation-list article:nth-child(3) span {
  color: var(--blue);
  background: #edf5ff;
}

.annotation-list article:nth-child(4) span {
  color: var(--violet);
  background: #f2efff;
}

.annotation-list svg {
  width: 24px;
  height: 24px;
}

.wide-device {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 720px;
  height: 392px;
  overflow: hidden;
  background: #fff;
  border: 12px solid #111927;
  border-radius: 42px;
  box-shadow: var(--shadow-device);
}

.wide-device div {
  overflow: hidden;
  border-right: 1px solid var(--border);
}

.wide-device div:last-child {
  border-right: 0;
}

.wide-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 42px;
}

.screenshot-card {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.screenshot-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  background: var(--bg-soft);
}

.screenshot-card.tall img {
  height: 410px;
}

.screenshot-card.short img {
  height: 300px;
}

.screenshot-card figcaption {
  padding: 15px 16px 17px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.download-section {
  padding-top: 70px;
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 42px;
  background: var(--bg-blue);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.download-brand {
  display: flex;
  align-items: center;
  gap: 26px;
}

.download-brand img {
  width: 76px;
  height: 76px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.download-brand h2 {
  max-width: 520px;
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
}

.download-brand p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--text-soft);
}

.download-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.store-button {
  display: grid;
  align-content: center;
  min-width: 162px;
  min-height: 54px;
  padding: 8px 18px;
  color: #fff;
  background: #05080f;
  border-radius: var(--radius);
  line-height: 1.1;
}

.store-button span {
  font-size: 10px;
  font-weight: 750;
}

.store-button strong {
  font-size: 18px;
}

.faq-section {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--text-soft);
  font-size: 15px;
}

.site-footer {
  padding: 60px 0 42px;
  background: #f7fbff;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 0.85fr;
  gap: 48px;
}

.footer-brand {
  font-size: 20px;
}

.site-footer p {
  max-width: 390px;
  margin: 18px 0 34px;
  color: var(--text-soft);
  font-size: 14px;
}

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

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 850;
}

.site-footer nav,
.socials {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer nav a {
  color: var(--text-soft);
  font-size: 14px;
}

.site-footer nav a:hover {
  color: var(--blue);
}

.socials p {
  margin: 0 0 12px;
}

.socials div {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-page {
  background: #f7fbff;
}

.legal-nav {
  gap: 24px;
}

.legal-main {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-document {
  padding: 54px 58px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-document h1 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 42px;
  line-height: 1.14;
}

.legal-document h2 {
  margin: 38px 0 14px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.25;
}

.legal-document h3 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
}

.legal-document p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}

.legal-document a {
  color: var(--blue);
  font-weight: 700;
}

.legal-subtitle {
  color: var(--text) !important;
  font-size: 18px !important;
  font-weight: 800;
}

.legal-meta-line {
  margin-bottom: 6px !important;
  color: var(--muted) !important;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 56px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .phone-left {
    left: 12%;
  }

  .phone-right {
    right: 12%;
  }

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

  .feature-grid,
  .tools-grid,
  .reading-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 590px;
  }

  .phone-static {
    left: 50%;
    right: auto;
    transform: translateX(-32%);
  }

  .mini-screen {
    left: 12%;
  }

  .tools-media {
    min-height: 520px;
  }

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

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

  .download-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: var(--radius);
  }

  .site-nav a:hover {
    background: var(--bg-soft);
  }

  .nav-download {
    margin-top: 8px;
    text-align: center;
  }

  .hero-grid {
    padding: 42px 0 36px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .proof-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 42px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .phone-main {
    width: 234px;
    height: 500px;
  }

  .phone-side {
    top: 124px;
    width: 190px;
    height: 410px;
  }

  .phone-left {
    left: 0;
  }

  .phone-right {
    right: 0;
  }

  .formats-section,
  .tools-section,
  .screenshots-section,
  .faq-section,
  .download-section,
  .features-section,
  .reading-section {
    padding: 64px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .feature-media {
    min-height: 540px;
  }

  .phone-static {
    width: 238px;
    height: 510px;
  }

  .mini-screen {
    width: 204px;
    height: 330px;
    left: 0;
  }

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

  .wide-device {
    height: 330px;
    border-radius: 32px;
  }

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

  .download-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .legal-nav {
    display: none;
  }

  .legal-main {
    width: min(100% - 32px, 920px);
    padding: 48px 0 72px;
  }

  .legal-document {
    padding: 34px 24px;
  }

  .legal-document h1 {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: 32px;
    line-height: 1.16;
  }

  .headline-rule {
    margin: 18px 0 22px;
  }

  .download-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-height: 50px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-actions .button svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .download-actions .button,
  .store-button {
    width: 100%;
  }

  .proof-list {
    display: none;
  }

  .hero-grid {
    gap: 22px;
    padding: 30px 0 18px;
  }

  .hero-visual {
    min-height: 300px;
    margin-inline: -12px;
  }

  .phone {
    border-width: 8px;
    border-bottom-width: 10px;
    border-radius: 30px;
  }

  .phone-main {
    width: 148px;
    height: 314px;
  }

  .phone-side {
    top: 58px;
    width: 116px;
    height: 252px;
  }

  .phone-left {
    left: -10px;
  }

  .phone-right {
    right: -10px;
  }

  .proof-list,
  .format-grid,
  .tool-list,
  .screenshot-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: 0;
  }

  .formats-section {
    padding-top: 36px;
  }

  .feature-media {
    min-height: 490px;
  }

  .phone-static {
    width: 212px;
    height: 454px;
    transform: translateX(-24%);
  }

  .mini-screen {
    width: 172px;
    height: 286px;
  }

  .tools-media {
    min-height: 480px;
  }

  .phone-tools {
    width: 228px;
    height: 480px;
  }

  .wide-device {
    grid-template-columns: 1fr;
    height: 520px;
    border-radius: 30px;
  }

  .wide-device div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .wide-device div:last-child {
    border-bottom: 0;
  }

  .screenshot-card img,
  .screenshot-card.tall img,
  .screenshot-card.short img {
    height: 430px;
  }

  .download-panel {
    padding: 28px 22px;
  }

  .download-brand h2 {
    font-size: 25px;
  }
}

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