:root {
  --bg: #f7f9f6;
  --surface: #ffffff;
  --surface-2: #f0f5ef;
  --ink: #172018;
  --muted: #637066;
  --line: #dbe5dc;
  --brand: #12b76a;
  --brand-2: #0d8f73;
  --accent: #ffb020;
  --rose: #ef5b5b;
  --cyan: #15aabf;
  --shadow: 0 16px 40px rgba(23, 32, 24, 0.09);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  --bg: #101511;
  --surface: #172018;
  --surface-2: #213026;
  --ink: #edf6ef;
  --muted: #a9b8ae;
  --line: #314237;
  --brand: #21c87a;
  --brand-2: #5de0ac;
  --accent: #ffc14d;
  --rose: #ff7a7a;
  --cyan: #36c7d9;
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 246, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
:root[data-theme="dark"] .site-header {
  background: rgba(16, 21, 17, 0.9);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), #85d74f);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(18, 183, 106, 0.26);
}

.beta {
  color: var(--brand-2);
  font-size: 11px;
  border: 1px solid #b7dfc5;
  border-radius: 999px;
  padding: 2px 7px;
  background: #effaf2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a, .nav-action {
  padding: 9px 12px;
  border-radius: 8px;
  color: #33433a;
  font-weight: 650;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
:root[data-theme="dark"] .nav-links a,
:root[data-theme="dark"] .lead,
:root[data-theme="dark"] .screen-top,
:root[data-theme="dark"] .app-title {
  color: var(--ink);
}

.nav-links a[aria-current="page"], .nav-links a:hover {
  background: var(--surface-2);
  color: var(--brand-2);
}

.nav-action {
  background: var(--ink);
  color: #fff !important;
  margin-left: 4px;
}
:root[data-theme="dark"] .nav-action {
  background: var(--brand);
  color: #07120b !important;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--surface);
}
.lang-switch a {
  min-width: 32px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.lang-switch a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}
:root[data-theme="dark"] .lang-switch a[aria-current="page"] {
  background: var(--brand);
  color: #07120b;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.theme-toggle .ui-ico,
.theme-toggle svg {
  width: 19px;
  height: 19px;
}

.mobile-menu { display: none !important; }
.user-menu {
  position: relative;
  margin-left: 4px;
}
.user-menu summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 6px 10px 6px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 760;
  cursor: pointer;
}
.user-menu summary::-webkit-details-marker { display: none; }
.user-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .65;
}
.user-menu summary img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef3ef;
}
.user-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(23, 32, 24, 0.14);
  display: grid;
  gap: 4px;
}
.user-menu-panel a {
  justify-content: flex-start;
  width: 100%;
  padding: 10px 12px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 20px;
}
.auth-page {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
}
.auth-card {
  width: min(100%, 560px);
  padding: 28px;
}
.auth-card.wide { width: min(100%, 680px); }
.auth-head {
  text-align: center;
  margin-bottom: 24px;
}
.auth-head .lead {
  margin: 8px auto 0;
  font-size: 16px;
}
.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 760;
}
.auth-links a { color: var(--brand-2); }

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: 54px 20px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(247, 249, 246, 0), rgba(219, 237, 217, 0.95));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #0b6f54;
  background: #eaf8ee;
  border: 1px solid #c9e8d3;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 750;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 14px 0 14px;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: 0;
}

