
:root {
  --bg: #F8F8F0;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --accent: #2D5BE3;
  --squircle-bg: rgba(26, 26, 26, 0.06);
  --callout-border: rgba(26, 26, 26, 0.12);
}

[data-theme="dark"] {
  --bg: #141414;
  --text: #EDEDE5;
  --text-muted: #888888;
  --accent: #5B8AF0;
  --squircle-bg: rgba(237, 237, 229, 0.06);
  --callout-border: rgba(237, 237, 229, 0.12);
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: background-color 0.8s ease, color 0.8s ease;
}

/* Hero */
.hero {
  width: 100%;
  padding: 140px 0 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-name {
  display: none;
}

.hero-heading {
  font-family: 'STIX Two Text', serif;
  font-size: clamp(24px, 3.15vw, 43px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero-body {
  margin-top: 32px;
  max-width: 560px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-heading sup {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 700;
}

.hero-icon {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}

.hero-icon svg {
  height: 0.75em;
  width: auto;
}

.hero-stack {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-stack-label {
  font-family: 'Oooh Baby', cursive;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-stack-icons {
  position: relative;
  display: flex;
}

.squircle {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 30%;
  background: var(--squircle-bg);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
  will-change: transform;
}

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

.squircle + .squircle {
  margin-left: -5px;
}

.squircle-callout {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--bg);
  border: 1px solid var(--callout-border);
  border-radius: 14px;
  padding: 16px 20px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  will-change: transform, opacity, left;
}

.squircle-callout::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--callout-border);
}

.squircle-callout::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-1px);
  border: 6px solid transparent;
  border-top-color: var(--bg);
  z-index: 1;
}

.squircle-callout-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  display: block;
}

.squircle-callout-use {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
}

.squircle:nth-child(1) { transform: rotate(1.2deg); }
.squircle:nth-child(2) { transform: rotate(-1.7deg); }
.squircle:nth-child(3) { transform: rotate(0.8deg); }
.squircle:nth-child(4) { transform: rotate(-1.3deg); }
.squircle:nth-child(5) { transform: rotate(1.8deg); }
.squircle:nth-child(6) { transform: rotate(-0.6deg); }
.squircle:nth-child(7) { transform: rotate(1.5deg); }
.squircle:nth-child(8) { transform: rotate(-1.1deg); }

.squircle:hover {
  transform: rotate(0deg);
  z-index: 10;
}

.section-products {
  padding: 96px 0 120px;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-grid {
  margin-top: 32px;
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.product-grid-60-40 {
  grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
}

.product-grid-40-60 {
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
}

/* Wrapper creates the gradient border */
.product-card-wrap {
  position: relative;
  border-radius: 25px;
  padding: 1.5px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  height: 100%;
}

/* Default subtle border */
.product-card-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--callout-border);
}

/* Pointer-tracking glow border */
.product-card-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card-wrap:hover {
  transform: scale(0.975);
}

.product-card-wrap:hover::after {
  opacity: 1;
}

.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
  border-radius: 24px;
  background: var(--squircle-bg);
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 560px;
  overflow: hidden;
}

/* Inner surface glow — inherits --glow-x/y from wrapper */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 45%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 58%);
  pointer-events: none;
  z-index: 1;
}

.product-card-wrap:hover .product-card::before {
  opacity: 1;
}

.product-card video,
.product-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-overlay {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  pointer-events: none;
}

.product-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: auto;
  gap: 22px;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-tag {
  --card-glass-bg: rgba(255, 255, 255, 0.16);
  --card-glass-border: rgba(255, 255, 255, 0.42);
  --card-glass-color: rgba(255, 255, 255, 0.92);
  --card-glass-blur: 18px;
  --card-glass-saturation: 1.35;
  --card-glass-highlight: rgba(255, 255, 255, 0.42);
  --card-glass-inner-shadow: rgba(255, 255, 255, 0.08);
  --card-glass-drop-shadow: rgba(0, 0, 0, 0.08);
  --card-glass-text-shadow: rgba(0, 0, 0, 0.16);

  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--card-glass-border);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--card-glass-color);
  background: var(--card-glass-bg);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-shadow:
    inset 0 1px 1px var(--card-glass-highlight),
    inset 0 -12px 28px var(--card-glass-inner-shadow),
    0 10px 24px var(--card-glass-drop-shadow);
  text-shadow: 0 1px 8px var(--card-glass-text-shadow);
  backdrop-filter: blur(var(--card-glass-blur)) saturate(var(--card-glass-saturation));
  -webkit-backdrop-filter: blur(var(--card-glass-blur)) saturate(var(--card-glass-saturation));
}

