:root {
  --ink: #f8fafc;
  --ink-soft: #94a3b8;
  --spruce: #22d3ee;
  --spruce-dark: #050816;
  --orange: #f97316;
  --orange-dark: #67e8f9;
  --gold: #f59e0b;
  --cream: #0b1020;
  --paper: #050816;
  --mist: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  --shadow-raised: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 -1px 0 rgba(0, 0, 0, 0.5) inset, 0 18px 42px rgba(0, 0, 0, 0.34), 0 4px 12px rgba(0, 0, 0, 0.34);
  --shadow-hover: 0 1px 0 rgba(255, 255, 255, 0.11) inset, 0 28px 58px rgba(0, 0, 0, 0.46), 0 0 34px rgba(34, 211, 238, 0.08);
  --panel-gradient: linear-gradient(145deg, rgba(19, 29, 52, 0.98), rgba(7, 11, 25, 0.98));
  --edge-highlight: linear-gradient(90deg, rgba(34, 211, 238, 0.7), rgba(249, 115, 22, 0.62));
  --shop-bg: #f7f4ec;
  --shop-card: #ffffff;
  --shop-ink: #111827;
  --shop-muted: #64748b;
  --shop-line: #dbe2e8;
  --radius-sm: 0.85rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--spruce);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange-dark);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: rgba(34, 211, 238, 0.5);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: #020617;
  background: var(--spruce);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.25rem), var(--max-width));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2.25rem), 760px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 11, 26, 0.94), rgba(3, 6, 17, 0.88));
  backdrop-filter: blur(24px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand img {
  width: 2.25rem;
  height: 2.25rem;
}

.brand-name {
  color: var(--spruce);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.35em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 680;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--spruce);
  background: var(--mist);
}

.nav-list .nav-cta {
  margin-left: 0.45rem;
  padding-inline: 1.15rem;
  color: #020617;
  background: linear-gradient(180deg, #67e8f9, var(--spruce));
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.52) inset, 0 7px 0 #0e7490, 0 12px 24px rgba(6, 182, 212, 0.2);
  transform: translateY(-3px);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-list .nav-cta:hover {
  color: #020617;
  background: #67e8f9;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.58) inset, 0 4px 0 #0e7490, 0 9px 20px rgba(6, 182, 212, 0.24);
  transform: translateY(0);
}

.menu-button {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--spruce);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.32em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-gold {
  color: #a5f3fc;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
}

.accent-text {
  color: var(--spruce);
  font-style: normal;
}

.lede {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  background-color: #020611;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 17, 0.96) 0%, rgba(2, 6, 17, 0.88) 36%, rgba(2, 6, 17, 0.46) 57%, rgba(2, 6, 17, 0.05) 78%),
    linear-gradient(180deg, rgba(5, 8, 22, 0.08) 0%, transparent 58%, rgba(5, 8, 22, 0.72) 100%),
    image-set(url("/assets/tiger-temple-hero-v1.webp") type("image/webp"), url("/assets/tiger-temple-hero-v1.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
  perspective: 1200px;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: 7%;
  width: min(45rem, 52vw);
  height: min(45rem, 70vh);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), rgba(7, 14, 32, 0.05) 42%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.18), transparent 54%),
    radial-gradient(ellipse at 72% 50%, rgba(249, 115, 22, 0.075), transparent 62%);
  pointer-events: none;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(820px, calc(100vh - 4.5rem));
  align-items: center;
  grid-template-columns: minmax(24rem, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(4.25rem, 9vw, 8rem);
}

.hero-copy {
  grid-column: 1;
  max-width: 46rem;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background: linear-gradient(145deg, rgba(8, 15, 34, 0.62), rgba(4, 8, 20, 0.2));
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 28px 80px rgba(0, 0, 0, 0.38), -18px 0 70px rgba(2, 6, 23, 0.3);
  backdrop-filter: blur(8px);
  transform: perspective(1100px) rotateY(1.6deg) translateZ(0);
}

.hero .eyebrow {
  display: inline-flex;
  margin-bottom: 1.35rem;
  padding: 0.38rem 0.78rem;
  border: 1px solid rgba(34, 211, 238, 0.4);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 8px 26px rgba(34, 211, 238, 0.08);
  color: #a5f3fc;
  font-size: 0.64rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.45rem;
  color: #020617;
  background: linear-gradient(180deg, #67e8f9 0%, var(--spruce) 52%, #06b6d4 100%);
  border: 1px solid var(--spruce);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.58) inset, 0 6px 0 #0e7490, 0 14px 28px rgba(6, 182, 212, 0.18);
  transform: translateY(-3px);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  color: #020617;
  background: #67e8f9;
  border-color: #67e8f9;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.62) inset, 0 3px 0 #0e7490, 0 10px 24px rgba(6, 182, 212, 0.24);
  transform: translateY(0);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 5px 0 #020617, 0 12px 26px rgba(0, 0, 0, 0.25);
}

.button.secondary:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(103, 232, 249, 0.65);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset, 0 2px 0 #020617, 0 8px 18px rgba(0, 0, 0, 0.28);
}

.button.light {
  color: #020617;
  background: var(--white);
  border-color: var(--white);
}

.button.light:hover {
  color: #020617;
  background: var(--spruce);
  border-color: var(--spruce);
}

.button.outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.button.outline-light:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(103, 232, 249, 0.65);
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.button-row.centered {
  justify-content: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 780;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(0.2rem);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 2rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
  list-style: none;
}

.trust-line li::before {
  margin-right: 0.45rem;
  color: var(--spruce);
  content: "◆";
  font-size: 0.7em;
}

.field-card {
  position: relative;
  max-width: 25rem;
  margin-inline: auto;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid rgba(23, 32, 29, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-visual {
  display: none;
}

.field-card::before {
  position: absolute;
  z-index: -1;
  inset: 1.2rem -1rem -1rem 1rem;
  background: var(--orange);
  border-radius: inherit;
  content: "";
}

.field-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--line);
}

.field-card-kicker,
.field-card-code {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-card-code {
  color: var(--ink-soft);
}

.cat-specimen {
  display: grid;
  min-height: 18rem;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(216, 166, 64, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(33, 79, 64, 0.06), transparent 60%);
  border-radius: var(--radius-md);
}

.cat-specimen img {
  width: min(76%, 15rem);
  filter: drop-shadow(0 18px 18px rgba(23, 32, 29, 0.15));
}

.field-card-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1rem;
}

.field-card-notes div {
  padding: 0.7rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.field-card-notes span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-card-notes strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.9rem;
}

.trust-bar {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #111a30, #080d1b);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.05) inset, 0 18px 38px rgba(0, 0, 0, 0.28);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 1.3rem 0;
  color: var(--white);
  list-style: none;
}

.trust-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  font-weight: 680;
  text-align: center;
}

