:root {
  --ink: #111820;
  --muted: #5d6972;
  --paper: #f8faf7;
  --white: #ffffff;
  --lake: #0a6f86;
  --deep-lake: #084d62;
  --forest: #2f6a54;
  --copper: #b46a37;
  --berry: #7f405f;
  --line: #d8e0df;
  --shadow: 0 22px 60px rgba(17, 24, 32, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 224, 223, 0.86);
  background: rgba(248, 250, 247, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 85px;
  height: 85px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 24, 32, 0.14);
  border-radius: 7px;
  background: var(--white);
  overflow: hidden;
}

.brand-mark img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.5rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 1.00rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  font-size: 0.94rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: var(--ink);
  background: #eaf0ee;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger::after {
  margin-left: 6px;
  content: "▾";
  font-size: 0.72em;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 190px;
  padding: 10px 8px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-2px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-menu a {
  justify-content: flex-start;
  white-space: nowrap;
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--deep-lake);
}

.shop-hero,
.page-hero,
.section {
  padding-inline: clamp(18px, 5vw, 72px);
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(10, 111, 134, 0.1), rgba(180, 106, 55, 0.08)),
    var(--paper);
}

.product-first {
  display: block;
  min-height: auto;
  padding-top: clamp(28px, 4vw, 54px);
  padding-bottom: clamp(34px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(248, 250, 247, 0.96), rgba(248, 250, 247, 0.84) 44%, rgba(248, 250, 247, 0.5)),
    linear-gradient(135deg, rgba(10, 111, 134, 0.13), rgba(180, 106, 55, 0.12)),
    var(--paper);
}

.store-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.64fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 34px);
}

.store-intro h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5.4vw, 5rem);
}

.store-intro p:not(.eyebrow) {
  margin-bottom: 0;
  color: #31404a;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--lake);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.hero-copy p:not(.eyebrow),
.page-hero p,
.section-heading + p,
.story-band > p,
.listing-note > p {
  color: #31404a;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.primary:hover {
  background: var(--deep-lake);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button.secondary:hover {
  border-color: #afc0bd;
  background: #eef4f1;
}

.hero-market {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(190px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--white);
  text-decoration: none;
}

.feature-card-wide {
  align-self: center;
  min-height: 310px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--ink);
}

.feature-card-wide img {
  background: var(--white);
}

.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(17, 24, 32, 0.74));
}

.feature-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  font-size: 1.08rem;
  font-weight: 900;
}

