: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.2s, color 0.2s;
}

/* 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 {
  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 {
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: rgba(255, 255, 255, 0.22);
}

.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] {
  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: 28px;
  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-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: #fff;
  scroll-margin-top: 120px;
}

.shooter-shell {
  width: 100%;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #fff;
  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;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 30px;
}

.shooter-instruction {
  max-width: 660px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  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: solid rgba(25, 23, 22, 0.08);
  border-width: 1px 0;
  border-radius: 0;
  background: #F8F8F0;
  box-shadow: none;
}

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

.shooter-overlay {
  background: rgba(255, 255, 255, 0.76);
  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;
}

/* Footer */
.footer {
  padding-bottom: 160px;
}

/* 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;
  position: relative;
  padding: 14px 24px;
  border: none;
  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;
}

.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;
}

@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-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;
  }

  .footer {
    padding-bottom: 96px;
  }

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

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

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

@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;
  }
}