h2 { font-size: 24px; line-height: 1.22; letter-spacing: 0; margin-bottom: 10px; }
h3 { font-size: 20px; line-height: 1.25; letter-spacing: 0; margin-bottom: 8px; }
h4 { font-size: 18px; line-height: 1.3; letter-spacing: 0; }
h1, h2, h3, h4,
.field label,
.deal-option strong,
.choice-card strong,
.deal-card strong {
  display: flex;
  align-items: center;
  gap: 9px;
}
.lucide {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  stroke: currentColor;
}
h1 > .lucide { color: var(--brand-2); }
h2 > .lucide, h3 > .lucide { color: var(--brand); }
.field label > .lucide { color: var(--muted); }
.lead { color: #405148; font-size: 19px; max-width: 680px; }
.muted { color: var(--muted); }
.small { font-size: 13px; color: var(--muted); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-weight: 760;
  cursor: pointer;
}
.btn.primary { background: var(--brand); border-color: var(--brand); color: white; }
.btn.dark { background: var(--ink); border-color: var(--ink); color: white; }
.btn.ghost { background: transparent; }
.btn.warn { background: var(--accent); border-color: var(--accent); color: #2b2107; }
.btn:disabled { opacity: 0.48; cursor: not-allowed; }

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.phone-stack {
  width: min(100%, 390px);
  position: relative;
  aspect-ratio: 0.74;
}

.phone {
  position: absolute;
  inset: 0;
  border: 10px solid #1a211c;
  border-radius: 34px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.phone.alt {
  transform: translate(-24%, 14%) rotate(-7deg) scale(0.82);
  opacity: 0.9;
}

.phone-main { transform: translate(9%, -2%) rotate(4deg); }
.phone-screen { padding: 18px; height: 100%; display: flex; flex-direction: column; gap: 12px; }
.screen-top { display: flex; align-items: center; justify-content: space-between; font-weight: 800; }
.screen-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfdfb;
}
.screen-app { display: flex; gap: 10px; align-items: center; }
.screen-app img, .app-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.06);
}
.screen-progress {
  height: 9px;
  background: #e7eee8;
  border-radius: 999px;
  overflow: hidden;
}
.screen-progress span { display: block; height: 100%; background: var(--brand); border-radius: inherit; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  border-radius: 8px;
  padding: 16px;
}
.stat strong { display: block; font-size: 27px; line-height: 1; }
.stat span { color: var(--muted); font-size: 13px; }

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

.grid { display: grid; gap: 16px; }
.grid.apps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 32, 24, 0.05);
}
:root[data-theme="dark"] .card,
:root[data-theme="dark"] .stat,
:root[data-theme="dark"] .notice,
:root[data-theme="dark"] .review-card,
:root[data-theme="dark"] .terms-box,
:root[data-theme="dark"] .summary-box,
:root[data-theme="dark"] .screen-card,
:root[data-theme="dark"] .list-item,
:root[data-theme="dark"] .choice-card,
:root[data-theme="dark"] .deal-option,
:root[data-theme="dark"] .screenshot-slot {
  background: var(--surface);
  border-color: var(--line);
}
:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] select {
  background: #111912;
  color: var(--ink);
  border-color: var(--line);
}
:root[data-theme="dark"] input::placeholder,
:root[data-theme="dark"] textarea::placeholder {
  color: #75877b;
}

.app-card {
  padding: 16px;
  display: grid;
  gap: 14px;
  min-height: 214px;
}