.trust-grid li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-grid svg {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--spruce);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section.compact {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.section-cream {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.section-spruce {
  color: var(--white);
  background: #0b1020;
  border-block: 1px solid var(--line);
}

.section-spruce h2,
.section-spruce h3,
.section-spruce .lede {
  color: var(--white);
}

.section-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  padding-left: 1.15rem;
}

.section-heading::before {
  position: absolute;
  top: 0.2rem;
  bottom: 0.2rem;
  left: 0;
  width: 0.35rem;
  background: linear-gradient(180deg, var(--orange), #fbbf24 48%, var(--spruce));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.3);
  content: "";
}

.section-heading > div {
  max-width: 47rem;
}

.section-heading h2 {
  margin-bottom: 0.8rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.shop-section {
  color: var(--shop-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.09), transparent 28rem),
    var(--shop-bg);
}

.shop-section h2,
.shop-section h3 {
  color: var(--shop-ink);
}

.shop-section .lede,
.shop-section .category-card p {
  color: var(--shop-muted);
}

.shop-section .eyebrow,
.shop-section .text-link,
.shop-section .card-status {
  color: #0e7490;
}

.shop-section .category-card {
  color: var(--shop-ink);
  background: var(--shop-card);
  border-color: var(--shop-line);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.06);
}

.shop-section .category-card:hover {
  color: var(--shop-ink);
  border-color: rgba(14, 116, 144, 0.48);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(249, 115, 22, 0.12);
}

.category-card,
.info-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  color: var(--ink);
  background: var(--panel-gradient);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-raised);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.category-card::before,
.info-card::before,
.product-card::before,
.label-card::before,
.policy-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 1.25rem;
  left: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.86), rgba(34, 211, 238, 0.66), transparent);
  content: "";
}

