/* =========================================================
   FUSION ARCHERY — Brand Design System
   Colors, type & ratios per the 2026 Brand Identity Guide
   ========================================================= */

:root {
  /* Primary — Core Engineering Palette (deep blues) */
  --navy-900: #020A1D;   /* Core Dark Base */
  --navy-800: #031234;   /* Deep Navy */
  --navy-700: #05215B;   /* Technical Blue — panels/containers */
  --blue-600: #083A91;   /* Engineering Blue */

  /* Secondary — Accent palette */
  --blue-500: #1DA7FF;   /* Performance Blue */
  --blue-400: #5271FF;   /* Fusion Blue */
  --ice:      #CFEFFF;   /* Ice Blue */

  /* Metallic / neutral */
  --white:    #FFFFFF;
  --silver:   #C2C2C2;

  /* Functional */
  --text:        #DCE7F5;
  --text-dim:    #93A6C4;
  --line:        rgba(82,113,255,0.18);
  --line-strong: rgba(29,167,255,0.40);
  --card:        rgba(8,33,73,0.45);
  --card-solid:  #06173B;

  --grad-accent: linear-gradient(100deg, var(--blue-500), var(--blue-400));
  --grad-metal:  linear-gradient(180deg, #ffffff 0%, #d6e6f7 40%, #9fb3cc 60%, #ffffff 100%);
  --grad-deep:   linear-gradient(180deg, var(--navy-900), var(--navy-800));

  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 24px 60px -28px rgba(0,0,0,0.85);
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Orbitron', sans-serif; /* approximates brand "Tailwind" */
  --font-body: 'Advent Pro', sans-serif;  /* brand secondary typeface */
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: .01em; }
.label {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--blue-500);
}
.label.center { text-align: center; display: block; }
.grad {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(2,10,29,0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(2,10,29,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.9);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; filter: drop-shadow(0 0 10px rgba(29,167,255,.5)); }
.brand-word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.12rem;
  letter-spacing: .14em; color: var(--white); line-height: 1;
}
.brand-word span { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .42em; color: var(--blue-500); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-family: var(--font-display); font-size: .82rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim);
  transition: color .25s; position: relative; padding: 4px 0;
}
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad-accent); transition: width .3s var(--ease);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover:not(.nav-cta)::after { width: 100%; }
.nav-cta {
  color: var(--white) !important; border: 1px solid var(--line-strong);
  padding: 9px 20px !important; border-radius: 40px;
  background: rgba(29,167,255,.08); transition: all .25s;
}
.nav-cta:hover { background: var(--grad-accent); border-color: transparent; box-shadow: 0 8px 24px -8px rgba(29,167,255,.7); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: .3s var(--ease); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  font-family: var(--font-display); font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 44px; display: inline-block;
  transition: all .28s var(--ease); cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--grad-accent); color: #02112b; box-shadow: 0 14px 34px -14px rgba(29,167,255,.75); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(29,167,255,.9); }