.app-card:hover { border-color: #b7dfc5; transform: translateY(-1px); transition: 160ms ease; }
.app-top { display: flex; gap: 12px; align-items: flex-start; }
.app-title { font-weight: 820; }
.app-tagline { color: var(--muted); font-size: 14px; margin: 2px 0 0; }
.badge-row { display: flex; flex-wrap: wrap; gap: 7px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 760;
  background: #eef5ef;
  color: #34513e;
}
.badge.free { background: #eaf8ee; color: #087443; }
.badge.featured { background: #fff4d6; color: #805500; }
.badge.hot { background: #ffeded; color: #a23434; }

.app-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: auto;
}

.toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.search {
  flex: 1;
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 44px;
  padding: 0 14px;
  background: var(--surface);
}

.segmented {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow-x: auto;
}
.segmented button {
  border: 0;
  background: transparent;
  border-radius: 7px;
  padding: 9px 12px;
  font-weight: 720;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.segmented button.active { background: #eaf8ee; color: var(--brand-2); }

.rank-list { display: grid; gap: 10px; }
.rank-row {
  display: grid;
  grid-template-columns: 44px 56px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 13px;
}
.rank-num { font-weight: 900; color: var(--brand-2); text-align: center; }
.rank-row img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; }

.category-card, .collection-card {
  padding: 18px;
  display: grid;
  gap: 12px;
}
.category-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: white;
  background: var(--brand-2);
}
.category-mark .lucide {
  width: 22px;
  height: 22px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}
.blog-main { min-width: 0; }
.blog-grid { align-items: stretch; }
.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-thumb {
  display: block;
  aspect-ratio: 1.55;
  background: #eef3ef;
  overflow: hidden;
}
.blog-thumb img,
.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 18px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.blog-card h2 {
  font-size: 22px;
  line-height: 1.2;
}
.blog-card h2 a { color: inherit; }
.blog-sidebar .list-item img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  background: #eef3ef;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.blog-paging { margin-top: 24px; }
.blog-paging a,
.blog-paging span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-right: 6px;
  padding: 0 10px;
  background: white;
  color: var(--ink);
  font-weight: 760;
}
.blog-article { overflow: hidden; }
.blog-article .panel-head h1 {
  margin-top: 12px;
  max-width: 860px;
}
.blog-hero-image {
  aspect-ratio: 1.9;
  background: #eef3ef;
  border-bottom: 1px solid var(--line);
}
.blog-content {
  color: #2e3b33;
  font-size: 17px;
  line-height: 1.72;
}
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.blog-content h2,
.blog-content h3 { margin: 28px 0 12px; }
.blog-content p,
.blog-content ul,
.blog-content ol { margin-bottom: 16px; }
.blog-toc { margin-bottom: 22px; }
.blog-toc ol { margin: 10px 0 0 18px; }
.blog-toc a { color: var(--brand-2); }
.detail-hero { padding: 22px; }
.detail-title { display: flex; gap: 18px; align-items: flex-start; }
.detail-title img { width: 112px; height: 112px; border-radius: 18px; object-fit: cover; }
.detail-copy {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detail-copy h1 {
  margin: 0 0 6px;
  font-size: 28px;
}
.detail-copy .lead {
  margin: 0 0 5px;
}
.detail-copy .small {
  margin: 0 0 8px;
}
.detail-store-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.detail-store-actions.top { align-items: center; justify-content: flex-end; }
.store-action {
  min-width: 160px;
}
.vote-button {
  min-width: 72px;
}
.vote-button.voted {
  border-color: var(--brand);
  color: var(--brand-2);
}
.claim-strip {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 183, 106, .08), rgba(255, 176, 32, .08));
  padding: 18px;
  margin: 16px 0 24px;
}
.claim-strip-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  color: var(--brand-2);
  font-size: 24px;
}
.claim-strip strong {
  display: block;
  font-size: 18px;
}
.claim-strip p { margin: 2px 0 0; }
.claim-strip .screen-progress {
  grid-column: 1 / -1;
  margin: 0;
}
.report-toggle { margin-top: 10px; }
.report-code-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
  background: var(--surface-2);
}
.store-side-link {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.side-panel hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 18px 0;
}
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-top: 24px;
}
.tabs button {
  border: 0;
  background: transparent;
  padding: 12px 14px;
  font-weight: 760;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.tabs button.active { color: var(--brand-2); box-shadow: inset 0 -2px var(--brand); }
.tab-panel { padding-top: 18px; }
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.screenshot-grid img {
  width: 100%;
  aspect-ratio: 0.56;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef3ef;
}
.app-gallery {
  position: relative;
  margin: 16px 0 26px;
  padding: 0 44px;
}
.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 8px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-shot {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--surface-2);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
}
.gallery-shot img {
  width: 100%;
  height: min(58vh, 520px);
  object-fit: cover;
}
.gallery-nav,
.gallery-modal-nav,
.gallery-close {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 54px;
  border-radius: 8px;
  font-size: 30px;
  z-index: 2;
}
.gallery-nav.prev { left: 0; }
.gallery-nav.next { right: 0; }
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(5, 8, 6, .88);
  display: grid;
  place-items: center;
  padding: 58px 72px;
}
.gallery-modal[hidden] { display: none !important; }
.gallery-modal img {
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 120px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
}
.gallery-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
}
.gallery-modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 64px;
  border-radius: 8px;
  font-size: 38px;
}
.gallery-modal-nav.prev { left: 18px; }
.gallery-modal-nav.next { right: 18px; }
.side-panel { padding: 18px; position: sticky; top: 86px; }
.claim-box {
  border: 1px solid #b7dfc5;
  background: #effaf2;
  border-radius: 8px;
  padding: 14px;
  margin: 14px 0;
}
.code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: white;
  border: 1px dashed var(--brand-2);
  border-radius: 8px;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 900;
}

.form-card { padding: 20px; }
.app-form-shell { padding: 0; overflow: hidden; }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 20px 20px 34px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
}
.step {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 760;
  font-size: 12px;
  display: grid;
  justify-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}