.section {
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.product-first .product-grid {
  align-items: stretch;
}

.product-first .product-card {
  box-shadow: 0 18px 46px rgba(17, 24, 32, 0.09);
}

.product-showcase {
  padding-top: clamp(34px, 5vw, 62px);
  background:
    linear-gradient(180deg, rgba(10, 111, 134, 0.05), rgba(180, 106, 55, 0.06)),
    var(--paper);
}

.product-showcase .product-card {
  box-shadow: 0 18px 46px rgba(17, 24, 32, 0.09);
}

.product-showcase .product-grid {
  max-width: 1280px;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-showcase .product-photo,
.product-showcase .product-image {
  aspect-ratio: 1.55 / 1;
}

.product-showcase .product-body {
  padding: 16px 18px;
}

.product-showcase .product-image {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

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

.product-card,
.channel-card,
.values-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-photo,
.product-image {
  width: 100%;
  aspect-ratio: 1.2 / 1;
}

.product-photo {
  object-fit: cover;
  object-position: top center;
}

.product-image {
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 950;
}

.lake-gradient {
  background:
    linear-gradient(140deg, rgba(8, 77, 98, 0.58), rgba(17, 24, 32, 0.5)),
    url("../assets/custom-project-diamond.png") center / cover;
}

.copper-gradient {
  background:
    linear-gradient(140deg, rgba(127, 64, 95, 0.46), rgba(17, 24, 32, 0.38)),
    url("../assets/tcgplayer-inventory-grid.png") center / cover;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body p:not(.product-kicker) {
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  color: var(--deep-lake);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.tcg-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.5fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #edf4f2;
}

.tcg-section.reverse {
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 0.82fr);
  background: var(--paper);
}

.tcg-copy {
  max-width: 760px;
}

.tcg-copy p:not(.eyebrow) {
  color: #31404a;
  font-size: 1.08rem;
}

.tcg-art {
  justify-self: center;
  width: min(330px, 100%);
}

.tcg-art img {
  border-radius: 17px;
  box-shadow: var(--shadow);
}

.home-tcg-section {
  gap: clamp(20px, 4vw, 44px);
  padding-top: clamp(22px, 3.2vw, 38px);
  padding-bottom: clamp(22px, 3.2vw, 38px);
}

.home-tcg-section .tcg-art {
  width: min(245px, 100%);
}

.story-band,
.listing-note,
.giving-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.story-band > p,
.giving-band > p {
  padding-top: calc((0.78rem * 1.55) + 10px);
}

.giving-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(10, 111, 134, 0.1), rgba(47, 106, 84, 0.1)),
    var(--white);
}

.giving-band h2 {
  max-width: 720px;
}

.giving-band p {
  color: #31404a;
  font-size: clamp(1.04rem, 1.55vw, 1.18rem);
}

.giving-band a,
.thanks-card a {
  color: var(--deep-lake);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.store-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-inline: clamp(42px, 9vw, 114px);
  padding-top: clamp(30px, 5vw, 54px);
  padding-bottom: clamp(30px, 5vw, 54px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.store-cta h2 {
  margin-bottom: 8px;
}

.store-cta p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.tcg-shop-banner {
  padding-top: 24px;
  padding-bottom: 24px;
  background: var(--paper);
}

.tcg-shop-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 148px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(17, 24, 32, 0.96), rgba(8, 77, 98, 0.86)),
    url("../assets/glam-card-back-gold.png") center / cover;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.tcg-shop-link small,
.tcg-shop-link strong,
.tcg-shop-link b {
  display: block;
}

.tcg-shop-link small {
  margin-bottom: 8px;
  color: #ffdf63;
  font-weight: 900;
  text-transform: uppercase;
}

.tcg-shop-link strong {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 0.98;
}

.tcg-shop-link b {
  flex: 0 0 auto;
  padding: 13px 18px;
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
}

.game-section {
  background:
    linear-gradient(135deg, rgba(17, 24, 32, 0.9), rgba(8, 77, 98, 0.84)),
    var(--ink);
}

.game-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
}

.game-panel .eyebrow {
  color: #ffdf63;
}

.game-panel p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.game-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.82fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #edf4f2;
}

.game-console {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(127, 64, 95, 0.36), rgba(8, 77, 98, 0.18)),
    radial-gradient(circle at 50% 24%, rgba(255, 223, 99, 0.28), transparent 34%),
    var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
  text-align: center;
}

.game-console span,
.game-console strong,
.game-console small {
  display: block;
}

.game-console span {
  color: #ffdf63;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 950;
  line-height: 0.9;
}

.game-console strong {
  max-width: 300px;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.game-console small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(8, 77, 98, 0.14), rgba(127, 64, 95, 0.1)),
    #eef4f1;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(20px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--deep-lake);
  font-weight: 900;
}

.contact-card-message {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  text-align: center;
}

.contact-card-message p:not(.eyebrow) {
  color: #31404a;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
}