.btn-ghost { color: var(--white); border-color: var(--line-strong); background: rgba(255,255,255,.02); }
.btn-ghost:hover { background: rgba(29,167,255,.12); border-color: var(--blue-500); transform: translateY(-2px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 76px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero-bg.jpg') center 22% / cover no-repeat;
  opacity: .9;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 30%, rgba(2,10,29,.25), rgba(2,10,29,.92) 70%),
    linear-gradient(180deg, rgba(2,10,29,.7) 0%, rgba(2,10,29,.35) 35%, var(--navy-900) 100%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image:
    linear-gradient(rgba(29,167,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,167,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 40%, #000, transparent 80%);
}
.hero-inner { position: relative; z-index: 2; padding: 60px 24px; max-width: 880px; }
.eyebrow {
  font-family: var(--font-display); font-size: .76rem; font-weight: 600;
  letter-spacing: .4em; text-transform: uppercase; color: var(--blue-500);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(3rem, 9.5vw, 7rem); font-weight: 800;
  text-transform: uppercase; color: var(--white); letter-spacing: .02em;
  text-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.hero-tagline {
  font-family: var(--font-display); font-weight: 500;
  letter-spacing: .55em; text-transform: uppercase;
  color: var(--ice); font-size: clamp(.9rem, 2.4vw, 1.4rem);
  margin: 18px 0 26px; padding-left: .55em;
}
.hero-sub { max-width: 580px; color: var(--text); font-size: 1.15rem; font-weight: 300; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-family: var(--font-display); font-size: .64rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--text-dim); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span { width: 1px; height: 42px; background: linear-gradient(var(--blue-500), transparent); animation: scrollPulse 2s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy-800); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 30px 18px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--white); letter-spacing: .02em; }
.trust-item strong i { font-style: normal; font-size: .9rem; color: var(--blue-500); margin-left: 2px; }
.trust-item span { font-size: .82rem; color: var(--text-dim); letter-spacing: .04em; text-transform: uppercase; }

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section-alt { background: var(--grad-deep); }
.section-head { max-width: 720px; margin: 0 auto clamp(46px, 6vw, 72px); text-align: center; }
.section-head .label { margin-bottom: 18px; display: block; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.section-lead { color: var(--text-dim); font-size: 1.12rem; font-weight: 300; }

/* =========================================================
   BOW CARDS
   ========================================================= */
.bow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.bow-card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.bow-card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.bow-tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--font-display); font-size: .58rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ice);
  padding: 5px 11px; border-radius: 30px; border: 1px solid var(--line-strong);
  background: rgba(2,10,29,.6); backdrop-filter: blur(6px);
}
.tag-flagship { color: #02112b; background: var(--grad-accent); border-color: transparent; }
.tag-target { color: var(--blue-400); }
.tag-youth { color: var(--ice); }
.bow-art {
  position: relative; aspect-ratio: 4/3; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 30%, rgba(8,58,145,.55), rgba(2,10,29,.2));
  overflow: hidden;
}
.bow-art::before {
  content: attr(data-model); position: absolute; inset: auto 0 8px 0; text-align: center;
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; letter-spacing: .04em;
  color: rgba(255,255,255,.05); white-space: nowrap;
}
.bow-art img { width: 56%; filter: drop-shadow(0 10px 24px rgba(29,167,255,.4)); transition: transform .6s var(--ease); }
.bow-card:hover .bow-art img { transform: rotate(8deg) scale(1.06); }
.bow-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bow-body h3 { font-size: 1.5rem; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.bow-desc { font-size: .95rem; color: var(--text-dim); font-weight: 300; margin-bottom: 18px; min-height: 3.4em; }
.spec-list { border-top: 1px solid var(--line); margin-bottom: 20px; }
.spec-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .86rem; }
.spec-list span { color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; font-size: .76rem; }
.spec-list b { font-family: var(--font-display); color: var(--white); font-weight: 600; }
.bow-link {
  margin-top: auto; font-family: var(--font-display); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue-500); transition: color .25s, gap .25s;
}
.bow-link:hover { color: var(--ice); }
.section-foot { text-align: center; margin-top: clamp(40px, 5vw, 60px); }

/* =========================================================
   FEATURES
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  padding: 34px 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(3,18,52,.4); transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.feature:hover { transform: translateY(-6px); border-color: var(--line-strong); background: rgba(8,33,73,.55); }
.feature-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(29,167,255,.18), rgba(82,113,255,.08));
  border: 1px solid var(--line-strong); color: var(--blue-500); margin-bottom: 20px;
}
.feature-ico svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.22rem; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.feature p { color: var(--text-dim); font-weight: 300; font-size: .98rem; }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats { padding: clamp(60px, 8vw, 96px) 0; background: var(--navy-800); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats .label { margin-bottom: 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 4rem);
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1;
}
.stat span { color: var(--text-dim); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }

/* =========================================================
   SERIES
   ========================================================= */
