:root {
  --blue: #235d9d;
  --blue-dark: #143f70;
  --orange: #f47a20;
  --ink: #111111;
  --muted: #6b6b6b;
  --line: #d8d8d8;
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(var(--shell), calc(100% - 32px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-bar {
  min-height: 29px;
  background: #dedede;
  border-bottom: 1px solid #c7c7c7;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  min-height: 29px;
}

.sport-links,
.support-links {
  display: flex;
  align-items: center;
}

.sport-links a,
.support-links button,
.support-links span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 12px;
  color: #171717;
  background: transparent;
  border: 0;
  border-right: 1px solid #c6c6c6;
  text-decoration: none;
  font-size: 13px;
}

.sport-links a:first-child {
  border-left: 1px solid #c6c6c6;
}

.sport-links img {
  width: 19px;
  height: 16px;
  margin-right: 5px;
  object-fit: contain;
}

.support-links span {
  color: #26578a;
  font-style: italic;
}

.sport-links a:hover,
.support-links button:hover {
  background: #eeeeee;
}

.brand-row {
  position: relative;
  display: grid;
  grid-template-columns: 245px minmax(300px, 1fr) 385px;
  gap: 22px;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-block;
  width: 218px;
}

.brand img {
  width: 100%;
}

.search-form {
  position: relative;
  display: flex;
  height: 38px;
  border: 1px solid #999999;
  background: #ffffff;
}

.search-form:focus-within {
  outline: 2px solid rgba(35, 93, 157, 0.3);
}

.search-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 12px;
  color: #333333;
  font-size: 15px;
  outline: none;
}

.search-form > button {
  width: 42px;
  border: 0;
  color: #ffffff;
  background: var(--blue);
  font: 700 29px/1 Arial, sans-serif;
  cursor: pointer;
}

.search-results {
  position: absolute;
  z-index: 50;
  inset: calc(100% + 4px) 0 auto 0;
  padding: 7px;
  background: #ffffff;
  border: 1px solid #b9b9b9;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.search-results button,
.search-results p {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px;
  text-align: left;
  border: 0;
  background: #ffffff;
  cursor: pointer;
}

.search-results button:hover,
.search-results button:focus-visible {
  color: #ffffff;
  background: var(--blue);
}

.account-links {
  display: grid;
  grid-template-columns: 76px 74px 80px 65px;
  gap: 11px;
  align-items: center;
}

.account-links button {
  padding: 4px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
}

.account-links button span,
.account-links button strong {
  display: block;
}

.account-links .starter {
  padding: 6px;
  color: #ffffff;
  background: var(--blue);
  text-align: center;
  font-size: 11px;
}

.account-links .cart {
  position: relative;
  text-align: center;
}

.account-links .cart span {
  position: absolute;
  top: 2px;
  right: 10px;
  color: #ffffff;
  font-size: 10px;
}

.account-links .cart img {
  width: 44px;
  margin: auto;
}

.primary-nav {
  color: #ffffff;
  background: #060606;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.32);
}

.primary-inner {
  display: grid;
  grid-template-columns: repeat(10, auto);
}

.primary-inner button {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.primary-inner button:hover,
.primary-inner button:focus-visible,
.primary-inner button.active {
  background: var(--blue);
}

.mobile-menu-toggle {
  display: none;
}

.event-strip {
  display: block;
  width: 100%;
  min-height: 25px;
  border: 0;
  background: #ececec;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: clamp(420px, 43vw, 620px);
  background: #0a0a0a url("assets/home-banner-20260908-airsoftcon.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  inset: 17% 10% 8%;
  display: grid;
  place-items: center;
}

.hero-content img {
  width: min(880px, 76vw);
}

.hero-hit {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quick-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-top: -58px;
}

.quick-card {
  padding: 9px 9px 15px;
  border: 1px solid #bbbbbb;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.quick-card img {
  width: 100%;
  aspect-ratio: 390 / 335;
  object-fit: cover;
}

.quick-card span {
  display: block;
  padding-top: 13px;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 700;
}

.section {
  padding-top: 48px;
}

.section h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

.section h2 span {
  color: #9b9b9b;
  font-weight: 400;
}

.section h2 button {
  padding: 0;
  color: var(--blue);
  border: 0;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid button {
  padding: 0;
  border: 0;
  background: #f1f1f1;
  overflow: hidden;
  cursor: pointer;
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 26%;
  transition: transform 240ms ease;
}

.feature-grid button:hover img,
.article-grid button:hover img,
.quick-card:hover img {
  transform: scale(1.025);
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.slider-controls {
  display: flex;
  gap: 4px;
}

.slider-controls button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #bababa;
  background: #f4f4f4;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 64px) / 5);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: #ffffff;
}

.product-card button {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: 100%;
  min-height: 100%;
  padding: 10px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.product-card h3 {
  margin: 10px 0;
  font: 600 15px/1.3 Arial, sans-serif;
}

.product-card strong {
  font-size: 20px;
}

.product-card small {
  margin-top: 5px;
  color: #d3442d;
  font-size: 16px;
  font-weight: 700;
}

.videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.video-card {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 285px;
  padding: 28px;
  color: #ffffff;
  border: 0;
  background-position: center;
  background-size: cover;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.82));
}

.video-card > * {
  position: relative;
}

.video-one {
  background-image: url("assets/home-banner-20260908-airsoftcon.jpg");
}

.video-two {
  background-image: url("assets/home-box-20260901-locations.jpg");
}

.video-card .play {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  padding-left: 4px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  font-size: 25px;
}

.video-card strong {
  font-size: 24px;
}

.video-card small {
  margin-top: 7px;
  font-size: 14px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.article-grid button {
  position: relative;
  padding: 0;
  color: #ffffff;
  border: 0;
  background: #111111;
  cursor: pointer;
  overflow: hidden;
}

.article-grid img {
  width: 100%;
  aspect-ratio: 380 / 469;
  object-fit: cover;
  transition: transform 240ms ease;
}

.article-grid strong {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 12px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  font-size: 18px;
}

.store-copy {
  padding-top: 54px;
  padding-bottom: 48px;
  font-family: Arial, sans-serif;
  color: #2f2f2f;
}

.store-copy h1,
.store-copy h2 {
  margin: 0 0 12px;
  color: #111111;
}

.store-copy h1 {
  font-size: 26px;
}

.store-copy h2 {
  margin-top: 26px;
  font-size: 22px;
}

.store-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
}

.benefits {
  color: #ffffff;
  background: #153e68;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefits-grid > div,
.benefits-grid > button {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 94px;
  padding: 17px 20px;
  color: #ffffff;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  text-align: left;
}

.benefits-grid > button {
  cursor: pointer;
}

.benefits-grid b {
  grid-row: 1 / 3;
  font-size: 30px;
}

.benefits-grid strong {
  font-size: 17px;
}

.benefits-grid span {
  font-size: 13px;
  opacity: 0.82;
}

.site-footer {
  padding: 45px 0 24px;
  color: #dddddd;
  background: #171717;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1fr;
  gap: 44px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.footer-grid button {
  display: block;
  padding: 4px 0;
  color: #bdbdbd;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.footer-grid button:hover {
  color: #ffffff;
}

.contact-column p {
  margin: 0 0 12px;
  color: #bdbdbd;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #3a3a3a;
}

.trust-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-icons img {
  max-width: 112px;
  max-height: 36px;
  object-fit: contain;
}

.footer-brand {
  display: grid;
  grid-template-columns: 56px minmax(0, 330px);
  gap: 15px;
  align-items: center;
}

.footer-brand img {
  width: 56px;
}

.footer-brand p {
  margin: 0;
  color: #9f9f9f;
  font: 12px/1.45 Arial, sans-serif;
}

body.login-mode .site-header,
body.login-mode main,
body.login-mode .site-footer,
body.login-mode .toast,
body.login-mode .modal-backdrop {
  display: none !important;
}

.login-view {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(420px, 0.9fr);
  background: #f3f3f3;
}

.login-view[hidden] {
  display: none;
}

.login-visual {
  position: relative;
  display: flex;
  min-height: 100vh;
  padding: 42px 56px;
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(2, 9, 17, 0.48), rgba(2, 9, 17, 0.88)),
    url("assets/home-banner-20260908-airsoftcon.jpg") center/cover no-repeat;
}

.login-logo {
  position: absolute;
  top: 38px;
  left: 48px;
  display: block;
  width: 210px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.94);
}

.login-visual-copy {
  align-self: center;
  max-width: 560px;
}

.login-visual-copy span {
  color: #f7932b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.login-visual-copy h1 {
  margin: 16px 0;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.9;
}

.login-visual-copy p {
  max-width: 490px;
  margin: 0;
  color: #e7e7e7;
  font: 16px/1.55 Arial, sans-serif;
}

.login-panel {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 42px;
}

.login-card {
  width: min(440px, 100%);
  padding: 38px;
  background: #ffffff;
  border-top: 7px solid var(--blue);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
}

.login-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.login-prototype-note {
  margin: 0 0 26px;
  padding: 14px 15px;
  color: #4a2a0d;
  background: #fff2e4;
  border-left: 5px solid var(--orange);
  font: 13px/1.5 Arial, sans-serif;
}

.login-card h2 {
  margin: 0;
  font-size: 34px;
}

.login-subtitle {
  margin: 8px 0 25px;
  color: #666666;
  font: 14px/1.5 Arial, sans-serif;
}

.login-form label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

.login-form input {
  width: 100%;
  height: 45px;
  padding: 0 12px;
  border: 1px solid #a9a9a9;
  background: #ffffff;
  outline: none;
}

.login-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(35, 93, 157, 0.18);
}

.login-form input[aria-invalid="true"] {
  border-color: #bd321f;
}

.login-password-field {
  position: relative;
}

.login-password-field input {
  padding-right: 65px;
}

.login-password-field button {
  position: absolute;
  top: 1px;
  right: 1px;
  height: 43px;
  min-width: 58px;
  border: 0;
  background: #ededed;
  color: #333333;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.login-field-error {
  min-height: 20px;
  margin: 4px 0 8px;
  color: #a12618;
  font: 12px/1.4 Arial, sans-serif;
}

.login-submit {
  width: 100%;
  min-height: 47px;
  margin-top: 3px;
  color: #ffffff;
  border: 0;
  background: var(--blue);
  font-weight: 700;
  cursor: pointer;
}

.login-submit:hover,
.login-submit:focus-visible {
  background: var(--blue-dark);
}

.login-form-status {
  min-height: 23px;
  margin: 12px 0 0;
  color: #235d42;
  font: 13px/1.45 Arial, sans-serif;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(500px, 100%);
  padding: 34px;
  background: #ffffff;
  border-top: 6px solid var(--blue);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.modal h2 {
  margin: 0 34px 14px 0;
  font-size: 26px;
  text-transform: uppercase;
}

.modal p {
  margin: 0 0 14px;
  font: 15px/1.55 Arial, sans-serif;
}

.modal .prototype-note {
  padding: 13px;
  border-left: 4px solid var(--orange);
  background: #fff4eb;
}

.modal-action {
  padding: 10px 18px;
  color: #ffffff;
  border: 0;
  background: var(--blue);
  font-weight: 700;
  cursor: pointer;
}

.toast {
  position: fixed;
  z-index: 110;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  color: #ffffff;
  background: #121212;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.toast[hidden] {
  display: none;
}

@media (max-width: 1050px) {
  .support-links span,
  .sport-links {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .brand-row {
    grid-template-columns: 190px 1fr 300px;
    gap: 14px;
  }

  .brand {
    width: 180px;
  }

  .account-links {
    grid-template-columns: 64px 64px 70px 52px;
    gap: 5px;
  }

  .account-links .starter {
    font-size: 9px;
  }

  .primary-inner button {
    padding-inline: 10px;
    font-size: 13px;
  }

  .product-track {
    grid-auto-columns: calc((100% - 48px) / 4);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 20px, var(--shell));
  }

  .utility-bar {
    min-height: 25px;
  }

  .utility-inner {
    min-height: 25px;
  }

  .support-links button,
  .support-links span {
    min-height: 25px;
    padding: 0 8px;
    font-size: 11px;
  }

  .support-links button:first-of-type,
  .support-links span {
    display: none;
  }

  .brand-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    min-height: 107px;
    padding-top: 10px;
    padding-bottom: 49px;
  }

  .brand {
    width: 132px;
  }

  .search-form {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 36px;
  }

  .search-form input {
    font-size: 13px;
  }

  .account-links {
    grid-template-columns: 65px 70px 46px;
  }

  .account-links .starter {
    display: none;
  }

  .account-links button {
    font-size: 11px;
  }

  .account-links .cart img {
    width: 38px;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    min-height: 46px;
    padding: 0 15px;
    color: #ffffff;
    border: 0;
    background: var(--blue);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.32);
    text-align: left;
    font-size: 14px;
    cursor: pointer;
  }

  .hamburger {
    width: 26px;
    font-size: 25px;
    line-height: 1;
  }

  .primary-nav {
    display: none;
    box-shadow: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 12px 8px;
  }

  .primary-inner button {
    min-height: 34px;
    padding: 5px 10px;
    text-align: left;
  }

  .primary-inner button.active {
    background: transparent;
  }

  .primary-inner button:hover,
  .primary-inner button:focus-visible {
    background: #1a1a1a;
  }

  .event-strip {
    min-height: 25px;
    font-size: 12px;
  }

  .hero {
    min-height: 430px;
    background-position: center;
  }

  .hero-content {
    inset: 15% 4% 7%;
  }

  .hero-content img {
    width: min(95%, 520px);
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: -8px;
  }

  .quick-card {
    padding: 6px 6px 12px;
  }

  .quick-card span {
    font-size: 21px;
  }

  .section {
    padding-top: 40px;
  }

  .section h2 {
    font-size: 22px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid img {
    aspect-ratio: 16 / 9;
  }

  .product-track {
    grid-auto-columns: 72%;
  }

  .product-card h3 {
    font-size: 14px;
  }

  .videos {
    grid-template-columns: 1fr;
  }

  .article-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .article-grid strong {
    font-size: 14px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid > div,
  .benefits-grid > button {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .login-view {
    grid-template-columns: 1fr;
    background: #ffffff;
  }

  .login-visual {
    min-height: 225px;
    padding: 24px;
    background-position: center 30%;
  }

  .login-logo {
    top: 18px;
    left: 18px;
    width: 146px;
    padding: 9px 11px;
  }

  .login-visual-copy {
    align-self: end;
  }

  .login-visual-copy span,
  .login-visual-copy p {
    display: none;
  }

  .login-visual-copy h1 {
    margin: 0;
    font-size: 43px;
  }

  .login-panel {
    min-height: auto;
    padding: 0;
  }

  .login-card {
    width: 100%;
    padding: 30px 24px 42px;
    border-top-width: 5px;
    box-shadow: none;
  }
}

@media (max-width: 430px) {
  .support-links button {
    padding-inline: 7px;
  }

  .brand-row {
    min-height: 105px;
  }

  .brand {
    width: 124px;
  }

  .account-links {
    grid-template-columns: 62px 68px 42px;
  }

  .hero {
    min-height: 430px;
  }

  .quick-grid {
    width: calc(100% - 36px);
    gap: 12px;
  }

  .section-title-row {
    align-items: flex-start;
  }

  .section-title-row h2 {
    line-height: 1.25;
  }

  .product-track {
    grid-auto-columns: 78%;
  }

  .videos .video-card {
    min-height: 220px;
  }

  .store-copy {
    padding-top: 42px;
  }

  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid > div,
  .benefits-grid > button {
    min-height: 78px;
  }

  .modal {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
