/* WE GOT SHOOTERS — split hero + B/W/tan storefront */

:root {
  --white: #ffffff;
  --black: #000000;
  --tan: #d4a373;
  --tan-dark: #b8895a;
  --orange-ball: #e85d04;
  --gray-text: #6b7280;
  --gray-muted: #9ca3af;
  --gray-light: #e5e7eb;
  --gray-blob: #f3f4f6;
  --max: 1200px;
  --hdr: 72px;
  --font: "Montserrat", system-ui, sans-serif;
  --radius-pill: 999px;
  --radius-card: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr) + 12px);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.35rem;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--tan);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.5rem 0.75rem;
  background: var(--white);
  color: var(--black);
}

.skip-link:focus {
  left: 0;
}

/* ——— Header ——— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--hdr);
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-light);
}

.header.scrolled .nav-link {
  color: var(--black);
}

.header.scrolled .nav-link:hover {
  color: var(--tan-dark);
}

.header.scrolled .header-icon {
  color: var(--black);
}

.header.scrolled .hamburger span {
  background: var(--black);
}

.header.scrolled .logo-wordmark {
  color: var(--black);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  flex-shrink: 0;
  z-index: 2;
}

.logo-wordmark {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 800;
  font-size: clamp(0.62rem, 0.5rem + 1.1vw, 0.82rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--black);
  max-width: min(200px, 46vw);
}

@media (min-width: 480px) {
  .logo-wordmark {
    max-width: none;
    font-size: clamp(0.72rem, 0.55rem + 1vw, 0.95rem);
  }
}

.logo-line {
  white-space: nowrap;
}

.logo-o {
  display: inline-flex;
  vertical-align: middle;
  margin: 0 0.04em;
}

.logo-o-target {
  width: 1.05em;
  height: 1.05em;
}

.logo-o-ball {
  width: 1em;
  height: 1em;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--tan);
}

.header-icons {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.header-icon:hover {
  color: var(--tan);
  background: rgba(255, 255, 255, 0.08);
}

.header.scrolled .header-icon:hover {
  background: rgba(0, 0, 0, 0.06);
}

.hamburger {
  width: 30px;
  height: 28px;
  border: 0;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 2;
}

.hamburger span {
  width: 100%;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 959px) {
  .hamburger span {
    background: var(--black);
  }
}

.header.scrolled .hamburger span {
  background: var(--black);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: var(--hdr) 0 auto 0;
  background: var(--black);
  padding: 1.25rem 1.35rem 1.75rem;
  gap: 0.25rem;
  border-bottom: 1px solid #222;
}

.nav.open .nav-link {
  color: var(--white);
  padding: 0.65rem 0;
  font-size: 1rem;
}

@media (min-width: 960px) {
  .nav {
    display: flex;
  }

  .header-icons {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.72rem 1.35rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-tan-ghost {
  background: transparent;
  color: var(--tan);
  border: 1px solid var(--tan);
}

.btn-tan-ghost:hover {
  background: rgba(212, 163, 115, 0.12);
  border-color: var(--tan-dark);
  color: var(--tan-dark);
}

.btn-tan-solid {
  background: var(--tan);
  color: var(--black);
  border: 1px solid var(--tan);
}

.btn-tan-solid:hover {
  background: var(--tan-dark);
  border-color: var(--tan-dark);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(920px, 100dvh);
  padding-top: var(--hdr);
  overflow: hidden;
  background: var(--white);
}

.hero-split-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-split-layer svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-blob-left {
  position: absolute;
  top: -8%;
  left: -12%;
  width: 45%;
  height: 42%;
  background: radial-gradient(ellipse at 30% 40%, var(--gray-blob) 0%, transparent 70%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  object-fit: cover;
  filter: drop-shadow(8px 16px 24px rgba(0, 0, 0, 0.18));
}

.hero-deco-ball {
  border-radius: 50%;
  aspect-ratio: 1;
}

.hero-deco-tl {
  width: min(180px, 28vw);
  top: 12%;
  left: -6%;
}

.hero-deco-bl {
  width: min(200px, 32vw);
  bottom: 4%;
  left: -10%;
}

.hero-deco-tr {
  width: min(220px, 34vw);
  top: 8%;
  right: 4%;
  z-index: 2;
}

.hero-deco-br {
  width: min(260px, 40vw);
  bottom: -6%;
  right: -8%;
  z-index: 2;
}

.hero-deco-sleeve {
  width: min(200px, 38vw);
  left: -12%;
  bottom: 18%;
  height: auto;
  max-height: 45%;
  object-fit: cover;
  border-radius: 0 12px 12px 0;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: calc(min(920px, 100dvh) - var(--hdr));
  padding: 2.5rem 0 3rem;
}

@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 1rem 2rem;
    padding: 3rem 0 4rem;
  }
}

.hero-copy {
  max-width: 34rem;
  padding-right: 0.5rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 1.4rem + 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--black);
}

.hero-sub {
  margin-top: 1.25rem;
  color: var(--gray-text);
  font-size: 0.95rem;
  max-width: 32ch;
  line-height: 1.65;
}

.hero-cta {
  margin-top: 1.75rem;
}

.hero-product {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-tee-wrap {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
}

.hero-tee-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 5% 5%;
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-tee {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(12px 28px 40px rgba(0, 0, 0, 0.35));
}

.hero-tee-logo {
  position: absolute;
  left: 50%;
  top: clamp(36%, 32% + 2vw, 44%);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  width: min(28%, 120px);
  max-width: 120px;
}

.hero-tee-logo svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Dot grid on black zone (visual) */
.hero-dot-overlay {
  position: absolute;
  inset: 0;
  right: 0;
  width: 58%;
  margin-left: auto;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: linear-gradient(to left, black 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 55%, transparent 100%);
}