.series-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.series-card {
  position: relative; min-height: 420px; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .4s;
}
.series-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.series-card::before {
  content: ""; position: absolute; inset: 0; transition: transform .6s var(--ease); transform: scale(1.02);
}
.s-hunt::before  { background: radial-gradient(120% 90% at 30% 20%, #0a2f6e, #020a1d 75%); }
.s-target::before{ background: radial-gradient(120% 90% at 70% 20%, #0c3aa0, #020a1d 75%); }
.s-youth::before { background: radial-gradient(120% 90% at 50% 20%, #1657b5, #020a1d 75%); }
.series-card:hover::before { transform: scale(1.1); }
.series-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(140% 80% at 50% 0%, rgba(29,167,255,.18), transparent 60%),
    linear-gradient(180deg, transparent 30%, rgba(2,10,29,.85) 100%);
}
.series-overlay::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(29,167,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(29,167,255,.07) 1px, transparent 1px);
  background-size: 40px 40px; mask-image: radial-gradient(90% 90% at 50% 10%, #000, transparent 75%);
}
.series-content { position: relative; z-index: 2; padding: 34px 30px; }
.series-content .label { margin-bottom: 12px; display: block; }
.series-content h3 { font-size: 1.7rem; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.series-content p { color: var(--text-dim); font-weight: 300; margin-bottom: 16px; font-size: .98rem; }
.series-link { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-500); }
.series-card:hover .series-link { color: var(--ice); }

/* =========================================================
   ABOUT
   ========================================================= */
.about-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-media { position: relative; display: grid; place-items: center; min-height: 360px; }
.about-mark { width: 70%; max-width: 340px; position: relative; z-index: 2; filter: drop-shadow(0 20px 50px rgba(29,167,255,.35)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.about-ring {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid var(--line-strong); box-shadow: 0 0 80px rgba(29,167,255,.2) inset;
}
.about-ring::after {
  content: ""; position: absolute; inset: -40px; border-radius: 50%; border: 1px solid var(--line);
}
.about-copy h2 { font-size: clamp(2rem, 4.5vw, 3rem); text-transform: uppercase; color: var(--white); margin: 16px 0 22px; }
.about-copy p { color: var(--text); font-weight: 300; margin-bottom: 18px; }
.about-points { display: grid; gap: 14px; margin-top: 30px; }
.about-points > div { display: flex; gap: 16px; align-items: baseline; padding-left: 18px; border-left: 2px solid var(--blue-500); }
.about-points b { font-family: var(--font-display); color: var(--white); text-transform: uppercase; letter-spacing: .08em; min-width: 130px; font-size: .92rem; }
.about-points span { color: var(--text-dim); font-weight: 300; font-size: .96rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--grad-deep); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { padding: 32px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(8,33,73,.35); position: relative; }
.quote::before { content: "\201C"; font-family: var(--font-display); font-size: 4rem; color: var(--blue-600); line-height: .6; display: block; margin-bottom: 8px; }
.quote blockquote { color: var(--text); font-weight: 300; font-size: 1.04rem; margin-bottom: 22px; }
.quote figcaption b { font-family: var(--font-display); color: var(--white); display: block; text-transform: uppercase; letter-spacing: .06em; font-size: .92rem; }
.quote figcaption span { color: var(--text-dim); font-size: .85rem; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { position: relative; padding: clamp(80px, 11vw, 140px) 0; text-align: center; overflow: hidden;
  background: radial-gradient(120% 130% at 50% 0%, var(--blue-600), var(--navy-900) 65%); }
.cta-grid { position: absolute; inset: 0; opacity: .4;
  background-image: linear-gradient(rgba(29,167,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(29,167,255,.1) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(80% 90% at 50% 30%, #000, transparent 75%); }
.cta-inner { position: relative; z-index: 2; max-width: 720px; }
.cta-band h2 { font-size: clamp(2.4rem, 6.5vw, 4.2rem); text-transform: uppercase; color: var(--white); margin: 18px 0 20px; }
.cta-sub { color: var(--ice); font-weight: 300; font-size: 1.12rem; margin-bottom: 36px; }

/* =========================================================
   DEALERS
   ========================================================= */
.dealer-form { display: flex; gap: 12px; justify-content: center; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.dealer-form input {
  flex: 1; min-width: 220px; padding: 15px 20px; border-radius: 44px;
  border: 1px solid var(--line-strong); background: rgba(2,10,29,.6); color: var(--white);
  font-family: var(--font-body); font-size: 1rem;
}
.dealer-form input:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(29,167,255,.15); }
.dealer-form input::placeholder { color: var(--text-dim); }
.dealer-note { text-align: center; color: var(--text-dim); margin-top: 20px; font-weight: 300; }
.dealer-note.has-results { color: var(--ice); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--line); padding-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; padding-bottom: 50px; }
.footer-logo { width: 220px; margin-bottom: 18px; }
.footer-brand p { color: var(--text-dim); font-weight: 300; max-width: 320px; margin-bottom: 22px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-dim); transition: all .25s; }
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { color: var(--white); border-color: var(--blue-500); background: rgba(29,167,255,.12); transform: translateY(-3px); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-cols h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .18em; color: var(--white); margin-bottom: 18px; }
.footer-cols a { display: block; color: var(--text-dim); font-weight: 300; padding: 6px 0; transition: color .2s, padding-left .2s; }
.footer-cols a:hover { color: var(--blue-500); padding-left: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 24px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text-dim); font-size: .85rem; }
.footer-tag { font-family: var(--font-display); letter-spacing: .4em; text-transform: uppercase; color: var(--blue-500); font-size: .78rem !important; }

/* =========================================================
   PRODUCTS PAGE
   ========================================================= */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: calc(76px + clamp(60px, 11vw, 120px)) 0 clamp(48px, 7vw, 84px);
  background: radial-gradient(120% 130% at 50% -10%, var(--blue-600), var(--navy-900) 62%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem); text-transform: uppercase; color: var(--white);
  letter-spacing: .02em; margin-bottom: 20px;
}
.page-hero-sub { color: var(--ice); font-weight: 300; font-size: 1.12rem; }

.products-section { padding-top: clamp(40px, 6vw, 64px); }
.products-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 44px);
}
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-display); font-size: .76rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  color: var(--text-dim); background: rgba(8,33,73,.35);
  border: 1px solid var(--line); padding: 11px 22px; border-radius: 44px;
  transition: all .25s var(--ease);
}
.filter-btn:hover { color: var(--white); border-color: var(--line-strong); }
.filter-btn.active {
  color: #02112b; background: var(--grad-accent); border-color: transparent;
  box-shadow: 0 10px 26px -12px rgba(29,167,255,.7);
}
.result-count {
  font-family: var(--font-display); font-size: .76rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-dim);
}

/* products grid: 3-up for a roomier catalog feel */
.products-grid { grid-template-columns: repeat(3, 1fr); }
.bow-name-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.bow-price {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--blue-500); white-space: nowrap;
}
.bow-art-photo { background: radial-gradient(120% 120% at 50% 30%, rgba(8,58,145,.35), rgba(2,10,29,.15)); }
.bow-art-photo img { width: auto; max-width: 88%; max-height: 88%; filter: drop-shadow(0 14px 30px rgba(0,0,0,.5)); }
.no-results {
  grid-column: 1 / -1; text-align: center; color: var(--text-dim);
  font-weight: 300; padding: 60px 20px; font-size: 1.1rem;
}
.no-results a { color: var(--blue-500); }

@media (max-width: 980px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .products-bar { justify-content: center; }
  .result-count { width: 100%; text-align: center; }
}
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FORMS (contact / warranty / dealer)
   ========================================================= */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim);
}
.field label .req { color: var(--blue-500); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 1px solid var(--line-strong); background: rgba(2,10,29,.55);
  color: var(--white); font-family: var(--font-body); font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(29,167,255,.15);
}
.field select { appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue-500) 50%), linear-gradient(135deg, var(--blue-500) 50%, transparent 50%);
  background-position: calc(100% - 20px) 56%, calc(100% - 14px) 56%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form .btn { justify-self: start; border: 0; cursor: pointer; }
