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

:root {
  --blue: #2a5f7a;
  --blue-dark: #1a3d52;
  --blue-mid: #2d5f75;
  --blue-light: #e4eef2;
  --navy: #2b2118;
  --barn: #8b3a2f;
  --brass: #a67c1f;
  --brass-light: #f5edd8;
  --bg: #f7f2ea;
  --bg-card: #fcfaf6;
  --bg-alt: #ede4d4;
  --text: #2b2118;
  --text-muted: #6b5f54;
  --border: #d4c4b0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 0 2rem 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-back {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: #fffcf7;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--blue-dark); }

.hero {
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
  padding: 4rem 2rem 3rem 1.25rem;
  background: linear-gradient(135deg, #faf6ef 0%, #ede4d4 100%);
}

.tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.hero .subtitle-product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2rem;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.price-block .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--barn);
}

.price-block .period {
  font-size: 1rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: #fffcf7;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

button.btn-primary {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

button.btn-secondary {
  border: 2px solid var(--blue);
  cursor: pointer;
  font-family: inherit;
  background: transparent;
}

.btn-secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-secondary:hover { background: var(--blue-light); transform: translateY(-1px); }

.section { padding: 4rem 2rem 4rem 1.25rem; }
.section-inner { max-width: 900px; margin-left: 0; margin-right: auto; }

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 95, 122, 0.1);
}

.feature-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); }

.bg-mid { background: var(--bg-alt); }

.cta-banner {
  background: linear-gradient(135deg, #1a3d52 0%, #2a5f7a 55%, #1e4a5c 100%);
  padding: 4rem 2rem 4rem 1.25rem;
  text-align: left;
}

.cta-banner .section-title { color: #fffcf7; margin-bottom: 0.75rem; }
.cta-banner .section-sub { color: rgba(255, 255, 255, 0.75); margin: 0 0 2rem; max-width: 540px; }
.cta-banner .hero-actions { justify-content: flex-start; }
.cta-banner .btn-secondary { border-color: rgba(255, 255, 255, 0.6); color: #ffffff; }
.cta-banner .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

footer {
  background: #1a1510;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 2rem 2rem 1.25rem;
  text-align: left;
}

footer .footer-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

footer p { font-size: 0.8125rem; color: #6b7280; }

/* ── Product page: Explore-style tabs (mirrors main site #industry-tab-section) ── */
.product-explore-section {
  padding: 3rem 2rem 3rem 1.25rem;
  background: var(--bg);
}

.product-explore-section .explore-heading {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.product-explore-section .industry-tab-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 0;
  border-bottom: 2px solid var(--border);
}

.product-explore-section .industry-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 112px;
  padding: 0.75rem 1.25rem 1rem;
  cursor: pointer;
  border: none;
  background: transparent;
  font: inherit;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, background 0.2s;
  border-radius: 4px 4px 0 0;
}

.product-explore-section .industry-tab:hover {
  color: var(--navy);
  background: var(--bg-alt);
}

.product-explore-section .industry-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.product-explore-section .industry-tab .tab-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.product-explore-section .industry-tab.active .tab-icon {
  border-color: var(--blue);
  background: var(--blue-light);
}

.product-explore-section .industry-tab span.label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  max-width: 9rem;
  line-height: 1.25;
}

.product-explore-section .tab-panel {
  display: none;
  animation: product-tab-in 0.3s ease;
}

.product-explore-section .tab-panel.active { display: block; }

@keyframes product-tab-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-explore-section .tab-panel-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.product-explore-section .tab-panel-intro .tab-title {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--navy);
}

.product-explore-section .tab-panel-intro p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.product-explore-section .competitor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-explore-section .competitor-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
}

.product-explore-section .competitor-list strong {
  color: var(--navy);
  display: block;
  margin-bottom: 0.35rem;
}

.product-explore-section .competitor-list span.muted {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .product-explore-section .industry-tab-wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }
}