.step strong { font-size: inherit; }
.step span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0f4f1;
  border: 6px solid #f7f9f6;
  color: #99a59d;
  position: relative;
  z-index: 1;
}
.step.active, .step.done { color: var(--ink); }
.step.active span, .step.done span { background: var(--ink); color: white; }
.step .ui-ico { display: none; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label { font-weight: 760; }
.field input, .field textarea, .field select,
.toolbar select,
select.search {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  min-height: 44px;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(23, 32, 24, 0.02);
}
.field select,
.toolbar select,
select.search {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #637066 50%),
    linear-gradient(135deg, #637066 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 19px,
    calc(100% - 14px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field input:focus, .field textarea:focus, .field select:focus,
.toolbar select:focus, .search:focus {
  outline: 0;
  border-color: rgba(18, 183, 106, 0.72);
  box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.12);
}
.field textarea { min-height: 110px; resize: vertical; }
.check-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.platform-grid { display: flex; flex-wrap: wrap; }
.check-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  background: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.check-tile input { margin-right: 8px; }
.check-tile span[data-ui-icon] {
  position: static;
  color: var(--brand-2);
  width: 18px;
  height: 18px;
  display: inline-flex;
}
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 20px;
  margin: 0;
}
.ui-ico {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.ui-ico svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-form-shell > .cta-row {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 20px;
}
[hidden] { display: none !important; }
.panel-head {
  padding: 28px 38px;
  border-bottom: 1px solid var(--line);
}
.panel-head h2 { margin-bottom: 4px; }
.panel-body { padding: 34px 38px; }
.count { float: right; color: var(--muted); font-weight: 600; }
.upload-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.upload-box, .upload-tall, .video-upload {
  border: 2px dashed var(--line);
  background: #f8faf9;
  color: #8a978f;
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.upload-box { width: 154px; height: 154px; }
.upload-picker {
  cursor: pointer;
  text-align: center;
  padding: 12px;
  overflow: hidden;
  word-break: break-word;
}
.upload-picker input { display: none; }
.app-icon-picker {
  position: relative;
  border-style: dashed;
}
.upload-picker.dragging,
.screenshot-slot.dragging {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand);
}
.app-icon-picker img {
  width: 128px;
  height: 128px;
  border-radius: 8px;
  object-fit: cover;
}
.upload-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
}
.upload-meta { display: grid; gap: 12px; align-content: center; }
.media-slots { display: flex; gap: 14px; flex-wrap: wrap; }
.upload-tall {
  width: 176px;
  aspect-ratio: 0.66;
  cursor: pointer;
  font-size: 28px;
}
.video-upload {
  width: min(100%, 720px);
  min-height: 150px;
  gap: 5px;
  cursor: pointer;
}
.notice {
  border: 1px solid #eef2f0;
  background: #f8faf9;
  color: var(--muted);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.screenshot-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.screenshot-slot {
  position: relative;
  min-height: 220px;
  border: 1px dashed #cddbd0;
  border-radius: 8px;
  background: #f8faf9;
  overflow: hidden;
}
.screenshot-slot.dragging { opacity: .5; }
.screenshot-slot.has-media {
  border-style: solid;
  background: #111;
}
.screenshot-slot label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  padding: 12px;
}
.screenshot-slot input { display: none; }
.screenshot-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.screenshot-slot.has-media label span { display: none; }
.slot-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 32, 24, .82);
  color: white;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}
.screenshot-slot.has-media .slot-remove { display: flex; }
.store-link-field .field-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 760;
}
.store-link-field .field-title span {
  width: 22px;
  height: 22px;
  color: var(--brand-2);
  display: grid;
  place-items: center;
}
.store-link-field .field-title label { margin: 0; }
.input-icon { position: relative; }
.input-icon span {
  position: absolute;
  left: 14px;
  bottom: 13px;
  color: #8a978f;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}
.input-icon span .lucide {
  width: 19px;
  height: 19px;
}
.input-icon input { padding-left: 48px; }
.deal-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.deal-option {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  display: grid;
  gap: 4px;
  cursor: pointer;
  background: white;
}
.deal-option strong .lucide,
.choice-card strong .lucide,
.deal-card strong .lucide {
  color: var(--brand-2);
}
.deal-option input { display: none; }
.deal-option.selected {
  border-color: var(--brand);
  background: #edf9f2;
  box-shadow: inset 0 0 0 1px var(--brand);
}
.deal-option span, .deal-option small { color: var(--muted); }
.field.invalid input,
.field.invalid textarea,
.field.invalid select,
.field.invalid .check-tile,
.field.invalid .upload-box {
  border-color: #ef5b5b;
}
.field-error {
  color: #b42318;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 700;
}
.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.choice-card {
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f8faf9;
  padding: 14px;
  text-align: left;
  cursor: pointer;
}
.choice-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.choice-card.active { border-color: var(--ink); background: white; box-shadow: inset 0 0 0 1px var(--ink); }
.inline-field { display: flex; gap: 12px; align-items: center; }
.inline-field input { max-width: 130px; }
.review-card, .terms-box, .summary-box {
  border: 1px solid #eef2f0;
  border-radius: 8px;
  background: #f8faf9;
}
.review-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-bottom: 16px;
}
.review-card img { width: 84px; height: 64px; border-radius: 8px; object-fit: cover; }
.summary-box { padding: 16px; }
.summary-box span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.terms-box { padding: 18px; margin-top: 16px; }

