:root {
  color-scheme: dark;
  --bg: #07080a;
  --surface: rgba(18, 20, 24, 0.82);
  --surface-strong: #111318;
  --ink: #f4f6f8;
  --muted: #9aa3af;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --gold: #ff202e;
  --gold-soft: rgba(255, 32, 46, 0.13);
  --teal: #ff5a3d;
  --success: #37d174;
  --warning: #ffb13d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #15171d 0%, rgba(13, 15, 19, 0.92) 260px, rgba(7, 8, 10, 0) 620px),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

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

.site-header,
main,
.site-footer {
  width: min(1220px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #ff2936, #770008 64%),
    #111318;
  color: #fff;
  font-size: 15px;
  box-shadow:
    0 12px 30px rgba(255, 32, 46, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.top-nav a {
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 13px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.top-nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.catalog-summary {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.catalog-summary h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0;
}

.count-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 30px;
  margin-top: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 820;
}

.icon-carousel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: center;
  justify-self: end;
  width: min(100%, 850px);
  min-width: 0;
}

.icon-showcase {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 102px;
  gap: 18px;
  min-width: 0;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 32, 46, 0.78) rgba(255, 255, 255, 0.06);
}

.icon-showcase::-webkit-scrollbar {
  height: 6px;
}

.icon-showcase::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.icon-showcase::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #ff202e;
}

.showcase-item {
  display: block;
  scroll-snap-align: center;
}

.showcase-item img {
  display: block;
  width: 102px;
  height: 102px;
  border-radius: 24%;
  object-fit: cover;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

.showcase-item:hover img {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 32, 46, 0.38);
}

.showcase-item.is-development img {
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.42),
    0 0 0 2px rgba(255, 32, 46, 0.78),
    0 0 28px rgba(255, 32, 46, 0.22);
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #f4f6f8;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 32, 46, 0.56);
  background: rgba(255, 32, 46, 0.16);
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(240px, 380px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(7, 8, 10, 0.84);
  backdrop-filter: blur(18px);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 24, 0.9);
  padding: 0 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.search-field:focus-within {
  border-color: rgba(255, 32, 46, 0.7);
  box-shadow:
    0 0 0 4px rgba(255, 32, 46, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.search-field svg {
  width: 18px;
  height: 18px;
  color: #a3acb8;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-field input::placeholder {
  color: #737d8b;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-btn {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: #a5adba;
  padding: 0 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 820;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.filter-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--ink);
}

.filter-btn.is-active {
  border-color: #ff202e;
  background: #ff202e;
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 32, 46, 0.24);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 54px;
}

.app-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 408px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(24, 27, 33, 0.96), rgba(12, 14, 18, 0.96)),
    var(--surface-strong);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 46px rgba(0, 0, 0, 0.26);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.app-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  opacity: 0.88;
}

.app-card.is-development {
  border-color: rgba(255, 32, 46, 0.64);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(255, 32, 46, 0.28),
    0 18px 46px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(255, 32, 46, 0.16);
}

.app-card.is-development::before {
  height: 4px;
  background: linear-gradient(90deg, #ff202e, #ff7a1a, #d935ff);
  opacity: 1;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 32, 46, 0.44);
  box-shadow: var(--shadow);
}

.app-top {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  padding: 22px 20px 18px;
}

.app-icon {
  width: 92px;
  height: 92px;
  border-radius: 24%;
  object-fit: cover;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.app-title {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 23px;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #b6bec9;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 820;
}

.tag.status {
  border-color: rgba(55, 209, 116, 0.18);
  background: rgba(55, 209, 116, 0.12);
  color: var(--success);
}

.tag.pending {
  border-color: rgba(255, 177, 61, 0.18);
  background: rgba(255, 177, 61, 0.12);
  color: var(--warning);
}

.tag.development {
  border-color: rgba(255, 32, 46, 0.42);
  background: rgba(255, 32, 46, 0.14);
  color: #ff7b84;
}

.app-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 20px 20px;
}

