:root {
  --page: #fffdf7;
  --paper: #ffffff;
  --ink: #21102f;
  --muted: #6f6075;
  --quiet: #9a8d9d;
  --purple: #5a2b91;
  --purple-dark: #2d0f45;
  --purple-soft: #f5effb;
  --gold: #d89a1f;
  --gold-dark: #ad7613;
  --line: #eadfd0;
  --shadow: 0 16px 38px rgba(47, 24, 57, 0.09);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(216, 154, 31, 0.1), transparent 18rem),
    linear-gradient(180deg, #fffdf8 0%, #fffaf1 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.header-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: 205px 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  text-decoration: none;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: 188px;
  height: auto;
  transform: translateY(-18%);
  filter: drop-shadow(0 12px 18px rgba(47, 24, 57, 0.24));
}

.site-nav,
.header-actions,
.button-row,
.trust-row,
.section-kicker,
.card-action,
.mini-feature,
.footer-benefit,
.text-link {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a,
.header-actions a,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.header-actions a:hover,
.text-link:hover {
  color: var(--purple);
}

.header-actions {
  gap: 14px;
}

.icon-link {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
}

.icon-link svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.hero {
  overflow: hidden;
  padding-top: 18px;
}

.hero .section-inner {
  width: min(1440px, calc(100% - 48px));
}

.hero-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(350px, 0.7fr) minmax(520px, 1.3fr);
  gap: 24px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 58px 0 44px;
}

.eyebrow,
.section-kicker {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
}

.eyebrow::before,
.section-kicker::before {
  content: "+";
  margin-right: 8px;
  color: var(--purple);
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(4rem, 7vw, 6.8rem);
  line-height: 0.9;
}

h1 span {
  color: var(--purple);
}

.lead {
  max-width: 430px;
  color: var(--muted);
  font-size: 1.12rem;
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--purple);
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(180deg, #e4a52c, var(--gold-dark));
  color: #fff;
  box-shadow: 0 9px 22px rgba(173, 118, 19, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--purple);
}

.button.purple {
  border-color: transparent;
  background: #7441bc;
  color: #fff;
}

.button:hover,
.product-card:hover,
.blog-card:hover {
  transform: translateY(-2px);
}

.trust-row {
  gap: 28px;
  margin-top: 42px;
}

.trust-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  max-width: 160px;
}

.trust-icon,
.mini-icon,
.footer-icon {
  display: grid;
  place-items: center;
  color: var(--purple);
}

.trust-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(90, 43, 145, 0.45);
  border-radius: 50%;
}