.contact-card-message .button {
  margin-top: 10px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #31404a;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d3d1;
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note[data-status="success"] {
  color: var(--forest);
  font-weight: 800;
}

.form-note[data-status="error"] {
  color: #9f2f3f;
  font-weight: 800;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.68fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(36px, 7vw, 92px);
  padding-bottom: clamp(40px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(10, 111, 134, 0.08), rgba(180, 106, 55, 0.08)),
    var(--paper);
}

.page-hero img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-logo-panel {
  display: grid;
  justify-items: center;
  gap: 6px;
  align-self: center;
  justify-self: center;
  width: min(430px, 100%);
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(237, 244, 242, 0.92)),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-logo-panel img {
  width: min(210px, 56%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-logo-panel strong,
.about-logo-panel span {
  display: block;
}

.about-logo-panel strong {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 0.95;
}

.about-logo-panel span {
  color: var(--muted);
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 6vw, 5.15rem);
}

.about-hero p:not(.eyebrow) {
  max-width: 840px;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 118px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.project-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.project-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #31404a;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.space-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 223, 99, 0.22), transparent 18%),
    radial-gradient(circle at 18% 32%, rgba(10, 111, 134, 0.45), transparent 28%),
    linear-gradient(135deg, #080d18, #0a1e2f 54%, #151827);
}

.space-hero .eyebrow,
.space-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.space-panel {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 30%, rgba(10, 111, 134, 0.35), transparent 36%),
    rgba(255, 255, 255, 0.04);
  background-size: 32px 32px, 32px 32px, auto, auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.space-panel span,
.space-panel strong,
.space-panel small {
  display: block;
}

.space-panel span {
  color: #ffdf63;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 950;
  line-height: 0.9;
}

.space-panel strong {
  max-width: 330px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.space-panel small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 900;
  text-transform: uppercase;
}

.screenshot-section {
  background: #eef4f1;
}

.screenshot-section .section-heading p:not(.eyebrow) {
  color: #31404a;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.roadmap-section {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 223, 99, 0.14), transparent 24%),
    linear-gradient(135deg, #111820, #0b2d3a 58%, #161c2b);
}

.roadmap-section .section-heading {
  max-width: 960px;
}

.roadmap-section .eyebrow {
  color: #ffdf63;
}

.roadmap-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

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

.roadmap-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 240px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.roadmap-card-current {
  border-color: rgba(255, 223, 99, 0.58);
  background: linear-gradient(135deg, rgba(255, 223, 99, 0.12), rgba(255, 255, 255, 0.06));
}

.roadmap-meta {
  margin: 0;
  color: #ffdf63;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-card h3 {
  margin-bottom: 0;
  color: var(--white);
}

.roadmap-card p:not(.roadmap-meta) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.screenshot-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(8, 77, 98, 0.18);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.screenshot-card-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.screenshot-card-tall {
  grid-column: span 2;
  aspect-ratio: 2 / 3;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-card-tall img {
  object-position: top center;
}

.screenshot-card figcaption {
  padding: 12px 14px;
  color: var(--white);
  background: rgba(17, 24, 32, 0.96);
  font-size: 0.86rem;
  font-weight: 900;
}

.tcg-page-hero {
  background:
    linear-gradient(135deg, rgba(10, 111, 134, 0.08), rgba(180, 106, 55, 0.12)),
    var(--paper);
}

.tcg-page-card {
  justify-self: center;
  width: min(360px, 100%);
}

.tcg-page-card img,
.tcg-mini-gallery img {
  border-radius: 17px;
  box-shadow: var(--shadow);
}

.proxy-hero {
  min-height: auto;
  padding-top: clamp(42px, 6vw, 82px);
  padding-bottom: clamp(46px, 6vw, 86px);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 223, 99, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(17, 24, 32, 0.94), rgba(8, 77, 98, 0.88)),
    var(--ink);
  color: var(--white);
}

.proxy-hero h1 {
  max-width: 760px;
  font-size: clamp(2.9rem, 6vw, 5.25rem);
}

.proxy-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.proxy-hero .eyebrow {
  color: #ffdf63;
}

.proxy-card-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 260px));
  gap: 16px;
  align-items: end;
  justify-content: center;
}

.proxy-card-stack img,
.proxy-example-card img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.proxy-card-stack img:first-child {
  transform: translateY(22px) rotate(-3deg);
}

.proxy-card-stack img:last-child {
  transform: translateY(-12px) rotate(3deg);
}

.proxy-example-section {
  background: #edf4f2;
}

.proxy-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 420px));
  gap: clamp(18px, 4vw, 42px);
  justify-content: center;
}

.proxy-example-card {
  margin: 0;
}

.proxy-example-card figcaption {
  padding-top: 12px;
  color: #31404a;
  font-size: 0.94rem;
  font-weight: 800;
}

.proxy-service-grid {
  background: var(--white);
}

.small-note {
  padding: 14px 16px;
  border-left: 4px solid var(--lake);
  background: #edf4f2;
  font-size: 0.98rem;
}

.tcg-mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 320px));
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  background: #edf4f2;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
}

.copy-stack p {
  color: #31404a;
  font-size: 1.08rem;
}

.about-story-section {
  background: var(--white);
}

