:root {
  --bg: #0d0906;
  --panel: rgba(20, 13, 9, 0.5);
  --panel-strong: rgba(26, 16, 11, 0.68);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --panel-border: rgba(242, 216, 170, 0.13);
  --text: #f7ecd8;
  --muted: #d7c0a0;
  --accent: #e8c27e;
  --accent-strong: #f2d7a5;
  --accent-deep: #ba7040;
  --button-text: #1c130b;
  --shadow: rgba(0, 0, 0, 0.38);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background-color: var(--bg);
  font-family: Georgia, "Times New Roman", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 55% 22%, rgba(246, 194, 95, 0.16), transparent 28%),
    linear-gradient(rgba(10, 7, 5, 0.02), rgba(10, 7, 5, 0.18)),
    url("assets/wallpaper.png?v=20260528a");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.98) brightness(1.02);
  transform: scale(1);
  transition: filter 320ms ease, transform 320ms ease;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12) 28%, rgba(0, 0, 0, 0.34) 100%),
    radial-gradient(circle at top left, rgba(255, 241, 206, 0.04), transparent 30%),
    radial-gradient(circle at bottom right, rgba(237, 182, 86, 0.06), transparent 24%);
  transition: background 320ms ease;
}

body.view-section::before {
  filter: saturate(0.74) brightness(0.62) blur(2px);
  transform: scale(1.02);
}

body.view-section::after {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.36) 28%, rgba(0, 0, 0, 0.7) 100%),
    radial-gradient(circle at top left, rgba(255, 241, 206, 0.02), transparent 30%),
    radial-gradient(circle at bottom right, rgba(237, 182, 86, 0.03), transparent 24%);
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  transition: opacity 520ms ease, transform 520ms ease;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 222, 163, 0.08), transparent 22%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.14) 70%, rgba(0, 0, 0, 0.34));
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.site-intro__panel {
  display: grid;
  justify-items: start;
  gap: 12px;
  width: min(360px, calc(100% - 24px));
  margin-top: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(242, 216, 170, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(20, 13, 9, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  text-align: left;
}

.site-intro__kicker,
.site-intro__copy {
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.site-intro__kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-intro__copy {
  color: var(--muted);
}

html.trg-intro-pending .site-intro {
  opacity: 1;
  pointer-events: auto;
}

html.trg-intro-pending .page-shell {
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
}

.site-header,
.hero,
.latest,
.about,
.pillars,
.releases,
.statement-page,
.store-callout,
.site-footer {
  animation: rise-in 620ms ease both;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand__logo {
  width: 94px;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.34));
}

.brand__copy {
  display: grid;
  gap: 4px;
}

.brand__name {
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}

.brand__tag {
  color: var(--muted);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-pill);
  background: rgba(20, 13, 9, 0.34);
  backdrop-filter: blur(6px);
  transition: background 240ms ease, border-color 240ms ease;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  text-decoration: none;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(242, 216, 170, 0.1);
  color: var(--text);
  outline: none;
}

.site-nav a[aria-current="page"] {
  background: rgba(242, 216, 170, 0.14);
  color: var(--text);
}

.hero,
.latest,
.about,
.pillars,
.releases,
.statement-page,
.store-callout,
.site-footer {
  border: 1px solid var(--panel-border);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(7px);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.hero,
.latest,
.about,
.pillars,
.releases,
.statement-page,
.store-callout {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(23, 15, 10, 0.42), rgba(15, 10, 7, 0.5));
}

.hero,
.store-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: 16px;
}

.hero {
  margin-bottom: 18px;
  align-items: start;
}

.hero__panel,
.hero__bench,
.latest,
.about,
.pillars,
.releases,
.statement-page,
.store-callout,
.site-footer {
  padding: 26px;
}

.hero__bench {
  display: grid;
  gap: 12px;
  align-content: start;
}