.liquid-glass-fallback {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.42),
    inset 0 -12px 28px rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.nav-cta.liquid-glass-fallback {
  background: rgba(255, 255, 255, 0.22);
}

[data-theme="dark"] .nav-cta.liquid-glass-fallback {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.10);
}

.product-name {
  margin: 0;
  max-width: 520px;
  font-family: 'STIX Two Text', serif;
  font-size: clamp(24px, 3.15vw, 43px);
  font-weight: 400;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Liquid glass arrow button */
.product-arrow {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  outline: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.25s ease;
  padding: 0;
}

.product-arrow:hover {
  transform: scale(1.1);
}

.product-arrow:active {
  transform: scale(0.93);
  transition-duration: 0.12s;
}

.product-arrow:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid rgba(45, 91, 227, 0.85);
  outline-offset: 4px;
}

.section-brands {
  padding: 16px 0 128px;
}

.brand-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-left: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.brand-cell {
  position: relative;
  min-height: 168px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  background: rgba(255, 255, 255, 0.16);
}

.brand-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.45), transparent 62%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.brand-cell:hover::before {
  opacity: 1;
}

.brand-logo {
  position: absolute;
  width: min(81%, 270px);
  max-height: 102px;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
  will-change: opacity, transform, filter;
}

.brand-cell.is-changing .brand-logo {
  opacity: 0;
  transform: scale(0.94);
  filter: blur(8px);
}

.brand-cell:hover .brand-logo {
  transform: scale(1.035);
}

.brand-logo-color {
  opacity: 0;
}

.brand-cell:hover .brand-logo-black {
  opacity: 0;
  transform: scale(0.985);
  filter: blur(4px);
}

.brand-cell:hover .brand-logo-color {
  opacity: 1;
  transform: scale(1.035);
  filter: blur(0);
}

.section-shooter {
  padding: 96px 0 136px;
  scroll-margin-top: 120px;
}

.shooter-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 229, 190, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 16%, rgba(148, 98, 48, 0.22), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(26, 61, 70, 0.28), transparent 34%),
    linear-gradient(135deg, #241713 0%, #151413 45%, #2a2019 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 222, 0.16),
    inset 0 -20px 60px rgba(0, 0, 0, 0.34),
    0 28px 80px rgba(31, 24, 18, 0.18);
  color: #f0dfbb;
}

.shooter-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.28) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: overlay;
}

.shooter-desktop {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.shooter-mobile-message {
  display: none;
  position: relative;
  z-index: 1;
  padding: 34px 24px;
  text-align: center;
}

.shooter-mobile-message h2,
.shooter-heading-row h2,
.shooter-end-card h3,
.shooter-modal-header h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.shooter-mobile-message h2 {
  margin: 0 0 12px;
  font-size: 31px;
}

.shooter-mobile-message p {
  margin: 0 auto;
  max-width: 320px;
  color: rgba(240, 223, 187, 0.72);
  font: italic 16px/1.5 Georgia, 'Times New Roman', serif;
}

.shooter-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.shooter-heading-row .section-heading {
  color: rgba(240, 223, 187, 0.58);
}

.shooter-heading-row h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.92;
  color: #f3e2bd;
}

.shooter-counters {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 223, 187, 0.72);
}

.shooter-counters span {
  min-width: 86px;
  padding: 12px 13px;
  border: 1px solid rgba(240, 223, 187, 0.18);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

.shooter-counters strong {
  color: #fff2cf;
  font-weight: 600;
}

.shooter-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 223, 187, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    #171514;
  background-size: 46px 46px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -36px 90px rgba(0, 0, 0, 0.42);
}

.shooter-canvas {
  display: block;
  width: 100%;
  height: min(52vw, 520px);
  min-height: 430px;
  cursor: none;
}