/* ── Bowling tournament product page: centered layout ── */
body.bowling-tournament-product nav {
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

body.bowling-tournament-product .price-block {
  justify-content: center;
}

body.bowling-tournament-product .hero-actions {
  justify-content: center;
}

body.bowling-tournament-product .section-inner {
  margin-left: auto;
  margin-right: auto;
  /* Wider than default 900px so the 6-column comparison matrix fits without horizontal scroll on typical laptops */
  max-width: min(96vw, 82rem);
  padding-left: clamp(0.75rem, 2vw, 1.5rem);
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
}

body.bowling-tournament-product .product-explore-section .tab-panel-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.bowling-tournament-product .product-explore-section .tab-panel-intro .section-label {
  text-align: center;
}

body.bowling-tournament-product .features-grid {
  /* ~168px min tracks → at most 5 columns in 900px-wide section-inner */
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 0.75rem;
}

body.bowling-tournament-product .features-grid .feature-card {
  text-align: center;
  padding: 0.875rem 0.65rem;
}

body.bowling-tournament-product .features-grid .feature-icon {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

body.bowling-tournament-product .features-grid .feature-card h3 {
  font-size: 0.8125rem;
  line-height: 1.25;
}

body.bowling-tournament-product .features-grid .feature-card p {
  font-size: 0.6875rem;
  line-height: 1.45;
}

body.bowling-tournament-product .product-explore-section .competitor-list li {
  text-align: center;
}

body.bowling-tournament-product .compare-matrix-note,
body.wyatt-erp-product .compare-matrix-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: min(76rem, 100%);
  margin: 0.75rem auto 0;
  text-align: center;
  line-height: 1.55;
  padding: 0 0.5rem;
}

body.bowling-tournament-product .compare-table-wrap,
body.wyatt-erp-product .compare-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  max-width: 100%;
}

body.bowling-tournament-product .compare-matrix,
body.wyatt-erp-product .compare-matrix {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.75rem;
  line-height: 1.35;
}

body.bowling-tournament-product .compare-matrix thead th,
body.wyatt-erp-product .compare-matrix thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
  padding: 0.55rem 0.45rem;
  border-bottom: 2px solid var(--border);
  text-align: center;
  vertical-align: bottom;
  hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

body.bowling-tournament-product .compare-matrix thead th:nth-child(1),
body.wyatt-erp-product .compare-matrix thead th:nth-child(1) {
  width: 24%;
}

body.bowling-tournament-product .compare-matrix thead th:nth-child(n + 2),
body.wyatt-erp-product .compare-matrix thead th:nth-child(n + 2) {
  width: 15.2%;
}

body.bowling-tournament-product .compare-matrix tbody th[scope="row"],
body.wyatt-erp-product .compare-matrix tbody th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  padding: 0.45rem 0.6rem;
  min-width: 0;
  max-width: none;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

