/* FHV B2B website — global styles
 * Imports the FHV design tokens, then layers on the website surfaces.
 */
@import url("assets/colors_and_type.css");

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg-canvas);
  color: var(--fg-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* --------- Direction themes ---------
 * .dir-conservative — clean B2B SaaS, magenta as accent only, lots of white
 * .dir-onbrand      — balanced default (dark hero, editorial body)
 * .dir-experimental — full stage energy, black throughout, gradient washes
 *
 * .theme-dark on body flips canvas / surface variables to dark.
 */
body.theme-dark {
  --bg-canvas: #0a0809;
  --bg-surface: #141213;
  --fg-primary: #f6f3f1;
  --fg-secondary: rgba(246,243,241,0.72);
  --fg-muted: rgba(246,243,241,0.5);
  --border-subtle: rgba(246,243,241,0.10);
  --border-strong: rgba(246,243,241,0.4);
}

body.dir-conservative {
  --accent-hero-bg: var(--fhv-off-white);
  --accent-hero-fg: var(--fhv-carbon);
  --display-scale: 0.82;
  --section-pad: 96px;
}
body.dir-onbrand {
  --accent-hero-bg: #000;
  --accent-hero-fg: #fff;
  --display-scale: 1.0;
  --section-pad: 112px;
}
body.dir-experimental {
  --accent-hero-bg: #000;
  --accent-hero-fg: #fff;
  --display-scale: 1.15;
  --section-pad: 140px;
}

/* --------- Container helpers --------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 40px; }
.section { padding: clamp(34px, 4.4vw, 64px) 0; }
.section-tight { padding: clamp(24px, 3vw, 40px) 0; }

/* --------- Typography utilities --------- */
.eyebrow {
  font-family: var(--font-body); font-weight: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--fg-secondary); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 24px; height: 2px;
  background: var(--fhv-magenta);
}
.eyebrow.no-rule::before { display: none; }

.h-display {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, calc(4.6vw * var(--display-scale, 1)), 68px);
  line-height: 0.92; letter-spacing: -0.03em;
  text-transform: uppercase; margin: 0;
  text-wrap: balance;
}
.h-section {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(34px, calc(4.6vw * var(--display-scale, 1)), 64px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; margin: 0;
  text-wrap: balance;
}
.h-sub {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(24px, 2.6vw, 36px); line-height: 1; letter-spacing: -0.01em;
  text-transform: uppercase; margin: 0;
}
.lede {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px); line-height: 1.45;
  color: var(--fg-secondary); max-width: 56ch; text-wrap: pretty;
}
.body-text {
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.55; color: var(--fg-primary);
  text-wrap: pretty;
}
.gradient-text {
  background: var(--fhv-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; display: inline-block;
}

/* --------- Buttons --------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 14px 22px; border-radius: 8px; border: 0; cursor: pointer;
  white-space: nowrap; line-height: 1; text-decoration: none;
  transition: background 160ms, transform 120ms, box-shadow 200ms, color 160ms, border-color 160ms;
}
.btn-lg { padding: 18px 28px; font-size: 14px; }
.btn-sm { padding: 10px 16px; font-size: 11px; }
.btn-primary { background: var(--fhv-carbon); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-gradient { background: var(--fhv-gradient); color: #fff; }
.btn-gradient:hover { box-shadow: 0 14px 38px -10px rgba(249,47,113,0.55); transform: translateY(-1px); }
.btn-outline { background: var(--fhv-carbon); color: #fff; border: 1.5px solid var(--fhv-carbon); box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
body.theme-dark .btn-outline { background: var(--fhv-carbon); box-shadow: none; border-color: rgba(246,243,241,0.25); }
.btn-outline:hover { background: #000; color: #fff; border-color: #000; }
.btn-ghost-dark { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost-dark:hover { background: #fff; color: #000; border-color: #fff; }
.btn-link { background: none; padding: 0; color: var(--fhv-magenta); text-transform: none; letter-spacing: 0.02em; font-weight: 600; font-size: 14px; }
.btn-link:hover { text-decoration: underline; }
.btn .arr { display: inline-block; transition: transform 200ms; }
.btn:hover .arr { transform: translateX(3px); }

/* --------- Nav --------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,242,242,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
body.theme-dark .nav { background: rgba(10,8,9,0.85); }
.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 24px 40px;
  display: flex; align-items: center; gap: 32px;
  transition: padding 220ms ease;
}
.nav.nav-scrolled .nav-inner { padding: 11px 40px; }
.nav .brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit; flex-shrink: 0;
}
.nav .brand img { height: 50px; width: auto; transition: height 220ms ease; }
.nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 4px; align-items: center; flex: 1;
}
.nav ul > li { position: relative; }
.nav ul a, .nav ul .menu-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--fg-primary); text-decoration: none;
  padding: 10px 14px; border-radius: 8px; cursor: pointer; background: none; border: 0;
  transition: background 140ms, color 140ms;
}
.nav ul a:hover, .nav ul .menu-trigger:hover { background: rgba(41,39,40,0.05); color: var(--fhv-magenta); }
.nav ul a.is-active { color: var(--fhv-magenta); }
body.theme-dark .nav ul a:hover, body.theme-dark .nav ul .menu-trigger:hover { background: rgba(255,255,255,0.06); }
.nav .right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: -8px;
  min-width: 280px; background: #fff; border: 1px solid var(--border-subtle);
  border-radius: 12px; padding: 12px; z-index: 60;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.16);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 160ms, transform 160ms;
}
body.theme-dark .nav-dropdown { background: var(--bg-surface); border-color: var(--border-subtle); }
.nav li:hover > .nav-dropdown, .nav li:focus-within > .nav-dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-dropdown a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px; border-radius: 8px; text-decoration: none;
  text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 14px;
  color: var(--fg-primary);
}
.nav-dropdown a .sub { font-size: 12px; color: var(--fg-muted); font-weight: 400; }
.nav-dropdown a:hover { background: rgba(242,65,225,0.08); color: var(--fhv-magenta); }

.nav-mobile-trigger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--fg-primary); }
.nav-mobile { display: none; }

@media (max-width: 980px) {
  .nav ul, .nav .right .btn-link, .nav .right .nav-phone-text { display: none; }
  .nav-mobile-trigger { display: inline-flex; }
  .nav-mobile.open { display: block; position: fixed; inset: 60px 0 0; background: var(--bg-canvas); z-index: 49; padding: 24px 32px 80px; overflow-y: auto; }
  .nav-mobile ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
  .nav-mobile a { display: block; padding: 14px 0; font-family: var(--font-display); font-weight: 900; font-size: 24px; text-transform: uppercase; color: var(--fg-primary); text-decoration: none; border-bottom: 1px solid var(--border-subtle); }
  .nav-mobile .sub { padding-left: 20px; font-family: var(--font-body); font-size: 14px; font-weight: 600; text-transform: none; }
}

/* --------- HERO variants --------- */
.hero { position: relative; overflow: hidden; }

/* On-brand hero (default, balanced) */
.hero-onbrand {
  background: #000; color: #fff;
  padding: clamp(26px, 3vw, 40px) 0 clamp(18px, 2.2vw, 30px);
}
.hero-onbrand::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(242,65,225,0.35) 0%, rgba(242,65,225,0) 55%),
    radial-gradient(ellipse at 85% 80%, rgba(255,28,0,0.28) 0%, rgba(255,28,0,0) 55%);
}
.hero-onbrand .hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; min-height: 40vh; }
.hero-onbrand .eyebrow { color: rgba(255,255,255,0.7); }
.hero-onbrand .lede { color: rgba(255,255,255,0.82); max-width: 540px; margin-top: 24px; }
.hero-onbrand .ctas { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-onbrand .mark-stage { position: relative; min-height: 360px; display: flex; align-items: center; justify-content: center; }
.hero-onbrand .mark-stage img { width: 360px; height: 360px; object-fit: contain; filter: blur(4px); animation: hero-drift 4.6s ease-in-out infinite alternate; }
.hero-onbrand .meta-strip {
  position: relative; z-index: 1; max-width: 1280px; margin: 26px auto 0;
  padding: 0 40px;
}
.hero-onbrand .meta-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 26px;
}
.hero-onbrand .meta-strip .k { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 3vw, 40px); line-height: 1; color: #fff; }
.hero-onbrand .meta-strip .k .gradient-text { display: inline-block; }
.hero-onbrand .meta-strip .v { font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.6); margin-top: 8px; }

@keyframes hero-drift {
  0% { transform: translate(-10px, 4px) rotate(-2deg); filter: blur(6px); }
  100% { transform: translate(14px, -6px) rotate(4deg); filter: blur(2px); }
}