.app-description {
  margin: 0;
  color: #a7b0bd;
  font-size: 15px;
  line-height: 1.58;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d5dae1;
  font-size: 14px;
  line-height: 1.38;
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 32, 46, 0.14);
}

.store-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.app-card .store-actions {
  grid-template-columns: 1fr 1fr;
}

.app-card .detail-link {
  grid-column: 1 / -1;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #f4f6f8;
  color: #08090b;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 840;
  text-align: center;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.store-link:hover {
  transform: translateY(-1px);
  border-color: #fff;
  background: #fff;
}

.store-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.store-link.is-disabled {
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.055);
  color: #717986;
}

.development-link.is-disabled {
  border-color: rgba(255, 32, 46, 0.5);
  background: rgba(255, 32, 46, 0.12);
  color: #ff8c94;
}

.detail-link {
  border-color: rgba(255, 32, 46, 0.72);
  background: #ff202e;
  color: #fff;
}

.detail-link:hover {
  border-color: #ff4a55;
  background: #ff4a55;
  color: #fff;
}

.detail-page {
  padding: 26px 0 56px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #c0c7d0;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 820;
}

.back-link:hover {
  border-color: rgba(255, 32, 46, 0.54);
  color: var(--ink);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 30px 0 46px;
}

.detail-copy {
  max-width: 700px;
}

.detail-icon {
  width: 118px;
  height: 118px;
  border-radius: 24%;
  object-fit: cover;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.detail-copy .app-meta {
  margin-top: 22px;
}

.detail-copy h1 {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 880;
  line-height: 0.95;
  letter-spacing: 0;
}

.detail-copy p {
  margin: 22px 0 0;
  max-width: 650px;
  color: #a8b1be;
  font-size: 18px;
  line-height: 1.65;
}

.detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 190px));
  gap: 10px;
  margin-top: 28px;
}

.phone-preview {
  display: flex;
  justify-content: center;
}

.phone-frame,
.screenshot-phone {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(28, 31, 38, 0.98), rgba(9, 10, 13, 0.98)),
    #111318;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-frame {
  width: min(100%, 340px);
  min-height: 560px;
  border-radius: 34px;
  padding: 44px 28px 30px;
}

.phone-status,
.screen-top {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.phone-frame img {
  display: block;
  width: 104px;
  height: 104px;
  margin: 54px auto 24px;
  border-radius: 24%;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.phone-frame strong,
.phone-frame span {
  display: block;
  text-align: center;
}

.phone-frame strong {
  color: var(--ink);
  font-size: 27px;
  font-weight: 860;
  line-height: 1.08;
}

.phone-frame span {
  margin: 16px auto 0;
  max-width: 240px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.detail-section {
  padding: 44px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2,
.split-section h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 860;
  line-height: 1.05;
}

.section-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.screenshot-card {
  display: flex;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(23, 26, 32, 0.96), rgba(12, 14, 18, 0.96)),
    #111318;
  padding: 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 46px rgba(0, 0, 0, 0.26);
}

.real-screenshot {
  display: block;
  margin: 0;
  padding: 12px;
}

.real-screenshot img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.real-screenshot figcaption {
  margin-top: 12px;
  color: #d7dde6;
  font-size: 14px;
  font-weight: 820;
  text-align: center;
}

.screenshot-phone {
  width: min(100%, 250px);
  min-height: 430px;
  border-radius: 28px;
  padding: 40px 22px 24px;
}

.screenshot-phone img {
  display: block;
  width: 76px;
  height: 76px;
  margin: 64px auto 24px;
  border-radius: 24%;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
}

.screenshot-phone strong,
.screenshot-phone span {
  display: block;
  text-align: center;
}

.screenshot-phone strong {
  font-size: 24px;
  font-weight: 860;
  line-height: 1.1;
}

.screenshot-phone span {
  margin: 12px auto 0;
  max-width: 180px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line);
  margin-top: 44px;
}

.split-section p {
  max-width: 700px;
  margin: 16px 0 0;
  color: #a8b1be;
  font-size: 17px;
  line-height: 1.65;
}

.detail-features {
  margin-top: 6px;
}

.detail-missing {
  min-height: 420px;
  padding: 52px 0;
}

.detail-missing h1 {
  margin: 0 0 20px;
  font-size: 42px;
  letter-spacing: 0;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed rgba(255, 32, 46, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 46px 20px;
  color: var(--muted);
  text-align: center;
}

.contact-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 32, 46, 0.16), rgba(255, 32, 46, 0) 34%),
    linear-gradient(180deg, rgba(24, 27, 33, 0.96), rgba(12, 14, 18, 0.96));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 70px rgba(0, 0, 0, 0.28);
  margin: 0 0 54px;
  padding: 26px;
}