.category-card:hover,
.info-card:hover {
  color: var(--ink);
  border-color: var(--spruce);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.category-card::after {
  position: absolute;
  right: -1.6rem;
  bottom: -1.6rem;
  width: 5rem;
  height: 5rem;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 50%;
  content: "";
  transition: transform 220ms ease;
}

.category-card:hover::after {
  transform: scale(1.35);
}

.category-card-visual {
  padding-top: 0;
}

.category-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 0 -1.5rem 1.25rem;
  background: #e7e1d6;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.category-image picture,
.article-image picture {
  display: block;
}

.category-image picture {
  height: 100%;
}

.category-card-visual:hover .category-image img {
  transform: scale(1.035);
}

.category-card-visual .category-icon {
  position: relative;
  z-index: 2;
  margin-top: -2.8rem;
  background: #07101f;
  border: 3px solid var(--shop-card);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.category-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.35rem;
  place-items: center;
  color: var(--spruce);
  background: rgba(34, 211, 238, 0.1);
  border-radius: 50%;
}

.category-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.category-card p,
.info-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.card-status {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.28rem 0.55rem;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gear-hero {
  background:
    linear-gradient(90deg, #050816 0%, rgba(5, 8, 22, 0.94) 48%, rgba(5, 8, 22, 0.5) 100%),
    radial-gradient(circle at 82% 18%, rgba(34, 211, 238, 0.13), transparent 30rem),
    radial-gradient(circle at 18% 78%, rgba(249, 115, 22, 0.1), transparent 26rem),
    image-set(url("/assets/tiger-temple-hero-v1.webp") type("image/webp"), url("/assets/tiger-temple-hero-v1.jpg") type("image/jpeg")) 88% 43% / min(62rem, 70vw) auto no-repeat,
    #050816;
}

.affiliate-status {
  max-width: none;
  margin-top: 0;
  margin-bottom: 2rem;
}

.watchlist-principles {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
}

.watchlist-principles li {
  padding: 1.5rem;
  background: #0b1020;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.watchlist-principles span {
  display: block;
  margin-bottom: 2rem;
  color: var(--spruce);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.watchlist-principles h2 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

.watchlist-principles p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.category-jump {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  overflow-x: auto;
  background: rgba(11, 16, 32, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  scrollbar-width: thin;
}

.category-jump strong {
  flex: 0 0 auto;
  margin-right: 0.2rem;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-jump a {
  flex: 0 0 auto;
  padding: 0.42rem 0.72rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.category-jump a:hover {
  color: #020617;
  background: var(--spruce);
  border-color: var(--spruce);
}

.product-section {
  scroll-margin-top: 5.5rem;
  color: var(--shop-ink);
  background: var(--shop-bg);
  border-bottom: 1px solid var(--shop-line);
}

.product-section h2,
.product-section h3,
.product-section h4 {
  color: var(--shop-ink);
}

.product-section .lede,
.product-section .watchlist-updated,
.product-section .market-source,
.product-section .market-source a {
  color: var(--shop-muted);
}

.product-section .lede {
  color: #475569;
}

.product-section .eyebrow,
.product-section .product-code,
.product-section .text-link {
  color: #0e7490;
}

.product-section .text-link:hover {
  color: #0c4a6e;
}

.product-section .content-label {
  color: #075985;
  background: #cffafe;
}

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

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

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-width: 0;
  padding: 1.5rem;
  flex-direction: column;
  color: var(--shop-ink);
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.045), transparent 42%),
    var(--shop-card);
  border: 1px solid var(--shop-line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09), 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(34, 211, 238, 0.16);
  transform: translateY(-6px);
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.product-code {
  padding-top: 0.26rem;
  color: var(--ink-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.product-card h4 {
  margin: 1.25rem 0 0.55rem;
  color: #334155;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-summary {
  margin: 0;
  color: var(--shop-muted);
  font-size: 0.95rem;
}

.product-fit {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  background: #ecfeff;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-sm);
}

.product-fit strong {
  color: #0e7490;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-fit span {
  color: #334155;
  font-size: 0.88rem;
}

.product-checks {
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
  color: #475569;
  font-size: 0.88rem;
}

.product-checks li + li {
  margin-top: 0.3rem;
}

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

.product-actions .button {
  width: 100%;
  min-height: 3rem;
  justify-content: center;
}

.market-source {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.market-source a {
  color: #94a3b8;
}

.watchlist-updated {
  max-width: 60rem;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

/* Research catalogue: generated category and product-evidence pages */
.catalog-page-hero,
.product-record-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(34, 211, 238, 0.12), transparent 28rem),
    radial-gradient(circle at 18% 78%, rgba(249, 115, 22, 0.09), transparent 24rem),
    #050816;
  border-bottom: 1px solid var(--line);
}

.catalog-page-hero::before,
.product-record-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
}

.catalog-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 43rem;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(28rem, 1.12fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.catalog-hero-copy {
  min-width: 0;
}

.catalog-hero-copy h1,
.product-record-hero h1 {
  margin-block: 1.25rem 1.5rem;
  color: var(--white);
  font-size: clamp(3.3rem, 6.2vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.catalog-hero-copy .lede {
  max-width: 42rem;
  color: #cbd5e1;
}

.catalog-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #07101f;
  border: 1px solid rgba(103, 232, 249, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 46px rgba(34, 211, 238, 0.08);
}

.catalog-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.catalog-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.catalog-visual--product {
  background:
    radial-gradient(circle at 50% 35%, rgba(34, 211, 238, 0.12), transparent 52%),
    #07101f;
}

.catalog-visual--product picture {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: #07101f;
}

.catalog-visual--product img {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(1rem, 3vw, 2rem);
  aspect-ratio: 1;
  object-fit: contain;
}

.catalog-visual figcaption {
  padding: 0.75rem 1rem;
  color: #94a3b8;
  background: #07101f;
  font-size: 0.75rem;
}

.category-fact-strip {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-raised);
}

.category-fact-strip div {
  min-width: 0;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.025);
}

.category-fact-strip div + div {
  border-left: 1px solid var(--line);
}

.category-fact-strip dt {
  margin-bottom: 0.5rem;
  color: var(--spruce);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-fact-strip dd {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.catalog-section {
  color: var(--shop-ink);
  background: var(--shop-bg);
  border-color: var(--shop-line);
}

.catalog-section h2,
.catalog-section h3 {
  color: var(--shop-ink);
}

.catalog-section .lede {
  color: #475569;
}

.catalog-section .eyebrow,
.catalog-section .text-link {
  color: #0e7490;
}

.catalog-count {
  margin: 0;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.table-scroll {
  margin-block: 2rem 3rem;
  overflow-x: auto;
  border: 1px solid var(--shop-line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 54rem;
  border-collapse: collapse;
  background: var(--shop-card);
  font-size: 0.88rem;
}

.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.1rem;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid var(--shop-line);
}

.comparison-table thead th {
  color: #475569;
  background: #eef5f7;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody th {
  width: 15rem;
  color: #0f172a;
}

.comparison-table tbody th a {
  color: #0e7490;
}

.comparison-table tbody th span {
  display: block;
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-table td {
  color: #475569;
}

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

.catalog-product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: 9rem minmax(0, 1fr);
  color: var(--shop-ink);
  background: var(--shop-card);
  border: 1px solid var(--shop-line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.catalog-product-card:hover {
  border-color: rgba(14, 116, 144, 0.55);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.13);
  transform: translateY(-4px);
}

.catalog-product-mark {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  flex-direction: column;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 30%, rgba(34, 211, 238, 0.22), transparent 45%),
    linear-gradient(150deg, #0f2740, #07101f 62%, #311207);
  border-right: 1px solid rgba(15, 23, 42, 0.12);
  text-align: center;
}

.catalog-product-mark span {
  font-size: 2.7rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.catalog-product-mark small {
  margin-top: 0.7rem;
  color: #a5f3fc;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.catalog-product-media {
  display: flex;
  min-width: 0;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.75rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(34, 211, 238, 0.16), transparent 52%),
    #07101f;
  border-right: 1px solid rgba(15, 23, 42, 0.12);
}

.catalog-product-media picture {
  display: block;
  width: 100%;
  aspect-ratio: 1;
}

.catalog-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.catalog-product-copy {
  min-width: 0;
  padding: 1.5rem;
}

.catalog-product-copy h3 {
  margin-block: 0.8rem 0.2rem;
  font-size: 1.45rem;
}

.catalog-product-copy h3 a {
  color: #0f172a;
  text-decoration: none;
}

.catalog-product-copy h3 a:hover {
  color: #0e7490;
  text-decoration: underline;
}

.catalog-product-copy .content-label {
  color: #075985;
  background: #cffafe;
  border-color: #67e8f9;
}

.catalog-product-copy > p:not(.content-label):not(.catalog-model) {
  color: #475569;
  font-size: 0.9rem;
}

.catalog-model {
  margin: 0;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-facts {
  display: grid;
  margin-block: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.catalog-facts div {
  min-width: 0;
  padding: 0.7rem;
  background: #f1f5f9;
  border-radius: 0.65rem;
}

.catalog-facts dt {
  color: #475569;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.catalog-facts dd {
  margin: 0.25rem 0 0;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 800;
}

.catalog-fit {
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  color: #334155;
  background: #ecfeff;
  border: 1px solid #bae6fd;
  border-radius: 0.7rem;
  font-size: 0.78rem;
}

.catalog-fit strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #0e7490;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-product-copy .button.small {
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
  font-size: 0.67rem;
}

.catalog-method-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.07), transparent 25rem),
    #050816;
}

.product-record-hero {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.product-record-hero .container {
  position: relative;
  z-index: 1;
}

.product-record-hero h1 {
  max-width: 65rem;
}

.product-record-hero .lede {
  max-width: 52rem;
  color: #cbd5e1;
}

.record-badges,
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.record-badges {
  margin-block: 2rem 1.4rem;
}

.article-byline {
  margin-top: 1.5rem;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 700;
}

.article-byline span + span::before,
.article-byline a::before {
  margin-right: 0.55rem;
  color: var(--orange);
  content: "◆";
  font-size: 0.65em;
}

.record-overview {
  background: #07101f;
}

.record-overview-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}

.record-overview .catalog-visual {
  align-self: start;
}

.record-overview h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.record-overview p {
  color: #cbd5e1;
}

.record-spec-grid {
  display: grid;
  margin-block: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.record-spec-grid div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.record-spec-grid dt {
  color: #94a3b8;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-spec-grid dd {
  margin: 0.3rem 0 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 850;
}

.fit-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.fit-split > div {
  padding: 1rem;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: var(--radius-sm);
}

.fit-split > div + div {
  background: rgba(249, 115, 22, 0.055);
  border-color: rgba(249, 115, 22, 0.2);
}

.fit-split strong {
  color: var(--spruce);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-split > div + div strong {
  color: #fdba74;
}

.fit-split p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.record-details {
  background: #0b1020;
}

.record-details .toc hr {
  margin-block: 1rem;
  border: 0;
  border-top: 1px solid var(--line);
}

.commerce-module {
  max-width: 48rem;
  margin-block: 3.5rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 85% 10%, rgba(34, 211, 238, 0.08), transparent 18rem),
    #07101f;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-raised);
}

.commerce-module h2 {
  margin-top: 0.5rem;
}

.commerce-module .callout {
  margin-block: 1.2rem;
}

.retailer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.retailer-actions .button {
  min-width: 13.5rem;
  justify-content: center;
}

.commerce-module .market-source {
  color: #94a3b8;
}

.related-records {
  background: #050816;
}

.mini-record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.mini-record-grid a {
  display: flex;
  min-height: 10rem;
  padding: 1.2rem;
  flex-direction: column;
  color: var(--white);
  background: var(--panel-gradient);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-raised);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.mini-record-grid a:hover {
  color: var(--white);
  border-color: rgba(103, 232, 249, 0.55);
  transform: translateY(-3px);
}

.mini-record-grid span {
  color: var(--spruce);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-record-grid strong {
  margin-block: auto;
  padding-block: 0.8rem;
  font-size: 1.2rem;
}

.mini-record-grid small {
  color: #94a3b8;
}

.research-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.research-category-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  color: var(--shop-ink);
  background: var(--shop-card);
  border: 1px solid var(--shop-line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
}

.research-category-card picture {
  display: block;
  overflow: hidden;
  background: #07101f;
}

.research-category-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 220ms ease;
}

.research-category-card:hover img {
  transform: scale(1.025);
}

.research-category-card > div {
  display: flex;
  min-height: 17rem;
  padding: 1.5rem;
  flex: 1;
  flex-direction: column;
}

.research-category-card h3 {
  margin-block: 0.8rem 0.65rem;
  color: #0f172a;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.research-category-card .content-label {
  color: #075985;
  background: #cffafe;
  border-color: #67e8f9;
}

.research-category-card p:not(.content-label) {
  color: #475569;
}

.research-category-card .text-link {
  margin-top: auto;
  padding-top: 1rem;
  color: #0e7490;
}

.feature-panel {
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(115deg, rgba(8, 47, 73, 0.95), rgba(67, 20, 7, 0.8));
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 30px 70px rgba(0, 0, 0, 0.38), 0 0 48px rgba(34, 211, 238, 0.06);
  grid-template-columns: 1fr 0.95fr;
}

.feature-copy {
  padding: clamp(2rem, 6vw, 5rem);
}

.feature-copy h2,
.feature-copy .lede {
  color: var(--white);
}

.feature-visual {
  display: grid;
  min-height: 26rem;
  place-items: center;
  background:
    linear-gradient(rgba(103, 232, 249, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.08) 1px, transparent 1px),
    rgba(2, 6, 23, 0.5);
  background-size: 28px 28px;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.28) inset;
}

.feature-tiger {
  position: relative;
  overflow: hidden;
  background: #020617;
}

.feature-tiger::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 47, 73, 0.62), transparent 38%);
  content: "";
}

.feature-tiger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-plan {
  position: relative;
  width: min(82%, 24rem);
  aspect-ratio: 1;
  background: var(--cream);
  border: 6px solid rgba(248, 250, 252, 0.88);
  box-shadow: 14px 14px 0 rgba(2, 6, 23, 0.45);
}

.room-plan::before,
.room-plan::after {
  position: absolute;
  content: "";
}

.room-plan::before {
  top: 0;
  left: 44%;
  width: 8px;
  height: 58%;
  background: rgba(248, 250, 252, 0.88);
}

.room-plan::after {
  right: 0;
  bottom: 30%;
  width: 56%;
  height: 8px;
  background: rgba(248, 250, 252, 0.88);
}

.plan-dot {
  position: absolute;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: #020617;
  background: var(--spruce);
  border: 3px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(23, 32, 29, 0.22);
  font-size: 0.72rem;
  font-weight: 850;
}

.plan-dot.one { top: 12%; left: 13%; }
.plan-dot.two { top: 17%; right: 15%; }
.plan-dot.three { bottom: 11%; left: 17%; }
.plan-dot.four { right: 13%; bottom: 11%; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: steps;
}

.step-card {
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-raised);
  counter-increment: steps;
}

.step-card::before {
  display: grid;
  width: auto;
  height: auto;
  margin-bottom: 1.25rem;
  place-items: start;
  color: rgba(34, 211, 238, 0.3);
  background: transparent;
  content: counter(steps, decimal-leading-zero);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.labels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.labels-grid.article-width {
  max-width: 48rem;
}

.label-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: var(--panel-gradient);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-raised);
}

.content-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.65rem;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.content-label.orange {
  color: #fdba74;
  background: rgba(249, 115, 22, 0.12);
}

.content-label.gold {
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.12);
}

.research-category-card .content-label,
.research-category-card .content-label.orange,
.research-category-card .content-label.gold {
  color: #075985;
  background: #cffafe;
  border-color: #67e8f9;
}

.label-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.story-tiger {
  position: relative;
  overflow: hidden;
  width: min(100%, 25rem);
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 45% 45% var(--radius-lg) var(--radius-lg);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.42), 1.2rem 1.2rem 0 rgba(249, 115, 22, 0.08);
}

.story-tiger::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(2, 6, 23, 0.62));
  content: "";
}