/* Conservative hero */
.hero-conservative {
  background: var(--bg-canvas); color: var(--fg-primary);
  padding: clamp(38px, 4.4vw, 60px) 0 clamp(30px, 3.6vw, 48px);
  border-bottom: 1px solid var(--border-subtle);
}
.hero-conservative .hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero-conservative .lede { margin-top: 22px; font-size: 19px; }
.hero-conservative .ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-conservative .photo {
  aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; background: #111;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.25); position: relative;
}
.hero-conservative .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-conservative .meta-strip {
  max-width: 1280px; margin: 30px auto 0; padding: 0 40px;
}
.hero-conservative .meta-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; padding: 28px 32px;
}
body.theme-dark .hero-conservative .meta-strip-inner { background: var(--bg-surface); }
.hero-conservative .meta-strip .k { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 3vw, 38px); line-height: 1; }
.hero-conservative .meta-strip .v { font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-muted); margin-top: 6px; }

/* Experimental hero */
.hero-experimental {
  background: #000; color: #fff;
  padding: clamp(100px, 12vw, 180px) 0 0;
  position: relative;
}
.hero-experimental .hero-inner { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.hero-experimental .hero-title-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.hero-experimental .hero-title-row h1 { font-size: clamp(72px, 14vw, 220px); line-height: 0.86; letter-spacing: -0.04em; text-transform: uppercase; font-family: var(--font-display); font-weight: 900; margin: 0; }
.hero-experimental .hero-title-row h1 .stack { display: block; }
.hero-experimental .hero-title-row h1 .gradient-text { background-size: 200% 200%; animation: gr-shift 5s ease-in-out infinite alternate; }
@keyframes gr-shift { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
.hero-experimental .below { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: end; padding-bottom: 90px; }
.hero-experimental .below .lede { color: rgba(255,255,255,0.78); font-size: 20px; max-width: 480px; }
.hero-experimental .below .ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.hero-experimental .arrows-bed { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-experimental .arrows-bed img {
  position: absolute; width: 240px; height: 240px; object-fit: contain;
  opacity: 0.25; filter: blur(2px);
}
.hero-experimental .arrows-bed img.a { top: 8%; right: 5%; transform: rotate(-12deg); width: 320px; height: 320px; opacity: 0.6; filter: blur(4px); }
.hero-experimental .arrows-bed img.b { top: 50%; left: 6%; transform: rotate(20deg); width: 180px; height: 180px; opacity: 0.18; }
.hero-experimental .arrows-bed img.c { bottom: 6%; right: 18%; transform: rotate(40deg); width: 140px; height: 140px; opacity: 0.12; }
.hero-experimental .meta-bar {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 22px 40px;
  display: flex; justify-content: space-between; gap: 30px;
  font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.6);
}
.hero-experimental .meta-bar strong { color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 14px; }

@media (max-width: 880px) {
  .hero-onbrand .hero-inner, .hero-conservative .hero-inner { grid-template-columns: 1fr; }
  .hero-onbrand .mark-stage, .hero-conservative .photo { min-height: 280px; }
  .hero-onbrand .meta-strip-inner, .hero-conservative .meta-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-experimental .below { grid-template-columns: 1fr; padding-bottom: 60px; }
  .hero-experimental .below .ctas { justify-content: flex-start; }
}

/* --------- Section heads --------- */
.section-head { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; margin-bottom: 34px; }
.section-head .head-text h2 { margin-top: 14px; }
.section-head .head-text .lede { margin-top: 14px; }
.section-head .head-right { display: flex; align-items: center; gap: 14px; }
@media (max-width: 720px) { .section-head { grid-template-columns: 1fr; } .section-head .head-right { justify-content: flex-start; } }

/* --------- Products grid (homepage strip) --------- */
.product-strip { padding: 56px 0; background: #fff; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
body.theme-dark .product-strip { background: var(--bg-surface); }
.product-strip .row { max-width: 1440px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.product-strip .label { font-family: var(--font-body); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--fg-secondary); max-width: 220px; line-height: 1.4; }
.product-strip .marks { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; align-items: center; }
.product-strip .mark {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-decoration: none; color: inherit; padding: 12px 8px;
  border-radius: 12px; transition: background 160ms, transform 200ms;
}
.product-strip .mark:hover { background: rgba(242,65,225,0.06); transform: translateY(-2px); }
.product-strip .mark .glyph { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; color: #fff; font-size: 22px; text-transform: uppercase; letter-spacing: -0.02em; }
.product-strip .mark .name { margin-top: 10px; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 13px; letter-spacing: 0.04em; }
@media (max-width: 880px) {
  .product-strip .row { grid-template-columns: 1fr; gap: 30px; }
  .product-strip .marks { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .product-strip .mark .name { font-size: 11px; }
}

/* --------- Products grid (large cards) --------- */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 880px) { .products-grid { grid-template-columns: 1fr; } }
.product-card {
  position: relative; overflow: hidden;
  border-radius: 20px; padding: 36px; min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
  background: #fff; border: 1px solid rgba(41,39,40,0.14);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 14px 30px -20px rgba(0,0,0,0.22);
  text-decoration: none; color: inherit;
  transition: transform 240ms, box-shadow 280ms, border-color 200ms;
}
body.theme-dark .product-card { box-shadow: none; }
body.theme-dark .product-card { background: var(--bg-surface); }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -24px rgba(0,0,0,0.22); border-color: rgba(242,65,225,0.4); }
.product-card.dark { background: #0e0c0d; color: #fff; border-color: #1a1718; }
.product-card.dark:hover { box-shadow: 0 30px 60px -16px rgba(249,47,113,0.35); }
.product-card .pc-glyph { width: 64px; height: 64px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; color: #fff; font-size: 28px; text-transform: uppercase; }
.product-card .pc-logo-wrap { height: 56px; display: flex; align-items: center; }
.product-card .pc-logo { max-height: 56px; max-width: 190px; width: auto; object-fit: contain; display: block; }
.product-card .pc-title { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(28px, 3vw, 40px); line-height: 0.95; letter-spacing: -0.02em; margin: 20px 0 8px; }
.product-card .pc-tag { font-family: var(--font-body); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--fhv-magenta); }
.product-card .pc-body { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: var(--fg-secondary); margin: 0; max-width: 44ch; }
.product-card.dark .pc-body { color: rgba(255,255,255,0.78); }
.product-card .pc-foot { display: flex; align-items: center; justify-content: space-between; }
.product-card .pc-foot .meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.04em; }
.product-card .pc-foot .arr { font-family: var(--font-display); font-size: 24px; color: var(--fhv-magenta); transition: transform 200ms; }
.product-card:hover .pc-foot .arr { transform: translateX(6px); }
.product-card .pc-bg-mark { position: absolute; right: -40px; bottom: -60px; width: 280px; height: 280px; opacity: 0.06; pointer-events: none; }
.product-card.dark .pc-bg-mark { opacity: 0.14; }
.product-card.dark .pc-foot .meta { color: rgba(255,255,255,0.6); }
.product-card.dark:hover { border-color: rgba(242,65,225,0.55); }

/* --------- Stats strip --------- */
.stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0;
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
}
.stats .stat { padding: 26px 24px; border-right: 1px solid var(--border-subtle); }
.stats .stat:last-child { border-right: 0; }
.stats .stat .k { font-family: var(--font-display); font-weight: 900; font-size: clamp(30px, 3.4vw, 46px); line-height: 1; letter-spacing: -0.02em; }
.stats .stat .v { font-family: var(--font-body); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-secondary); margin-top: 8px; max-width: 22ch; }
@media (max-width: 880px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats .stat:nth-child(2) { border-right: 0; }
  .stats .stat:nth-child(1), .stats .stat:nth-child(2) { border-bottom: 1px solid var(--border-subtle); }
}

/* --------- Venue logos --------- */
.venue-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.venue-logo {
  min-height: 148px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 24px 14px; border-right: 1px solid var(--border-subtle);
  text-align: center; transition: background 160ms;
}
.venue-logo:nth-child(6n) { border-right: 0; }
.venue-logo:nth-child(n+7) { border-top: 1px solid var(--border-subtle); }
.venue-logo:hover { background: rgba(242,65,225,0.03); }
.venue-logo-media { height: 60px; width: 100%; display: flex; align-items: center; justify-content: center; }
.venue-logo-ph {
  display: flex; align-items: center; justify-content: center;
  height: 56px; width: 76%; border: 1px dashed var(--border-subtle); border-radius: 10px;
  background: repeating-linear-gradient(135deg, rgba(41,39,40,0.035) 0 10px, rgba(41,39,40,0.06) 10px 20px);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted);
}
.venue-logo-name { font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.01em; text-align: center; line-height: 1.15; color: var(--fg-secondary); text-wrap: balance; transition: color 160ms; }
.venue-logo:hover .venue-logo-name { color: var(--fhv-magenta); }
@media (max-width: 880px) {
  .venue-logos { grid-template-columns: repeat(3, 1fr); }
  .venue-logo { border-right: 1px solid var(--border-subtle); }
  .venue-logo:nth-child(6n) { border-right: 1px solid var(--border-subtle); }
  .venue-logo:nth-child(3n) { border-right: 0; }
}

