.page-products {
  --pg-glow-green: rgba(182, 255, 0, 0.16);
  --pg-glow-orange: rgba(255, 90, 60, 0.15);
  --pg-card-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
  --pg-phone-width: 300px;
  background: var(--bg-primary);
  color: var(--text);
  overflow-x: hidden;
}

.page-products .breadcrumb {
  padding-top: 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.page-products .breadcrumb-sep {
  margin: 0 8px;
  color: var(--muted);
}

.page-products .section-head {
  margin-bottom: 32px;
}

.page-products .section-head--split {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-products .section-kicker {
  color: var(--speed);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-products h1,
.page-products h2 {
  font-family: var(--font-headline);
  color: var(--text);
  margin: 6px 0 0;
  line-height: 1.12;
}

.page-products h1 {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-products h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
}

.page-products h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  margin: 14px 0 8px;
  line-height: 1.25;
}

.page-products .btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.page-products .btn:active {
  transform: scale(0.96);
}

.page-products .btn-primary {
  background: var(--accent);
  color: var(--bg-cream);
  box-shadow: 0 8px 24px rgba(255, 90, 60, 0.32);
}

.page-products .btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.page-products .btn-ghost:hover {
  border-color: var(--speed);
  color: var(--speed);
}

/* ========== HERO ========== */
.app-hero {
  position: relative;
  padding: 48px 0 72px;
  background:
    radial-gradient(720px 400px at 88% 0%, var(--pg-glow-green), transparent 68%),
    radial-gradient(560px 320px at 8% 100%, var(--pg-glow-orange), transparent 60%),
    var(--bg-primary);
}

.app-hero::before {
  content: "";
  position: absolute;
  top: 4%;
  right: -8%;
  width: 58%;
  height: 26%;
  background: linear-gradient(120deg, rgba(182, 255, 0, 0.14), rgba(182, 255, 0, 0.02) 62%, transparent 80%);
  transform: rotate(-12deg);
  border-radius: 999px;
  pointer-events: none;
}

.app-hero::after {
  content: "";
  position: absolute;
  bottom: -6%;
  left: -6%;
  width: 42%;
  height: 18%;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 90, 60, 0.1) 50%, transparent 82%);
  transform: rotate(10deg);
  border-radius: 999px;
  pointer-events: none;
}

.app-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.app-hero-copy {
  max-width: 640px;
}

.app-hero-lead {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.app-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.app-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
}

.app-hero-stat dt {
  color: var(--muted);
  font-size: 13px;
}

.app-hero-stat dd {
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--speed);
}

/* Phone Stage */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 36px 0 20px;
}

.phone-stage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(182, 255, 0, 0.2), transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}

.phone-shell {
  width: var(--pg-phone-width);
  max-width: 88vw;
  aspect-ratio: 9 / 19;
  background: linear-gradient(168deg, #183052 0%, #0A1428 62%);
  border: 2px solid var(--border);
  border-radius: 48px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 60px rgba(77, 201, 246, 0.1);
  padding: 10px;
  position: relative;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: #060A12;
  border-radius: 12px;
  z-index: 3;
}

.phone-screen {
  background: #071224;
  border-radius: 38px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 44px 14px 14px;
  overflow: hidden;
  position: relative;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  padding: 0 6px 8px;
}

.phone-status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--speed);
  font-weight: 700;
}

.phone-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--speed);
  animation: phone-pulse-dot 1.2s ease-in-out infinite;
}

@keyframes phone-pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(182, 255, 0, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(182, 255, 0, 0); }
}

.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 6px 12px;
  border-bottom: 1px solid var(--border);
}

.phone-app-header strong {
  font-family: var(--font-headline);
  font-size: 17px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.phone-version {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  background: rgba(77, 201, 246, 0.1);
  border: 1px solid rgba(77, 201, 246, 0.3);
  border-radius: 999px;
  padding: 3px 10px;
}

.phone-match-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
}

.phone-match {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-match-tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
}

.phone-match-tag--football {
  color: var(--speed);
  background: rgba(182, 255, 0, 0.12);
}

.phone-match-tag--basket {
  color: var(--cyan);
  background: rgba(77, 201, 246, 0.12);
}

.phone-match-tag--tennis {
  color: var(--accent);
  background: rgba(255, 90, 60, 0.12);
}

.phone-match-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-team {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-size: 13px;
}

.phone-team em {
  font-style: normal;
  max-width: 84px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.phone-team b {
  font-family: var(--font-mono);
  color: var(--speed);
  font-size: 15px;
}

.phone-match-min {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.phone-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  padding: 8px 6px;
}

.phone-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--speed);
  box-shadow: 0 0 8px var(--speed);
}

.phone-chart {
  padding: 6px 4px;
}

