:root {
  --paper: #090713;
  --ink: #f7f4ff;
  --flame: #9b5cff;
  --flame-dark: #4b22bd;
  --electric: #2f7dff;
  --silver: #e7e4f3;
  --graphite: #171422;
  --muted: #aaa4bf;
  --disabled: #7e778f;
  --line: rgba(231, 228, 243, 0.15);
  --surface: rgba(20, 17, 31, 0.72);
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.52);
  color: var(--ink);
  background: var(--paper);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(155, 92, 255, 0.2) 0%, transparent 32%),
    linear-gradient(245deg, rgba(47, 125, 255, 0.16) 0%, transparent 34%),
    linear-gradient(180deg, #12101f 0%, var(--paper) 46%, #0c0a16 100%);
}

body::selection {
  color: #fff;
  background: var(--flame);
}

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

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

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: auto;
  padding: 20px clamp(18px, 4vw, 56px) 14px;
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  inset: 6vh 0 auto;
  z-index: -1;
  width: 100%;
  height: min(360px, 42vh);
  background:
    radial-gradient(circle at 50% 18%, rgba(155, 92, 255, 0.34), transparent 28%),
    linear-gradient(90deg, transparent, rgba(155, 92, 255, 0.18), rgba(47, 125, 255, 0.12), transparent),
    linear-gradient(180deg, transparent, rgba(231, 228, 243, 0.05), transparent);
  filter: blur(38px);
  animation: pulse 5.8s ease-in-out infinite;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 100%);
  height: 48px;
  margin: 0 auto;
}

.brand,
.topbar__link {
  border-radius: 999px;
  outline-offset: 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(155, 92, 255, 0.34);
}

.topbar__link {
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  background: rgba(20, 17, 31, 0.62);
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.topbar__link:hover {
  border-color: rgba(155, 92, 255, 0.62);
  background: rgba(31, 26, 48, 0.84);
  transform: translateY(-1px);
}

.hero__content {
  display: grid;
  justify-items: center;
  align-self: center;
  width: min(940px, 100%);
  margin: 0 auto;
  padding: 38px 0 8px;
  text-align: center;
}

.hero__icon-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(231, 228, 243, 0.24);
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(231, 228, 243, 0.14), rgba(155, 92, 255, 0.04)),
    linear-gradient(180deg, rgba(47, 125, 255, 0.08), rgba(9, 7, 19, 0.1));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.44),
    0 0 62px rgba(155, 92, 255, 0.3),
    0 0 38px rgba(47, 125, 255, 0.14),
    inset 0 1px 0 rgba(231, 228, 243, 0.28);
  animation: floatIcon 5.2s ease-in-out infinite;
}

.hero__icon-frame::before {
  display: none;
}

.hero__icon {
  position: relative;
  width: 186px;
  height: 186px;
  border-radius: 42px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.4);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 10px;
  color: var(--silver);
  font-size: 17px;
  font-weight: 850;
}

.hero__eyebrow::before {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--flame), var(--electric));
  box-shadow: 0 0 18px rgba(155, 92, 255, 0.46);
  content: "";
}

h1 {
  margin: 0;
  font-size: 136px;
  font-weight: 850;
  line-height: 0.82;
  letter-spacing: 0;
}