.shooter-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12, 10, 9, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.shooter-overlay[hidden],
.shooter-score-form[hidden],
.shooter-offline[hidden],
.shooter-timer[hidden],
[data-shooter-end-view][hidden],
[data-shooter-lb-view][hidden] {
  display: none;
}

.shooter-end-card,
.shooter-modal-panel {
  width: min(460px, 100%);
  border: 1px solid rgba(240, 223, 187, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(81, 51, 32, 0.94), rgba(31, 22, 18, 0.96)),
    #241713;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 222, 0.2),
    0 24px 70px rgba(0, 0, 0, 0.34);
  color: #f3e2bd;
}

.shooter-end-card {
  padding: 36px 32px 32px;
  text-align: center;
}

.shooter-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 223, 187, 0.62);
}

.shooter-end-card h3 {
  margin: 0;
  font-size: 44px;
  line-height: 1;
}

.shooter-final-score {
  margin: 18px 0 22px;
  color: rgba(240, 223, 187, 0.72);
  font: italic 18px/1.4 Georgia, 'Times New Roman', serif;
}

.shooter-final-score strong {
  color: #fff2cf;
  font-size: 40px;
  font-style: normal;
}

.shooter-score-form {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  text-align: left;
}

.shooter-score-form label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 223, 187, 0.68);
}

.shooter-name-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.shooter-name-row input {
  min-width: 0;
  height: 46px;
  border: 1px solid rgba(240, 223, 187, 0.26);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.32);
  color: #fff2cf;
  font: 16px Georgia, 'Times New Roman', serif;
  outline: none;
  padding: 0 16px;
}

.shooter-name-row input:focus-visible {
  border-color: rgba(242, 189, 100, 0.84);
  box-shadow: 0 0 0 3px rgba(242, 189, 100, 0.18);
}

.shooter-error,
.shooter-offline,
.shooter-empty {
  min-height: 20px;
  color: #f2bd64;
  font: italic 14px/1.35 Georgia, 'Times New Roman', serif;
}

.shooter-offline,
.shooter-empty {
  color: rgba(240, 223, 187, 0.66);
}

.shooter-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.shooter-score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
}

.shooter-score-hero {
  font-family: 'STIX Two Text', serif;
  font-size: clamp(64px, 9vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #191716;
}

.shooter-score-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(25, 23, 22, 0.42);
  margin-top: 8px;
}

.shooter-end-msg {
  font-family: 'STIX Two Text', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: rgba(25, 23, 22, 0.6);
  margin: 0 auto 24px;
  text-align: center;
  max-width: 260px;
}

.shooter-button-primary {
  background: #191716;
  color: #F8F8F0;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(25, 23, 22, 0.16);
}

.shooter-button-primary:hover {
  background: #2c2a28;
  transform: translateY(-1px);
}

.shooter-lb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  width: 100%;
}

.shooter-lb-header h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  color: #191716;
}

.shooter-lb-back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(25, 23, 22, 0.14);
  border-radius: 999px;
  background: transparent;
  color: rgba(25, 23, 22, 0.64);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.shooter-lb-back:hover {
  background: rgba(25, 23, 22, 0.06);
  color: #191716;
}

.shooter-button,
.shooter-close {
  cursor: pointer;
  border: 1px solid rgba(240, 223, 187, 0.3);
  color: #fff2cf;
  background:
    linear-gradient(180deg, rgba(120, 81, 47, 0.88), rgba(58, 36, 26, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 220, 0.24),
    inset 0 -4px 0 rgba(0, 0, 0, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.22);
  font: 600 13px/1 'Inter', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.shooter-button {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
}

.shooter-button:hover,
.shooter-close:hover {
  transform: translateY(-1px);
}

.shooter-button:active,
.shooter-close:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 220, 0.16),
    inset 0 2px 5px rgba(0, 0, 0, 0.28);
}

.shooter-button:focus-visible,
.shooter-close:focus-visible {
  outline: 2px solid rgba(242, 189, 100, 0.86);
  outline-offset: 4px;
}

.shooter-instruction {
  margin: 18px 0 0;
  color: rgba(240, 223, 187, 0.58);
  font: italic 17px/1.45 Georgia, 'Times New Roman', serif;
  text-align: center;
}