/* --------- Testimonials --------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: 16px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  min-height: 260px;
}
body.theme-dark .testimonial { background: var(--bg-surface); }
.testimonial .quote { font-family: var(--font-display); font-weight: 900; font-size: clamp(20px, 1.8vw, 24px); line-height: 1.18; letter-spacing: -0.01em; color: var(--fg-primary); text-wrap: pretty; }
.testimonial .quote::before { content: "“"; display: block; font-size: 64px; line-height: 0.6; color: var(--fhv-magenta); margin-bottom: 6px; font-family: var(--font-display); }
.testimonial .who { display: flex; align-items: center; gap: 14px; }
.testimonial .who .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--fhv-gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 16px; }
.testimonial .who .name { font-family: var(--font-display); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.testimonial .who .venue { font-family: var(--font-body); font-size: 12px; color: var(--fg-muted); }
.testimonial.dark { background: #0e0c0d; color: #fff; border-color: rgba(255,255,255,0.08); }
.testimonial.dark .quote { color: #fff; }

/* --------- Partner logos --------- */
.partners {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 36px;
  align-items: center; justify-items: center;
}
.partner-mark {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: 13px; letter-spacing: -0.01em; line-height: 1.1;
  color: var(--fg-secondary); text-align: center;
  display: flex; align-items: center; justify-content: center;
  padding: 18px 12px; min-height: 70px;
  border-radius: 8px; transition: color 160ms;
}
.partner-mark:hover { color: var(--fhv-carbon); }
@media (max-width: 720px) { .partners { grid-template-columns: repeat(2, 1fr); } }