.hero__copy {
  width: min(680px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.32;
}

.download-counter {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: 26px 0 0;
  padding: 10px 20px;
  border: 1px solid rgba(231, 228, 243, 0.14);
  border-radius: 18px;
  background: var(--surface);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(231, 228, 243, 0.14);
  backdrop-filter: blur(18px);
}

.download-counter__meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.download-counter__value {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
}

.download-counter__number {
  color: var(--flame);
  font-size: 31px;
  font-weight: 850;
  line-height: 1;
}

.download-counter__label {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(860px, 100%);
  margin-top: 18px;
  padding: 8px;
  border: 1px solid rgba(231, 228, 243, 0.14);
  border-radius: 26px;
  background: rgba(20, 17, 31, 0.5);
  box-shadow:
    0 26px 82px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(231, 228, 243, 0.12);
  backdrop-filter: blur(18px);
}

.download-helper,
.trust-line {
  width: min(760px, 100%);
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-line {
  margin-top: 6px;
  color: var(--silver);
}

.download-button {
  position: relative;
  display: grid;
  min-height: 82px;
  align-content: center;
  justify-items: start;
  gap: 4px;
  overflow: hidden;
  border: 1px solid rgba(231, 228, 243, 0.13);
  border-radius: 19px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(231, 228, 243, 0.08);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(231, 228, 243, 0.08);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.download-button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(155, 92, 255, 0.17), rgba(47, 125, 255, 0.09), transparent 58%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.download-button--primary::before {
  position: absolute;
  inset: -80% auto -80% -36%;
  z-index: 1;
  width: 28%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  opacity: 0;
  transform: rotate(18deg) translateX(0);
  transition:
    opacity 180ms ease,
    transform 420ms ease;
}

.download-button:hover {
  border-color: rgba(155, 92, 255, 0.56);
  background: rgba(231, 228, 243, 0.13);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.download-button:hover::after {
  opacity: 1;
}

.download-button--primary:hover::before {
  opacity: 1;
  transform: rotate(18deg) translateX(520%);
}

.download-button:active {
  transform: translateY(0) scale(0.99);
}

.download-button:focus-visible,
.topbar__link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(155, 92, 255, 0.58);
}

.download-button--primary {
  border-color: rgba(231, 228, 243, 0.32);
  color: #fff;
  background:
    radial-gradient(circle at 24% 0%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #bd75ff 0%, var(--flame) 42%, #246dff 100%);
  box-shadow:
    0 26px 64px rgba(155, 92, 255, 0.38),
    0 16px 48px rgba(47, 125, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.download-button--primary::after {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 52%);
  opacity: 1;
}

.download-button--primary:hover {
  border-color: var(--flame);
  background:
    linear-gradient(135deg, #c078ff 0%, #9b5cff 42%, #2f7dff 100%);
  box-shadow:
    0 28px 70px rgba(155, 92, 255, 0.42),
    0 18px 58px rgba(47, 125, 255, 0.22);
}

.download-button--disabled,
.download-button--disabled:hover {
  border-color: rgba(231, 228, 243, 0.1);
  color: var(--disabled);
  background:
    linear-gradient(135deg, rgba(231, 228, 243, 0.09), rgba(126, 119, 143, 0.08));
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.download-button--disabled:active {
  transform: none;
}

.download-button--disabled::after {
  display: none;
}

.download-button__badge,
.download-button__title,
.download-button__meta,
.download-button__submeta {
  position: relative;
  z-index: 1;
}

.download-button__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 7px;
  border-radius: 999px;
  padding: 4px 8px;
  color: currentColor;
  background: rgba(231, 228, 243, 0.11);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.download-button--primary .download-button__badge {
  background: rgba(255, 255, 255, 0.2);
}

.download-button--disabled .download-button__badge {
  background: rgba(231, 228, 243, 0.08);
}

.download-button__title {
  font-size: 15px;
  font-weight: 850;
  line-height: 1.1;
}

.download-button__meta {
  color: currentColor;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.7;
}

.download-button__submeta {
  color: currentColor;
  font-size: 11px;
  font-weight: 750;
  opacity: 0.56;
}

.release-info,
.verification-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(760px, 100%);
  margin-top: 12px;
}

.verification-info {
  margin-top: 8px;
}

.release-info span,
.verification-info span {
  display: grid;
  gap: 3px;
  min-height: 48px;
  align-content: center;
  border: 1px solid rgba(231, 228, 243, 0.1);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(20, 17, 31, 0.42);
}

.verification-info span {
  min-height: 44px;
  background: rgba(9, 7, 19, 0.24);
}

.release-info strong,
.verification-info strong {
  color: var(--silver);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.release-info em,
.verification-info em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(1120px, calc(100% - 36px));
  margin: 12px auto 32px;
}

.feature-strip article {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  border: 1px solid rgba(231, 228, 243, 0.12);
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(231, 228, 243, 0.08), rgba(20, 17, 31, 0.7)),
    linear-gradient(135deg, rgba(155, 92, 255, 0.055), rgba(47, 125, 255, 0.03));
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(231, 228, 243, 0.07);
}

.feature-number,
.feature-category {
  position: relative;
  z-index: 1;
}

.feature-number {
  color: var(--flame);
  font-size: 12px;
  font-weight: 850;
}

.feature-category {
  display: inline-flex;
  width: fit-content;
  margin-left: 8px;
  border: 1px solid rgba(231, 228, 243, 0.1);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  background: rgba(231, 228, 243, 0.055);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.feature-mark {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(155, 92, 255, 0.38), rgba(47, 125, 255, 0.34)),
    var(--flame);
  box-shadow:
    0 10px 20px rgba(155, 92, 255, 0.11),
    0 6px 16px rgba(47, 125, 255, 0.08);
}

.feature-mark::after {
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-left: 0;
  border-bottom: 0;
  content: "";
  transform: rotate(45deg);
}

.feature-strip h2 {
  position: relative;
  z-index: 1;
  margin: 28px 0 9px;
  font-size: 22px;
  line-height: 1;
}

.feature-strip p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.product-preview {
  width: min(760px, calc(100% - 36px));
  margin: 8px auto 0;
}

.preview-window {
  overflow: hidden;
  border: 1px solid rgba(231, 228, 243, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(231, 228, 243, 0.11), rgba(20, 17, 31, 0.76)),
    linear-gradient(135deg, rgba(155, 92, 255, 0.11), rgba(47, 125, 255, 0.06));
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(231, 228, 243, 0.12);
  backdrop-filter: blur(18px);
}

.preview-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(231, 228, 243, 0.1);
}

.preview-titlebar strong {
  flex: 1;
  color: var(--silver);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.preview-titlebar > span {
  border: 1px solid rgba(231, 228, 243, 0.1);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  background: rgba(9, 7, 19, 0.22);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.preview-lights {
  display: inline-flex;
  gap: 7px;
}

.preview-lights span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(231, 228, 243, 0.26);
}

.preview-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.preview-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.preview-tabs span {
  overflow: hidden;
  border: 1px solid rgba(231, 228, 243, 0.08);
  border-radius: 999px;
  padding: 7px 8px;
  color: var(--muted);
  background: rgba(9, 7, 19, 0.22);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-tabs .is-active {
  border-color: rgba(155, 92, 255, 0.42);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(155, 92, 255, 0.5), rgba(47, 125, 255, 0.32)),
    rgba(231, 228, 243, 0.08);
  box-shadow: 0 10px 24px rgba(155, 92, 255, 0.16);
}

.preview-panel {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(231, 228, 243, 0.08);
  border-radius: 18px;
  padding: 10px;
  background:
    radial-gradient(circle at 12% 0%, rgba(155, 92, 255, 0.12), transparent 42%),
    rgba(9, 7, 19, 0.18);
}

.preview-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
  padding: 0 3px 4px;
}

.preview-summary strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.preview-summary em {
  border: 1px solid rgba(231, 228, 243, 0.1);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--silver);
  background: rgba(231, 228, 243, 0.06);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.preview-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(231, 228, 243, 0.09);
  border-radius: 14px;
  padding: 9px 11px;
  background:
    linear-gradient(90deg, rgba(155, 92, 255, 0.08), transparent 32%),
    rgba(9, 7, 19, 0.3);
  box-shadow: inset 0 1px 0 rgba(231, 228, 243, 0.05);
}

.preview-row strong {
  color: var(--ink);
  font-size: 14px;
}

.preview-row em {
  min-width: 68px;
  border: 1px solid rgba(231, 228, 243, 0.1);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  background: rgba(231, 228, 243, 0.06);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.preview-status {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--flame);
  box-shadow: 0 0 14px rgba(155, 92, 255, 0.34);
}

.preview-status--hot {
  background: linear-gradient(135deg, var(--flame), var(--electric));
}

.preview-status--cool {
  background: var(--electric);
  box-shadow: 0 0 14px rgba(47, 125, 255, 0.3);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 32px;
  border-top: 1px solid rgba(231, 228, 243, 0.1);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-footer strong {
  color: var(--silver);
  font-size: 14px;
}

.footer-love {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(231, 228, 243, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--silver);
  background:
    linear-gradient(135deg, rgba(155, 92, 255, 0.12), rgba(47, 125, 255, 0.06)),
    rgba(231, 228, 243, 0.035);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(231, 228, 243, 0.1);
}

.footer-love b {
  color: var(--ink);
  font-weight: 850;
}

.footer-heart {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 2px;
  background: linear-gradient(135deg, #c785ff, var(--flame) 55%, var(--electric));
  box-shadow:
    0 0 16px rgba(155, 92, 255, 0.42),
    0 0 12px rgba(47, 125, 255, 0.2);
  transform: rotate(-45deg);
}

.footer-heart::before,
.footer-heart::after {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: inherit;
  content: "";
}

.footer-heart::before {
  top: -5px;
  left: 0;
}

.footer-heart::after {
  top: 0;
  left: 5px;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.04);
  }
}

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

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-bottom: 8px;
  }

  .hero__content {
    padding-top: 42px;
  }

  .hero__icon-frame {
    width: 164px;
    height: 164px;
    border-radius: 34px;
  }

  .hero__icon {
    width: 148px;
    height: 148px;
  }

  .hero__eyebrow {
    font-size: 15px;
  }

  h1 {
    font-size: 100px;
  }

  .hero__copy {
    font-size: 20px;
  }

  .download-counter__number {
    font-size: 28px;
  }

  .download-counter__label {
    font-size: 13px;
  }

  .download-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

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

  .download-grid {
    padding: 7px;
  }

  .download-button {
    min-height: 76px;
    justify-items: center;
    text-align: center;
  }

  .download-button__badge {
    margin-bottom: 4px;
  }

  .feature-strip {
    margin-top: 14px;
  }

  .feature-strip article {
    min-height: 116px;
  }

  .feature-category {
    margin-left: 6px;
  }

  .feature-strip h2 {
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-inline: 16px;
  }

  .topbar {
    height: 42px;
  }

  .brand span {
    display: none;
  }

  .topbar__link {
    padding: 9px 13px;
  }

  .hero__content {
    padding-top: 34px;
  }

  .hero__icon-frame {
    width: 136px;
    height: 136px;
    border-radius: 30px;
  }

  .hero__icon-frame::before {
    inset: 11px;
    border-radius: 23px;
  }

  .hero__icon {
    width: 124px;
    height: 124px;
    border-radius: 28px;
  }

  .hero__eyebrow {
    gap: 8px;
    margin-top: 30px;
    font-size: 15px;
  }

  .hero__eyebrow::before {
    width: 18px;
  }

  h1 {
    font-size: 64px;
  }

  .hero__copy {
    font-size: 18px;
  }

  .hero__copy {
    margin-top: 20px;
  }

  .download-counter__number {
    font-size: 22px;
  }

  .download-counter__meta {
    font-size: 10px;
  }

  .download-counter__label {
    font-size: 12px;
  }

  .download-counter {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    padding: 8px 14px;
    border-radius: 16px;
  }

  .download-grid {
    margin-top: 18px;
  }

  .download-helper,
  .trust-line {
    font-size: 12px;
  }

  .release-info {
    grid-template-columns: 1fr;
  }

  .verification-info {
    display: none;
  }

  .product-preview {
    width: calc(100% - 32px);
    margin-top: 10px;
  }

  .preview-titlebar {
    height: 32px;
  }

  .preview-body {
    gap: 7px;
    padding: 10px;
  }

  .preview-tabs {
    gap: 5px;
  }

  .preview-tabs span {
    padding: 6px;
    font-size: 10px;
  }

  .preview-panel {
    border-radius: 14px;
    padding: 8px;
  }

  .preview-summary {
    min-height: 30px;
  }

  .preview-row {
    min-height: 36px;
    border-radius: 12px;
    padding: 7px 9px;
  }

  .preview-row em {
    min-width: 58px;
    padding-inline: 7px;
  }

  .download-button {
    min-height: 68px;
    padding: 9px 14px;
  }

  .download-button__badge {
    margin-bottom: 3px;
    padding: 3px 7px;
  }

  .feature-strip {
    width: calc(100% - 32px);
  }

  .feature-strip article {
    min-height: 112px;
    padding: 18px;
  }

  .feature-strip h2 {
    margin-top: 18px;
  }

  .site-footer {
    width: calc(100% - 32px);
    margin-bottom: 24px;
  }
}

@media (max-width: 520px) and (max-height: 700px) {
  .hero {
    padding-top: 14px;
    padding-bottom: 4px;
  }

  .topbar {
    height: 36px;
  }

  .hero__content {
    padding-top: 12px;
  }

  .hero__icon-frame {
    width: 104px;
    height: 104px;
    border-radius: 24px;
  }

  .hero__icon {
    width: 94px;
    height: 94px;
    border-radius: 22px;
  }

  .hero__eyebrow {
    margin-top: 18px;
    margin-bottom: 6px;
    font-size: 13px;
  }

  h1 {
    font-size: 56px;
  }

  .hero__copy {
    margin-top: 14px;
    font-size: 16px;
  }

  .download-counter {
    margin-top: 14px;
  }

  .download-grid {
    margin-top: 12px;
    gap: 7px;
    padding: 6px;
  }

  .download-button {
    min-height: 54px;
    padding: 7px 12px;
  }

  .download-button__badge {
    display: none;
  }

  .download-button__title {
    font-size: 14px;
  }

  .download-button__meta {
    font-size: 12px;
  }

  .download-helper,
  .trust-line,
  .release-info,
  .verification-info {
    display: none;
  }

  .product-preview {
    margin-top: 8px;
  }

  .preview-window {
    border-radius: 18px;
  }
}
