:root {
  --navy: #0b326d;
  --deep: #0d4699;
  --blue: #1f7bff;
  --sky: #75bdff;
  --pale: #eaf6ff;
  --ice: #f7fbff;
  --white: #ffffff;
  --muted: #5877a6;
  --line: rgba(31, 123, 255, .18);
  --soft: rgba(255, 255, 255, .86);
  --shadow: 0 28px 80px rgba(11, 50, 109, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--navy);
  font-family: Avenir Next, Futura, Trebuchet MS, PingFang SC, Hiragino Sans GB, sans-serif;
  background:
    radial-gradient(circle at 6% 8%, rgba(31,123,255,.16), transparent 28rem),
    radial-gradient(circle at 92% 4%, rgba(117,189,255,.24), transparent 32rem),
    linear-gradient(135deg, var(--white) 0%, var(--ice) 50%, var(--pale) 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image:
    linear-gradient(rgba(31,123,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,123,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, var(--navy), transparent 70%);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-weight: 1000;
  letter-spacing: -.08em;
  background: linear-gradient(135deg, var(--deep), var(--blue) 62%, var(--sky));
  box-shadow: 0 14px 34px rgba(31,123,255,.24);
}
.brand-copy { display: grid; line-height: 1.02; }
.brand-copy b { color: var(--deep); letter-spacing: -.04em; font-size: 17px; }
.brand-copy small { color: var(--muted); font-weight: 800; }
.site-nav { display: flex; gap: 8px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.76); }
.site-nav a { padding: 10px 16px; border-radius: 999px; color: var(--muted); font-weight: 900; }
.site-nav a.active { color: var(--white); background: linear-gradient(135deg, var(--deep), var(--blue)); box-shadow: 0 10px 28px rgba(31,123,255,.2); }
main { position: relative; width: min(1220px, 92vw); margin: 0 auto; }
.hero-photo-layout {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding: clamp(52px, 7vw, 96px) 0 clamp(42px, 6vw, 72px);
}
.eyebrow, .sport-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 1000;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--deep);
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: .98;
  letter-spacing: -.075em;
}
h2 { margin-bottom: 16px; color: var(--deep); font-size: clamp(32px, 4vw, 56px); line-height: 1.02; letter-spacing: -.065em; }
h3 { margin-bottom: 10px; color: var(--deep); font-size: 24px; letter-spacing: -.04em; }
.lead {
  max-width: 520px;
  padding-left: 18px;
  border-left: 4px solid rgba(31,123,255,.26);
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.85;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 1000;
}
.btn.primary { color: var(--white); background: linear-gradient(135deg, var(--deep), var(--blue)); box-shadow: 0 16px 38px rgba(31,123,255,.24); }
.btn.secondary { color: var(--deep); background: var(--white); border: 1px solid var(--line); }
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 520px;
  margin-top: 34px;
}
.metric-strip span {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
}
.metric-strip b { display: block; color: var(--deep); font-size: 20px; letter-spacing: -.04em; }
.metric-strip small { color: var(--muted); font-weight: 800; }
.athlete-board {
  display: grid;
  grid-template-columns: 1.1fr .82fr;
  gap: 18px;
  align-items: stretch;
}
.athlete-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(31,123,255,.18);
  border-radius: 38px;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.athlete-card.small-card { min-height: 500px; align-self: end; }
.athlete-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.03);
}
.athlete-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,50,109,.04) 30%, rgba(11,50,109,.84) 100%);
}
.athlete-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 26px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}
.athlete-caption span { color: #cfe8ff; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.athlete-caption h2 { margin: 8px 0 8px; color: var(--white); font-size: clamp(30px, 4vw, 52px); }
.signature-band {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin: 10px 0 34px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--deep) 58%, var(--blue));
  box-shadow: var(--shadow);
}
.signature-band .eyebrow, .signature-band h2 { color: var(--white); }
.signature-band p { margin-bottom: 0; color: #dceeff; font-size: 18px; line-height: 1.85; }
.home-cards, .verify-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 78px;
}
.info-card, .shop-column, .verify-panel, .verify-result, .verify-notes article, .product-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 62px rgba(11,50,109,.08);
}
.info-card { padding: 26px; }
.info-card span { color: var(--blue); font-size: 44px; font-weight: 1000; letter-spacing: -.08em; }
.info-card p, .product-card p, .verify-notes p { color: var(--muted); line-height: 1.65; }
.page-title { padding: clamp(42px, 6vw, 78px) 0 28px; }
.page-title.compact h1 { max-width: 860px; }
.shop-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 80px; }
.shop-column { padding: clamp(20px, 3vw, 32px); }
.column-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.product-list { display: grid; gap: 14px; }
.product-card { display: grid; grid-template-columns: 118px 1fr; gap: 18px; padding: 14px; box-shadow: none; }
.product-thumb {
  min-height: 132px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -.06em;
  background: linear-gradient(135deg, var(--deep), var(--blue) 62%, var(--sky));
  overflow: hidden;
  position: relative;
}
.product-thumb::before { content: ""; position: absolute; width: 110px; height: 110px; border: 16px solid rgba(255,255,255,.24); border-radius: 50%; transform: translate(-35px,-24px); }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.product-meta span { padding: 6px 9px; border-radius: 999px; background: var(--pale); color: var(--deep); font-size: 12px; font-weight: 900; }
.product-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.price { color: var(--blue); font-size: 24px; font-weight: 1000; }
.cart-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  transform: translateY(100px);
  opacity: 0;
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--deep);
  box-shadow: var(--shadow);
  font-weight: 900;
  transition: .28s ease;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }
.verify-hero {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: center;
  min-height: 54vh;
  padding: clamp(42px, 6vw, 84px) 0 30px;
}
.verify-panel { padding: 24px; }
.verify-panel label { display: block; margin-bottom: 10px; color: var(--deep); font-weight: 1000; }
.verify-row { display: flex; gap: 10px; }
.verify-row input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 16px;
  color: var(--navy);
  background: var(--white);
}
.hint { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.verify-result { min-height: 210px; margin-bottom: 24px; padding: 26px; }
.empty-state { display: grid; place-items: center; min-height: 150px; color: var(--muted); border: 1px dashed var(--line); border-radius: 22px; }
.result-badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; color: var(--white); background: var(--blue); font-weight: 1000; }
.result-badge.warn { background: var(--deep); }
.result-grid { display: grid; grid-template-columns: 160px 1fr; gap: 10px 18px; margin-top: 20px; }
.result-grid span { color: var(--muted); }
.verify-notes article { padding: 24px; }
.footer { width: min(1220px, 92vw); margin: 0 auto; padding: 28px 0 46px; color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 980px) {
  .hero-photo-layout, .signature-band, .shop-columns, .verify-hero { grid-template-columns: 1fr; }
  .athlete-board { grid-template-columns: 1fr; }
  .athlete-card, .athlete-card.small-card { min-height: 520px; }
  .home-cards, .verify-notes { grid-template-columns: 1fr; }
  .site-header { align-items: flex-start; flex-direction: column; }
  .site-nav { width: 100%; justify-content: space-between; }
}
@media (max-width: 640px) {
  main { width: min(94vw, 1220px); }
  .site-nav a { padding: 9px 11px; font-size: 14px; }
  h1 { font-size: 44px; }
  .metric-strip { grid-template-columns: 1fr; }
  .athlete-card, .athlete-card.small-card { min-height: 440px; border-radius: 28px; }
  .product-card { grid-template-columns: 1fr; }
  .verify-row { flex-direction: column; }
  .result-grid { grid-template-columns: 1fr; }
}
.column-athlete {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  object-position: center top;
  margin: 0 0 18px;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(11,50,109,.10);
}
.snooker-column .column-athlete {
  object-position: center 18%;
}
@media (max-width: 640px) {
  .column-athlete { height: 220px; }
}
.hero-copy h1 span {
  display: block;
}
.metric-strip b {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: -.06em;
}
.metric-strip small {
  display: block;
  margin-top: 8px;
}
.metric-strip b {
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .015em;
  color: #0d4699;
  text-shadow: 0 8px 22px rgba(31,123,255,.12);
}
.metric-strip span {
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(234,246,255,.72));
}
.metric-strip b {
  font-family: Snell Roundhand, Brush Script MT, Didot, Georgia, serif;
  font-size: clamp(18px, 1.85vw, 25px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: .04em;
  color: #1457ad;
  transform: rotate(-2deg);
  text-shadow: 0 6px 18px rgba(20,87,173,.16);
}
.metric-strip span:nth-child(2) b {
  transform: rotate(1.5deg);
}
.metric-strip span:nth-child(3) b {
  transform: rotate(-1deg);
}
.verify-hero h1 span {
  display: block;
}
.verify-notes {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 980px) {
  .verify-notes { grid-template-columns: 1fr; }
}
.shop-title-only {
  padding-bottom: 12px;
}
.shop-title-only .eyebrow {
  font-size: clamp(56px, 10vw, 132px);
  line-height: .82;
  letter-spacing: -.09em;
  text-transform: none;
  color: var(--deep);
  margin-bottom: 0;
}
.shop-columns {
  padding-top: clamp(38px, 6vw, 76px);
}
.column-title-only .sport-label {
  font-size: clamp(42px, 7vw, 88px);
  line-height: .85;
  letter-spacing: -.075em;
  text-transform: none;
  margin-bottom: 8px;
  color: var(--deep);
}
.column-title-only {
  justify-content: flex-start;
}
.merged-verify {
  min-height: auto;
  padding-top: clamp(46px, 7vw, 96px);
  border-top: 1px solid var(--line);
}
.merged-notes {
  margin-bottom: 96px;
}
.sliding-nav {
  position: relative;
  overflow: hidden;
}
.sliding-nav .nav-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep), var(--blue));
  box-shadow: 0 10px 28px rgba(31,123,255,.2);
  transition: transform .32s ease, width .32s ease;
}
.sliding-nav a {
  position: relative;
  z-index: 1;
  background: transparent !important;
  box-shadow: none !important;
  transition: color .22s ease;
}
.sliding-nav a.active {
  color: var(--white);
}
.athlete-caption h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -.04em;
}
.simple-nav a,
.simple-nav a.active {
  color: var(--deep);
  background: transparent !important;
  box-shadow: none !important;
}
.simple-nav a:hover {
  background: rgba(31,123,255,.08) !important;
}
.nav-indicator { display: none !important; }