/* --------- CTA banner --------- */
.cta-banner {
  background: var(--fhv-gradient); color: #fff;
  padding: clamp(56px, 7vw, 100px) 0;
  position: relative; overflow: hidden;
}
.cta-banner .inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center;
}
.cta-banner h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px, 4.5vw, 60px); line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; text-wrap: balance; }
.cta-banner p { font-family: var(--font-body); font-size: 17px; line-height: 1.5; max-width: 50ch; margin: 16px 0 0; opacity: 0.92; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner .btn-on-gradient { background: #fff; color: var(--fhv-carbon); }
.cta-banner .btn-on-gradient:hover { background: #000; color: #fff; }
.cta-banner .arrows {
  position: absolute; right: -40px; bottom: -60px; pointer-events: none;
  width: 380px; height: 380px; opacity: 0.18;
}
@media (max-width: 720px) { .cta-banner .inner { grid-template-columns: 1fr; } }

/* --------- Callback form --------- */
.callback-form-wrap {
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: 20px; padding: 36px;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.14);
}
body.theme-dark .callback-form-wrap { background: var(--bg-surface); }
.callback-form-wrap.dark { background: #0e0c0d; color: #fff; border-color: rgba(255,255,255,0.10); }
.callback-form-wrap.dark .field label { color: rgba(255,255,255,0.7); }
.callback-form-wrap.dark .input, .callback-form-wrap.dark select, .callback-form-wrap.dark textarea { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: #fff; }
.callback-form-wrap.dark .input::placeholder, .callback-form-wrap.dark textarea::placeholder { color: rgba(255,255,255,0.4); }
.callback-form-wrap.dark .chip { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.callback-form-wrap.dark .chip.on { background: #fff; color: var(--fhv-carbon); border-color: #fff; }
.callback-form-wrap h3 { font-family: var(--font-display); font-weight: 900; font-size: clamp(24px, 2.4vw, 32px); line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase; margin: 0; }
.callback-form-wrap .form-sub { font-family: var(--font-body); font-size: 14px; color: var(--fg-muted); margin: 8px 0 24px; }
.callback-form-wrap .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; }
.callback-form-wrap .field { display: flex; flex-direction: column; gap: 6px; }
.callback-form-wrap .field.col-2 { grid-column: span 2; }
.callback-form-wrap label { font-family: var(--font-body); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-secondary); }
.callback-form-wrap label .req { color: var(--fhv-red-pink); margin-left: 3px; }
.callback-form-wrap .input, .callback-form-wrap select, .callback-form-wrap textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px;
  padding: 12px 14px; border: 1.5px solid rgba(41,39,40,0.15);
  border-radius: 8px; background: #fff; color: var(--fg-primary);
  transition: border-color 160ms, box-shadow 160ms; font-weight: 500;
}
.callback-form-wrap textarea { min-height: 100px; resize: vertical; font-family: var(--font-body); }
.callback-form-wrap .input:focus, .callback-form-wrap select:focus, .callback-form-wrap textarea:focus { outline: none; border-color: var(--fhv-magenta); box-shadow: 0 0 0 3px rgba(242,65,225,0.16); }
.callback-form-wrap .chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.callback-form-wrap .chip {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  padding: 9px 14px; border-radius: 999px;
  border: 1.5px solid var(--border-subtle); background: #fff;
  cursor: pointer; transition: background 140ms, color 140ms, border-color 140ms;
  display: inline-flex; align-items: center; gap: 6px;
}
.callback-form-wrap .chip:hover { border-color: var(--fhv-magenta); color: var(--fhv-magenta); }
.callback-form-wrap .chip.on { background: var(--fhv-carbon); color: #fff; border-color: var(--fhv-carbon); }
.callback-form-wrap .submit-row { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.callback-form-wrap .fine { font-family: var(--font-body); font-size: 11px; color: var(--fg-muted); line-height: 1.5; max-width: 36ch; }
.callback-form-wrap .success-state { text-align: center; padding: 30px 8px 10px; }
.callback-form-wrap .success-state .check { width: 64px; height: 64px; border-radius: 50%; background: var(--fhv-gradient); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; font-weight: 900; }
.callback-form-wrap .success-state h3 { margin-bottom: 12px; }
.callback-form-wrap .success-state p { font-family: var(--font-body); font-size: 15px; color: var(--fg-secondary); line-height: 1.5; max-width: 40ch; margin: 0 auto; }

@media (max-width: 600px) {
  .callback-form-wrap { padding: 24px; }
  .callback-form-wrap .form-grid { grid-template-columns: 1fr; }
  .callback-form-wrap .field.col-2 { grid-column: span 1; }
}

/* --------- Hubspot form embed overrides ---------
 * The hbspt.forms.create() call writes markup with class names like
 * .hs-form, .hs-form-field, .hs-input. We restyle them to match the
 * FHV-native form above so the embed looks bespoke. */
.fhv-hsform, .fhv-hsform .hs-form { font-family: var(--font-body); }
.fhv-hsform fieldset { max-width: none !important; border: 0; padding: 0; margin: 0 0 14px; }
.fhv-hsform fieldset.form-columns-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fhv-hsform fieldset.form-columns-1 { display: block; }
.fhv-hsform .hs-form-field { padding: 0 !important; width: auto !important; float: none !important; margin-bottom: 14px; }
.fhv-hsform .input { margin: 0 !important; }
.fhv-hsform label {
  display: block; margin-bottom: 6px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-secondary);
}
.fhv-hsform label .hs-form-required { color: var(--fhv-red-pink); margin-left: 3px; }
.fhv-hsform .hs-input,
.fhv-hsform input[type="text"],
.fhv-hsform input[type="email"],
.fhv-hsform input[type="tel"],
.fhv-hsform input[type="number"],
.fhv-hsform select,
.fhv-hsform textarea {
  width: 100% !important; font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 12px 14px !important; border: 1.5px solid rgba(41,39,40,0.15) !important;
  border-radius: 8px !important; background: #fff; color: var(--fg-primary);
  transition: border-color 160ms, box-shadow 160ms; box-sizing: border-box;
}
.fhv-hsform .hs-input:focus,
.fhv-hsform select:focus,
.fhv-hsform textarea:focus { outline: none; border-color: var(--fhv-magenta) !important; box-shadow: 0 0 0 3px rgba(242,65,225,0.16); }
.fhv-hsform textarea { min-height: 100px; resize: vertical; }
.fhv-hsform .hs-form-booleancheckbox, .fhv-hsform .hs-form-checkbox {
  display: flex; align-items: center; gap: 8px; padding: 8px 0;
}
.fhv-hsform .hs-error-msgs { list-style: none; padding: 0; margin: 4px 0 0; }
.fhv-hsform .hs-error-msg, .fhv-hsform .hs-error-msgs label { color: var(--fhv-flash-red); font-size: 12px; font-weight: 600; text-transform: none; letter-spacing: 0; }
.fhv-hsform .hs-submit { margin-top: 22px; }
.fhv-hsform .actions { padding: 0 !important; }
.fhv-hsform input[type="submit"],
.fhv-hsform .hs-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body) !important; font-weight: 700 !important; font-size: 14px !important;
  text-transform: uppercase !important; letter-spacing: 0.1em !important;
  padding: 18px 28px !important; border-radius: 8px !important; border: 0 !important; cursor: pointer;
  background: var(--fhv-gradient) !important; color: #fff !important;
  width: auto !important; line-height: 1 !important; transition: box-shadow 200ms, transform 120ms;
}
.fhv-hsform input[type="submit"]:hover,
.fhv-hsform .hs-button:hover { box-shadow: 0 14px 38px -10px rgba(249,47,113,0.55); transform: translateY(-1px); }
.fhv-hsform .submitted-message {
  font-family: var(--font-body); font-size: 16px; line-height: 1.5; color: var(--fg-primary);
  text-align: center; padding: 30px 8px;
}
/* dark-themed forms */
.callback-form-wrap.dark .fhv-hsform label { color: rgba(255,255,255,0.7); }
.callback-form-wrap.dark .fhv-hsform .hs-input,
.callback-form-wrap.dark .fhv-hsform select,
.callback-form-wrap.dark .fhv-hsform textarea {
  background: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.15) !important; color: #fff;
}

/* --------- Two-col split (callback + value props) --------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 980px) { .split { grid-template-columns: 1fr; } }
.split .left .h-section { margin-bottom: 16px; }
.split .left ul.benefits { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 18px; }
.split .left ul.benefits li { padding-left: 32px; position: relative; font-family: var(--font-body); font-size: 16px; line-height: 1.5; color: var(--fg-primary); }
.split .left ul.benefits li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px;
  background: var(--fhv-gradient);
  clip-path: polygon(0 30%, 50% 30%, 50% 0, 100% 50%, 50% 100%, 50% 70%, 0 70%);
}

/* --------- Footer --------- */
.footer { background: #000; color: rgba(255,255,255,0.8); padding: 80px 0 40px; }
.footer .inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer .lockup img { height: 100px; width: auto; display: block; margin-bottom: 24px; }
.footer .lockup p { font-family: var(--font-body); font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.65); max-width: 36ch; margin: 0 0 18px; }
.footer .contact-line { display: flex; flex-direction: column; gap: 8px; }
.footer .contact-line a { color: #fff; text-decoration: none; font-family: var(--font-display); font-weight: 900; font-size: 18px; letter-spacing: 0.02em; }
.footer .contact-line a:hover { color: var(--fhv-magenta); }
.footer h4 { font-family: var(--font-body); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.55); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer a.foot-link { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; }
.footer a.foot-link.foot-sub { padding-left: 14px; font-size: 13px; color: rgba(255,255,255,0.62); }
.footer a.foot-link:hover { color: var(--fhv-magenta); }
.footer .fineprint { max-width: 1280px; margin: 28px auto 0; padding: 0 40px; display: flex; justify-content: space-between; gap: 30px; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; flex-wrap: wrap; }
.footer .fineprint .social { display: flex; gap: 14px; }
.footer .fineprint .social a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer .fineprint .social a:hover { color: #fff; }
@media (max-width: 880px) {
  .footer .inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* --------- Page (post-hero) layout --------- */
.page-section + .page-section { /* no extra gap — sections already have padding */ }
.bg-stage { background: #0a0809; color: #f6f3f1; }
.bg-stage .lede, .bg-stage .body-text { color: rgba(246,243,241,0.78); }
.bg-stage .eyebrow { color: rgba(246,243,241,0.72); }
.bg-surface { background: var(--bg-surface); }
.bg-canvas { background: var(--bg-canvas); }

/* --------- Direction-specific overrides --------- */
body.dir-conservative .h-display { font-weight: 800; }
body.dir-conservative .product-card { border-radius: 12px; }
body.dir-conservative .btn { border-radius: 6px; }
body.dir-conservative .testimonial .quote { font-family: var(--font-body); font-weight: 600; font-size: 18px; }
body.dir-conservative .testimonial .quote::before { font-size: 40px; }

body.dir-experimental .h-display { letter-spacing: -0.04em; }
body.dir-experimental .product-card { border-radius: 6px; }
body.dir-experimental .btn { border-radius: 4px; }
body.dir-experimental .stats .stat .k { background: var(--fhv-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* --------- In-page anchor sub-nav (used on product pages) --------- */
.subnav {
  position: sticky; top: 60px; z-index: 30;
  background: rgba(242,242,242,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle); border-top: 1px solid var(--border-subtle);
}
body.theme-dark .subnav { background: rgba(10,8,9,0.85); }
.subnav .inner { max-width: 1280px; margin: 0 auto; padding: 14px 40px; display: flex; gap: 8px; align-items: center; overflow-x: auto; }
.subnav .label { font-family: var(--font-body); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--fg-muted); margin-right: 16px; white-space: nowrap; }
.subnav a { font-family: var(--font-body); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-primary); text-decoration: none; padding: 8px 12px; border-radius: 6px; white-space: nowrap; transition: background 140ms; }
.subnav a:hover { background: rgba(41,39,40,0.06); color: var(--fhv-magenta); }

/* --------- Feature list / value props grid --------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .value-grid { grid-template-columns: 1fr; } }
.value-item { padding: 28px; border-radius: 14px; background: #fff; border: 1px solid var(--border-subtle); display: flex; flex-direction: column; gap: 14px; }
body.theme-dark .value-item { background: var(--bg-surface); }
.value-item .v-num { font-family: var(--font-mono); font-size: 11px; color: var(--fhv-magenta); letter-spacing: 0.08em; }
.value-item h3 { font-family: var(--font-display); font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0; line-height: 1.05; }
.value-item p { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: var(--fg-secondary); margin: 0; }

/* --------- How it works steps --------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px;
  padding: 28px 24px 32px; display: flex; flex-direction: column; gap: 14px;
  position: relative; counter-increment: step;
}
body.theme-dark .step { background: var(--bg-surface); }
.step::before { content: "0" counter(step); font-family: var(--font-display); font-weight: 900; font-size: 56px; line-height: 1; background: var(--fhv-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h4 { font-family: var(--font-display); font-weight: 900; font-size: 18px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0; }
.step p { font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--fg-secondary); margin: 0; }

/* --------- Faq --------- */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border-subtle); }
.faq-item { border-bottom: 1px solid var(--border-subtle); padding: 22px 0; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; background: none; border: 0; padding: 0; width: 100%; text-align: left; font-family: var(--font-display); font-weight: 900; font-size: 20px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--fg-primary); }
.faq-q .ic { width: 24px; height: 24px; flex-shrink: 0; color: var(--fhv-magenta); transition: transform 240ms; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms ease, margin 200ms ease; font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--fg-secondary); }
.faq-item.open .faq-a { max-height: 600px; margin-top: 14px; }

/* --------- Direction comparison strip at the very top of the page --------- */
.dir-compare-strip {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 70;
  background: rgba(15,13,14,0.95); color: #fff;
  padding: 6px; border-radius: 999px;
  display: inline-flex; gap: 2px; box-shadow: 0 18px 40px -10px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}
.dir-compare-strip button {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  background: none; border: 0; color: rgba(255,255,255,0.7);
  padding: 10px 18px; border-radius: 999px; cursor: pointer;
  transition: background 160ms, color 160ms;
}
.dir-compare-strip button:hover { color: #fff; }
.dir-compare-strip button.on { background: var(--fhv-gradient); color: #fff; }
@media (max-width: 720px) { .dir-compare-strip { bottom: 12px; padding: 4px; }
  .dir-compare-strip button { padding: 8px 12px; font-size: 10px; }
}

/* --------- Misc --------- */
.text-center { text-align: center; }
.muted { color: var(--fg-muted); }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.16em;
  padding: 5px 9px; border-radius: 4px;
  background: rgba(242,65,225,0.12); color: var(--fhv-magenta);
}
.tag.dark { background: #000; color: #fff; }
.divider { height: 1px; background: var(--border-subtle); border: 0; margin: 0; }

/* --------- Page transitions --------- */
.page-enter { animation: page-fade 220ms ease-out both; }
@keyframes page-fade {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════
   2026 ADDITIONS — image slots, media, badges, leadership, child pages,
   compare tables, venue-type pages, news articles, social.
   ═══════════════════════════════════════════════════════════════════════ */

/* --------- Image slot (swappable placeholder) --------- */
.image-slot { position: relative; overflow: hidden; width: 100%; background: var(--bg-surface); }
.image-slot.has-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-slot.is-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 24px;
  background:
    repeating-linear-gradient(135deg, rgba(41,39,40,0.035) 0 12px, rgba(41,39,40,0.06) 12px 24px),
    var(--bg-surface);
  border: 1px dashed var(--border-subtle);
}
body.theme-dark .image-slot.is-empty {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 12px, rgba(255,255,255,0.06) 12px 24px),
    var(--bg-surface);
}
.image-slot .image-slot-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--fg-secondary);
  max-width: 30ch; line-height: 1.4;
}
.image-slot .image-slot-hint {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-muted); padding: 4px 10px; border: 1px solid var(--border-subtle); border-radius: 999px;
}
.image-slot.faded::after,
.image-slot .image-slot-wash {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, rgba(242,65,225,0.10), rgba(255,28,0,0.06) 60%, transparent);
}
/* Hero / on-dark slots read on dark backgrounds */
.hero-onbrand .image-slot.is-empty, .bg-stage .image-slot.is-empty, .hero-video .image-slot.is-empty {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 12px, rgba(255,255,255,0.08) 12px 24px),
    rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.18);
}
.hero-onbrand .image-slot .image-slot-label, .bg-stage .image-slot .image-slot-label { color: rgba(255,255,255,0.78); }
.hero-onbrand .image-slot .image-slot-hint, .bg-stage .image-slot .image-slot-hint { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.25); }