.trust-icon svg,
.mini-icon svg,
.footer-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item strong {
  display: block;
  font-size: 0.78rem;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-art {
  position: relative;
  min-height: 560px;
  align-self: stretch;
}

.hero-art::before {
  position: absolute;
  inset: 0 -72px 0 -92px;
  content: "";
  background:
    linear-gradient(90deg, var(--page) 0%, rgba(255, 253, 247, 0.62) 11%, rgba(255, 253, 247, 0.14) 23%, rgba(255, 253, 247, 0) 34%),
    url("assets/generated-hero-pantheria-cartoon-v6.png") right center / cover no-repeat;
}

.hero-art::after {
  content: none;
}

.section {
  padding: 24px 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-kicker {
  gap: 0;
  margin: 0;
}

.text-link {
  gap: 8px;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 750;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-card {
  min-width: 0;
  padding: 12px;
  border-right: 1px solid var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:last-child {
  border-right: 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  border-radius: 6px;
  object-fit: cover;
  object-position: center 24%;
}

.product-card h3 {
  min-height: 42px;
  margin: 12px 0 7px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  line-height: 1.05;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
}

.bag-link {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--muted);
}

.bag-link svg {
  width: 17px;
  height: 17px;
}

.one-shot {
  padding-top: 28px;
  scroll-margin-top: 150px;
}

.odos-ad {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  background:
    radial-gradient(circle at 82% 18%, rgba(130, 73, 206, 0.32), transparent 28rem),
    linear-gradient(135deg, #2d0f45 0%, #401466 58%, #190924 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(47, 15, 69, 0.2);
}

.odos-ad::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(45, 15, 69, 0.96), rgba(45, 15, 69, 0.78) 45%, rgba(45, 15, 69, 0.5));
  pointer-events: none;
}

.odos-ad > * {
  position: relative;
  z-index: 1;
}

.odos-showcase {
  display: block;
  container-type: inline-size;
  width: min(100%, 1160px);
  margin-inline: auto;
  aspect-ratio: 1680 / 940;
  min-height: 0;
  padding: 0;
  background:
    radial-gradient(circle at 65% 42%, rgba(139, 65, 219, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(10, 5, 18, 0.42), rgba(32, 8, 52, 0.16) 48%, rgba(10, 5, 18, 0.5)),
    url("assets/odos/odos-ad-purple-bg.png") center / cover,
    linear-gradient(135deg, #14061e 0%, #2b0d43 50%, #0d0618 100%);
}

.odos-showcase::before {
  background: none;
}

.odos-showcase-copy {
  position: absolute;
  left: 2.35%;
  top: 4.5%;
  width: 35.7%;
  height: 88%;
}

.odos-ribbon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 114%;
  align-items: center;
  gap: 2.6%;
  margin-bottom: 0;
  padding: 1.25% 8% 1.25% 17.5%;
  border: 2px solid #d89a1f;
  border-left: 0;
  background: rgba(19, 8, 29, 0.78);
  color: #f3c74d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.odos-ribbon::before,
.odos-ribbon::after {
  content: "+";
  color: #f0b72f;
}

.odos-coin {
  position: absolute;
  left: -4.9%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 17.5%;
  max-width: none;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.38));
}

.odos-showcase h2 {
  position: absolute;
  left: 0;
  top: 15%;
  width: 118%;
  margin-bottom: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 3.72vw, 4.25rem);
  font-weight: 800;
  line-height: 0.98;
}

.odos-showcase h2 span {
  color: #f3c74d;
  text-shadow: 0 3px 0 rgba(88, 38, 8, 0.6);
}

.headline-swish {
  position: absolute;
  left: 0;
  top: 46%;
  width: 66%;
  max-width: none;
  margin: 0;
  opacity: 0.72;
  filter: saturate(0.82) brightness(0.92) drop-shadow(0 3px 5px rgba(0, 0, 0, 0.24));
}

.odos-showcase-copy p {
  position: absolute;
  left: 0;
  top: 53%;
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.78rem, 0.92vw, 0.98rem);
  line-height: 1.45;
}

.odos-showcase .button {
  position: absolute;
  left: 0;
  top: 72%;
  width: 84%;
  padding: 11px 20px;
  min-width: 0;
  justify-content: center;
  border: 2px solid #d89a1f;
  border-radius: 3px;
  background: linear-gradient(180deg, #7c47d7, #4a2190);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
  font-size: clamp(0.82rem, 0.98vw, 1rem);
}

.odos-monthly-note {
  position: absolute;
  left: 0;
  top: 82.5%;
  width: 113%;
  display: flex;
  gap: 2.8%;
  align-items: center;
  margin: 0;
  color: #f1bd35;
  font-size: clamp(0.7rem, 0.84vw, 0.88rem);
}

.odos-feature-icons {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  max-width: 113%;
}

.odos-feature-icons span {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  justify-content: flex-start;
  min-height: 64px;
  padding: 0 5%;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.46rem, 0.56vw, 0.6rem);
  font-weight: 850;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.odos-feature-icons span:last-child {
  border-right: 0;
}

.odos-feature-icon-art {
  width: 34px;
  max-width: 34px;
  min-width: 34px;
  filter: drop-shadow(0 6px 7px rgba(0, 0, 0, 0.28));
}

.odos-showcase-collage {
  position: absolute;
  left: 39.3%;
  top: 2.7%;
  width: 41.7%;
  height: 91.5%;
}

.odos-showcase-collage img {
  position: absolute;
  border: 2px solid rgba(241, 189, 53, 0.92);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45);
}