.story-tiger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rings {
  position: relative;
  display: grid;
  width: min(100%, 25rem);
  aspect-ratio: 1;
  margin-inline: auto;
  place-items: center;
  border: 2px solid rgba(34, 211, 238, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 2rem rgba(34, 211, 238, 0.055),
    0 0 0 4rem rgba(34, 211, 238, 0.035),
    0 0 0 6rem rgba(34, 211, 238, 0.02);
}

.rings img {
  width: 50%;
}

.story-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.launch-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(110deg, rgba(8, 47, 73, 0.9), rgba(67, 20, 7, 0.7));
  border-color: rgba(34, 211, 238, 0.28);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 26px 60px rgba(0, 0, 0, 0.36);
}

.launch-note h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.launch-note p {
  max-width: 44rem;
  margin: 0;
  color: var(--ink-soft);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7.5rem);
  background:
    linear-gradient(90deg, #0b1020 0%, rgba(11, 16, 32, 0.96) 48%, rgba(11, 16, 32, 0.58) 100%),
    radial-gradient(circle at 84% 12%, rgba(34, 211, 238, 0.13), transparent 30%),
    radial-gradient(circle at 12% 100%, rgba(249, 115, 22, 0.08), transparent 28%),
    image-set(url("/assets/tiger-temple-hero-v1.webp") type("image/webp"), url("/assets/tiger-temple-hero-v1.jpg") type("image/jpeg")) 86% 42% / min(62rem, 70vw) auto no-repeat,
    #0b1020;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  right: -4rem;
  bottom: -3rem;
  width: 22rem;
  height: 12rem;
  opacity: 0.22;
  background: repeating-linear-gradient(118deg, transparent 0 20px, rgba(249, 115, 22, 0.34) 21px 25px, transparent 26px 43px);
  transform: rotate(-8deg);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .lede {
  max-width: 50rem;
}

.page-hero h1 {
  max-width: 60rem;
  font-size: clamp(2.8rem, 6vw, 5.15rem);
}

.breadcrumbs {
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 680;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 0.4rem;
  content: "/";
}

.article-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 17rem;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.article-body {
  min-width: 0;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.article-body h2 {
  margin-top: 3.5rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.article-body h3 {
  margin-top: 2.2rem;
}

.article-body p,
.article-body ul,
.article-body ol {
  max-width: 47rem;
}

.article-body li + li {
  margin-top: 0.55rem;
}

.article-image {
  max-width: 48rem;
  margin: 2rem 0;
  overflow: hidden;
  background: #0b1020;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-raised);
}

.article-image img {
  width: 100%;
  max-height: 32rem;
  object-fit: cover;
}

.article-image figcaption {
  padding: 0.8rem 1rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.article-meta span + span::before {
  margin-right: 1rem;
  color: var(--orange);
  content: "◆";
  font-size: 0.65em;
}

.toc {
  position: sticky;
  top: 7rem;
  padding: 1.25rem;
  background: var(--panel-gradient);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-raised);
}

.toc strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.toc li + li {
  margin-top: 0.5rem;
}

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

.toc a:hover {
  color: var(--spruce);
  text-decoration: underline;
}

.callout {
  max-width: 48rem;
  margin-block: 2rem;
  padding: 1.35rem 1.5rem;
  background: var(--panel-gradient);
  border-left: 5px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-raised);
}

.callout strong {
  display: block;
  margin-bottom: 0.35rem;
}

.callout p {
  margin: 0;
  color: #cbd5e1;
}

.checklist {
  max-width: 48rem;
  margin-block: 2rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  margin: 0;
  padding: 1rem 1rem 1rem 3.2rem;
  background: var(--panel-gradient);
  border: 1px solid var(--line);
}

.checklist li + li {
  border-top: 0;
}

.checklist li:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.checklist li:last-child {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.checklist li::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  color: #020617;
  background: var(--spruce);
  border-radius: 50%;
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.source-list {
  max-width: 48rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.policy-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 1.5rem;
  background: var(--panel-gradient);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-raised);
}

.policy-card a[href^="mailto:"] {
  max-width: 100%;
  overflow-wrap: anywhere;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: none;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card p {
  color: #cbd5e1;
}

.policy-title {
  font-size: 2rem;
}

.callout.top-gap {
  margin-top: 2rem;
}

.site-footer {
  padding-block: 3.5rem 2rem;
  color: rgba(255, 255, 255, 0.76);
  background: #03050d;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 27rem;
  margin: 1.2rem 0 0;
}

.footer-heading {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--spruce);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 5rem);
  place-items: center;
  padding-block: 4rem;
  text-align: center;
}

.not-found-code {
  margin: 0;
  color: var(--spruce);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(6rem, 22vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.not-found h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

/* Gear hub visual refresh */
.page-hero.gear-hero {
  min-height: min(46rem, calc(100svh - 4.5rem));
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, #040713 0%, rgba(4, 7, 19, 0.97) 43%, rgba(4, 7, 19, 0.56) 70%, rgba(4, 7, 19, 0.36) 100%),
    linear-gradient(180deg, transparent 52%, rgba(5, 8, 22, 0.9) 100%),
    radial-gradient(circle at 72% 32%, rgba(34, 211, 238, 0.14), transparent 24rem),
    image-set(url("/assets/tiger-temple-hero-v1.webp") type("image/webp"), url("/assets/tiger-temple-hero-v1.jpg") type("image/jpeg")) 82% 45% / cover no-repeat,
    #050816;
}

.gear-hero .container {
  width: min(calc(100% - 2.25rem), var(--max-width));
}

.gear-hero h1 {
  max-width: 49rem;
  text-wrap: balance;
}

.gear-hero .lede {
  max-width: 44rem;
  color: #cbd5e1;
}

.gear-hero .eyebrow {
  display: inline-flex;
  padding: 0.42rem 0.76rem;
  color: #a5f3fc;
  background: rgba(8, 47, 73, 0.52);
  border: 1px solid rgba(34, 211, 238, 0.42);
  border-radius: 999px;
}

.catalog-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.11), transparent 28rem),
    radial-gradient(circle at 0% 100%, rgba(249, 115, 22, 0.08), transparent 24rem),
    #f7f4ec;
}

