:root {
  --page: #f6f7f9;
  --paper: #ffffff;
  --ink: #15171a;
  --muted: #656b74;
  --line: #dfe3e8;
  --accent: #f59e0b;
  --accent-strong: #d97706;
  --green: #16875f;
  --blue: #4b78bf;
  --radius: 8px;
  --shadow: 0 14px 32px rgba(18, 24, 33, 0.1);
  --max-width: 960px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Manrope", "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img,
video {
  display: block;
  width: 100%;
  max-width: 100%;
}

figure,
p,
h1,
h2,
h3 {
  margin: 0;
}

.superhive-page {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 18px 14px 34px;
}

.discount-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #e2b14a;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(21, 23, 26, 0.08) 0 8px, transparent 8px 16px),
    #fff7dd;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.16);
}

.discount-ticket {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 12px 14px;
}

.discount-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 4px;
  background: #15171a;
  color: #fff7dd;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.discount-ticket strong {
  font-size: 1.08rem;
  font-weight: 800;
}

.discount-note {
  color: #4b5563;
  font-weight: 700;
}

.discount-count {
  display: grid;
  place-items: center;
  min-width: 190px;
  padding: 12px 14px;
  background: #15171a;
  color: #fff7dd;
  font-weight: 800;
  text-align: center;
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 18px;
}

.product-copy,
.cover-shot,
.media-frame,
.image-strip figure,
.summary-grid article,
.usecase-grid article,
.workflow-grid article,
.gif-card,
.shortcut-grid article,
.notes-grid article,
.spec-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-copy {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 24px;
}

.eyebrow {
  color: var(--accent-strong);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-size: 1.55rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  max-width: 52ch;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.price-now {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
}

.price-before {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: line-through;
}

.price-save {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 4px;
  background: #e8f7ef;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.cover-shot {
  overflow: hidden;
  min-height: 280px;
  background: #1f1f1f;
}

.cover-shot img {
  height: 100%;
  object-fit: cover;
}

.section-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 28px 0 12px;
}

.section-head p {
  color: var(--muted);
  margin-top: 4px;
}

.section-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #111827;
  color: #ffffff;
  font-weight: 800;
}

.media-frame,
.image-strip figure {
  overflow: hidden;
}

.feature-caption {
  display: grid;
  gap: 8px;
  padding: 15px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.feature-caption p {
  color: var(--muted);
}

.main-gif img,
.gif-card img {
  aspect-ratio: 16 / 9;
  background: #171717;
  object-fit: cover;
}

.image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.image-strip img {
  height: 100%;
  object-fit: cover;
}

.summary-grid,
.usecase-grid,
.workflow-grid,
.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.summary-grid article,
.usecase-grid article,
.workflow-grid article,
.notes-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.summary-grid span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.usecase-grid article {
  border-left: 4px solid var(--accent);
}

.usecase-grid article span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 8px;
  border-radius: 5px;
  background: #f3f6fa;
  color: #394150;
  font-size: 0.82rem;
  font-weight: 800;
}

.summary-grid p,
.usecase-grid p,
.workflow-grid p,
.notes-grid p,
.gif-card p {
  color: var(--muted);
}

.gif-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gif-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 12px;
}

.gif-card img {
  border-radius: 6px;
}

.detail-list {
  display: grid;
  gap: 7px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 8px 10px;
  border-left: 3px solid rgba(75, 120, 191, 0.75);
  border-radius: 0 5px 5px 0;
  background: #f7f9fc;
  color: #4e5661;
  font-size: 0.9rem;
  line-height: 1.45;
}

.detail-list strong {
  color: #18202b;
  font-weight: 800;
}

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

.shortcut-grid article {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.shortcut-grid strong {
  font-family: "IBM Plex Sans", monospace;
}

.shortcut-grid span {
  color: var(--muted);
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  background: var(--line);
}

.spec-strip div {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: var(--paper);
}

.spec-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-strip strong {
  font-size: 0.94rem;
}

.beta-footnote {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 820px) {
  .product-intro,
  .image-strip,
  .summary-grid,
  .usecase-grid,
  .workflow-grid,
  .notes-grid,
  .shortcut-grid,
  .gif-grid,
  .spec-strip {
    grid-template-columns: 1fr;
  }

  .product-copy {
    padding: 18px;
  }
}

@media (max-width: 620px) {
  .superhive-page {
    padding: 10px 10px 28px;
  }

  .discount-strip {
    grid-template-columns: 1fr;
  }

  .discount-count {
    min-width: 0;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .cover-shot {
    min-height: 210px;
  }

  .section-head {
    grid-template-columns: 1fr;
  }
}
