:root {
  color-scheme: light;
  --ink: #161616;
  --soft-ink: #26242c;
  --muted: #68626b;
  --paper: #ffffff;
  --warm: #f5f6fa;
  --surface: #ffffff;
  --line: #e6e7eb;
  --red: #cf2e23;
  --black: #121212;
  --gold: #f6c643;
  --gold-deep: #f39a2d;
  --shadow: 0 24px 70px rgba(22, 22, 22, 0.16);
  --brand-font: Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--brand-font);
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.58;
}

section[id] {
  scroll-margin-top: 104px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 12px 32px;
  background: #ededed;
  border-bottom: 1px solid #dedede;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 1.16rem;
  font-weight: 950;
}

.brand img,
.footer-brand img {
  border-radius: 9px;
  box-shadow: 0 9px 22px rgba(22, 22, 22, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  font-size: 1rem;
  font-weight: 900;
}

.nav-links a {
  color: var(--soft-ink);
}

.nav-links a:hover,
.footer-links a:hover,
.note-link:hover {
  color: var(--red);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(136px, 100%);
  max-width: 136px;
  line-height: 0;
  transition: transform 160ms ease;
}

.store-badge.small {
  justify-self: end;
  width: 136px;
}

.store-badge img {
  width: 100%;
  height: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(460px, 1.08fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: 86px max(32px, calc((100vw - 1220px) / 2)) 72px;
  overflow: hidden;
  background: #ffffff;
}

.hero-content {
  width: min(520px, 100%);
}

.award-leaves {
  display: block;
  width: 54px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(10%) saturate(783%) hue-rotate(203deg) brightness(88%) contrast(86%);
  opacity: 0.9;
}

.award-leaves-right {
  transform: scaleX(-1);
}

.hero h1 {
  margin: 0;
  color: var(--red);
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 1000;
  line-height: 0.92;
  text-shadow: 0 14px 34px rgba(207, 46, 35, 0.14);
}

.hero h2 {
  margin: 24px 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.65rem, 2.1vw, 2.15rem);
  line-height: 1.16;
}

.hero-lede {
  max-width: 520px;
  margin: 18px 0 0;
  color: #4c4850;
  font-size: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 52px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  color: #ffffff;
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(207, 46, 35, 0.28);
  font-size: 1.08rem;
  font-weight: 950;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover,
.store-badge:hover {
  transform: translateY(-2px);
}

.rating-proof {
  margin-top: 22px;
  color: #4d4952;
  font-size: 1rem;
}

.rating-proof strong {
  margin-right: 4px;
  color: var(--soft-ink);
  font-size: 1.24rem;
}

.collector-proof {
  display: flex;
  gap: 38px;
  align-items: center;
  margin-top: 52px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.collector-proof > div:last-child {
  display: grid;
  gap: 8px;
}

.avatar-stack img {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  object-fit: cover;
  background: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.collector-proof p {
  margin: 0;
}

.stars-row {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.stars-row .award-leaves {
  width: 20px;
  opacity: 0.82;
}

.stars-leaves-left {
  transform: none;
}

.stars-leaves-right {
  transform: scaleX(-1);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.collector-proof strong {
  color: var(--ink);
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 278px));
  gap: 22px;
  align-items: center;
  justify-content: end;
}

.poster-card {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 28px 82px rgba(18, 18, 18, 0.2);
}

.poster-card img,
.flow-card img,
.table-shot img {
  width: 100%;
  height: auto;
}

.scan-poster {
  transform: translateY(-4px);
}

.set-poster {
  transform: translateY(44px);
}

.section,
.collector-band,
.flow-band,
.notes-band {
  width: 100%;
}

.section {
  padding: 108px 32px;
}

.section > *,
.collector-band-inner,
.flow-band-inner,
.notes-band-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.collector-band {
  padding: 104px 32px;
  background: #ffffff;
}

.flow-band {
  padding: 110px 32px;
  background: var(--black);
}

.notes-band {
  padding: 104px 32px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-copy {
  max-width: 720px;
}

.section-copy.centered {
  margin: 0 auto 48px;
  text-align: center;
}

.section h2,
.collector-band h2,
.flow-band h2,
.notes-band h2,
.final-cta h2,
.blog-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 1000;
  line-height: 0.98;
}

.flow-band h2,
.flow-band p,
.flow-band .eyebrow {
  color: #ffffff;
}

.flow-band .section-copy > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.collector-band-inner,
.notes-band-inner {
  display: grid;
  gap: 44px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.collector-use-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.feature-card {
  display: grid;
  gap: 10px;
  min-height: 224px;
  padding: 26px;
}

.feature-kicker {
  margin: 0;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.38rem;
  font-weight: 950;
  line-height: 1.06;
}

.feature-card p:last-child {
  margin: 0;
  font-size: 0.98rem;
}

.flow-band-inner {
  display: grid;
  gap: 52px;
}

.collector-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.collector-card {
  display: grid;
  gap: 18px;
  min-height: 214px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.collector-card-wide {
  grid-column: span 6;
}

.collector-card:not(.collector-card-wide) {
  grid-column: span 3;
}

.collector-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.collector-card-head img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

.collector-name,
.collector-role {
  margin: 0;
}

.collector-name {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 950;
}

.collector-role {
  color: inherit;
  opacity: 0.75;
  font-size: 0.94rem;
  font-weight: 800;
}

.collector-card p:last-child {
  margin: 0;
  color: inherit;
  font-size: 1.06rem;
}

.tone-ink {
  color: #ffffff;
  background: #161616;
  border-color: #161616;
}

.tone-paper {
  background: #f8f4ec;
}

.tone-red {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.tone-gold {
  background: #f7d887;
  border-color: #f0cb62;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.flow-card {
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 22px 22px 26px;
  background: #ffffff;
  border-radius: 20px;
}

.flow-card-featured {
  grid-column: span 5;
  background: #fff5df;
}

.flow-card:not(.flow-card-featured) {
  grid-column: span 3;
}

.flow-card.tone-dark {
  background: #1d1d1d;
}

.flow-card.tone-dark .flow-card-copy h3,
.flow-card.tone-dark .flow-card-copy p,
.flow-card.tone-dark .flow-step {
  color: #ffffff;
}

.flow-card.tone-dark .flow-card-copy p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.flow-card.tone-light {
  background: #f6f1e8;
}

.flow-card.tone-gold {
  background: #f7d887;
}

.flow-card-copy {
  display: grid;
  gap: 12px;
}

.flow-step {
  margin: 0;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 950;
}

.flow-card h3,
.table-band-copy h2 {
  margin: 0;
}

.flow-card h3 {
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 950;
  line-height: 1;
}

.flow-card p {
  margin: 0;
  font-size: 1rem;
}

.flow-card img {
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(18, 18, 18, 0.18);
}

.table-band {
  background: #fff8ed;
}

.table-band-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.table-band-copy {
  max-width: 560px;
}

.table-band-copy p {
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #34313a;
  line-height: 1.55;
  font-weight: 850;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.26em;
  left: 0;
  width: 19px;
  height: 19px;
  background: var(--red);
  box-shadow: inset 0 0 0 5px var(--gold);
  border-radius: 50%;
}

.table-band-media {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: end;
}

.table-shot {
  margin: 0;
}

.table-shot img {
  border-radius: 24px;
  box-shadow: 0 28px 74px rgba(18, 18, 18, 0.2);
}

.table-shot-main {
  transform: translateY(-36px);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.note-link,
.post-card,
.empty-blog {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.note-link {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 26px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.note-link:hover {
  transform: translateY(-3px);
  border-color: #d9c7b4;
}

.note-link strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.note-link span {
  color: var(--muted);
  line-height: 1.55;
}

.faq {
  padding-top: 92px;
  padding-bottom: 72px;
  background: #ffffff;
}

.faq-list {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 18px 48px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(22, 22, 22, 0.06);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  position: relative;
  padding: 28px 56px 28px 0;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "×";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  max-width: 860px;
  padding: 0 0 28px;
  color: #2e2e35;
  font-size: 1rem;
}

.stats-section {
  padding-top: 8px;
  padding-bottom: 96px;
  background: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 34px 40px;
  background: #f5f6fa;
  border-radius: 28px;
}

.stat-card {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.stat-card strong,
.stat-card span {
  margin: 0;
}

.stat-card strong {
  color: #ff3a28;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 1000;
  line-height: 1;
}

.stat-card span {
  color: #596273;
  font-size: 1.08rem;
  font-weight: 700;
}

.final-cta {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto 96px;
  padding: 96px 32px;
  text-align: center;
  background: #f5f6fa;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.final-cta-inner {
  width: min(720px, 100%);
  margin: 0 auto;
}

.final-cta p {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.08rem;
}

.footer-store-badge {
  width: 136px;
  margin-top: 26px;
}

.final-cta-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-hero {
  padding: 108px 32px 84px;
  text-align: center;
  background: #ffffff;
}

.blog-hero > * {
  width: min(920px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.blog-hero p:last-child {
  color: #4d4952;
  font-size: 1.18rem;
}

.blog-list {
  display: grid;
  gap: 16px;
}

.post-card,
.empty-blog {
  padding: 26px;
}

.post-card p:first-child {
  margin-top: 0;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 950;
  text-transform: uppercase;
}

.empty-blog {
  max-width: 760px;
}

.empty-blog code {
  padding: 2px 6px;
  background: #f1ede6;
  border-radius: 4px;
}

.empty-blog .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 950;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 42px 32px;
  color: #f3f4f7;
  background: #111214;
  border-top: 1px solid #1d1f24;
}

.site-footer > div:first-child,
.site-footer .legal {
  max-width: 700px;
}

.site-footer p,
.site-footer .footer-brand,
.site-footer .footer-brand span {
  color: #f3f4f7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 4px;
}

.footer-links a {
  padding: 10px 12px;
  color: #f3f4f7;
  font-weight: 900;
  border-radius: 10px;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.legal {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: #9ca3af;
  font-size: 0.86rem;
}

@media (max-width: 1120px) {
  .collector-card-wide,
  .collector-card:not(.collector-card-wide),
  .flow-card-featured,
  .flow-card:not(.flow-card-featured) {
    grid-column: span 6;
  }

  .table-band-grid,
  .table-band-media,
  .notes-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .notes-grid .note-link:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 12px 22px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: auto;
    padding: 70px 24px 82px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .collector-mark,
  .hero-actions,
  .collector-proof {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .collector-proof {
    justify-content: center;
  }

  .collector-proof {
    margin-top: 52px;
  }

  .hero-gallery {
    width: min(640px, 100%);
    margin: 0 auto;
    justify-content: center;
  }

  .set-poster {
    transform: translateY(24px);
  }

  .section,
  .collector-band,
  .flow-band,
  .notes-band {
    padding-right: 24px;
    padding-left: 24px;
  }

  .collector-grid,
  .flow-grid,
  .table-band-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .collector-card-wide,
  .collector-card:not(.collector-card-wide),
  .flow-card-featured,
  .flow-card:not(.flow-card-featured) {
    grid-column: auto;
  }

  .table-band-media,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .table-shot-main {
    transform: none;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand span {
    display: none;
  }

  .store-badge.small {
    min-width: 128px;
    min-height: 42px;
  }

  .hero {
    padding: 58px 18px 70px;
  }

  .collector-mark {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 4.7rem);
  }

  .hero h2 {
    font-size: 1.54rem;
  }

  .hero-lede {
    font-size: 1.14rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 36px;
  }

  .primary-button,
  .hero-actions .primary-button {
    width: 100%;
  }

  .hero-actions .store-badge {
    width: 136px;
    margin: 0 auto;
  }

  .collector-proof {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    margin-top: 34px;
  }

  .hero-gallery {
    grid-template-columns: repeat(2, minmax(0, 252px));
    justify-content: start;
    gap: 16px;
    overflow-x: auto;
    padding: 0 0 18px;
  }

  .poster-card {
    border-radius: 18px;
  }

  .scan-poster,
  .set-poster {
    transform: none;
  }

  .section,
  .collector-band,
  .flow-band,
  .notes-band {
    padding-right: 14px;
    padding-left: 14px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .collector-band,
  .flow-band,
  .notes-band {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .collector-card,
  .flow-card,
  .note-link,
  .feature-card,
  .collector-use-card {
    min-height: 0;
    padding: 20px;
  }

  .collector-card-head img {
    width: 48px;
    height: 48px;
  }

  .flow-card h3 {
    font-size: 1.45rem;
  }

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

  .faq-list summary {
    font-size: 1.04rem;
  }

  .faq-list {
    padding: 12px 20px;
    border-radius: 22px;
  }

  .final-cta {
    width: calc(100% - 28px);
    margin-bottom: 72px;
    padding: 56px 20px;
    border-radius: 18px;
  }

  .footer-store-badge {
    width: min(100%, 220px);
  }

  .site-footer {
    padding: 34px 20px;
  }
}