.catalog-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: radial-gradient(rgba(15, 23, 42, 0.15) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  content: "";
  pointer-events: none;
}

.catalog-section .container {
  position: relative;
  z-index: 1;
}

.research-category-card {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.13), 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.research-category-card:hover,
.research-category-card:focus-within {
  border-color: rgba(14, 116, 144, 0.5);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(249, 115, 22, 0.12);
  transform: translateY(-6px);
}

.research-category-card picture {
  position: relative;
}

.research-category-card picture::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(2, 6, 23, 0.74));
  content: "";
  pointer-events: none;
}

.research-category-card h3 {
  margin-block: 0.8rem 0.65rem;
  color: #0f172a;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.watchlist-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(34, 211, 238, 0.1), transparent 24rem),
    radial-gradient(circle at 10% 100%, rgba(249, 115, 22, 0.09), transparent 24rem),
    #050816;
  border-block: 1px solid var(--line);
}

.watchlist-intro::after {
  position: absolute;
  right: -3rem;
  bottom: -5rem;
  width: 24rem;
  height: 14rem;
  opacity: 0.25;
  background: repeating-linear-gradient(118deg, transparent 0 18px, rgba(249, 115, 22, 0.42) 19px 22px, transparent 23px 38px);
  transform: rotate(-8deg);
  content: "";
  pointer-events: none;
}

.watchlist-intro .container {
  position: relative;
  z-index: 1;
}

.watchlist-intro-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  margin-bottom: 2rem;
}

.watchlist-intro-heading h2 {
  max-width: 47rem;
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.75rem);
  text-wrap: balance;
}

.watchlist-intro-heading > p {
  margin: 0;
  color: #cbd5e1;
}

.callout.affiliate-status {
  max-width: none;
  margin: 0 0 1rem;
  padding: 1.15rem 1.3rem;
  background: linear-gradient(100deg, rgba(21, 30, 52, 0.96), rgba(8, 14, 29, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow-raised);
}

.watchlist-principles li {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18, 27, 49, 0.98), rgba(7, 11, 25, 0.98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.watchlist-principles li::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--edge-highlight);
  content: "";
}

.watchlist-principles h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

.category-jump a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.55rem 0.82rem;
}

.product-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(34, 211, 238, 0.08), transparent 25rem),
    #f8f5ed;
}

.section-cream.product-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.07), transparent 25rem),
    #edf4f3;
}

.product-section .section-heading {
  max-width: 74rem;
}

.product-card {
  isolation: isolate;
  padding-top: 1.35rem;
  border-color: rgba(15, 23, 42, 0.13);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12), 0 3px 10px rgba(15, 23, 42, 0.06);
}

.product-card::after {
  position: absolute;
  z-index: -1;
  inset: auto -4rem -5rem auto;
  width: 10rem;
  aspect-ratio: 1;
  opacity: 0.08;
  background: repeating-linear-gradient(120deg, transparent 0 11px, var(--orange) 12px 15px, transparent 16px 27px);
  transform: rotate(-14deg);
  content: "";
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(14, 116, 144, 0.58);
  box-shadow: 0 28px 62px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(34, 211, 238, 0.18);
  transform: translateY(-6px);
}

.watchlist-product-media {
  position: relative;
  overflow: hidden;
  margin: -1.35rem -1.5rem 1.35rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(34, 211, 238, 0.15), transparent 45%),
    #050816;
  border-bottom: 1px solid rgba(15, 23, 42, 0.18);
}

.watchlist-product-media picture {
  display: block;
  aspect-ratio: 4 / 3;
}

.watchlist-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-card:hover .watchlist-product-media img,
.product-card:focus-within .watchlist-product-media img {
  transform: scale(1.035);
}

.watchlist-product-media figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.65rem;
  padding: 0.32rem 0.55rem;
  color: #e2e8f0;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-grid.two-up .watchlist-product-media picture {
  aspect-ratio: 16 / 9;
}

.market-source {
  font-size: 0.82rem;
}

