.pro .eyebrow {
  margin: 0 0 0.4rem;
  font-family: Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.pro h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
}

.pro .kicker {
  margin: 0 0 0.75rem;
  font-family: Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.pro .flags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0 0 1.75rem;
}

.pro .flag {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.35rem 0.25rem;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--card);
  color: var(--ink);
  font-family: Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}
.pro .flag[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}
.pro .flag .mark {
  width: 2.1rem;
  height: 1.4rem;
  flex: 0 0 1.4rem;
  overflow: hidden;
  border: 1px solid var(--ink);
}
.pro .flag .mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.pro .flag small {
  display: block;
  font-weight: 700;
  font-size: 0.68rem;
}

@media (max-width: 22rem) {
  .pro .flags { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.pro .toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0 0 2.25rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--line);
  font-family: Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
}
.pro .toc a {
  color: var(--ink);
  font-weight: 700;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.pro section {
  margin: 0 0 2.4rem;
}

.pro h2 {
  margin: 0 0 0.85rem;
  font-size: 1.55rem;
  line-height: 1.25;
}

.pro h3 {
  margin: 1.2rem 0 0.45rem;
  font-size: 1.15rem;
}

.pro p,
.pro li {
  margin: 0 0 0.85rem;
}

.pro ul {
  margin: 0 0 0.9rem;
  padding: 0 0 0 1.2rem;
}

.pro .flow {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.pro .flow li {
  display: grid;
  gap: 0.2rem;
  margin: 0 0 1rem;
  padding: 0.95rem 1rem 0.95rem 3.4rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
}
.pro .flow li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 0.95rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro .flow strong {
  display: block;
}
.pro .flow span {
  color: var(--muted);
}

.pro .stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin: 0.5rem 0 1rem;
}
.pro .store {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  text-decoration: none;
}
.pro .badge-ios {
  height: 56px;
  width: auto;
}
.pro .badge-play {
  height: 84px;
  width: auto;
}

.pro .maker {
  color: var(--muted);
  font-size: 1rem;
}