/* --------- Video embeds --------- */
.video-embed { position: relative; width: 100%; overflow: hidden; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.video-bg iframe {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; min-width: 100%; height: 56.25vw; min-height: 100%;
  transform: translate(-50%, -50%); border: 0;
}

/* Product hero media — replaces the animated mark */
.mark-stage.has-media { min-height: 0; }
.mark-stage.has-media .image-slot,
.mark-stage.has-media .video-embed,
.mark-stage.has-media .hero-media { width: min(440px, 100%); }
.product-hero-media { width: min(440px, 100%); }
/* Cancel the drift/blur the default logomark uses so real media renders crisp */
.hero-onbrand .mark-stage.has-media img {
  width: 100%; height: 100%; object-fit: cover; filter: none; animation: none;
}

/* --------- Badge wall (sport codes) --------- */
.badge-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.badge {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; padding: 20px 12px;
  transition: transform 200ms, box-shadow 240ms, border-color 200ms;
}
body.theme-dark .badge { background: var(--bg-surface); }
.badge:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -18px rgba(0,0,0,0.22); border-color: rgba(242,65,225,0.4); }
.badge-mark {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--fhv-gradient); color: #fff;
  font-family: var(--font-display); font-weight: 900; font-size: 14px; letter-spacing: -0.02em;
}
.badge-name { font-family: var(--font-body); font-weight: 700; font-size: 12px; color: var(--fg-secondary); line-height: 1.2; }
@media (max-width: 880px) { .badge-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .badge-wall { grid-template-columns: repeat(2, 1fr); } }

/* --------- Leadership grid --------- */
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; justify-items: center; }
.leadership-grid .leader-card { width: 100%; max-width: 264px; }
@media (max-width: 880px) { .leadership-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .leadership-grid { grid-template-columns: 1fr; } }
.leader-card {
  position: relative; background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 220ms, box-shadow 260ms;
}
body.theme-dark .leader-card { background: var(--bg-surface); }
.leader-card:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -22px rgba(0,0,0,0.22); }
.leader-photo {
  position: relative; width: 100%; height: 200px; display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(41,39,40,0.04) 0 12px, rgba(41,39,40,0.07) 12px 24px),
    linear-gradient(135deg, #201d1f 0%, #2a2426 100%);
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-initials { font-family: var(--font-display); font-weight: 900; font-size: 34px; color: #fff; opacity: 0.92;
  background: var(--fhv-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.leader-photo-hint {
  position: absolute; bottom: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); padding: 4px 10px; border: 1px solid rgba(255,255,255,0.25); border-radius: 999px;
}
.leader-meta { padding: 20px 22px; flex: 1; }
.leader-name { font-family: var(--font-display); font-weight: 900; font-size: 18px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.05; }
.leader-role { font-family: var(--font-body); font-style: italic; font-size: 13.5px; color: var(--fg-secondary); margin-top: 6px; line-height: 1.35; }
.leader-linkedin {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45); color: #fff; backdrop-filter: blur(4px);
  transition: background 160ms, transform 160ms;
}
.leader-linkedin:hover { background: var(--fhv-magenta); transform: translateY(-2px); }

/* --------- Partner associations --------- */
.partners-assoc { grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; justify-items: stretch; align-items: stretch; }
.partners-assoc .partner-mark {
  flex-direction: row; gap: 20px; min-height: 120px; padding: 28px 36px; justify-content: flex-start; width: 100%;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px;
}
body.theme-dark .partners-assoc .partner-mark { background: var(--bg-surface); }
.partners-assoc .pm-logo {
  width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--fhv-carbon); color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 18px;
}
.partners-assoc .pm-name { font-family: var(--font-display); font-weight: 900; font-size: 20px; color: var(--fg-primary); text-transform: uppercase; letter-spacing: -0.01em; }
.partners-assoc .pm-logo-img { width: auto; height: 60px; max-width: 160px; object-fit: contain; flex-shrink: 0; display: block; }
@media (max-width: 640px) { .partners-assoc { grid-template-columns: 1fr; } }

/* --------- Nav dropdowns (prettified) --------- */
.nav-dropdown { padding: 10px; border-radius: 16px; box-shadow: 0 24px 56px -18px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.06); }
.nav-dropdown.mega { min-width: 580px; padding: 14px; }
.nav-dropdown .dd-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 8px; }
.nav-dropdown .dd-col { display: flex; flex-direction: column; gap: 1px; }
.nav-dropdown .dd-col-alt { border-left: 1px solid var(--border-subtle); padding-left: 14px; }
.nav-dropdown .dd-col-label { font-family: var(--font-body); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--fg-muted); padding: 4px 12px 8px; }
.nav-dropdown .dd-col-label-mt { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border-subtle); }
.nav-dropdown a.dd-sub { display: flex; padding: 8px 12px; border-radius: 8px; text-decoration: none; font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--fg-secondary); }
.nav-dropdown a.dd-sub:hover { background: rgba(242,65,225,0.07); color: var(--fhv-magenta); }
/* SportsPick sub-links nested under the SportsPick product row */
.nav-dropdown .dd-subnest { display: flex; flex-direction: column; gap: 1px; margin: 2px 0 6px 30px; padding-left: 12px; border-left: 1.5px solid var(--border-subtle); }
.nav-dropdown .dd-subnest a.dd-sub { padding: 6px 12px; font-size: 12.5px; }
.nav-mobile a.subnest { padding-left: 36px; }
.nav-dropdown .dd-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 12px; padding: 13px 16px; border-radius: 12px; text-decoration: none;
  background: linear-gradient(135deg, rgba(242,65,225,0.10), rgba(255,28,0,0.06));
  border: 1px solid rgba(242,65,225,0.22);
  font-family: var(--font-display); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--fg-primary);
}
.nav-dropdown .dd-foot:hover { background: linear-gradient(135deg, rgba(242,65,225,0.18), rgba(255,28,0,0.10)); }
.nav-dropdown .dd-foot svg { color: var(--fhv-magenta); transition: transform 180ms; }
.nav-dropdown .dd-foot:hover svg { transform: translateX(3px); }

/* "All products" highlighted header row */
.nav-dropdown .dd-all {
  background: linear-gradient(135deg, rgba(242,65,225,0.10), rgba(255,28,0,0.06));
  border: 1px solid rgba(242,65,225,0.22); border-radius: 12px; padding: 14px 16px; margin-bottom: 8px; gap: 4px;
}
.nav-dropdown .dd-all:hover { background: linear-gradient(135deg, rgba(242,65,225,0.18), rgba(255,28,0,0.10)); }
.nav-dropdown .dd-all-title { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 900; font-size: 15px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--fg-primary); }
.nav-dropdown .dd-all-title svg { color: var(--fhv-magenta); transition: transform 180ms; }
.nav-dropdown .dd-all:hover .dd-all-title svg { transform: translateX(3px); }

