.hero {
  padding-top: 46px;
  background: linear-gradient(180deg, #eaf8ff 0%, #f8fdff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: #ffe88f;
  color: #624b00;
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.hero-logo-lg {
  width: 88px;
  height: 88px;
}

.hero-shot {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-shot img {
  width: 100%;
  aspect-ratio: 7 / 11;
  object-fit: cover;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.chip {
  border-radius: var(--radius-pill);
  padding: 7px 12px;
  font-weight: 700;
  font-size: 0.9rem;
}

.chip.sky {
  background: #dcf1ff;
  color: #0f6ea4;
}

.chip.mint {
  background: #ddf6ed;
  color: #116448;
}

.chip.berry {
  background: #ffe4ee;
  color: #914064;
}

.soft-bg {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.warm-bg {
  background: var(--bg-warm);
  border-top: 1px solid #f3e6ce;
  border-bottom: 1px solid #f3e6ce;
}

.accent-bg {
  background: var(--bg-accent);
  border-top: 1px solid #f5dae8;
  border-bottom: 1px solid #f5dae8;
}

.inline-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.stat strong {
  display: block;
  color: #1f5b81;
  margin-bottom: 4px;
}

.iframe-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.iframe-wrap iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
}

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

.phone-frame {
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.phone-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.article-block {
  margin-bottom: 22px;
}

.article-block:last-child {
  margin-bottom: 0;
}

.article-block h3 {
  margin-bottom: 6px;
}

.ad-safe-note {
  border: 1px dashed #90bee2;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.9rem;
  color: #3b6381;
  background: #f4fbff;
}

.play-note {
  margin-top: 10px;
  margin-bottom: 0;
  padding: 10px 12px;
  border: 1px solid #c8e6fb;
  border-radius: var(--radius-sm);
  background: #f7fcff;
  color: #3d6683;
}

.play-quick-reads {
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid #dcebf6;
  color: #436882;
}

.play-main-panel h2 {
  margin-top: 16px;
}

.play-main-panel h2:first-child {
  margin-top: 0;
}

.play-side-panel {
  background: #fbfeff;
  border-color: #d8ebf8;
}

.play-side-panel h3 {
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e4f0f8;
}

.play-side-panel .checklist {
  margin-bottom: 12px;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .inline-stats {
    grid-template-columns: 1fr 1fr;
  }

  .iframe-wrap iframe {
    min-height: 620px;
  }
}

@media (max-width: 620px) {
  .inline-stats {
    grid-template-columns: 1fr;
  }

  .iframe-wrap iframe {
    min-height: 560px;
  }

  .phone-frame {
    width: min(100%, 390px);
  }

  .hero-logo-lg {
    width: 72px;
    height: 72px;
  }
}