.edit-app { display: grid; gap: 22px; }
.edit-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  padding: 6px;
  background: #eef1ee;
  border-radius: 8px;
}
.edit-tabs button {
  border: 0;
  border-radius: 8px;
  min-height: 48px;
  background: transparent;
  color: var(--muted);
  font-weight: 780;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.edit-tabs button.active {
  background: white;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(23, 32, 24, 0.08);
}
.edit-panel.card { overflow: hidden; }
.edit-icon {
  width: 150px;
  height: 150px;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.edit-shots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.edit-shots img {
  width: 100%;
  aspect-ratio: 0.55;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #eef3ef;
}
.edit-shots .upload-tall { width: 100%; height: 100%; min-height: 260px; font-size: 16px; }
.deal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.deal-card {
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 26px;
  min-height: 150px;
  display: grid;
  gap: 10px;
  justify-items: start;
  text-align: left;
  cursor: pointer;
}
.deal-card strong { font-size: 22px; }
.deal-card small { color: var(--muted); font-size: 15px; }
.deal-card.active { border-color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.deal-settings {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}
.deal-settings .field, .deal-settings .save-deal { grid-column: 1 / -1; }
.switch input { display: none; }
.switch span {
  width: 70px;
  height: 38px;
  border-radius: 999px;
  background: #dfe5e1;
  display: block;
  position: relative;
  cursor: pointer;
}
.switch span::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 4px;
  left: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.16);
  transition: 160ms ease;
}
.switch input:checked + span { background: var(--ink); }
.switch input:checked + span::after { transform: translateX(32px); }
.save-deal { justify-self: end; }
.status-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}
.status-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #dcf8e8;
  color: var(--brand-2);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
.visibility-card { margin-top: 22px; }

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.metric { padding: 16px; }
.metric strong { font-size: 28px; display: block; }
.list { display: grid; gap: 10px; }
.list-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}
.list-item img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; }
.list-item a:hover strong,
.list-item strong a:hover,
.app-title:hover {
  color: var(--brand-2);
}
.app-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}
.app-actions .btn {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 13px;
}
.bar {
  height: 8px;
  border-radius: 999px;
  background: #e2eae3;
  overflow: hidden;
  margin-top: 7px;
}
.bar span { display: block; height: 100%; background: var(--brand); }

.profile-head {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
}
.avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  background: #eef4ee;
}
:root[data-theme="dark"] .footer {
  background: #121a14;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 20px;
}
.footer a, .footer p { color: var(--muted); font-size: 14px; }
.footer h4 { margin: 0 0 10px; }
.footer-col { display: grid; gap: 7px; align-content: start; }