.dd-products { display: flex; flex-direction: column; gap: 1px; }

/* Product row with brand logo */
.nav-dropdown .dd-product { flex-direction: row; align-items: center; gap: 12px; padding: 9px 12px; border-radius: 10px; }
.nav-dropdown .dd-product .dd-logo-wrap {
  flex-shrink: 0; width: 46px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 5px 6px;
  background: var(--bg-canvas); border: 1px solid var(--border-subtle);
}
body.theme-dark .nav-dropdown .dd-product .dd-logo-wrap { background: rgba(255,255,255,0.04); }
.nav-dropdown .dd-product .dd-logo { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.nav-dropdown .dd-product-text { display: flex; flex-direction: column; gap: 1px; }
.nav-dropdown .dd-name { font-family: var(--font-display); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.1; }
.nav-dropdown .dd-product:hover .dd-name { color: var(--fhv-magenta); }

/* Nested tree for SportsPick children, with connector lines */
.dd-tree { display: flex; flex-direction: column; margin: 2px 0 6px 25px; padding-left: 14px; border-left: 1.5px solid var(--border-subtle); }
.nav-dropdown a.dd-child {
  position: relative; padding: 7px 10px; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--fg-secondary);
}
.nav-dropdown a.dd-child::before {
  content: ""; position: absolute; left: -14px; top: 50%; width: 11px; height: 1.5px; background: var(--border-subtle);
}
.nav-dropdown a.dd-child.l2 { margin-left: 16px; padding-left: 10px; font-size: 12.5px; }
.nav-dropdown a.dd-child.l2::before { left: -30px; width: 16px; }
.nav-dropdown a.dd-child.l2::after {
  content: ""; position: absolute; left: -16px; top: -10px; bottom: 50%; width: 1.5px; background: var(--border-subtle);
}
.nav-dropdown a.dd-child:hover { color: var(--fhv-magenta); background: rgba(242,65,225,0.07); }

/* By-venue rows */
.nav-dropdown .dd-venue { gap: 2px; }
.nav-dropdown .dd-venue .dd-name { font-family: var(--font-display); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: -0.01em; }
.nav-dropdown .dd-venue:hover .dd-name { color: var(--fhv-magenta); }

/* Compare footer inside the products mega menu */
.dd-compare { margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--border-subtle); display: flex; flex-wrap: wrap; gap: 6px; }
.dd-compare-label { width: 100%; font-family: var(--font-body); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--fg-muted); padding: 2px 8px 4px; }
.dd-compare a {
  font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--fg-secondary);
  padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border-subtle); text-decoration: none;
  transition: background 140ms, color 140ms, border-color 140ms;
}
.dd-compare a:hover { color: var(--fhv-magenta); border-color: rgba(242,65,225,0.4); background: rgba(242,65,225,0.06); }

/* --------- Footer social --------- */
.foot-social { display: flex; flex-direction: column; gap: 10px; }
.foot-social-btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 13px;
  padding: 10px 16px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.22);
  transition: background 160ms, border-color 160ms, transform 160ms; width: fit-content;
}
.foot-social-btn:hover { background: rgba(242,65,225,0.14); border-color: var(--fhv-magenta); transform: translateY(-2px); }
.footer .fineprint .social a { display: inline-flex; }
.contact-social-btn {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--fhv-carbon); color: #fff; text-decoration: none; transition: background 160ms, transform 160ms;
}
.contact-social-btn:hover { background: color-mix(in srgb, var(--fhv-magenta) 22%, var(--fhv-carbon)); box-shadow: inset 0 0 0 1.5px var(--fhv-magenta); transform: translateY(-2px); }

/* --------- Breadcrumb --------- */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--fhv-magenta); }
.hero-conservative .breadcrumb a { color: var(--fg-muted); }
.hero-conservative .breadcrumb a:hover { color: var(--fg-primary); }
.hero-conservative .breadcrumb .sep { color: var(--fg-muted); }

/* --------- Video-background hero (Punters Challenge) --------- */
.hero-video { position: relative; overflow: hidden; background: #000; color: #fff; min-height: 600px; display: flex; align-items: center; }
.hero-video-fallback { position: absolute; inset: 0; }
.hero-video-fallback .image-slot { width: 100%; height: 100%; }
.hero-video-scrim { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.66) 45%, rgba(0,0,0,0.35) 100%),
    radial-gradient(ellipse at 80% 60%, rgba(242,65,225,0.28), transparent 60%); }
.hero-video-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 80px 40px; width: 100%; }
.hero-video .h-display { max-width: 16ch; }

/* --------- APL story --------- */
.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 48px; margin-top: 12px; }
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }
.story-col h3 { font-family: var(--font-display); font-weight: 900; font-size: 20px; text-transform: uppercase; letter-spacing: -0.01em; color: #fff; margin: 0 0 10px; }
.story-col p { font-family: var(--font-body); font-size: 15.5px; line-height: 1.6; color: rgba(246,243,241,0.8); margin: 0; }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 28px; }
.story-stats div { display: flex; flex-direction: column; gap: 6px; }
.story-stats span { font-family: var(--font-display); font-weight: 900; font-size: clamp(32px, 3.4vw, 46px); line-height: 1; }
.story-stats em { font-family: var(--font-body); font-style: normal; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(246,243,241,0.6); line-height: 1.3; }
@media (max-width: 720px) { .story-stats { grid-template-columns: 1fr; gap: 24px; } }

/* --------- Versus grid (manual vs product) --------- */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .vs-grid { grid-template-columns: 1fr; } }
.vs-col { border-radius: 18px; padding: 32px; border: 1px solid var(--border-subtle); }
.vs-col .vs-head { font-family: var(--font-display); font-weight: 900; font-size: 20px; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 18px; }
.vs-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.vs-col li { font-family: var(--font-body); font-size: 15px; line-height: 1.45; padding-left: 28px; position: relative; }
.vs-them { background: #fff; }
body.theme-dark .vs-them { background: var(--bg-surface); }
.vs-them li { color: var(--fg-secondary); }
.vs-them li::before { content: "✕"; position: absolute; left: 0; top: 0; color: var(--fg-muted); font-weight: 700; }
.vs-us { background: #0e0c0d; border-color: #1a1718; color: #fff; }
.vs-us .vs-head { color: #fff; }
.vs-us li { color: rgba(255,255,255,0.86); }
.vs-us li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  background: var(--fhv-gradient); clip-path: polygon(0 30%, 50% 30%, 50% 0, 100% 50%, 50% 100%, 50% 70%, 0 70%); }
.vs-us li strong { color: #fff; }

/* --------- Season cards (Punters Challenge) --------- */
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 880px) { .season-grid { grid-template-columns: repeat(2, 1fr); } }
.season-card { background: #0e0c0d; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px 24px; }
.season-name { font-family: var(--font-body); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.6); }
.season-prize { font-family: var(--font-display); font-weight: 900; font-size: 52px; line-height: 1; margin: 12px 0 10px; }
.season-dates { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.7); }
.season-badge { width: 56px; height: 56px; margin-bottom: 16px; display: flex; align-items: center; }
.season-badge img { max-width: 56px; max-height: 56px; object-fit: contain; display: block; }
.season-badge .badge-mark { width: 48px; height: 48px; border-radius: 14px; font-size: 18px; }
.season-final { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 5px; }

/* --------- Sports Tipping: featured "big two" code cards --------- */
.code-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 640px) { .code-feature-grid { grid-template-columns: 1fr; } }
.code-feature-card {
  display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px; padding: 44px 28px;
  transition: transform 220ms, box-shadow 260ms, border-color 200ms;
}
body.theme-dark .code-feature-card { background: var(--bg-surface); }
.code-feature-card:hover { transform: translateY(-4px); box-shadow: 0 28px 56px -24px rgba(0,0,0,0.22); border-color: color-mix(in srgb, var(--brand, var(--fhv-magenta)) 45%, transparent); }
.code-feature-badge { width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; }
.code-feature-badge img { max-width: 100%; max-height: 100%; object-fit: contain; }
.code-feature-badge .badge-mark { width: 96px; height: 96px; border-radius: 24px; font-size: 28px; }
.code-feature-name { font-family: var(--font-display); font-weight: 900; font-size: 32px; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.code-feature-body { margin: -4px auto 0; max-width: 34ch; font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--fg-muted); text-wrap: pretty; }