@media (min-width: 641px) and (max-width: 1080px) {
  .product-grid,
  .product-grid.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .watchlist-intro-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gear-hero h1 {
    max-width: 41rem;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: 4.5rem;
    right: 0;
    left: 0;
    max-height: calc(100vh - 4.5rem);
    padding: 0 1.1rem 1.1rem;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .site-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .nav-list {
    display: block;
    padding: 0.75rem;
    background: #0b1020;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

  .nav-list a {
    padding: 0.85rem 1rem;
  }

  .nav-list .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  .hero-grid,
  .feature-panel,
  .story-grid,
  .article-layout,
  .catalog-hero-grid,
  .record-overview-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero-grid {
    min-height: auto;
  }

  .catalog-hero-copy {
    max-width: 45rem;
  }

  .catalog-hero-copy h1,
  .product-record-hero h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
  }

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

  .category-fact-strip div:nth-child(3) {
    border-left: 0;
  }

  .category-fact-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .catalog-product-card {
    grid-template-columns: 8rem minmax(0, 1fr);
  }

  .catalog-product-media {
    padding: 0.65rem;
  }

  .record-overview .catalog-visual--product {
    width: min(100%, 42rem);
    justify-self: center;
  }

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

  .hero-grid {
    min-height: calc(100svh - 4.5rem);
    padding-block: clamp(4.5rem, 12vw, 7rem);
  }

  .hero-copy {
    grid-column: 1;
    max-width: 42rem;
    padding: clamp(1.25rem, 5vw, 2rem);
    transform: none;
  }

  .hero {
    background-image:
      linear-gradient(90deg, rgba(3, 7, 17, 0.72), rgba(3, 7, 17, 0.32) 48%, rgba(3, 7, 17, 0.38)),
      linear-gradient(180deg, rgba(5, 8, 22, 0.2), rgba(5, 8, 22, 0.55) 62%, rgba(5, 8, 22, 0.9)),
      image-set(url("/assets/tiger-temple-hero-v1.webp") type("image/webp"), url("/assets/tiger-temple-hero-v1.jpg") type("image/jpeg"));
    background-position: 68% center;
  }

  .hero-visual {
    padding: 1rem 0 2rem;
  }

  .field-card {
    max-width: 22rem;
  }

  .category-grid,
  .labels-grid,
  .product-grid,
  .product-grid.two-up {
    grid-template-columns: repeat(2, 1fr);
  }

  .watchlist-principles {
    grid-template-columns: 1fr;
  }

  .watchlist-principles span {
    margin-bottom: 1rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .toc {
    position: static;
    order: -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.4rem), var(--max-width));
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .nav-wrap {
    gap: 0.75rem;
  }

  .site-header .nav-wrap > .button {
    min-height: 2.75rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.65rem;
  }

  .hero-grid {
    padding-top: 4.5rem;
    padding-bottom: 3.5rem;
  }

  .hero {
    background-position: center, center, 68% top;
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%, auto 430px;
  }

  .hero-copy {
    margin-top: 12rem;
    border-color: rgba(103, 232, 249, 0.16);
    background: linear-gradient(145deg, rgba(4, 9, 24, 0.76), rgba(3, 7, 18, 0.48));
    backdrop-filter: blur(5px);
  }

  .page-hero,
  .gear-hero {
    background-position: center, center, center, 40% center, center;
    background-size: 100% 100%, auto, auto, auto 100%, auto;
  }

  .page-hero.gear-hero {
    min-height: 0;
    background-position: center, center, center, 62% center;
    background-size: 100% 100%, 100% 100%, auto, cover;
  }

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

  .trust-line {
    display: block;
  }

  .trust-line li + li {
    margin-top: 0.45rem;
  }

  .field-card {
    transform: none;
  }

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

  .trust-grid li {
    justify-content: flex-start;
    text-align: left;
  }

  .trust-grid li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .section-heading,
  .launch-note,
  .footer-bottom {
    display: block;
  }

  .section-heading .text-link,
  .launch-note .button {
    margin-top: 1.5rem;
  }

  .category-grid,
  .labels-grid,
  .steps-grid,
  .policy-grid,
  .footer-grid,
  .product-grid,
  .product-grid.two-up,
  .category-fact-strip,
  .catalog-grid,
  .research-category-grid,
  .record-spec-grid,
  .fit-split,
  .mini-record-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero-grid {
    gap: 2rem;
    padding-block: 3rem;
  }

  .catalog-hero-copy h1,
  .product-record-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  .catalog-visual {
    border-radius: var(--radius-md);
  }

  .category-fact-strip div + div,
  .category-fact-strip div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .catalog-product-card {
    grid-template-columns: 1fr;
  }

  .catalog-product-mark,
  .catalog-product-media {
    min-height: 9rem;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  }

  .catalog-product-media {
    padding: 1rem;
  }

  .catalog-product-media picture {
    width: min(100%, 20rem);
  }

  .catalog-visual--product img {
    padding: clamp(0.75rem, 4vw, 1.25rem);
  }

  .catalog-facts {
    grid-template-columns: 1fr;
  }

  .record-badges,
  .article-byline {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-byline span + span::before,
  .article-byline a::before {
    display: none;
  }

  .retailer-actions {
    display: grid;
  }

  .retailer-actions .button {
    width: 100%;
    min-width: 0;
  }

  .research-category-card > div {
    min-height: 0;
  }

  .watchlist-intro-heading {
    display: block;
  }

  .watchlist-intro-heading > p {
    margin-top: 1rem;
  }

  .watchlist-product-media picture,
  .product-grid.two-up .watchlist-product-media picture {
    aspect-ratio: 4 / 3;
  }

  .category-jump {
    margin-right: -0.7rem;
    margin-left: -0.7rem;
    padding-right: 1rem;
    padding-left: 1rem;
    scroll-padding-inline: 1rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .feature-visual {
    min-height: 21rem;
  }

  .story-grid {
    gap: 5rem;
  }

  .article-meta {
    display: block;
  }

  .article-meta span {
    display: block;
  }

  .article-meta span + span {
    margin-top: 0.25rem;
  }

  .article-meta span + span::before {
    display: none;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom p + p {
    margin-top: 0.5rem;
  }
}

@media (max-width: 360px) {
  .site-header .brand-name {
    display: none;
  }

  h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-copy,
  .button,
  .nav-list .nav-cta,
  .category-card,
  .info-card,
  .product-card,
  .catalog-product-card,
  .mini-record-grid a,
  .research-category-card img {
    transform: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .toc,
  .button-row,
  .hero-actions {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  h1,
  h2,
  h3,
  .lede,
  .article-body,
  .category-card p,
  .info-card p,
  .label-card p,
  .product-card p,
  .product-fit span,
  .product-checks,
  .policy-card p,
  .story-copy p:not(.eyebrow),
  .launch-note p,
  .callout p,
  .source-list {
    color: #000;
  }

  .page-hero,
  .section,
  .section-cream {
    padding-block: 1rem;
    background: #fff;
  }

  .category-card,
  .info-card,
  .label-card,
  .product-card,
  .policy-card,
  .launch-note,
  .callout,
  .checklist li,
  .toc {
    color: #000;
    background: #fff;
    border-color: #bbb;
  }

  a {
    color: #000;
  }
}

/* 2026 field-guide redesign ------------------------------------------------ */
:root {
  --ink: #f7f3e8;
  --ink-soft: #b9c4bd;
  --spruce: #7dd3c7;
  --spruce-dark: #07110f;
  --orange: #e86f36;
  --orange-dark: #ff9a67;
  --gold: #d5ae63;
  --cream: #eee8da;
  --paper: #07110f;
  --mist: rgba(247, 243, 232, 0.07);
  --line: rgba(247, 243, 232, 0.14);
  --shop-bg: #f4f0e7;
  --shop-card: #fbf8f1;
  --shop-ink: #17201d;
  --shop-muted: #59665f;
  --shop-line: #d5d7cb;
  --radius-sm: 0.35rem;
  --radius-md: 0.6rem;
  --radius-lg: 0.9rem;
  --shadow-raised: 0 20px 50px rgba(17, 25, 22, 0.12);
  --shadow-hover: 0 28px 60px rgba(17, 25, 22, 0.17);
  --panel-gradient: linear-gradient(145deg, rgba(19, 38, 33, 0.98), rgba(8, 19, 16, 0.98));
}

body {
  background: #07110f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
  text-transform: none;
}

h1 {
  letter-spacing: -0.055em;
}

h2 {
  letter-spacing: -0.045em;
}

h3 {
  letter-spacing: -0.025em;
}

.site-header {
  background: rgba(7, 17, 15, 0.9);
  box-shadow: none;
}

.brand-name {
  color: #f7f3e8;
  letter-spacing: 0.27em;
}

.nav-list a {
  font-size: 0.76rem;
  letter-spacing: 0.035em;
}

.nav-list .nav-cta,
.button {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  box-shadow: none;
  transform: none;
  letter-spacing: 0.08em;
}

.nav-list .nav-cta {
  color: #fffaf0;
  background: var(--orange);
}

.nav-list .nav-cta:hover {
  color: #fff;
  background: #c95525;
  box-shadow: none;
}

.button {
  color: #fffaf0;
  background: var(--orange);
}

.button:hover {
  color: #fff;
  background: #c95525;
  box-shadow: none;
  transform: translateY(-2px);
}

.button.secondary {
  color: #f7f3e8;
  background: rgba(7, 17, 15, 0.35);
  border-color: rgba(247, 243, 232, 0.45);
}

.button.secondary:hover {
  color: #07110f;
  background: #f7f3e8;
  border-color: #f7f3e8;
}

.eyebrow {
  color: var(--spruce);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(4, 13, 11, 0.08) 0%, rgba(4, 13, 11, 0.25) 34%, rgba(4, 13, 11, 0.84) 66%, rgba(4, 13, 11, 0.98) 100%),
    linear-gradient(180deg, rgba(7, 17, 15, 0.08), rgba(7, 17, 15, 0.78)),
    image-set(url("/assets/tiger-temple-hero-left-v2.webp") type("image/webp"), url("/assets/tiger-temple-hero-left-v2.jpg") type("image/jpeg"));
}

.hero-cinema {
  position: absolute;
  z-index: 0;
  inset: -1.5rem;
  overflow: hidden;
  contain: paint;
  pointer-events: none;
}

.hero-cinema::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 13, 11, 0.06) 0%, rgba(4, 13, 11, 0.18) 34%, rgba(4, 13, 11, 0.84) 66%, rgba(4, 13, 11, 0.98) 100%),
    linear-gradient(180deg, rgba(7, 17, 15, 0.04), transparent 55%, rgba(7, 17, 15, 0.82));
  content: "";
}

.hero-depth-layer {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: absolute;
  z-index: 0;
  inset: -2.5%;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.045);
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: transform;
}

.hero-depth-layer picture,
.hero-depth-layer img {
  width: 100%;
  height: 100%;
}

.hero-depth-layer img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.03);
  transform-origin: 28% 50%;
  animation: hero-camera-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-light-rays {
  position: absolute;
  z-index: 1;
  top: -40%;
  right: auto;
  left: -9%;
  width: 58%;
  height: 150%;
  opacity: 0.32;
  background:
    linear-gradient(105deg, transparent 20%, rgba(255, 210, 132, 0.24) 31%, transparent 39%),
    linear-gradient(99deg, transparent 43%, rgba(255, 229, 179, 0.18) 51%, transparent 59%),
    linear-gradient(112deg, transparent 62%, rgba(244, 180, 94, 0.14) 68%, transparent 75%);
  filter: blur(12px);
  mix-blend-mode: screen;
  transform-origin: top center;
  animation: hero-rays 11s ease-in-out infinite alternate;
}