body > .contact-banner {
  width: min(1220px, calc(100% - 44px));
  margin-inline: auto;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #ff202e;
  box-shadow: 0 0 34px rgba(255, 32, 46, 0.52);
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 32, 46, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 32, 46, 0.12);
  color: #ff6b74;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.contact-banner h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 880;
  line-height: 1;
  letter-spacing: 0;
}

.contact-banner p {
  max-width: 620px;
  margin: 14px 0 0;
  color: #a8b1be;
  font-size: 16px;
  line-height: 1.55;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #f4f6f8;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 840;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.contact-link strong {
  color: #c7ced8;
  font-size: 15px;
  font-weight: 820;
  text-transform: none;
  overflow-wrap: anywhere;
  text-align: right;
}

.contact-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 32, 46, 0.6);
  background: rgba(255, 32, 46, 0.14);
}

.contact-link.telegram {
  border-color: rgba(255, 32, 46, 0.3);
}

.contact-link.gmail {
  border-color: rgba(255, 255, 255, 0.13);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 14px;
}

code {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
  color: #d7dde6;
  padding: 2px 5px;
}

@media (max-width: 1040px) {
  .catalog-summary {
    grid-template-columns: 1fr;
  }

  .icon-carousel {
    justify-self: stretch;
    width: 100%;
  }

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

  .filters {
    justify-content: flex-start;
  }

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

  .detail-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .phone-preview {
    justify-content: flex-start;
  }

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

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

@media (max-width: 700px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 30px, 1220px);
  }

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

  .top-nav {
    display: none;
  }

  .brand {
    font-size: 13px;
  }

  .catalog-summary {
    gap: 18px;
    padding: 18px 0;
  }

  .icon-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .icon-showcase {
    grid-auto-columns: 82px;
    gap: 12px;
  }

  .showcase-item img {
    width: 82px;
    height: 82px;
  }

  .toolbar {
    padding-top: 10px;
  }

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

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

  .app-top {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 16px 16px;
  }

  .app-icon {
    width: 78px;
    height: 78px;
  }

  .app-title {
    font-size: 20px;
  }

  .app-body {
    padding: 0 16px 16px;
  }

  .store-actions {
    grid-template-columns: 1fr;
  }

  .app-card .store-actions {
    grid-template-columns: 1fr;
  }

  .detail-page {
    padding-top: 18px;
  }

  .detail-hero {
    gap: 28px;
    padding: 24px 0 34px;
  }

  .detail-icon {
    width: 96px;
    height: 96px;
  }

  .detail-copy h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .detail-copy p {
    font-size: 16px;
  }

  .detail-actions {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    min-height: 480px;
  }

  .section-head {
    display: block;
  }

  .section-head span {
    display: block;
    margin-top: 8px;
  }

  .contact-banner {
    margin-bottom: 38px;
    padding: 20px;
  }

  .contact-link {
    display: grid;
    justify-content: stretch;
    gap: 6px;
  }

  .contact-link strong {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }
}