/* --------- Feature tiles (Live Sports Guide) --------- */
.feature-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 880px) { .feature-tiles { grid-template-columns: repeat(2, 1fr); } }
.feature-tile { background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; }
body.theme-dark .feature-tile { background: var(--bg-surface); }
.feature-tile .ft-num { font-family: var(--font-mono); font-size: 12px; color: var(--fhv-magenta); letter-spacing: 0.06em; }
.feature-tile h3 { font-family: var(--font-display); font-weight: 900; font-size: 19px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0; line-height: 1.05; }
.feature-tile p { font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--fg-secondary); margin: 0; }

/* --------- Compare table --------- */
.compare-table { border: 1px solid var(--border-subtle); border-radius: 16px; overflow: hidden; background: #fff; }
body.theme-dark .compare-table { background: var(--bg-surface); }
.compare-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center; border-bottom: 1px solid var(--border-subtle); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 18px 22px; }
.compare-head { background: var(--fhv-carbon); color: #fff; }
.compare-head .cmp-us, .compare-head .cmp-them { text-align: center; font-family: var(--font-display); font-weight: 900; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; }
.compare-head .cmp-us { color: #fff; background: linear-gradient(90deg, rgba(242,65,225,0.35), rgba(255,28,0,0.25)); }
.cmp-feature { font-family: var(--font-body); font-size: 15px; font-weight: 600; }
.compare-row .cmp-us, .compare-row .cmp-them { text-align: center; }
.cmp-yes { color: #0E9F5B; display: inline-flex; }
.cmp-no { color: var(--fg-muted); font-size: 18px; }
.cmp-text { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--fg-secondary); }
.compare-row:not(.compare-head) .cmp-us { background: rgba(242,65,225,0.04); }

/* --------- Recommended product cards (venue types) --------- */
.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* --------- Home imagery --------- */
.home-feature-img { margin-top: 40px; }
.home-feature-img .image-slot { width: 100%; }
.home-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 880px) { .home-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .home-gallery { grid-template-columns: 1fr; } }

/* --------- Venue-type hero (full-bleed image + overlay) --------- */
.venue-hero { position: relative; overflow: hidden; background: #000; color: #fff; min-height: 62vh; display: flex; align-items: center; }
.venue-hero-bg { position: absolute; inset: 0; }
.venue-hero-bg .image-slot { width: 100%; height: 100%; aspect-ratio: auto !important; border-radius: 0; }
.venue-hero-scrim { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.64) 48%, rgba(0,0,0,0.32) 100%),
    radial-gradient(ellipse at 84% 72%, rgba(242,65,225,0.26), transparent 60%); }
.venue-hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 96px 40px; width: 100%; }
.venue-hero .h-display { max-width: 18ch; }

/* Venue page — all-products grid with brand logos + recommended flag */
.venue-rec-grid .rec-card { position: relative; padding-top: 30px; }
.venue-rec-logo-wrap { height: 56px; display: flex; align-items: center; margin-bottom: 4px; }
.venue-rec-logo { max-height: 56px; max-width: 190px; width: auto; object-fit: contain; }
.rec-card.is-recommended { border-color: color-mix(in srgb, var(--fhv-magenta) 45%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--fhv-magenta) 28%, transparent); }
.rec-card.is-recommended:hover { box-shadow: 0 28px 56px -24px rgba(0,0,0,0.22), 0 0 0 1px color-mix(in srgb, var(--fhv-magenta) 40%, transparent); }
.rec-badge { position: absolute; top: 14px; right: 14px; font-family: var(--font-body); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; background: var(--fhv-gradient); padding: 5px 10px; border-radius: 999px; }
@media (max-width: 880px) { .rec-grid { grid-template-columns: 1fr; } }
.rec-card { position: relative; background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px; padding: 30px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: inherit; transition: transform 220ms, box-shadow 260ms, border-color 200ms; }
body.theme-dark .rec-card { background: var(--bg-surface); }
.rec-card:hover { transform: translateY(-4px); box-shadow: 0 28px 56px -24px rgba(0,0,0,0.22); border-color: rgba(242,65,225,0.4); }
.rec-card .rec-tag { font-family: var(--font-body); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--fhv-magenta); margin-top: 16px; }
.rec-card h3 { font-family: var(--font-display); font-weight: 900; font-size: 30px; text-transform: uppercase; letter-spacing: -0.02em; margin: 0; line-height: 0.95; }
.rec-card p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.5; color: var(--fg-secondary); margin: 0; }
.rec-card .rec-arrow { color: var(--fhv-magenta); margin-top: 6px; transition: transform 200ms; }
.rec-card:hover .rec-arrow { transform: translateX(6px); }

/* --------- News cards --------- */
.news-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 240ms, box-shadow 280ms; }
body.theme-dark .news-card { background: var(--bg-surface); }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -24px rgba(0,0,0,0.2); }
.news-card-img { position: relative; }
.news-card-img .image-slot { border-radius: 0; }
.news-card-cat { position: absolute; top: 14px; left: 14px; font-family: var(--font-body); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); padding: 6px 10px; border-radius: 999px; }
.news-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.news-card-meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.06em; }
.news-card-body h3 { font-family: var(--font-display); font-weight: 900; font-size: 20px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0; line-height: 1.1; }
.news-card-dek { font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--fg-secondary); margin: 0; }

/* --------- News article --------- */
.article { padding: clamp(40px, 6vw, 72px) 0 0; }
.article-head { padding-bottom: 8px; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); letter-spacing: 0.04em; }
.article-hero { margin: 36px 0 8px; }
.article-body { max-width: 720px; margin: 0 auto; padding: 36px 0 64px; }
.article-body h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(24px, 2.6vw, 32px); text-transform: uppercase; letter-spacing: -0.01em; margin: 40px 0 14px; line-height: 1; }
.article-body p { font-family: var(--font-body); font-size: 18px; line-height: 1.65; color: var(--fg-primary); margin: 0 0 20px; text-wrap: pretty; }
.article-pull { margin: 36px 0; padding: 0 0 0 28px; border-left: 4px solid var(--fhv-magenta); }
.article-pull span { font-family: var(--font-display); font-weight: 900; font-size: clamp(24px, 2.8vw, 34px); line-height: 1.1; letter-spacing: -0.01em; display: block; }
.article-pull cite { display: block; margin-top: 14px; font-family: var(--font-body); font-style: normal; font-size: 14px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.12em; }
.article-cta { margin-top: 48px; padding: 36px; border-radius: 18px; background: var(--bg-canvas); display: flex; flex-direction: column; gap: 18px; align-items: flex-start; border: 1px solid var(--border-subtle); }
.article-cta p { font-family: var(--font-display); font-weight: 900; font-size: 24px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0; line-height: 1.05; }

/* --------- Legal pages (privacy / terms) --------- */
.legal-body { display: flex; flex-direction: column; gap: 30px; }
.legal-section h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(20px, 2.2vw, 28px); text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 12px; line-height: 1.05; }
.legal-section p { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--fg-secondary); margin: 0 0 12px; text-wrap: pretty; }
.legal-section p:last-child { margin-bottom: 0; }

/* --------- Brand logos --------- */
/* APL ships as a colour PNG; .to-white flattens it to a white silhouette for the dark footer */
.to-white { filter: brightness(0) invert(1); }

/* Footer product-logo row — full-colour brand logos, single row under the FHV lockup */
.footer-brands { display: flex; flex-wrap: nowrap; align-items: center; gap: 18px; margin: 4px 0 24px; }
.footer-brand { display: inline-flex; align-items: center; opacity: 0.92; transition: opacity 160ms, transform 160ms; }
.footer-brand:hover { opacity: 1; transform: translateY(-2px); }
.footer-brand img { height: 28px; width: auto; display: block; object-fit: contain; }
@media (max-width: 880px) { .footer-brands { flex-wrap: wrap; gap: 16px 22px; } }

/* Home product strip — brand marks */
.product-strip .marks .mark { padding: 10px 6px; }
.strip-logo { height: 52px; width: auto; max-width: 130px; object-fit: contain; transition: transform 200ms; }
.product-strip .mark:hover .strip-logo { transform: translateY(-2px) scale(1.04); }

/* Products hub — brand logo header */
.hub-logo { height: 92px; width: auto; max-width: 340px; object-fit: contain; display: block; }
.hub-logo.raster { height: 104px; }
@media (max-width: 600px) { .hub-logo, .hub-logo.raster { height: 72px; } }