.odos-showcase-collage .show-token {
  border: 0;
}

.show-map {
  right: 0.7%;
  top: 0;
  z-index: 1;
  width: 39%;
  height: 44%;
  transform: rotate(5deg);
}

.show-map-secondary {
  right: 12.5%;
  top: 9.5%;
  z-index: 2;
  width: 37%;
  height: 41%;
  transform: rotate(-4deg);
}

.show-page-left {
  left: 1.5%;
  top: 23.5%;
  z-index: 2;
  width: 25%;
  height: 47%;
  object-position: top center;
  transform: rotate(-9deg);
}

.show-cover {
  left: 21.5%;
  top: 8.8%;
  z-index: 5;
  width: 41.5%;
  height: 56.5%;
  object-position: center top;
  transform: rotate(-4deg);
}

.show-page-right {
  right: 10.8%;
  top: 32.2%;
  z-index: 6;
  width: 28.5%;
  height: 43%;
  object-position: top center;
  transform: rotate(7deg);
}

.show-page-bottom {
  left: 29.8%;
  bottom: 0;
  z-index: 7;
  width: 29.5%;
  height: 39%;
  object-position: top center;
  transform: rotate(-3deg);
}

.show-cover-small {
  right: 0.5%;
  bottom: 6.2%;
  z-index: 7;
  width: 30%;
  height: 33.5%;
  object-position: center top;
  transform: rotate(9deg);
}

.show-token {
  z-index: 8;
  width: 16.8%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.48);
}

.show-token-a {
  left: -2.4%;
  top: 51%;
}

.show-token-b {
  left: -1.4%;
  top: 70.5%;
}

.show-token-c {
  right: -7.8%;
  bottom: 40.5%;
}

.show-token-d {
  right: -8%;
  bottom: 22.5%;
}

.odos-showcase-list {
  position: absolute;
  right: 2.05%;
  top: 16.1%;
  width: 14.7%;
  min-height: 66%;
  display: grid;
  align-content: center;
  gap: 7.2%;
  padding: 3.6% 1.25%;
  border: 2px solid #d89a1f;
  border-radius: 8px;
  background: rgba(28, 10, 48, 0.72);
}

.odos-showcase-list span {
  display: grid;
  grid-template-columns: 21% 1fr;
  gap: 7%;
  align-items: center;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.66rem, 0.82vw, 0.84rem);
  font-weight: 760;
  line-height: 1.25;
}

.odos-showcase-list span::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid #d89a1f;
  border-radius: 50%;
  color: #f7ca47;
  font-weight: 950;
  box-shadow: 0 0 0 3px rgba(216, 154, 31, 0.13);
}

.odos-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.98;
}

.odos-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.odos-ad-hero,
.odos-combo-a {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(330px, 0.8fr) minmax(380px, 1fr) minmax(220px, 0.55fr);
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.odos-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
}

.odos-actions span,
.inline-note {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 900;
}

.odos-pack-stack,
.odos-collage {
  position: relative;
  min-height: 330px;
}

.pack {
  position: absolute;
  width: 54%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
}

.pack.cover {
  left: 12%;
  top: 0;
  z-index: 3;
  transform: rotate(-3deg);
}

.pack.flow,
.pack.overview {
  right: 7%;
  top: 36px;
  z-index: 2;
  transform: rotate(4deg);
}

.pack.map {
  left: 24%;
  bottom: 0;
  z-index: 1;
  width: 62%;
  transform: rotate(1deg);
}