.shooter-leaderboard {
  width: min(520px, calc(100vw - 36px));
  border: 0;
  padding: 0;
  color: #f3e2bd;
  background: transparent;
}

.shooter-leaderboard::backdrop {
  background: rgba(8, 7, 6, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.shooter-modal-panel {
  width: 100%;
  padding: 22px;
}

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

.shooter-modal-header h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.shooter-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 20px;
}

.shooter-leaderboard-list {
  display: grid;
  gap: 8px;
  list-style: none;
  counter-reset: shooter-rank;
}

.shooter-leaderboard-list li {
  counter-increment: shooter-rank;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border: 1px solid rgba(240, 223, 187, 0.14);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.18);
  padding: 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
}

.shooter-leaderboard-list li::before {
  content: counter(shooter-rank);
  color: rgba(240, 223, 187, 0.56);
  font-size: 14px;
}

.shooter-rank-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shooter-rank-score {
  font-variant-numeric: tabular-nums;
  color: #fff2cf;
}

.shooter-ornament {
  margin-left: 8px;
  color: #f2bd64;
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* Minimal Bad Design Shooter */
.section-shooter {
  padding: 88px 0 128px;
  background: transparent;
  scroll-margin-top: 120px;
}

.shooter-shell {
  width: 100%;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #191716;
}

.shooter-shell::before {
  display: none;
}

.shooter-desktop {
  padding: 0;
}

.shooter-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 24px;
}

.shooter-instruction {
  max-width: 660px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
}

.shooter-counters {
  color: rgba(25, 23, 22, 0.54);
  font-family: 'Inter', sans-serif;
}

