@font-face {
  font-family: "LSG Stencil";
  src: url("../assets/fonts/ArmyStencil.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #050b0d;
  --bg-soft: #081418;
  --panel: #0d2128;
  --panel-strong: #102c35;
  --panel-line: #21434e;
  --text: #eef7f8;
  --muted: #9db3ba;
  --muted-strong: #c5d4d8;
  --cyan: #5fd4e8;
  --cyan-soft: rgba(95, 212, 232, 0.16);
  --brass: #d5ad63;
  --brass-dark: #8c7038;
  --black: #020506;
  --danger: #e58575;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --radius-sm: 6px;
  --site-grid-lines:
    linear-gradient(rgba(95, 212, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 212, 232, 0.04) 1px, transparent 1px);
  --site-grid-base: linear-gradient(135deg, #081a1f 0%, #050b0d 52%, #10100c 100%);
  --site-grid-size: 42px 42px, 42px 42px, auto;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  color: var(--text);
  background:
    var(--site-grid-lines),
    var(--site-grid-base);
  background-size: var(--site-grid-size);
  background-attachment: fixed;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header,
.category-nav,
main,
section,
footer {
  max-width: 100%;
}

main {
  background: transparent;
}

.wrap,
.header-inner,
.storefront-tools,
.category-nav-inner,
.hero-grid,
.page-hero-grid,
.split-section,
.about-grid,
.card-grid,
.product-grid,
.dashboard-grid,
.mini-card-grid,
.footer-grid {
  min-width: 0;
}

.wrap > *,
.hero-copy,
.hero-feature,
.page-hero-grid > *,
.section-heading,
.product-card,
.tool-card,
.service-card,
.mini-card,
.page-hero-card {
  min-width: 0;
}

.search-visual,
.search-text,
.btn,
.brand,
.main-nav a,
.category-nav a {
  max-width: 100%;
}

.search-text,
h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}


.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  padding: 10px 12px;
  background: var(--cyan);
  color: var(--black);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 12px;
}

.announcement-bar {
  background: #030708;
  border-bottom: 1px solid rgba(95, 212, 232, 0.18);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.announcement-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}

.announcement-inner a {
  color: var(--brass);
  font-weight: 700;
}

.announcement-divider {
  width: 1px;
  height: 18px;
  background: rgba(213, 173, 99, 0.4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 11, 13, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(95, 212, 232, 0.16);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(95, 212, 232, 0.18));
}


.brand strong,
.footer-brand span {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.main-nav a,
.category-nav a,
.top-link {
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.main-nav a:hover,
.main-nav a:focus,
.category-nav a:hover,
.category-nav a:focus {
  color: var(--text);
  background: rgba(95, 212, 232, 0.1);
}

.nav-cta {
  border: 1px solid rgba(213, 173, 99, 0.45);
  color: var(--brass) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--text);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.storefront-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-bottom: 18px;
}

.search-visual {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: var(--muted);
  background: #08171b;
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.search-visual.is-touched {
  border-color: rgba(95, 212, 232, 0.65);
  box-shadow: 0 0 18px rgba(95, 212, 232, 0.14);
}

.search-icon {
  width: 15px;
  height: 15px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -4px;
  background: var(--cyan);
  transform: rotate(45deg);
  border-radius: 999px;
}

kbd {
  margin-left: auto;
  padding: 4px 8px;
  border: 1px solid rgba(213, 173, 99, 0.35);
  border-radius: var(--radius-sm);
  color: var(--brass);
  background: rgba(213, 173, 99, 0.08);
  font-size: 0.75rem;
}

.category-nav {
  position: sticky;
  top: 147px;
  z-index: 9;
  background: rgba(4, 10, 12, 0.92);
  border-bottom: 1px solid rgba(95, 212, 232, 0.12);
  backdrop-filter: blur(12px);
}

.category-nav-inner {
  display: flex;
  max-width: 100%;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0;
  scrollbar-width: thin;
}

.category-nav a {
  white-space: nowrap;
  border: 1px solid transparent;
}

.category-nav a.active {
  color: var(--cyan);
  border-color: rgba(95, 212, 232, 0.35);
  background: var(--cyan-soft);
}

.section,
.hero {
  padding: 82px 0;
  background: transparent;
}

.section-dark {
  background: transparent;
  border-top: 1px solid rgba(95, 212, 232, 0.12);
  border-bottom: 1px solid rgba(95, 212, 232, 0.12);
}

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  background: transparent;
}

.hero-grid,
.split-section,
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
/* Major display headings use the LSG stencil font. */
.hero-copy h1,
.page-hero h1,
.section-heading h2,
.hero-feature h2,
.coming-soon-inner h2,
.about-grid h2 {
  font-family: "LSG Stencil", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-subtitle,
.section-heading p,
.about-copy,
.product-card p,
.mini-card p,
.dashboard-card p,
.service-card p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 680px;
  font-size: 1.14rem;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 26px;
}

.trust-row {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-row span {
  padding: 10px 12px;
  border: 1px solid rgba(95, 212, 232, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(8, 20, 24, 0.72);
}

.trust-row strong {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-primary {
  color: #021013;
  background: var(--cyan);
  border-color: rgba(95, 212, 232, 0.7);
  box-shadow: 0 0 26px rgba(95, 212, 232, 0.2);
}

.btn-brass {
  color: #120d04;
  background: var(--brass);
  border-color: rgba(213, 173, 99, 0.75);
}

.btn-secondary,
.btn-card {
  color: var(--text);
  background: rgba(16, 44, 53, 0.82);
  border-color: var(--panel-line);
}

.btn-card {
  width: 100%;
}

.text-link {
  color: var(--cyan);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus {
  color: var(--brass);
}

.hero-feature {
  padding: 28px;
  border: 1px solid rgba(95, 212, 232, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(95, 212, 232, 0.12), transparent 48%),
    rgba(8, 20, 24, 0.92);
  box-shadow: var(--shadow);
}

.hero-feature img {
  width: min(280px, 78%);
  margin: 20px auto;
  filter: drop-shadow(0 0 28px rgba(95, 212, 232, 0.22));
}


.feature-topline,
.badge,
.large-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(213, 173, 99, 0.28);
  color: var(--brass);
  background: rgba(213, 173, 99, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.card-grid,
.product-grid,
.dashboard-grid,
.mini-card-grid {
  display: grid;
  gap: 18px;
}

.card-grid,
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.service-card,
.mini-card,
.dashboard-card,
.repair-panel {
  border: 1px solid rgba(95, 212, 232, 0.18);
  border-radius: var(--radius);
  background: rgba(13, 33, 40, 0.8);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.product-card {
  overflow: hidden;
}

.product-art {
  min-height: 190px;
  display: grid;
  place-items: center;
  color: rgba(238, 247, 248, 0.86);
  background:
    linear-gradient(135deg, rgba(95, 212, 232, 0.16), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 14px),
    #0a181d;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-art {
  color: var(--cyan);
}
/* Section eyebrow and category labels use the LSG stencil font. */
.eyebrow,
.feature-topline,
.badge,
.large-badge,
.product-art {
  font-family: "LSG Stencil", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.card-body,
.service-card,
.mini-card,
.dashboard-card {
  padding: 20px;
}

.badge {
  margin-bottom: 14px;
}

.mini-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  color: var(--black);
  background: var(--cyan);
  font-weight: 900;
}

.dashboard-section {
  position: relative;
}

.dashboard-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-card {
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(95, 212, 232, 0.12), transparent 68%),
    #0a1d23;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(95, 212, 232, 0.7);
}

.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.panel-stack {
  display: grid;
  gap: 12px;
}

.repair-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #0a1d23;
}

.repair-panel span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(213, 173, 99, 0.12);
  color: var(--brass);
  font-weight: 900;
}

.coming-soon {
  background: transparent;
}

.coming-soon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(213, 173, 99, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(213, 173, 99, 0.12), transparent 48%),
    #0b1b20;
}

.large-badge {
  min-height: 54px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.about-section {
  background: transparent;
}

.about-grid {
  align-items: start;
  padding-top: 20px;
  padding-bottom: 20px;
}

.about-copy {
  font-size: 1.04rem;
}

.site-footer {
  padding: 52px 0 26px;
  background: transparent;
  border-top: 1px solid rgba(95, 212, 232, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
}


.site-footer p {
  max-width: 430px;
  color: var(--muted);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted-strong);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 86px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(5, 11, 13, 0.98);
    border-bottom: 1px solid var(--panel-line);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .storefront-tools,
  .hero-grid,
  .split-section,
  .about-grid,
  .reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .card-grid,
  .product-grid,
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-nav {
    top: 147px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .announcement-inner {
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }

  .announcement-divider {
    display: none;
  }

  .brand small {
    display: none;
  }

  .storefront-tools {
    grid-template-columns: minmax(0, 1fr);
  }

  .category-nav {
    top: 140px;
  }

  .section,
  .hero {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.98;
    letter-spacing: 0.015em;
  }

  .card-grid,
  .product-grid,
  .dashboard-grid,
  .mini-card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-text {
    min-width: 0;
  }

  kbd {
    display: none;
  }
}


.section-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}


.page-hero {
  padding: 76px 0;
  background: transparent;
  border-bottom: 1px solid rgba(95, 212, 232, 0.14);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.page-hero-card {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(95, 212, 232, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 20, 24, 0.86);
  box-shadow: var(--shadow);
}

.page-hero-card img {
  width: min(220px, 70%);
  filter: drop-shadow(0 0 24px rgba(95, 212, 232, 0.2));
}


.page-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.main-nav a.active {
  color: var(--cyan);
  background: rgba(95, 212, 232, 0.1);
}

@media (max-width: 980px) {
  .page-hero-grid,
  .page-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 78px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .main-nav {
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .storefront-tools {
    align-items: stretch;
  }

  .storefront-tools .btn {
    white-space: nowrap;
  }

  .hero-feature,
  .page-hero-card {
    max-width: 560px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .section,
  .hero,
  .page-hero {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 3.6rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.75rem, 7vw, 2.65rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-actions,
  .section-action {
    align-items: stretch;
  }

  .hero-actions .btn,
  .section-action .btn {
    flex: 1 1 220px;
  }

  .dashboard-grid,
  .page-card-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 0.98rem;
    line-height: 1.1;
  }

  .menu-toggle {
    flex: 0 0 44px;
  }

  .main-nav {
    inset: 72px 0 auto 0;
  }

  .storefront-tools {
    gap: 10px;
    padding-bottom: 14px;
  }

  .storefront-tools .btn {
    width: 100%;
  }

  .search-visual {
    width: 100%;
    min-width: 0;
  }

  .category-nav {
    position: relative;
    top: auto;
  }

  .category-nav-inner {
    width: 100%;
    margin: 0;
    padding: 8px 0 10px;
    -webkit-overflow-scrolling: touch;
  }

  .category-nav a {
    flex: 0 0 auto;
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .page-hero-card,
  .hero-feature,
  .coming-soon-inner {
    padding: 24px;
  }

  .page-hero-card {
    min-height: 220px;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    align-items: stretch;
  }

  .trust-row span {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 20px, 1180px);
  }

  .announcement-inner {
    font-size: 0.84rem;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .main-nav {
    inset: 66px 0 auto 0;
  }

  .category-nav {
    top: auto;
  }

  .section,
  .hero,
  .page-hero {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(1.78rem, 12vw, 2.55rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.48rem, 9vw, 2.05rem);
    line-height: 1.12;
  }

  .hero-subtitle,
  .section-heading p,
  .about-copy {
    font-size: 0.98rem;
  }

  .hero-feature,
  .page-hero-card,
  .coming-soon-inner,
  .card-body,
  .service-card,
  .mini-card,
  .dashboard-card {
    padding: 18px;
  }

  .product-art {
    min-height: 150px;
    font-size: 1.55rem;
  }

  .footer-grid {
    gap: 22px;
  }
}