body.bowling-tournament-product .compare-matrix td,
body.wyatt-erp-product .compare-matrix td {
  padding: 0.45rem 0.45rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

body.bowling-tournament-product .compare-matrix tbody tr:nth-child(even) td,
body.bowling-tournament-product .compare-matrix tbody tr:nth-child(even) th,
body.wyatt-erp-product .compare-matrix tbody tr:nth-child(even) td,
body.wyatt-erp-product .compare-matrix tbody tr:nth-child(even) th {
  background: rgba(42, 95, 122, 0.04);
}

body.bowling-tournament-product .compare-matrix tbody tr:hover td,
body.bowling-tournament-product .compare-matrix tbody tr:hover th,
body.wyatt-erp-product .compare-matrix tbody tr:hover td,
body.wyatt-erp-product .compare-matrix tbody tr:hover th {
  background: rgba(166, 124, 31, 0.08);
}

body.bowling-tournament-product .compare-matrix td:nth-child(2),
body.bowling-tournament-product .compare-matrix thead th:nth-child(2),
body.wyatt-erp-product .compare-matrix td:nth-child(2),
body.wyatt-erp-product .compare-matrix thead th:nth-child(2) {
  background: rgba(166, 124, 31, 0.12);
  font-weight: 600;
}

body.bowling-tournament-product .compare-matrix thead th:nth-child(2),
body.wyatt-erp-product .compare-matrix thead th:nth-child(2) {
  background: linear-gradient(180deg, rgba(245, 237, 216, 0.95) 0%, var(--blue-light) 100%);
}

body.bowling-tournament-product .compare-matrix-foot,
body.wyatt-erp-product .compare-matrix-foot {
  font-size: 0.6875rem;
  max-width: min(76rem, 100%);
  margin: 0.75rem auto 0;
  text-align: center;
  line-height: 1.5;
  padding: 0 0.5rem;
}

body.bowling-tournament-product .compare-matrix-foot abbr,
body.wyatt-erp-product .compare-matrix-foot abbr {
  text-decoration: underline dotted;
  cursor: help;
}

body.bowling-tournament-product .compare-matrix-gap-start th,
body.bowling-tournament-product .compare-matrix-gap-start td,
body.wyatt-erp-product .compare-matrix-gap-start th,
body.wyatt-erp-product .compare-matrix-gap-start td {
  border-top: 2px solid var(--border);
  padding-top: 0.55rem;
}

body.bowling-tournament-product .compare-matrix-gap-row td,
body.bowling-tournament-product .compare-matrix-gap-row th[scope="row"],
body.wyatt-erp-product .compare-matrix-gap-row td,
body.wyatt-erp-product .compare-matrix-gap-row th[scope="row"] {
  font-size: 0.72rem;
  vertical-align: top;
}

body.bowling-tournament-product .compare-matrix-price-row th,
body.bowling-tournament-product .compare-matrix-price-row td,
body.wyatt-erp-product .compare-matrix-price-row th,
body.wyatt-erp-product .compare-matrix-price-row td {
  border-top: 2px solid var(--blue);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-weight: 600;
  vertical-align: top;
}

body.bowling-tournament-product .compare-matrix-price-row td:nth-child(2),
body.wyatt-erp-product .compare-matrix-price-row td:nth-child(2) {
  font-weight: 700;
}

body.bowling-tournament-product .compare-price-hint,
body.wyatt-erp-product .compare-price-hint {
  display: block;
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

body.bowling-tournament-product .product-explore-section .hero-actions {
  justify-content: center;
}

body.bowling-tournament-product footer {
  text-align: center;
}

/* Get started modal (10PinShowdown — content TBD) */
body.bowling-tournament-product #get-10pin-dialog {
  border: none;
  border-radius: 10px;
  padding: 0;
  max-width: min(92vw, 32rem);
  width: 100%;
  background: var(--bg-card);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(27, 20, 16, 0.28);
}

body.bowling-tournament-product #get-10pin-dialog::backdrop {
  background: rgba(43, 33, 24, 0.5);
  cursor: pointer;
}

body.bowling-tournament-product .get-10pin-dialog-panel {
  position: relative;
  padding: 1.5rem 1.5rem 1.35rem;
}

body.bowling-tournament-product .get-10pin-dialog-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 2rem 0.75rem 0;
  letter-spacing: -0.02em;
}

body.bowling-tournament-product .get-10pin-dialog-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

body.bowling-tournament-product .get-10pin-dialog-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

body.bowling-tournament-product .get-10pin-dialog-close:hover {
  background: var(--bg-alt);
  color: var(--navy);
}

/* ── Wyatt ERP product page (same explore / tab pattern as 10PinShowdown) ── */
body.wyatt-erp-product nav {
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

body.wyatt-erp-product .section-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: min(96vw, 82rem);
  padding-left: clamp(0.75rem, 2vw, 1.5rem);
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
}

body.wyatt-erp-product .price-block {
  justify-content: center;
}

body.wyatt-erp-product .hero-actions {
  justify-content: center;
}

body.wyatt-erp-product .product-explore-section .tab-panel-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.wyatt-erp-product .product-explore-section .tab-panel-intro .section-label {
  text-align: center;
}

body.wyatt-erp-product .features-grid {
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 0.75rem;
}

body.wyatt-erp-product .features-grid .feature-card {
  text-align: center;
  padding: 0.875rem 0.65rem;
}