.hero-mist {
  position: absolute;
  z-index: 2;
  right: -20%;
  left: 28%;
  height: 38%;
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(210, 230, 218, 0.22), transparent 38%),
    radial-gradient(ellipse at 70% 46%, rgba(225, 235, 226, 0.19), transparent 42%);
  filter: blur(20px);
  will-change: transform, opacity;
}

.hero-mist-back {
  bottom: 5%;
  animation: hero-mist-back 17s ease-in-out infinite alternate;
}

.hero-mist-front {
  z-index: 3;
  bottom: -9%;
  opacity: 0.16;
  filter: blur(28px);
  transform: scale(1.2);
  animation: hero-mist-front 23s ease-in-out infinite alternate-reverse;
}

.hero-particles {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.hero[data-motion="reduced"] .hero-depth-layer,
.hero[data-motion="reduced"] .hero-depth-layer img,
.hero[data-motion="reduced"] .hero-light-rays,
.hero[data-motion="reduced"] .hero-mist,
.hero[data-motion="reduced"] .hero-copy,
.hero[data-motion="reduced"] .hero-visual {
  animation: none;
  transition: none;
  transform: none;
}

.hero[data-motion="reduced"] .hero-particles {
  display: none;
}

.hero-copy {
  animation: hero-copy-arrival 850ms 100ms cubic-bezier(0.18, 0.72, 0.2, 1) both;
}

.hero-visual {
  animation: hero-card-arrival 900ms 260ms cubic-bezier(0.18, 0.72, 0.2, 1) both;
}

@keyframes hero-camera-drift {
  from { transform: scale(1.01) translate3d(-0.2%, 0, 0); }
  to { transform: scale(1.065) translate3d(0.45%, -0.55%, 0); }
}

@keyframes hero-rays {
  0% { opacity: 0.2; transform: rotate(-2deg) translate3d(-2%, 0, 0); }
  55% { opacity: 0.38; }
  100% { opacity: 0.27; transform: rotate(2.5deg) translate3d(3%, 2%, 0); }
}

@keyframes hero-mist-back {
  from { opacity: 0.13; transform: translate3d(-4%, 2%, 0) scale(0.96); }
  to { opacity: 0.25; transform: translate3d(7%, -3%, 0) scale(1.08); }
}

@keyframes hero-mist-front {
  from { opacity: 0.1; transform: translate3d(8%, 1%, 0) scale(1.15); }
  to { opacity: 0.2; transform: translate3d(-7%, -3%, 0) scale(1.28); }
}

@keyframes hero-copy-arrival {
  from { opacity: 0; transform: translate3d(-1.25rem, 0.65rem, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-card-arrival {
  from { opacity: 0; transform: translate3d(1.25rem, 0.8rem, 0); }
  to { opacity: 1; transform: none; }
}

.hero::before {
  display: none;
}

.hero::after {
  opacity: 0.18;
}

.hero-grid {
  grid-template-columns: minmax(20rem, 0.82fr) minmax(32rem, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-copy {
  grid-column: 2;
  width: min(100%, 44rem);
  justify-self: end;
  padding: 0;
  border: 0;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  transform: none;
}

.hero-copy h1 {
  max-width: 12ch;
}

.hero .accent-text {
  color: #f0bb73;
}

.trust-line li::before {
  color: var(--spruce);
}

.hero-visual {
  display: none;
  align-self: end;
  padding-bottom: clamp(3rem, 7vh, 6rem);
}

.field-card {
  width: 100%;
  max-width: 25rem;
  margin-left: auto;
  padding: 1.4rem;
  color: #17201d;
  background: rgba(247, 243, 232, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 0.55rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: none;
  backdrop-filter: blur(18px);
}

.field-card::before {
  top: 0;
  right: 1.4rem;
  left: 1.4rem;
  height: 3px;
  background: linear-gradient(90deg, var(--spruce), var(--orange));
}

.field-card-top {
  padding-bottom: 0.8rem;
  color: #53625b;
  border-color: rgba(23, 32, 29, 0.16);
}

.field-card-kicker,
.field-card-code {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field-card-code {
  color: #9f4926;
}

.field-card h2 {
  margin: 1.1rem 0 0.9rem;
  color: #17201d;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}

.field-guide-links {
  border-top: 1px solid rgba(23, 32, 29, 0.16);
}

.field-guide-links a {
  display: grid;
  grid-template-columns: 1.8rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.82rem 0;
  color: #17201d;
  border-bottom: 1px solid rgba(23, 32, 29, 0.16);
  text-decoration: none;
}

.field-guide-links a:hover strong {
  color: #b95024;
}

.field-guide-links span {
  color: #7b8982;
  font: 700 0.65rem/1 ui-monospace, monospace;
}

.field-guide-links strong {
  font-size: 0.84rem;
  transition: color 160ms ease;
}

.field-guide-links i {
  color: #b95024;
  font-style: normal;
}

.field-guide-all {
  display: inline-block;
  margin-top: 1rem;
  color: #315c4c;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.trust-bar {
  background: #10251f;
}

.trust-grid li {
  color: #e9eee8;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-cream,
.shop-section,
.catalog-section,
.product-section {
  color: var(--shop-ink);
  background: var(--shop-bg);
}

.section-cream h1,
.section-cream h2,
.section-cream h3,
.shop-section h1,
.shop-section h2,
.shop-section h3,
.catalog-section h1,
.catalog-section h2,
.catalog-section h3,
.product-section h1,
.product-section h2,
.product-section h3 {
  color: var(--shop-ink);
}

.section-cream .lede,
.shop-section .lede,
.catalog-section .lede,
.product-section .lede {
  color: var(--shop-muted);
}

.section-heading::before {
  background: linear-gradient(90deg, var(--orange), transparent);
}

.category-grid {
  gap: 1rem;
}

.category-card,
.info-card,
.label-card,
.product-card,
.catalog-product-card,
.research-category-card,
.policy-card {
  border-radius: 0.55rem;
  box-shadow: 0 12px 34px rgba(17, 25, 22, 0.07);
}

.shop-section .category-card,
.catalog-product-card,
.research-category-card,
.product-card {
  background: var(--shop-card);
  border-color: var(--shop-line);
}

.shop-section .category-card:hover,
.catalog-product-card:hover,
.research-category-card:hover,
.product-card:hover {
  border-color: #afbbb2;
  box-shadow: 0 22px 48px rgba(17, 25, 22, 0.13);
  transform: translateY(-4px);
}

.category-card::after,
.product-card::after {
  background: var(--orange);
}

.category-icon {
  color: #315c4c;
  background: #dde8df;
  border-radius: 50%;
  box-shadow: none;
}

.card-status,
.text-link {
  color: #9f4926;
}

.feature-panel {
  background: #10251f;
  border-radius: 0.65rem;
  box-shadow: none;
}

.feature-copy h2,
.feature-copy .lede {
  color: #f7f3e8;
}

.feature-visual,
.story-tiger,
.catalog-visual {
  border-radius: 0.45rem;
}

.section-spruce {
  background: #10251f;
}

.step-card {
  background: rgba(247, 243, 232, 0.05);
  border-color: rgba(247, 243, 232, 0.16);
  border-radius: 0.4rem;
}

.step-card::before {
  color: #f0bb73;
}

.content-label {
  border-radius: 0.2rem;
  letter-spacing: 0.11em;
}

.page-hero h1,
.catalog-hero-copy h1,
.product-record-hero h1,
.gear-hero h1 {
  text-transform: none;
}

.article-body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-body .content-label,
.article-body .button,
.article-body .callout,
.article-meta,
.toc,
.comparison-table,
.record-spec-grid {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.toc,
.callout,
.commerce-module,
.record-spec-grid div {
  border-radius: 0.45rem;
}

.comparison-table thead th {
  color: #f7f3e8;
  background: #173229;
}

.site-footer {
  background: #050c0a;
}

@media (max-width: 920px) {
  .hero {
    background-position: center, center, 18% center;
    background-size: 100% 100%, 100% 100%, cover;
  }

  .hero-depth-layer img {
    object-position: 18% center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: clamp(5rem, 12vw, 7rem);
  }

  .hero-copy {
    grid-column: 1;
    justify-self: end;
    max-width: 44rem;
  }

  .hero-visual {
    padding: 0;
  }

  .field-card {
    max-width: 32rem;
    margin: 0;
  }

  .nav-list {
    background: #10251f;
    border-radius: 0.4rem;
  }
}

@media (max-width: 640px) {
  .hero {
    background-position: center, center, 8% top;
    background-size: 100% 100%, 100% 100%, auto 390px;
  }

  .hero-cinema {
    inset: 0 0 auto;
    height: 440px;
  }

  .hero-cinema::after {
    background:
      linear-gradient(90deg, rgba(4, 13, 11, 0.48), rgba(4, 13, 11, 0.12)),
      linear-gradient(180deg, rgba(7, 17, 15, 0.04) 42%, rgba(7, 17, 15, 0.98) 100%);
  }

  .hero-depth-layer {
    inset: -2%;
  }

  .hero-depth-layer img {
    object-position: 8% top;
  }

  .hero-light-rays {
    right: -24%;
    width: 95%;
  }

  .hero-mist {
    right: -40%;
    left: -15%;
  }

  .hero-grid {
    padding-top: 17rem;
  }

  .hero-copy {
    margin-top: 0;
    padding: 0;
    background: none;
    border: 0;
    backdrop-filter: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .field-card {
    padding: 1.2rem;
  }

  .category-grid {
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-depth-layer,
  .hero-depth-layer img,
  .hero-light-rays,
  .hero-mist,
  .hero-copy,
  .hero-visual {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .hero-particles {
    display: none;
  }
}