.shooter-counters span {
  min-width: 88px;
  border: 1px solid rgba(25, 23, 22, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(25, 23, 22, 0.06);
}

.shooter-counters strong {
  color: #191716;
}

.shooter-stage {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border: none;
  border-radius: 0;
  background: #F8F8F0;
  box-shadow: none;
}

.shooter-canvas {
  width: 100%;
  height: clamp(460px, 62vh, 660px);
  min-height: 460px;
}

.shooter-overlay {
  background: rgba(248, 248, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.shooter-end-card,
.shooter-modal-panel {
  border: 1px solid rgba(25, 23, 22, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(25, 23, 22, 0.14);
  color: #191716;
}

.shooter-end-card h3,
.shooter-modal-header h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  color: #191716;
}

.shooter-kicker,
.shooter-final-score,
.shooter-score-form label,
.shooter-offline,
.shooter-empty {
  color: rgba(25, 23, 22, 0.58);
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

.shooter-final-score strong {
  color: #191716;
}

.shooter-name-row input {
  border-color: rgba(25, 23, 22, 0.16);
  background: #fff;
  color: #191716;
  font-family: 'Inter', sans-serif;
}

.shooter-button,
.shooter-close {
  border-color: rgba(25, 23, 22, 0.14);
  color: #191716;
  background: linear-gradient(180deg, #fff, #f2efeb);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -3px 0 rgba(25, 23, 22, 0.08),
    0 10px 24px rgba(25, 23, 22, 0.1);
}

.shooter-leaderboard {
  color: #191716;
}

.shooter-leaderboard::backdrop {
  background: rgba(255, 255, 255, 0.68);
}

.shooter-leaderboard-list li {
  border-color: rgba(25, 23, 22, 0.1);
  background: rgba(25, 23, 22, 0.03);
  font-family: 'Inter', sans-serif;
}

.shooter-leaderboard-list li::before {
  color: rgba(25, 23, 22, 0.46);
}

.shooter-rank-score {
  color: #191716;
}

.shooter-ornament {
  color: #b8403c;
}

.shooter-mobile-message {
  border: 1px solid rgba(25, 23, 22, 0.1);
  border-radius: 18px;
  background: #fff;
  color: #191716;
}

.shooter-mobile-message h2 {
  color: #191716;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}

.shooter-mobile-message p {
  color: rgba(25, 23, 22, 0.62);
  font-family: 'Inter', sans-serif;
  font-style: normal;
}



/* Nav */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  background: transparent;
}

.nav-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 64px;
  width: auto;
  display: block;
  cursor: pointer;
  transform-origin: center;
  will-change: transform;
}

.nav-cta span {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
  color: white;
}

.nav-cta {
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
  position: relative;
  padding: 14px 24px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  outline: none;
  background: transparent;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  overflow: visible;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.4s ease,
    text-shadow 0.4s ease;
}

[data-theme="dark"] .nav-cta {
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    120px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.nav-cta:hover::before {
  opacity: 1;
}

.nav-cta:hover {
  transform: scale(1.05);
}

.nav-cta:active {
  transform: scale(0.97);
  transition-duration: 0.15s;
}

.glass-control-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  width: min(320px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 12px;
  background: rgba(248, 248, 240, 0.88);
  box-shadow: 0 18px 60px rgba(26, 26, 26, 0.14), 0 2px 8px rgba(26, 26, 26, 0.08);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  color: var(--text);
  display: none;
}

.glass-control-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.glass-control-kicker {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.glass-control-header h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.glass-control-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.glass-control-body {
  display: grid;
  gap: 13px;
  max-height: min(520px, calc(100vh - 116px));
  overflow: auto;
  padding: 14px;
}

.glass-control-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.glass-control-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

.glass-control-value {
  min-width: 42px;
  text-align: right;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
}

.glass-control-row input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--accent);
}

.glass-control-panel.is-collapsed .glass-control-body {
  display: none;
}

.glass-control-toggle:focus-visible {
  outline: 2px solid rgba(45, 91, 227, 0.85);
  outline-offset: 3px;
}

/* Testimonials */
.section-testimonials {
  padding: 16px 0 18px;
}

.testimonial-board {
  position: relative;
  margin-top: 64px;
  min-height: 360px;
  width: 100%;
}


.testimonial-note {
  position: absolute;
  width: min(280px, 74vw);
  padding: 28px 22px 20px;
  border-radius: 8px;
  background:
    linear-gradient(165deg, #FDF6E0 0%, #FEF9E8 40%, #FDF4D4 100%);
  box-shadow:
    0 1px 2px rgba(130, 100, 20, 0.10),
    0 4px 12px rgba(130, 100, 20, 0.08),
    0 12px 36px rgba(130, 100, 20, 0.06);
  cursor: grab;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  z-index: 1;
}

.testimonial-note::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.70) 0%,
    rgba(255, 255, 255, 0) 48%
  );
  pointer-events: none;
}

.testimonial-note::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(180, 150, 60, 0.18);
  pointer-events: none;
}

.testimonial-note:active {
  cursor: grabbing;
}

.testimonial-note.is-dragging {
  cursor: grabbing;
  box-shadow:
    0 4px 8px rgba(130, 100, 20, 0.12),
    0 18px 48px rgba(130, 100, 20, 0.16);
}

.note-tack {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 32%, #fef7d6 0%, #e8c840 40%, #c8a020 100%);
  box-shadow:
    0 2px 4px rgba(80, 55, 0, 0.28),
    inset 0 1px 1px rgba(255, 252, 200, 0.80);
  z-index: 2;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.note-tack::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 7px;
  background: linear-gradient(to bottom, #b89820 0%, #d4b848 100%);
  border-radius: 0 0 1px 1px;
}

.testimonial-note.is-dragging .note-tack {
  transform: translateX(-50%) translateY(-5px);
  box-shadow:
    0 6px 12px rgba(80, 55, 0, 0.34),
    inset 0 1px 1px rgba(255, 252, 200, 0.80);
}

.note-quote {
  position: relative;
  z-index: 1;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(50, 38, 10, 0.90);
  margin: 0 0 18px;
}

.note-attribution {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid rgba(160, 130, 40, 0.18);
}

.note-name {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(50, 38, 10, 0.90);
}

.note-role {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: rgba(50, 38, 10, 0.46);
}

@media (max-width: 760px) {
  .hero {
    padding: 112px 0 40px;
  }

  .hero-inner {
    padding: 0 18px;
  }

  .hero-heading {
    font-size: clamp(31px, 10vw, 42px);
  }

  .hero-body {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-stack {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section-products {
    padding: 72px 0 88px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .product-card-wrap {
    border-radius: 19px;
  }

  .product-card {
    border-radius: 18px;
    aspect-ratio: 4 / 5;
    height: auto;
    min-height: 430px;
    max-height: none;
  }

  .product-overlay {
    padding: 20px;
  }

  .product-tags {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .product-tag {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .product-name {
    max-width: 100%;
    font-size: clamp(31px, 10vw, 42px);
  }

  .product-arrow {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .product-copy {
    gap: 18px;
  }

  .section-testimonials {
    padding: 16px 0 88px;
  }

  .testimonial-board {
    min-height: 640px;
    margin-top: 32px;
  }

  .testimonial-note {
    width: min(240px, 72vw);
    padding: 24px 18px 18px;
  }

  .section-brands {
    padding: 8px 0 88px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .brand-cell {
    min-height: 122px;
  }

  .brand-logo {
    width: min(93%, 210px);
    max-height: 78px;
  }

  .section-shooter {
    padding: 72px 0 88px;
  }

  .shooter-shell {
    border-radius: 0;
    padding: 0 18px;
  }

  .shooter-desktop {
    display: none;
  }

  .shooter-mobile-message {
    display: block;
  }

  .shooter-topline {
    width: calc(100% - 36px);
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar {
    height: 88px;
  }

  .nav-inner {
    padding: 0 18px;
  }

  .nav-logo {
    height: 56px;
  }

  .nav-cta {
    padding: 12px 18px;
    font-size: 13px;
  }


  .glass-control-panel {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

@media (pointer: coarse) {
  .shooter-desktop {
    display: none;
  }

  .shooter-mobile-message {
    display: block;
  }
}

/* ── Footer ─────────────────────────────────────────────────────── */

.site-footer {
  position: relative;
  padding: 64px 24px 32px;
  min-height: 600px;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(25, 23, 22, 0.08);
  background: #F8F8F0;
  overflow: hidden;
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(69.7% 100% at 50% 100%, rgba(242, 201, 76, 0.4) 0%, transparent 100%);
  animation: footer-breathe 4s ease-in-out infinite;
  transform-origin: bottom center;
  pointer-events: none;
  z-index: 0;
}

@keyframes footer-breathe {
  0%, 100% { opacity: 0.5; transform: scaleY(0.88); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 79px, #000 79px, #000 80px),
    repeating-linear-gradient(90deg,  transparent, transparent 79px, #000 79px, #000 80px);
  mix-blend-mode: overlay;
  mask-image: linear-gradient(to top, black 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.footer-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.footer-flattery {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: rgba(25, 23, 22, 0.38);
  letter-spacing: 0.01em;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(25, 23, 22, 0.45);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #191716;
}

.footer-nameplate {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-name {
  font-family: 'STIX Two Text', serif;
  font-size: clamp(80px, 11.4vw, 162px);
  font-weight: 400;
  color: #191716;
  line-height: 1;
  letter-spacing: -0.04em;
}

.footer-logo {
  width: clamp(72px, 10vw, 136px);
  height: auto;
  cursor: pointer;
  flex-shrink: 0;
  display: block;
}

/* Footer physics pills */
.footer-physics-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

/* Wrapper — physics positions this via transform translate+rotate */
.footer-pill-wrap {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

/* Inner pill — animates scale + opacity independently */
.footer-pill {
  display: block;
  padding: 13px 26px;
  border-radius: 999px;
  background: #F5D678;
  color: #2a1f00;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center center;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── End Footer ─────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Case Study ──────────────────────────────────────────────────── */

.cs-hero {
  width: 100%;
  background: #000;
}

.cs-hero-copy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-preheading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.61vw, 21px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin-bottom: 20px;
}

.cs-heading {
  font-family: 'STIX Two Text', serif;
  font-size: clamp(60px, 8.75vw, 120px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0;
}

.cs-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.61vw, 21px);
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
  max-width: 480px;
  margin-top: 16px;
}

.cs-hero-image-wrap {
  position: relative;
}

.cs-hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, #000 100%);
  pointer-events: none;
}

.cs-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.cs-container {
  max-width: 1200px;
  margin: 0px auto 0;
  padding: 0px 24px 0;
}

.cs-section {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.cs-section-pretitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(19px, 1.9vw, 26px);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  margin-bottom: 0;
}

.cs-section-title {
  font-family: 'STIX Two Text', serif;
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
  margin-bottom: 38px;
}

.cs-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.cs-list {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 20px;
  margin: 24px 0;
}

.cs-list li {
  margin-bottom: 8px;
}

.cs-callout {
  position: relative;
  margin-top: 8px;
  padding: 28px 32px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

/* Dynamic gradient border that follows pointer */
.cs-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, -30%),
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.07) 30%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.1s ease;
}

/* Inner spotlight glow */
.cs-callout::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 255, 255, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cs-callout:hover::after {
  opacity: 1;
}

.cs-callout-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.cs-callout-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cs-photo-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cs-pg-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cs-pg-photo:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.cs-pg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 255, 255, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cs-pg-photo:hover::after {
  opacity: 1;
}

.cs-pg-photo img,
.cs-pg-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cs-pg-photo:hover img,
.cs-pg-photo:hover video {
  transform: scale(1.03);
}

.cs-photo-grid .cs-pg-photo:nth-child(1) { grid-column: 2 / 4; }
.cs-photo-grid .cs-pg-photo:nth-child(2) { grid-column: 4 / 6; }
.cs-photo-grid .cs-pg-photo:nth-child(3) { grid-column: 1 / 3; }
.cs-photo-grid .cs-pg-photo:nth-child(4) { grid-column: 3 / 5; }
.cs-photo-grid .cs-pg-photo:nth-child(5) { grid-column: 5 / 7; }
.cs-photo-grid .cs-pg-photo:nth-child(6) { grid-column: 2 / 4; }
.cs-photo-grid .cs-pg-photo:nth-child(7) { grid-column: 4 / 6; }

.cs-grid2 .cs-pg-photo {
  grid-column: auto;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
}

.cs-shift-grid {
  max-width: 900px;
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.cs-shift-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-shift-photo {
  border-radius: 8px;
}

.cs-shift-left .cs-shift-photo {
  flex: 1;
  min-height: 0;
  aspect-ratio: unset;
}

.cs-shift-right {
  aspect-ratio: unset;
  height: 100%;
  min-height: 300px;
}

.cs-shift-bottom {
  max-width: 900px;
  margin: 16px auto 0;
  border-radius: 8px;
  aspect-ratio: unset;
  height: auto;
}

.cs-shift-bottom img {
  width: 100%;
  height: auto;
  object-fit: unset;
}

.cs-shift-bottom:hover img {
  transform: scale(1);
}

.cs-masonry {
  max-width: 900px;
  margin: 16px auto 120px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cs-masonry-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-masonry-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cs-masonry-item:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.cs-masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 255, 255, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cs-masonry-item:hover::after {
  opacity: 1;
}

.cs-masonry-item img,
.cs-masonry-item video {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cs-masonry-item:hover img,
.cs-masonry-item:hover video {
  transform: scale(1.03);
}

.cs-grid2 .cs-pg-photo img,
.cs-grid2 .cs-pg-photo video {
  border-radius: 4px;
}

/* Light mode overrides for case study closing sections */
body:not([data-theme="dark"]) .cs-section-title {
  color: #1A1A1A;
  transition: color 0.8s ease;
}

body:not([data-theme="dark"]) .cs-body {
  color: rgba(26, 26, 26, 0.75);
  transition: color 0.8s ease;
}

body:not([data-theme="dark"]) .cs-impact-number {
  color: #1A1A1A;
  transition: color 0.8s ease;
}

body:not([data-theme="dark"]) .cs-impact-label {
  color: rgba(26, 26, 26, 0.5);
  transition: color 0.8s ease;
}

body:not([data-theme="dark"]) .cs-impact-stat {
  border-color: rgba(26, 26, 26, 0.10);
  background: rgba(26, 26, 26, 0.03);
}

/* Impact stats */
.cs-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 64px;
}

.cs-impact-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.cs-impact-number {
  font-family: 'STIX Two Text', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-style: italic;
  color: #fff;
  line-height: 1;
}

.cs-impact-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

/* Sticky note */
.cs-sticky-note {
  position: relative;
  margin-bottom: 120px;
  padding: 36px 28px 28px;
  border-radius: 3px;
  background-color: #FFF0A0;
  box-shadow:
    0 4px 16px rgba(120, 100, 60, 0.12),
    0 1px 4px rgba(120, 100, 60, 0.08);
  transform: rotate(var(--note-r, 0deg)) translate(var(--note-x, 0px), var(--note-y, 0px));
  transform-origin: top center;
  cursor: pointer;
  will-change: transform, box-shadow;
  transition: box-shadow 0.35s ease;
  --curl: 6px;
}

.cs-sticky-note::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: var(--curl);
  height: var(--curl);
  background: linear-gradient(225deg, rgba(25, 23, 22, 0.08) 0%, transparent 60%);
  border-radius: 0 0 3px 0;
}

.cs-sticky-note:hover,
.cs-sticky-note.is-lifted {
  box-shadow:
    0 16px 40px rgba(120, 100, 60, 0.18),
    0 4px 10px rgba(120, 100, 60, 0.10);
}

.cs-note-tack {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #f0f0f0 0%, #b0b0b0 55%, #888 100%);
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.70);
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.cs-note-tack::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 10px;
  background: linear-gradient(to bottom, #aaa 0%, #d8d8d8 100%);
  border-radius: 0 0 2px 2px;
}

.cs-sticky-note.is-lifted .cs-note-tack {
  transform: translateX(-50%) translateY(-5px);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.55),
    inset 0 1px 1px rgba(255, 255, 255, 0.70);
}

.cs-note-quote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.75;
  color: #2a2826;
  margin: 0 0 20px;
}

.cs-note-divider {
  border: none;
  border-top: 1px solid rgba(25, 23, 22, 0.18);
  margin: 0 0 20px;
}

.cs-note-attribution {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.cs-note-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(25, 23, 22, 0.12);
}

.cs-note-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-note-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-note-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #191716;
}

.cs-note-role {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  color: rgba(25, 23, 22, 0.55);
}

.cs-marquee-wrap {
  margin-top: 16px;
  margin-bottom: 28px;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.cs-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.cs-marquee-item {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
  transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cs-marquee-item:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.cs-marquee-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 255, 255, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-marquee-item:hover::after {
  opacity: 1;
}

.cs-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cs-marquee-item:hover img {
  transform: scale(1.03);
}

.cs-full-image {
  margin-top: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cs-full-image:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.cs-full-image::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.18) 0%, transparent 65%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cs-full-image:hover::after {
  opacity: 1;
}

.cs-full-image-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cs-full-image:hover .cs-full-image-img {
  transform: scale(1.03);
}

.cs-content {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.cs-symbol-grid {
  max-width: 600px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}

.cs-symbol-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cs-symbol-icon {
  width: 70px;
  height: 35px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}

.cs-symbol-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 6px;
}

.cs-symbol-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Credits / Overview section — always light, sits after the theme switch */
.cs-credits {
  padding-bottom: 120px;
}

.cs-credits-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 64px;
  border-top: 1px solid rgba(26, 26, 26, 0.10);
}

.cs-credits-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1A1A1A;
  margin-bottom: 32px;
}

.cs-credits-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs-credits-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
}

.cs-credits-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(26, 26, 26, 0.35);
}

.cs-credits-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 400;
  color: rgba(26, 26, 26, 0.80);
  line-height: 1.5;
}

.cs-credits-team p {
  margin-bottom: 6px;
}

.cs-credits-role {
  color: rgba(26, 26, 26, 0.40);
  font-weight: 400;
}

.cs-credits-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-credits-tag {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: rgba(26, 26, 26, 0.75);
  padding: 8px 14px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.04);
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cs-credits-tag:hover {
  background: rgba(26, 26, 26, 0.08);
  border-color: rgba(26, 26, 26, 0.28);
  color: rgba(26, 26, 26, 0.90);
  transform: translateY(-2px);
}

.cs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cs-split-left {
  display: flex;
  flex-direction: column;
}

.cs-split-right {
  display: flex;
  flex-direction: column;
}

.cs-split-media {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.cs-grid2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