/* Product page hero — branded logo panel (keeps FHV dark hero) */
.product-hero { position: relative; }
.product-hero .brand-hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 72% 50%, color-mix(in srgb, var(--brand) 42%, transparent) 0%, transparent 58%);
}
.product-hero .hero-inner { position: relative; z-index: 1; }
.product-hero .hero-brandmark { height: 60px; width: auto; max-width: 130px; object-fit: contain; display: block; flex: none; }
.brand-stage { position: relative; min-height: 360px; display: flex; align-items: center; justify-content: center; }
.brand-logo-panel {
  position: relative; width: min(420px, 100%); aspect-ratio: 1/1; border-radius: 28px;
  display: flex; align-items: center; justify-content: center; padding: 14%;
  background:
    radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--brand) 30%, transparent), transparent 70%),
    linear-gradient(150deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 90px -10px color-mix(in srgb, var(--brand) 60%, transparent), inset 0 1px 0 rgba(255,255,255,0.08);
}
.brand-logo-img { width: 100%; height: 100%; object-fit: contain; }
/* colour SVG marks render in brand colour; on the dark panel flip them to white for contrast */
.brand-logo-img:not(.raster) { filter: brightness(0) invert(1); }
@media (max-width: 880px) { .brand-stage { min-height: 240px; } }

/* --------- Product page brand-colour scope --------- */
/* Each product page paints its accents in its own brand colour (APL green, SP red, etc.) */
.product-scope { --brand-grad: linear-gradient(120deg, var(--brand) 0%, var(--brand2) 100%); }
.product-scope .gradient-text {
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.product-scope .eyebrow::before { background: var(--brand); }
.product-scope .v-num,
.product-scope .feature-tile .ft-num,
.product-scope .testimonial .quote::before { color: var(--brand); }
.product-scope .faq-q .ic { color: var(--brand); }
.product-scope .step::before {
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.product-scope .split .left ul.benefits li::before,
.product-scope .badge-mark { background: var(--brand-grad); }
.product-scope .btn-gradient { background: var(--brand-grad); }
.product-scope .btn-gradient:hover { box-shadow: 0 14px 38px -10px color-mix(in srgb, var(--brand) 55%, transparent); }
.product-scope .tag {
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand);
}
.product-scope .cta-banner { background: var(--brand-grad); }
.product-scope .format-card-link:hover,
.product-scope .product-card:hover { border-color: color-mix(in srgb, var(--brand) 50%, transparent); }
.product-scope .compare-row:not(.compare-head) .cmp-us { background: color-mix(in srgb, var(--brand) 7%, transparent); }
.product-video-frame {
  max-width: 960px; margin: 0 auto;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 100px -20px color-mix(in srgb, var(--brand) 60%, transparent);
}

/* Marketing-engine grid (3–4 items, responsive) */
.marketing-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Product tiers (SportsPick / SportsPick Plus) */
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
@media (max-width: 760px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card { position: relative; background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px; padding: 32px; display: flex; flex-direction: column; gap: 8px; }
body.theme-dark .tier-card { background: var(--bg-surface); }
.tier-card.featured { border-color: color-mix(in srgb, var(--brand, var(--fhv-magenta)) 55%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--brand, var(--fhv-magenta)) 28%, transparent), 0 24px 50px -28px rgba(0,0,0,0.3); }
.tier-badge { position: absolute; top: 18px; right: 18px; font-family: var(--font-body); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; background: var(--brand-grad, var(--fhv-gradient)); padding: 5px 10px; border-radius: 999px; }
.tier-name { font-family: var(--font-display); font-weight: 900; font-size: 28px; text-transform: uppercase; letter-spacing: -0.02em; margin: 0; line-height: 1; }
.tier-tagline { font-family: var(--font-body); font-size: 14.5px; line-height: 1.5; color: var(--fg-secondary); margin: 0 0 10px; }
.tier-feats { list-style: none; padding: 16px 0 0; margin: 4px 0 0; border-top: 1px solid var(--border-subtle); display: flex; flex-direction: column; gap: 12px; }
.tier-feats li { position: relative; padding-left: 28px; font-family: var(--font-body); font-size: 15px; line-height: 1.4; color: var(--fg-primary); }
.tier-feats li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; background: var(--brand-grad, var(--fhv-gradient)); clip-path: polygon(0 30%, 50% 30%, 50% 0, 100% 50%, 50% 100%, 50% 70%, 0 70%); }

/* As featured on — publication logos (drop images into featuredOn[].src) */
.featured-on { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.featured-on-label { font-family: var(--font-body); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--fg-muted); padding: 24px 0; white-space: nowrap; }
.featured-on-list { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; flex: 1; }
.featured-on-logo { height: 40px; width: auto; max-width: 150px; object-fit: contain; opacity: 0.85; filter: grayscale(1); transition: opacity 160ms, filter 160ms; }
.featured-on-logo:hover { opacity: 1; filter: grayscale(0); }
.featured-on-slot { display: flex; align-items: center; justify-content: center; height: 40px; min-width: 120px; padding: 0 16px; border: 1px dashed var(--border-subtle); border-radius: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--fg-muted); white-space: nowrap; }

/* As featured on — dark band variant (for light publication logos) */
.featured-on-dark { background: #0a0809; padding-bottom: 8px !important; }
.featured-on-dark .featured-on { border-top-color: rgba(255,255,255,0.12); border-bottom-color: rgba(255,255,255,0.12); }
.featured-on-dark .featured-on-label { color: rgba(246,243,241,0.6); }
.featured-on-dark .featured-on-list { gap: clamp(16px, 3vw, 34px); flex-wrap: nowrap; justify-content: space-between; min-width: 0; }
.featured-on-dark .featured-on-logo { height: clamp(26px, 3.6vw, 46px); max-width: 170px; opacity: 0.92; filter: none; flex: 0 1 auto; min-width: 0; }
@media (max-width: 640px) { .featured-on-dark .featured-on-list { flex-wrap: wrap; justify-content: flex-start; } }
.featured-on-dark .featured-on-logo:hover { opacity: 1; }
.featured-on-dark .featured-on-slot { border-color: rgba(255,255,255,0.2); color: rgba(246,243,241,0.65); }

/* Video testimonial (quote + video, two venues) */
.vt-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 18px; align-items: stretch; }
@media (max-width: 880px) { .vt-grid { grid-template-columns: 1fr; } }
.vt-video { display: flex; flex-direction: column; gap: 10px; }
.vt-video .video-embed, .vt-video .image-slot { width: 100%; }
.vt-video-cap { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--fg-muted); }

/* Product brand gallery */
.brand-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
@media (max-width: 720px) { .brand-gallery { grid-template-columns: 1fr; } }
.brand-gallery .image-slot.faded::after { background: linear-gradient(120deg, color-mix(in srgb, var(--brand) 22%, transparent), transparent 70%); }

/* ─────────────────────────────────────────────────────────────────────────
   HubSpot link-colour hardening
   The live HubSpot theme applies `a { color:#fff }` to every anchor, which
   turns inherit-coloured content links invisible on light backgrounds.
   `html body a` (specificity 0,0,0,3) re-asserts our intended inheritance
   over a bare `a` rule regardless of load order, WITHOUT overriding the
   explicit colours our button/nav/footer classes set (specificity 0,0,1,x).
   ───────────────────────────────────────────────────────────────────────── */
html body a { color: inherit; }
html body .btn-link { color: var(--fhv-magenta); }

/* Venue logos — top row can carry real logo images (drop files into assets/venues/) */
.venue-logo .venue-logo-img { max-height: 48px; max-width: 82%; width: auto; object-fit: contain; opacity: 0.9; filter: grayscale(1); transition: opacity 160ms, filter 160ms; }
.venue-logo:hover .venue-logo-img { opacity: 1; filter: grayscale(0); }

/* Venue logos on a dark stage section — lighten borders, names and logo marks for contrast */
.bg-stage .venue-logos { border-color: rgba(246,243,241,0.14); }
.bg-stage .venue-logo { border-color: rgba(246,243,241,0.14); }
.bg-stage .venue-logo:hover { background: rgba(242,65,225,0.10); }
.bg-stage .venue-logo-name { color: rgba(246,243,241,0.7); }
.bg-stage .venue-logo-ph { border-color: rgba(246,243,241,0.2); }
.bg-stage .venue-logo .venue-logo-img { filter: none; opacity: 0.92; }
.bg-stage .venue-logo:hover .venue-logo-img { opacity: 1; }

/* Sport code badges — swap the letter disc for a real badge image (assets/codes/) */
.badge .badge-img { width: 56px; height: 56px; object-fit: contain; display: block; }