.form-feedback {
  display: none; margin-top: 4px; padding: 14px 18px; border-radius: 10px;
  background: rgba(29,167,255,.1); border: 1px solid var(--line-strong); color: var(--ice);
  font-weight: 300;
}
.form-feedback.show { display: block; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(36px, 6vw, 70px); align-items: start; }
.contact-card { padding: clamp(28px, 4vw, 40px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.contact-card h3 { font-size: 1.4rem; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
.info-list { display: grid; gap: 22px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-ico {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(29,167,255,.18), rgba(82,113,255,.08));
  border: 1px solid var(--line-strong); color: var(--blue-500);
}
.info-ico svg { width: 22px; height: 22px; }
.info-row h4 { font-family: var(--font-display); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.info-row p, .info-row a { color: var(--text-dim); font-weight: 300; }
.info-row a:hover { color: var(--blue-500); }

/* =========================================================
   SPLIT ROWS (technology / about)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; margin-bottom: clamp(48px, 7vw, 96px); }
.split:last-child { margin-bottom: 0; }
.split.reverse .split-media { order: 2; }
.split-copy .label { display: block; margin-bottom: 14px; }
.split-copy h2, .split-copy h3 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.split-copy p { color: var(--text-dim); font-weight: 300; margin-bottom: 14px; }
.split-media {
  position: relative; min-height: 300px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 30%, rgba(8,58,145,.5), rgba(2,10,29,.2));
}
.split-media img { width: 56%; filter: drop-shadow(0 18px 40px rgba(29,167,255,.35)); }
.checklist { display: grid; gap: 12px; margin-top: 20px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-weight: 300; }
.checklist svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--blue-500); margin-top: 3px; }

/* =========================================================
   FAQ (no JS — native details/summary)
   ========================================================= */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { border: 1px solid var(--line); border-radius: 12px; background: rgba(8,33,73,.3); overflow: hidden; transition: border-color .25s; }
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  cursor: pointer; padding: 20px 24px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--white); letter-spacing: .02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--blue-500); transition: transform .25s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 22px; color: var(--text-dim); font-weight: 300; }

/* =========================================================
   "MADE IN USA" / highlight band
   ========================================================= */
.usa-band { text-align: center; }
.usa-band .label { display: block; margin-bottom: 16px; }
.usa-band h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.usa-band p { max-width: 640px; margin: 0 auto; color: var(--text-dim); font-weight: 300; }

/* =========================================================
   LEGAL / PROSE
   ========================================================= */
.prose { max-width: 820px; margin: 0 auto; }
.prose p, .prose li { color: var(--text-dim); font-weight: 300; margin-bottom: 16px; line-height: 1.8; }
.prose h2 { font-size: 1.4rem; text-transform: uppercase; color: var(--white); margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-display); font-size: 1rem; letter-spacing: .04em; color: var(--ice); margin: 24px 0 10px; }
.prose ul { padding-left: 22px; margin-bottom: 16px; list-style: disc; }
.prose a { color: var(--blue-500); }
.prose .updated { font-family: var(--font-display); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 32px; }

/* =========================================================
   FOOTER LEGAL LINKS
   ========================================================= */
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--text-dim); font-size: .85rem; transition: color .2s; }
.footer-legal a:hover { color: var(--blue-500); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: 0; }
  .split-media { min-height: 240px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .bow-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .series-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; min-height: 280px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .nav-bar { height: 64px; }
  .main-nav {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(2,10,29,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); padding: 10px 0;
    transform: translateY(-120%); transition: transform .38s var(--ease); align-items: stretch;
  }
  .main-nav.open { transform: none; }
  .main-nav a { padding: 16px 24px; border-bottom: 1px solid var(--line); letter-spacing: .14em; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 14px 24px; text-align: center; padding: 14px 20px !important; border-radius: 44px; }
  .nav-toggle { display: flex; }

  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.05rem, 11vw, 3rem); letter-spacing: 0; }
  .hero-tagline { letter-spacing: .34em; }
  .eyebrow { letter-spacing: .28em; }
}

@media (max-width: 480px) {
  .bow-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