:root[data-theme="dark"] .hero::before {
  background: linear-gradient(180deg, rgba(16, 21, 17, 0), rgba(24, 36, 28, 0.94));
}
:root[data-theme="dark"] .eyebrow,
:root[data-theme="dark"] .beta,
:root[data-theme="dark"] .badge,
:root[data-theme="dark"] .badge.free,
:root[data-theme="dark"] .badge.featured,
:root[data-theme="dark"] .badge.hot {
  background: #1f3328;
  border-color: #365342;
  color: var(--brand-2);
}
:root[data-theme="dark"] .card,
:root[data-theme="dark"] .form-card,
:root[data-theme="dark"] .app-form-shell,
:root[data-theme="dark"] .panel-head,
:root[data-theme="dark"] .panel-body,
:root[data-theme="dark"] .stat,
:root[data-theme="dark"] .screen-card,
:root[data-theme="dark"] .phone,
:root[data-theme="dark"] .side-panel,
:root[data-theme="dark"] .claim-box,
:root[data-theme="dark"] .review-card,
:root[data-theme="dark"] .terms-box,
:root[data-theme="dark"] .summary-box,
:root[data-theme="dark"] .notice,
:root[data-theme="dark"] .list-item,
:root[data-theme="dark"] .choice-card,
:root[data-theme="dark"] .deal-option,
:root[data-theme="dark"] .deal-card,
:root[data-theme="dark"] .screenshot-slot,
:root[data-theme="dark"] .upload-box,
:root[data-theme="dark"] .upload-tall,
:root[data-theme="dark"] .video-upload {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
:root[data-theme="dark"] .app-form-shell > .cta-row,
:root[data-theme="dark"] .wizard-actions,
:root[data-theme="dark"] .panel-head,
:root[data-theme="dark"] .tabs,
:root[data-theme="dark"] .footer,
:root[data-theme="dark"] .site-header {
  border-color: var(--line);
}
:root[data-theme="dark"] .field label,
:root[data-theme="dark"] .store-link-field .field-title,
:root[data-theme="dark"] .deal-option strong,
:root[data-theme="dark"] .choice-card strong,
:root[data-theme="dark"] .summary-box strong,
:root[data-theme="dark"] h1,
:root[data-theme="dark"] h2,
:root[data-theme="dark"] h3,
:root[data-theme="dark"] h4,
:root[data-theme="dark"] strong {
  color: var(--ink);
}
:root[data-theme="dark"] .field input,
:root[data-theme="dark"] .field textarea,
:root[data-theme="dark"] .field select,
:root[data-theme="dark"] .toolbar input,
:root[data-theme="dark"] .toolbar select,
:root[data-theme="dark"] .search,
:root[data-theme="dark"] select.search,
:root[data-theme="dark"] .code,
:root[data-theme="dark"] .user-menu-panel,
:root[data-theme="dark"] .user-menu summary {
  background-color: #111912;
  color: var(--ink);
  border-color: var(--line);
}
:root[data-theme="dark"] .field input::placeholder,
:root[data-theme="dark"] .field textarea::placeholder,
:root[data-theme="dark"] .toolbar input::placeholder,
:root[data-theme="dark"] .search::placeholder {
  color: #7f9186;
}
:root[data-theme="dark"] .field select,
:root[data-theme="dark"] .toolbar select,
:root[data-theme="dark"] select.search {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
}
:root[data-theme="dark"] .step {
  color: var(--muted);
}
:root[data-theme="dark"] .step span {
  background: #111912;
  border-color: var(--bg);
  color: var(--muted);
}
:root[data-theme="dark"] .step.active,
:root[data-theme="dark"] .step.done {
  color: var(--ink);
}
:root[data-theme="dark"] .step.active span,
:root[data-theme="dark"] .step.done span {
  background: var(--brand);
  color: #07120b;
}
:root[data-theme="dark"] .btn {
  background: #152119;
  border-color: var(--line);
  color: var(--ink);
}
:root[data-theme="dark"] .btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #07120b;
}
:root[data-theme="dark"] .btn.dark {
  background: #edf6ef;
  border-color: #edf6ef;
  color: #101511;
}
:root[data-theme="dark"] .btn.ghost {
  background: transparent;
}
:root[data-theme="dark"] .check-tile,
:root[data-theme="dark"] .choice-card,
:root[data-theme="dark"] .deal-option {
  background: #111912;
  border-color: var(--line);
}
:root[data-theme="dark"] .deal-option.selected,
:root[data-theme="dark"] .choice-card.active {
  background: #1c3225;
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand);
}
:root[data-theme="dark"] .upload-placeholder,
:root[data-theme="dark"] .screenshot-slot label,
:root[data-theme="dark"] .muted,
:root[data-theme="dark"] .small,
:root[data-theme="dark"] .deal-option span,
:root[data-theme="dark"] .deal-option small,
:root[data-theme="dark"] .choice-card span {
  color: var(--muted);
}
:root[data-theme="dark"] .screen-progress,
:root[data-theme="dark"] .bar,
:root[data-theme="dark"] .edit-tabs,
:root[data-theme="dark"] .switch span {
  background: #26372d;
}
:root[data-theme="dark"] .edit-tabs button.active,
:root[data-theme="dark"] .screenshot-grid img,
:root[data-theme="dark"] .edit-shots img {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
:root[data-theme="dark"] .claim-strip {
  background: linear-gradient(135deg, rgba(33, 200, 122, .12), rgba(255, 193, 77, .08));
  border-color: var(--line);
}
:root[data-theme="dark"] .report-code-form {
  background: #111912;
  border-color: var(--line);
}

:root[data-theme="dark"] select,
:root[data-theme="dark"] .field select,
:root[data-theme="dark"] .toolbar select,
:root[data-theme="dark"] select.search {
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  background-color: #111912 !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-2) 50%),
    linear-gradient(135deg, var(--brand-2) 50%, transparent 50%) !important;
  background-position:
    calc(100% - 20px) 19px,
    calc(100% - 14px) 19px !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
}
:root[data-theme="dark"] select option,
:root[data-theme="dark"] select optgroup {
  background-color: #111912;
  color: var(--ink);
}
:root[data-theme="dark"] select option:checked,
:root[data-theme="dark"] select option:hover {
  background-color: #1c3225;
  color: var(--ink);
}
:root[data-theme="dark"] select:focus,
:root[data-theme="dark"] .field select:focus,
:root[data-theme="dark"] .toolbar select:focus,
:root[data-theme="dark"] select.search:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 4px rgba(33, 200, 122, 0.18) !important;
}
:root[data-theme="dark"] select:disabled {
  background-color: #18231b !important;
  color: #76877b !important;
  opacity: 1;
}