.note-card,
.pillar-card,
.feature-card,
.release-group,
.release-card,
.store-callout__panel {
  border: 1px solid rgba(242, 216, 170, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  transition: background 240ms ease, border-color 240ms ease;
}

.note-card,
.pillar-card,
.release-card,
.store-callout__panel {
  padding: 20px;
}

.note-card {
  padding: 18px;
}

.hero__eyebrow,
.section-heading__kicker,
.note-card__label,
.pillar-card__label,
.release-card__meta,
.release-group__label {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

h1 {
  margin-top: 0.55rem;
  max-width: 11ch;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

h3 {
  font-size: 1.55rem;
}

h4 {
  font-size: 1.95rem;
}

.hero__lead,
.note-card p:last-child,
.section-heading p:last-child,
.about__panel p,
.pillar-card p:last-child,
.feature-card__subtitle,
.feature-card__hook,
.feature-card__body,
.feature-card__support,
.release-card__hook,
.release-card__body,
.release-group__intro,
.store-callout__copy p:last-child,
.site-footer p {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
}

.hero__lead {
  max-width: 41rem;
  margin: 0.95rem 0 0;
  font-size: 1rem;
  color: var(--text);
}

.hero__actions,
.feature-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}

.note-card h2 {
  margin-top: 0.42rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.02;
}

.note-card p:last-child {
  font-size: 0.97rem;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--primary {
  color: var(--button-text);
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-strong);
}

.button--secondary {
  border-color: rgba(242, 216, 170, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(242, 216, 170, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button--pending {
  cursor: default;
  opacity: 0.82;
}

.button--wide {
  width: 100%;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.section-heading p:last-child,
.note-card p:last-child,
.about__panel p,
.pillar-card p:last-child,
.feature-card__subtitle,
.feature-card__body,
.feature-card__support,
.release-card__hook,
.release-card__body,
.release-group__intro,
.store-callout__copy p:last-child,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.latest,
.about,
.pillars,
.releases,
.store-callout {
  margin-bottom: 18px;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  padding: 22px;
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(24, 14, 10, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.feature-card__media {
  position: relative;
}

.feature-card__media::before {
  content: "";
  position: absolute;
  inset: 8% 10% auto;
  height: 72%;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(126, 108, 199, 0.28), transparent 62%);
  filter: blur(16px);
  pointer-events: none;
}

.feature-card__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  padding: 16px;
  border: 1px solid rgba(242, 216, 170, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(34, 22, 15, 0.82), rgba(10, 7, 5, 0.88));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
}

.feature-card__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}

.feature-card__copy {
  display: grid;
  gap: 14px;
}

.feature-card__eyebrow {
  margin: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-card__subtitle {
  margin: -2px 0 0;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-card__hook {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 1.2rem;
}

.feature-card__body {
  color: var(--text);
}

.feature-card__support {
  font-size: 0.98rem;
}

.about__panel {
  display: grid;
  gap: 14px;
}

.statement-page {
  max-width: 880px;
  margin: 0 auto 18px;
}

.statement-page h1 {
  max-width: none;
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
}

.statement-intro {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

.statement-block {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(242, 216, 170, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.statement-content {
  display: grid;
  gap: 18px;
}

.statement-content p {
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
}

.statement-list {
  display: grid;
  gap: 8px;
  margin: -2px 0 0;
  padding-left: 1.2rem;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
}

.statement-list li::marker {
  color: var(--accent);
}

.statement-seal {
  margin: 26px 0 0;
  display: flex;
  justify-content: center;
}

.statement-seal img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.3));
}

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

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

.release-groups {
  display: grid;
  gap: 18px;
}

.release-group {
  padding: 22px;
}

.release-group__header {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.release-group__title {
  font-size: 2rem;
}

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

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

.release-card__hook {
  color: var(--text);
  font-size: 1.02rem;
}

.store-callout__copy,
.store-callout__panel {
  align-self: center;
}

.store-callout__panel {
  padding: 22px;
}

.coming-soon__panel {
  display: grid;
  gap: 14px;
}

.coming-soon__video-shell {
  overflow: hidden;
  border: 1px solid rgba(242, 216, 170, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(32, 20, 14, 0.9), rgba(10, 7, 5, 0.94));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.coming-soon__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #0d0906;
}

.coming-soon__caption {
  margin: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
}

.store-section {
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(23, 15, 10, 0.52), rgba(15, 10, 7, 0.58));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(7px);
}

.store-hero,
.store-spotlight,
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 18px;
  align-items: start;
}

.store-hero__copy,
.store-spotlight__copy,
.product-hero__copy {
  display: grid;
  gap: 14px;
}

.store-hero__aside {
  display: grid;
  gap: 12px;
}

.creation-standard-placard {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(242, 216, 170, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(70, 46, 22, 0.48), rgba(34, 22, 12, 0.72)),
    radial-gradient(circle at top left, rgba(242, 215, 165, 0.1), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 232, 191, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.22);
}

.creation-standard-title,
.creation-standard-copy,
.creation-standard-motto {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.creation-standard-title {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.creation-standard-copy {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.creation-standard-motto {
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.creation-standard-placard--statement {
  margin-top: 2px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  outline: none;
}

.breadcrumbs__sep {
  color: rgba(242, 216, 170, 0.42);
}

.store-spotlight {
  padding: 0;
  border: 1px solid rgba(242, 216, 170, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.store-spotlight__media,
.product-hero__media {
  position: relative;
}

.store-spotlight__media img,
.product-cover {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.store-spotlight__media img {
  min-height: 100%;
}

.store-spotlight__copy {
  padding: 22px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(242, 216, 170, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-strong);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-badge--available-direct,
.status-badge--free-download {
  border-color: rgba(155, 197, 112, 0.42);
  background: rgba(108, 145, 69, 0.18);
  color: #d7ecb4;
}

.status-badge--coming-soon,
.status-badge--preview-available,
.status-badge--preview-only,
.status-badge--pay-what-you-want {
  border-color: rgba(242, 216, 170, 0.34);
  background: rgba(186, 112, 64, 0.18);
  color: #f4dbab;
}

.status-badge--revised-edition-pending,
.status-badge--legacy-edition,
.status-badge--legacy-not-for-sale {
  border-color: rgba(162, 146, 111, 0.38);
  background: rgba(109, 88, 56, 0.22);
  color: #dfc89f;
}

.status-badge--retired {
  border-color: rgba(126, 124, 136, 0.32);
  background: rgba(70, 70, 76, 0.22);
  color: #d7d4e2;
}

.product-card-grid,
.browse-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.browse-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(242, 216, 170, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.product-card:hover,
.product-card:focus-within,
.browse-card:hover,
.browse-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 216, 170, 0.3);
  background: rgba(255, 255, 255, 0.065);
  outline: none;
}

.product-card[hidden] {
  display: none !important;
}

.product-card__media {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(30, 19, 13, 0.94), rgba(11, 8, 6, 0.98));
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-card__actions {
  margin-top: auto;
}

.product-card__button {
  width: 100%;
}

.product-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-card__price {
  color: var(--accent-strong);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
}

.product-card__title {
  font-size: 1.5rem;
}

.product-card__subtitle,
.product-subtitle,
.product-card__meta,
.browse-card p,
.catalog-count,
.fulfillment-note,
.identity-strip dd {
  margin: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

.browse-card {
  justify-content: center;
  min-height: 180px;
  padding: 20px;
}

.browse-card h3 {
  font-size: 1.35rem;
}

.catalog-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.catalog-control {
  display: grid;
  gap: 6px;
}

.catalog-control:first-child {
  grid-column: span 2;
}

.catalog-control span {
  color: var(--muted);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.title-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.title-index__link {
  min-width: 2rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(242, 216, 170, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.title-index__link:hover,
.title-index__link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

.product-cover {
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.product-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-hero__meta span {
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(242, 216, 170, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.product-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.identity-strip__item {
  padding: 16px;
  border: 1px solid rgba(242, 216, 170, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.identity-strip dt {
  margin: 0 0 6px;
  color: var(--accent);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
}

.preview-panel {
  display: grid;
  gap: 16px;
}

.inline-link {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--text);
  outline: none;
}

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

.preview-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 216, 170, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.preview-figure img,
.preview-video video {
  display: block;
  width: 100%;
  height: auto;
}

body.view-section .store-section {
  background:
    linear-gradient(180deg, rgba(23, 15, 10, 0.66), rgba(15, 10, 7, 0.74));
  border-color: rgba(242, 216, 170, 0.16);
}

body.view-section .product-card,
body.view-section .browse-card,
body.view-section .store-spotlight,
body.view-section .identity-strip__item,
body.view-section .preview-figure {
  background: rgba(18, 12, 9, 0.18);
  border-color: rgba(242, 216, 170, 0.16);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  border-radius: 20px;
  background: rgba(20, 13, 9, 0.46);
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 6px;
  border: 1px solid rgba(242, 216, 170, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.footer-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-mark:hover,
.footer-mark:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(242, 216, 170, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border: 1px solid rgba(242, 216, 170, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-strong);
  text-decoration: none;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--text);
  border-color: rgba(242, 216, 170, 0.42);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
  outline: none;
}

body.view-section .site-nav {
  background: rgba(20, 13, 9, 0.48);
}

body.view-section .hero,
body.view-section .latest,
body.view-section .about,
body.view-section .pillars,
body.view-section .releases,
body.view-section .statement-page,
body.view-section .store-callout {
  background:
    linear-gradient(180deg, rgba(23, 15, 10, 0.62), rgba(15, 10, 7, 0.7));
  border-color: rgba(242, 216, 170, 0.16);
}

body.view-section .note-card,
body.view-section .pillar-card,
body.view-section .feature-card,
body.view-section .release-group,
body.view-section .release-card,
body.view-section .statement-block,
body.view-section .creation-standard-placard,
body.view-section .store-callout__panel,
body.view-section .site-footer {
  background: rgba(18, 12, 9, 0.18);
  border-color: rgba(242, 216, 170, 0.16);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .store-hero,
  .store-spotlight,
  .product-hero,
  .store-callout,
  .feature-card,
  .pillar-grid,
  .release-grid,
  .product-card-grid,
  .product-support-grid,
  .browse-card-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .catalog-controls,
  .identity-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-control:first-child {
    grid-column: span 2;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.5rem, 7vw, 4rem);
  }
}

@media (max-width: 640px) {
  .site-intro {
    justify-content: center;
    padding: 16px;
  }

  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 12px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand {
    align-items: center;
    gap: 12px;
  }

  .brand__logo {
    width: 71px;
  }

  .site-intro__panel {
    justify-items: center;
    width: min(420px, 100%);
    margin-top: 0;
    padding: 16px 18px;
    text-align: center;
  }

  .brand__name {
    font-size: 1.2rem;
  }

  .brand__tag {
    font-size: 0.8rem;
  }

  .hero__panel,
  .hero__bench,
  .store-section,
  .latest,
  .about,
  .pillars,
  .releases,
  .statement-page,
  .store-callout,
  .site-footer,
  .release-group {
    padding: 18px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
    padding: 6px;
  }

  .site-nav a {
    width: auto;
    flex: 1 1 40%;
    text-align: center;
    font-size: 0.92rem;
    padding: 10px 8px;
  }

  .button {
    width: 100%;
  }

  .catalog-controls,
  .identity-strip {
    grid-template-columns: 1fr;
  }

  .catalog-control:first-child {
    grid-column: span 1;
  }

  .catalog-tools {
    align-items: flex-start;
  }

  .feature-card {
    gap: 18px;
  }

  .feature-card__frame {
    aspect-ratio: 16 / 11.5;
    padding: 14px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.2rem, 8vw, 3.25rem);
    line-height: 1;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .note-card h2 {
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro,
  .page-shell {
    transition-duration: 120ms;
  }
}