.pack.token {
  width: 82px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.pack.token-a {
  right: 4%;
  bottom: 34px;
  z-index: 4;
}

.pack.token-b {
  left: 9%;
  bottom: 26px;
  z-index: 4;
}

.odos-checklist {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
}

.odos-checklist span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
}

.odos-checklist span::before,
.odos-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 154, 31, 0.16);
}

.odos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.odos-ad-workflow,
.odos-ad-assets,
.odos-combo-b,
.odos-combo-c {
  min-height: 620px;
  padding: 34px;
}

.odos-ad-workflow,
.odos-combo-b {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(460px, 1.15fr);
  gap: 24px;
  align-items: center;
}

.odos-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.odos-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.workflow-preview,
.odos-mini-gallery {
  position: relative;
  min-height: 420px;
}

.workflow-preview img,
.odos-mini-gallery img {
  position: absolute;
  width: 72%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.workflow-preview img:nth-child(1),
.odos-mini-gallery img:nth-child(1) {
  left: 0;
  top: 0;
  transform: rotate(-2deg);
}

.workflow-preview img:nth-child(2),
.odos-mini-gallery img:nth-child(2) {
  right: 0;
  bottom: 0;
  transform: rotate(3deg);
}

.odos-mini-gallery img:nth-child(3) {
  left: 14%;
  bottom: 42px;
  z-index: 2;
  width: 60%;
  transform: rotate(1deg);
}

.odos-mini-gallery img:nth-child(4) {
  right: 6%;
  top: 32px;
  z-index: 1;
  width: 58%;
  transform: rotate(5deg);
}

.odos-ad-assets,
.odos-combo-c {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(460px, 1.15fr);
  gap: 24px;
  align-items: center;
}

.asset-board {
  display: grid;
  gap: 14px;
  align-self: end;
}

.odos-combo-c .asset-board {
  grid-template-columns: minmax(300px, 1fr) minmax(190px, 0.56fr);
  align-items: center;
}

.odos-combo-c .asset-map {
  grid-row: 1 / span 2;
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
}

.odos-combo-c .token-row,
.odos-combo-c .asset-pages {
  grid-column: 2;
}

.asset-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

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

.token-row img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.asset-pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.asset-pages img {
  width: 100%;
  max-height: 170px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.odos-ad-cinematic,
.odos-combo-d {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(220px, 0.34fr) minmax(330px, 0.72fr) minmax(260px, 0.44fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.cinematic-media img {
  width: 100%;
  max-height: 260px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.cinematic-support {
  display: grid;
  gap: 10px;
}

.cinematic-support > img {
  width: 100%;
  max-height: 125px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.cinematic-support .token-row {
  gap: 7px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 850;
}

.patreon-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 250px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr) minmax(260px, 0.72fr);
  gap: 20px;
  align-items: center;
  padding: 30px 24px;
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(47, 15, 69, 0.98), rgba(47, 15, 69, 0.82)),
    url("assets/odos/odos-ad-purple-bg.png") center / cover no-repeat;
  color: #fff;
}

.patreon-panel h2 {
  max-width: 440px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
}

.patreon-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.patreon-kicker {
  margin-bottom: 12px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patreon-kicker span {
  color: var(--gold);
}

.patreon-art {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 190px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 198, 70, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(47, 15, 69, 0.35), rgba(47, 15, 69, 0.78)),
    url("assets/dicestory-hero-banner.png") 26% center / cover no-repeat;
}

.patreon-art img {
  width: min(92%, 300px);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
}

.patreon-facts {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
}

.fact {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  font-weight: 750;
}

.fact svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.inline-note {
  margin-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 800;
}

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

.blog-card {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 16px;
  min-height: 170px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(47, 24, 57, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  border-radius: 5px;
  object-fit: cover;
}

.blog-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.12;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.84rem;
}

.card-action {
  gap: 7px;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.card-action svg {
  width: 15px;
  height: 15px;
}

.wiki-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) 1px minmax(420px, 1.35fr);
  gap: 36px;
  align-items: center;
  padding: 24px;
  border: 1px solid #ddcbe9;
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(250, 245, 255, 0.96), rgba(255, 253, 247, 0.95));
  box-shadow: 0 10px 28px rgba(90, 43, 145, 0.08);
}

.wiki-lead {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 26px;
  align-items: center;
}

.wiki-emblem {
  display: grid;
  width: 116px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: radial-gradient(circle, #7441bc 0%, #35144f 72%);
  box-shadow: 0 0 0 1px rgba(90, 43, 145, 0.26), 0 18px 28px rgba(47, 24, 57, 0.14);
}

.wiki-emblem svg {
  width: 64px;
  height: 64px;
  color: #fff;
}

.wiki-lead h2 {
  max-width: 360px;
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 2rem;
  line-height: 1.05;
}

.wiki-lead p {
  color: var(--muted);
}

.divider {
  width: 1px;
  height: 140px;
  background: #dfd1e8;
}

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

.mini-feature {
  flex-direction: column;
  gap: 9px;
  text-align: center;
}

.mini-feature strong {
  font-size: 0.85rem;
}

.mini-feature span {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

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

.footer-benefit {
  justify-content: center;
  gap: 12px;
}

.footer-benefit strong {
  display: block;
  font-size: 0.82rem;
}

.footer-benefit span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-icon {
  color: var(--ink);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 165px 1fr;
  }

  .header-actions {
    display: none;
  }

  .brand-logo {
    width: 150px;
    transform: translateY(-16%);
  }

  .product-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card:nth-child(3) {
    border-right: 0;
  }

  .product-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .blog-row,
  .patreon-panel,
  .wiki-panel,
  .odos-ad-hero,
  .odos-grid,
  .odos-ad-workflow,
  .odos-ad-assets,
  .odos-ad-cinematic,
  .odos-combo-a,
  .odos-combo-b,
  .odos-combo-c,
  .odos-combo-d {
    grid-template-columns: 1fr;
  }

  .odos-ad-cinematic {
    align-items: stretch;
  }

  .odos-combo-c .asset-board {
    grid-template-columns: 1fr;
  }

  .odos-combo-c .asset-map {
    grid-row: auto;
    height: auto;
  }

  .odos-combo-c .token-row,
  .odos-combo-c .asset-pages {
    grid-column: auto;
  }

  .divider {
    display: none;
  }
}

@media (max-width: 820px) {
  .header-inner,
  .section-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .site-nav a {
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 6px;
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 34px 0 18px;
  }

  .hero-art {
    min-height: 320px;
  }

  .hero-art::before {
    inset: 0 -14px;
    border-radius: 12px;
  }

  .hero-art::after {
    inset: auto -14px 0 -14px;
    height: 96px;
  }

  h1 {
    max-width: 380px;
    font-size: 4.1rem;
  }

  .trust-row,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card,
  .product-card:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .product-card:nth-child(even) {
    border-right: 0;
  }

  .product-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .blog-card,
  .wiki-lead {
    grid-template-columns: 1fr;
  }

  .wiki-features,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .button-row,
  .button {
    width: 100%;
  }

  .brand-logo {
    width: 132px;
    transform: translateY(-12%);
  }

  h1 {
    font-size: 3.35rem;
  }

  .lead {
    font-size: 1rem;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .odos-feature-icons span {
    border-right: 0;
  }

  .product-row,
  .wiki-features,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:nth-child(3),
  .product-card:nth-child(even) {
    border-right: 0;
  }

  .product-card:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .patreon-panel,
  .wiki-panel,
  .odos-ad-hero,
  .odos-ad-workflow,
  .odos-ad-assets,
  .odos-ad-cinematic {
    padding: 18px;
  }

  .inline-note {
    display: block;
    margin: 12px 0 0;
  }
}