@media (max-width: 920px) {
  .nav { flex-wrap: wrap; }
  .mobile-menu { display: inline-flex !important; margin-left: auto; }
  .lang-switch { order: 3; margin-left: auto; }
  .theme-toggle { order: 4; }
  .mobile-menu .menu-text {
    width: 0;
    height: 0;
    overflow: hidden;
  }
  .mobile-menu::before {
    content: "";
    width: 18px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    box-shadow: 0 5px 0 currentColor;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }
  .user-menu { width: 100%; margin-left: 0; }
  .user-menu summary {
    width: 100%;
    border-radius: 8px;
  }
  .user-menu-panel {
    position: static;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
  }
  .nav.open .nav-links { display: flex; }
  .hero-inner, .detail-layout, .blog-layout, .dashboard-grid, .deal-options { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 36px; }
  .hero-visual { min-height: 430px; }
  .grid.apps, .grid.three, .grid.four, .edit-shots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screenshot-slots { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .screenshot-slot { min-height: 190px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .side-panel { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .edit-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .deal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { padding: 24px 14px; }
  .grid.apps, .grid.two, .grid.three, .grid.four, .stats-strip, .metric-grid, .check-grid { grid-template-columns: 1fr; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .rank-row { grid-template-columns: 34px 48px minmax(0, 1fr); }
  .rank-row .btn { grid-column: 1 / -1; }
  .detail-title, .profile-head { grid-template-columns: 1fr; display: grid; }
  .detail-title { display: grid; }
  .detail-store-actions { display: grid; grid-template-columns: 1fr; }
  .store-action { width: 100%; }
  .claim-strip {
    grid-template-columns: 54px minmax(0, 1fr);
  }
  .claim-strip-action {
    grid-column: 1 / -1;
  }
  .claim-strip-action .btn {
    width: 100%;
  }
  .screenshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .app-gallery { padding: 0 36px; }
  .gallery-shot img { height: 360px; }
  .steps { grid-template-columns: 1fr; gap: 10px; }
  .steps::before { display: none; }
  .step { grid-template-columns: 44px minmax(0, 1fr); justify-items: start; align-items: center; }
  .step span { width: 42px; height: 42px; border-width: 4px; }
  .panel-head, .panel-body { padding: 22px 18px; }
  .upload-row, .choice-row, .status-row, .deal-settings { grid-template-columns: 1fr; }
  .upload-box { width: 132px; height: 132px; }
  .app-icon-picker img { width: 108px; height: 108px; }
  .screenshot-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screenshot-slot { min-height: 180px; }
  .gallery-track { grid-auto-columns: 100%; }
  .gallery-modal { padding: 54px 14px; }
  .gallery-modal-nav { width: 38px; height: 54px; }
  .list-item { grid-template-columns: 46px minmax(0, 1fr); }
  .list-item > .btn,
  .list-item > .app-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .edit-tabs { grid-template-columns: 1fr; }
  .edit-tabs button { font-size: 16px; }
  .edit-shots { grid-template-columns: 1fr; }
  .inline-field { align-items: stretch; flex-direction: column; }
  .save-deal { justify-self: stretch; }
  .footer-grid { grid-template-columns: 1fr; }
}