.phone-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.phone-tabbar {
  display: flex;
  margin-top: auto;
  background: var(--bg-panel);
  border-radius: 14px;
  padding: 6px;
  gap: 4px;
}

.phone-tab {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0;
  border-radius: 10px;
}

.phone-tab.is-active {
  background: rgba(182, 255, 0, 0.12);
  color: var(--speed);
  font-weight: 700;
}

/* ========== FEATURES ========== */
.features-section {
  padding: 72px 0 88px;
  background: var(--bg-primary);
  position: relative;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features-section .section-lead {
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-top: 12px;
}

.feature-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--pg-card-shadow);
  transition: transform var(--ease), border-color var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--speed);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(182, 255, 0, 0.08), transparent 68%);
  pointer-events: none;
}

.feature-card--main {
  background: var(--bg-cream);
  color: var(--text-ink);
  border: none;
}

.feature-card--main::after {
  background: radial-gradient(circle, rgba(255, 90, 60, 0.14), transparent 68%);
}

.feature-card--main h3,
.feature-card--main .feature-desc {
  color: var(--text-ink);
}

.feature-card--main .feature-tag {
  background: var(--accent);
  color: var(--bg-cream);
}

.feature-card--main .stat-number {
  color: var(--accent);
}

.feature-card--wide {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 16px;
}

.feature-card--wide .feature-icon {
  flex-shrink: 0;
}

.feature-card--wide h3 {
  flex: 1;
  min-width: 180px;
}

.feature-card--wide .feature-desc {
  width: 100%;
  margin-bottom: 10px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 255, 0, 0.08);
  color: var(--speed);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-icon--flash {
  background: rgba(255, 90, 60, 0.12);
  color: var(--accent);
}

.feature-icon--chart {
  background: rgba(77, 201, 246, 0.1);
  color: var(--cyan);
}

.feature-icon--doc {
  background: rgba(255, 184, 0, 0.1);
  color: var(--amber);
}

.feature-icon--db {
  background: rgba(182, 255, 0, 0.08);
  color: var(--speed);
}

.feature-icon--bell {
  background: rgba(255, 90, 60, 0.1);
  color: var(--accent);
}

.feature-icon--bookmark {
  background: rgba(77, 201, 246, 0.1);
  color: var(--cyan);
}

.feature-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.feature-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.feature-metrics span {
  font-size: 14px;
  color: var(--text-ink);
  background: rgba(28, 28, 26, 0.06);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-body);
}

.feature-metrics .stat-number {
  color: var(--accent);
  font-weight: 700;
}

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--speed);
  background: rgba(182, 255, 0, 0.1);
  border-radius: 999px;
  padding: 5px 12px;
  letter-spacing: 0.04em;
}

.feature-appshot {
  margin-top: 48px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--pg-card-shadow);
  position: relative;
}

.feature-appshot img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-appshot-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  background: rgba(10, 20, 40, 0.72);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text);
}

/* ========== COVERAGE ========== */
.coverage-section {
  padding: 72px 0 88px;
  background:
    linear-gradient(180deg, #0A1428 0%, #0E1E36 100%);
  border-top: 1px solid var(--border);
}

.coverage-section .section-lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 4px;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.coverage-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan);
  background: rgba(77, 201, 246, 0.08);
  border: 1px solid rgba(77, 201, 246, 0.25);
  border-radius: 999px;
  padding: 8px 16px;
}

.coverage-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.coverage-cat-grid li {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 700;
}

.coverage-cat-grid li:hover {
  border-color: var(--speed);
}

.coverage-id {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--speed);
  background: rgba(182, 255, 0, 0.08);
  border-radius: 8px;
  padding: 4px 8px;
}

.coverage-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 24px 0 40px;
}

.coverage-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 36px;
  box-shadow: var(--pg-card-shadow);
}

.coverage-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.coverage-stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
}

.coverage-stats-bar div {
  background: var(--bg-cream);
  color: var(--text-ink);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
}

.coverage-stats-bar dd {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
}

.coverage-stats-bar dt {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(28, 28, 26, 0.7);
}

/* ========== SYNC ========== */
.sync-section {
  padding: 72px 0 88px;
  background: var(--bg-primary);
}

.sync-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sync-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--pg-card-shadow);
}

.sync-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.sync-content .section-lead {
  color: var(--muted);
  margin-top: 10px;
}

.sync-steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sync-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sync-step-num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--speed);
  background: rgba(182, 255, 0, 0.08);
  border: 1px solid rgba(182, 255, 0, 0.25);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sync-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.sync-support {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sync-support .chip {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

/* ========== DOWNLOAD ========== */
.download-section {
  padding: 72px 0 88px;
  background:
    radial-gradient(500px 280px at 22% 92%, var(--pg-glow-orange), transparent 60%),
    var(--bg-primary);
  border-top: 1px solid var(--border);
}

.download-panel {
  background: var(--bg-cream);
  color: var(--text-ink);
  border-radius: 32px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  box-shadow: var(--pg-card-shadow);
  position: relative;
  overflow: hidden;
}

.download-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.12), transparent 65%);
  pointer-events: none;
}