@media (max-width: 979px) {
  .hero-dot-overlay {
    width: 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 100%);
    opacity: 0.5;
  }

  .hero-deco-tr,
  .hero-deco-br {
    opacity: 0.9;
  }

  .hero-split-layer svg .hero-black-fill {
    opacity: 0.92;
  }
}

/* Simplified mobile split: more black at bottom */
@media (max-width: 979px) {
  .hero-split-layer svg {
    display: none;
  }

  .hero-split-fallback {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(
      168deg,
      var(--white) 0%,
      var(--white) 52%,
      var(--black) 52.25%,
      var(--black) 100%
    );
    z-index: 0;
  }

  .hero-inner {
    padding-top: 1.75rem;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
  }
}

@media (min-width: 980px) {
  .hero-split-fallback {
    display: none;
  }
}

/* ——— Sections ——— */
section {
  padding: 4.5rem 0;
}

.sec-title {
  font-size: clamp(1.65rem, 1.2rem + 1.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.sec-sub {
  margin-top: 0.75rem;
  color: var(--gray-text);
  max-width: 58ch;
  font-size: 0.95rem;
}

.section-alt {
  background: var(--gray-blob);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark .sec-title {
  color: var(--white);
}

.section-dark .sec-sub {
  color: var(--gray-muted);
}

/* Trusted */
.trusted {
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  background: var(--white);
}

.trusted-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.trusted-row p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-muted);
}

.trusted-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trusted-row li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-text);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-pill);
  background: var(--white);
}

/* Grids */
.use-grid,
.option-grid,
.promise-grid,
.price-grid,
.reviews {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .use-grid,
  .option-grid,
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .price-grid,
  .reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.surface-card,
.price-card,
.review {
  border: 1px solid var(--black);
  border-radius: var(--radius-card);
  background: var(--white);
  padding: 1.2rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.surface-card:hover,
.price-card:hover {
  border-color: var(--tan);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.surface-card h3,
.price-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.surface-card p,
.price-desc,
.review p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.55;
}

.section-dark .surface-card {
  background: #111;
  border-color: #333;
  color: var(--white);
}

.section-dark .surface-card h3 {
  color: var(--white);
}

.section-dark .surface-card p {
  color: var(--gray-muted);
}

.section-dark .surface-card:hover {
  border-color: var(--tan);
}

/* Steps */
.steps {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-card);
  background: var(--white);
  padding: 1.2rem;
}

.step-num {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.02rem;
  font-weight: 700;
}

.step p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* Pricing */
.price-card {
  position: relative;
  min-height: 200px;
}

.price-card.popular {
  border-color: var(--tan);
  box-shadow: 0 12px 36px rgba(212, 163, 115, 0.2);
}

.price-tag {
  position: absolute;
  top: -10px;
  left: 1rem;
  background: var(--tan);
  color: var(--black);
  border-radius: var(--radius-pill);
  padding: 0.22rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-amount {
  margin-top: 0.5rem;
  font-size: 1.55rem;
  font-weight: 800;
}

.price-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.review footer {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
}

/* FAQ */
.faq-wrap {
  max-width: 760px;
}

.faq-list {
  margin-top: 1.25rem;
  border: 1px solid var(--black);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}

.faq:last-child {
  border-bottom: 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--tan-dark);
  font-weight: 700;
}

.faq[open] summary::after {
  content: "\2212";
}

.faq p {
  color: var(--gray-text);
  padding: 0 1.1rem 1rem;
  font-size: 0.9rem;
}

/* Closing */
.closing-cta {
  background: var(--black);
  color: var(--white);
}

.closing-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.closing-inner h2 {
  font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
}

.closing-inner p {
  margin: 0.85rem auto 1.35rem;
  color: var(--gray-muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  border-top: 1px solid #222;
  background: var(--black);
  color: var(--gray-muted);
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer .logo-wordmark {
  color: var(--white);
}

.footer-text {
  font-size: 0.84rem;
  margin-top: 0.35rem;
  color: var(--gray-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--white);
}

.footer-links a:hover {
  color: var(--tan);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.76rem;
  padding-top: 1.25rem;
  color: #6b7280;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  padding-bottom: 0;
}