body.wyatt-erp-product .features-grid .feature-icon {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

body.wyatt-erp-product .features-grid .feature-card h3 {
  font-size: 0.8125rem;
  line-height: 1.25;
}

body.wyatt-erp-product .features-grid .feature-card p {
  font-size: 0.6875rem;
  line-height: 1.45;
}

body.wyatt-erp-product .product-explore-section .hero-actions {
  justify-content: center;
}

body.wyatt-erp-product footer {
  text-align: center;
}

body.wyatt-erp-product .wyatt-footer-copyright {
  margin-top: 0.4rem;
}

body.wyatt-erp-product .wyatt-overview {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
}

body.wyatt-erp-product .wyatt-overview-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.wyatt-erp-product .wyatt-overview-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

body.wyatt-erp-product .wyatt-overview-bullet {
  color: var(--blue);
  font-size: 1.15rem;
  flex-shrink: 0;
  line-height: 1.45;
}

body.wyatt-erp-product .wyatt-pricing-panel {
  text-align: center;
  margin-top: 0.5rem;
}

body.wyatt-erp-product .wyatt-pricing-note {
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

body.wyatt-erp-product .muted {
  color: var(--text-muted);
}

body.wyatt-erp-product .wyatt-references {
  margin-top: 1rem;
  padding: 1rem 1rem 0.25rem;
  max-width: min(76rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  border-top: 1px solid var(--border);
}

body.wyatt-erp-product .wyatt-references-heading {
  font-size: 0.8125rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

body.wyatt-erp-product .wyatt-references-list,
body.wyatt-erp-product .wyatt-references-sublist {
  font-size: 0.6875rem;
  line-height: 1.55;
  color: var(--text-muted);
  padding-left: 1.15rem;
  margin: 0 0 0.75rem;
}

body.wyatt-erp-product .wyatt-references-sublist {
  margin-top: 0.35rem;
  margin-bottom: 0;
}

body.wyatt-erp-product .wyatt-references-list code {
  font-size: 0.65rem;
  word-break: break-all;
}

body.wyatt-erp-product .wyatt-references-list a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.wyatt-erp-product .wyatt-references-list a:hover {
  color: var(--blue-dark);
}

body.wyatt-erp-product .wyatt-placeholder-copy {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* ── Product showcase (hero + Rye + stroke icons): all /products/ pages ── */
body.product-showcase-page .product-showcase-hero {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(3rem, 5vw, 4rem);
  overflow: hidden;
  background: linear-gradient(155deg, #12100e 0%, #1a3d52 38%, #234a5a 100%);
}

body.product-showcase-page .product-showcase-hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(166, 124, 31, 0.35) 0%, transparent 55%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 3px,
      rgba(255, 252, 247, 0.03) 3px,
      rgba(255, 252, 247, 0.03) 4px
    );
}

body.product-showcase-page .product-showcase-hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 42rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-left: clamp(0.75rem, 2vw, 1.5rem);
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
}

body.product-showcase-page .product-showcase-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.72);
  margin-bottom: 1rem;
}

body.product-showcase-page .product-showcase-eyebrow::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  border-radius: 1px;
}

body.product-showcase-page .product-showcase-title {
  font-family: "Rye", serif;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 400;
  color: #f5edd8;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

body.product-showcase-page .product-showcase-lede {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 252, 247, 0.82);
  max-width: 36rem;
  margin: 0 auto;
}

body.product-showcase-page .product-showcase-explore {
  position: relative;
}

body.product-showcase-page .product-showcase-explore::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

body.product-showcase-page .product-showcase-explore > .section-inner {
  position: relative;
  z-index: 1;
}

body.product-showcase-page .product-showcase-explore-title {
  font-family: "Rye", serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: 0.03em;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

body.product-showcase-page .product-showcase-explore-sub {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

body.product-showcase-page .product-tab-svg {
  width: 26px;
  height: 26px;
  display: block;
}

body.product-showcase-page .product-feat-svg {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto;
}

body.product-showcase-page .features-grid .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--brass);
}

body.product-showcase-page .features-grid .feature-card:hover .feature-icon {
  color: var(--blue-mid);
}

body.product-showcase-page .compare-matrix {
  font-variant-numeric: tabular-nums;
}

body.product-showcase-page .product-compare-wrap {
  box-shadow: 0 8px 32px rgba(43, 33, 24, 0.08);
}