.about-giving-band {
  background:
    linear-gradient(135deg, rgba(10, 111, 134, 0.12), rgba(47, 106, 84, 0.12)),
    #edf4f2;
}

.about-statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(8, 77, 98, 0.08), rgba(180, 106, 55, 0.08)),
    var(--paper);
}

.about-statement-grid article,
.owner-section .copy-stack {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(17, 24, 32, 0.08);
}

.about-statement-grid h2 {
  max-width: 720px;
  font-size: clamp(1.55rem, 2.1vw, 2.1rem);
  line-height: 1.08;
}

.about-statement-grid p:not(.eyebrow),
.about-offerings-grid p {
  color: #31404a;
}

.owner-section {
  display: grid;
  justify-items: center;
  background: #edf4f2;
}

.owner-section .copy-stack {
  max-width: 1120px;
}

.owner-section h2 {
  max-width: 980px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.02;
}

.owner-section p:not(.eyebrow) {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.about-offerings-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.thanks-section {
  display: grid;
  justify-items: center;
  background: var(--paper);
}

.thanks-card {
  width: min(920px, 100%);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--forest);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(17, 24, 32, 0.08);
}

.thanks-card p:not(.eyebrow) {
  color: #31404a;
  font-size: clamp(1.04rem, 1.45vw, 1.16rem);
}

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

.values-grid article,
.channel-card {
  padding: 24px;
}

.values-grid article {
  border-top: 5px solid var(--lake);
}

.values-grid article:nth-child(2) {
  border-top-color: var(--copper);
}

.values-grid article:nth-child(3) {
  border-top-color: var(--forest);
}

.channel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.channel-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
}

.channel-card h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  line-height: 1.04;
}

.channel-card p:not(.eyebrow) {
  color: var(--muted);
}

.channel-card .button {
  margin-top: auto;
}

.direct-card {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.direct-card .eyebrow,
.direct-card p {
  color: rgba(255, 255, 255, 0.76);
}

.direct-card .button.primary {
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(280px, 1.25fr) minmax(190px, 0.8fr);
  gap: 24px;
  align-items: start;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.footer-brand,
.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(110px, 0.65fr) minmax(260px, 1fr);
  gap: 18px 28px;
}

.footer-link-group {
  display: grid;
  align-content: start;
  gap: 7px 16px;
}

.footer-link-group span,
.footer-contact span {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-link-group-products {
  grid-template-columns: repeat(2, minmax(110px, 1fr));
}

.footer-link-group-products span {
  grid-column: 1 / -1;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

@media (max-width: 1080px) {
  .shop-hero,
  .page-hero,
  .tcg-section,
  .tcg-section.reverse,
  .site-footer,
  .story-band,
  .store-intro,
  .store-cta,
  .project-hero,
  .game-panel,
  .game-detail,
  .about-statement-grid,
  .listing-note,
  .split-section,
  .giving-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-showcase .product-grid,
  .roadmap-grid,
  .channel-grid,
  .proxy-card-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-market {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.72fr);
  }

  .story-band > p,
  .giving-band > p {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    padding-inline: 10px;
  }

  .nav-dropdown-menu {
    right: auto;
    left: 0;
  }

  .shop-hero {
    min-height: auto;
  }

  .hero-market,
  .product-grid,
  .product-showcase .product-grid,
  .roadmap-grid,
  .screenshot-grid,
  .proxy-example-grid,
  .tcg-mini-gallery,
  .values-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .proxy-card-stack {
    max-width: 520px;
    margin-inline: auto;
  }

  .screenshot-card-wide,
  .screenshot-card-tall {
    grid-column: auto;
  }

  .tcg-shop-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    min-height: 260px;
  }

  .feature-card:not(.feature-card-wide) {
    min-height: 440px;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4.1rem);
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .button,
  .nav-dropdown,
  .nav-dropdown-trigger,
  .site-nav {
    width: 100%;
  }

  .button,
  .nav-dropdown-trigger,
  .site-nav a {
    flex: 1 1 auto;
  }

  .nav-dropdown-menu {
    width: 100%;
  }

  .feature-card:not(.feature-card-wide) {
    min-height: 380px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-link-group-products {
    grid-template-columns: 1fr;
  }
}