.download-panel .section-kicker {
  color: var(--accent);
}

.download-panel h2 {
  color: var(--text-ink);
}

.download-current {
  font-size: 16px;
  margin: 14px 0 24px;
}

.download-current .stat-number {
  color: var(--accent);
  font-weight: 800;
  font-size: 20px;
}

.download-store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-primary);
  color: var(--text);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border);
  cursor: default;
  transition: border-color var(--ease);
}

.store-btn:hover {
  border-color: var(--speed);
}

.store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--speed);
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

.download-tip {
  font-size: 13px;
  color: rgba(28, 28, 26, 0.65);
  max-width: 420px;
  line-height: 1.6;
  margin-top: 18px;
}

.download-qr {
  text-align: center;
}

.download-qr-frame {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 24px;
  border: 2px solid var(--text-ink);
  overflow: hidden;
  background: #fff;
  position: relative;
}

.download-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.download-qr-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.download-qr p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-ink);
}

/* ========== VERSION ========== */
.version-section {
  padding: 72px 0 88px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.version-section .section-lead {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
  margin-top: 12px;
}

.version-slider {
  overflow-x: auto;
  padding: 12px 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.version-slider::-webkit-scrollbar {
  height: 6px;
}

.version-slider::-webkit-scrollbar-track {
  background: transparent;
}

.version-slider::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 99px;
}

.version-track {
  display: flex;
  gap: 18px;
  min-width: max-content;
  padding: 4px;
}

.version-item {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 300px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  position: relative;
}

.version-item--current {
  border-color: var(--speed);
  box-shadow: 0 0 34px rgba(182, 255, 0, 0.1);
}

.version-item h3 {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--speed);
  margin: 12px 0 10px;
}

.version-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.version-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--bg-cream);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.version-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  display: inline-block;
}

.version-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
}

.version-milestone {
  margin-top: 44px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--pg-card-shadow);
}

.version-milestone img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== BOTTOM CTA ========== */
.app-cta {
  padding: 56px 0 72px;
  background: var(--bg-primary);
}

.app-cta-inner {
  text-align: center;
}

.app-cta h2 {
  font-family: var(--font-headline);
  font-size: 28px;
  margin-bottom: 24px;
}

.app-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 520px) {
  .app-hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .coverage-stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .download-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 48px 44px;
  }

  .download-info {
    flex: 1;
  }

  .download-qr {
    flex-shrink: 0;
    padding-left: 32px;
  }
}

@media (min-width: 700px) {
  .app-hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .app-hero-copy {
    flex: 1.1;
  }

  .phone-stage {
    flex-shrink: 0;
    flex-basis: 340px;
  }

  .features-section,
  .coverage-section,
  .sync-section,
  .download-section,
  .version-section {
    padding: 88px 0 104px;
  }

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

  .feature-card--main {
    grid-column: span 2;
  }

  .sync-inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .sync-visual {
    flex: 1;
  }

  .sync-content {
    flex: 1;
  }

  .version-item {
    width: 320px;
  }
}

@media (min-width: 1024px) {
  .app-hero {
    padding: 72px 0 96px;
  }

  .app-hero-copy {
    max-width: 620px;
  }

  .app-hero-stats {
    padding-top: 28px;
  }

  .section-head--split {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .section-head--split .section-lead {
    max-width: 500px;
    text-align: right;
  }

  .feature-bento {
    grid-template-columns: repeat(6, 1fr);
  }

  .feature-card--main {
    grid-column: span 4;
  }

  .feature-card {
    grid-column: span 2;
  }

  .feature-card--wide {
    grid-column: span 6;
    flex-wrap: nowrap;
    align-items: center;
  }

  .feature-card--wide .feature-icon {
    flex-shrink: 0;
  }

  .feature-card--wide h3 {
    width: auto;
    min-width: 240px;
    flex-shrink: 0;
    margin: 0;
  }

  .feature-card--wide .feature-desc {
    width: auto;
    flex: 1;
    margin: 0 12px;
  }

  .feature-appshot {
    max-width: 900px;
  }

  .coverage-cat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .coverage-cat-grid li {
    padding: 18px 20px;
  }

  .phone-stage {
    flex-basis: 380px;
  }

  .phone-shell {
    --pg-phone-width: 320px;
  }

  .sync-steps {
    gap: 22px;
  }

  .app-cta-links .btn {
    padding: 14px 32px;
  }
}

@media (min-width: 1280px) {
  .app-hero {
    padding: 88px 0 112px;
  }

  .app-hero-inner {
    gap: 64px;
  }

  .version-item {
    width: 340px;
  }
}
