:root {
  --bg: #070b0f;
  --bg-2: #0b1116;
  --surface: #111820;
  --surface-2: #151d24;
  --line: #27333a;
  --line-strong: #3e4b50;
  --text: #f2f4ec;
  --muted: #a9b2a8;
  --quiet: #79867f;
  --accent: #c9a24a;
  --signal: #8faa69;
  --steel: #8d9aa1;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(7, 11, 15, 0.96), rgba(7, 11, 15, 0.98)),
    url("assets/images/camo-background.webp") center top / cover fixed;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0;
}

body::selection {
  background: rgba(201, 162, 74, 0.38);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--bg);
  padding: 10px 14px;
  color: var(--text);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 15, 0.76);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(201, 162, 74, 0.42);
  border-radius: 6px;
  background: rgba(17, 24, 32, 0.74);
  color: var(--accent);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-mark path:first-child {
  fill: rgba(201, 162, 74, 0.12);
  stroke: currentColor;
  stroke-width: 1.6;
}

.brand-mark path:last-child {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.4;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--quiet);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 9px 12px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 8px;
  border-color: rgba(143, 170, 105, 0.42);
  background: rgba(143, 170, 105, 0.13);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 74px 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, 0.86), rgba(7, 11, 15, 0.56) 48%, rgba(7, 11, 15, 0.94)),
    url("assets/images/camo-background.webp") center / cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 92%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  gap: 52px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

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

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

h1 {
  margin-bottom: 14px;
  font-size: 5.6rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-deck {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1.22;
  font-weight: 650;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 11px 16px;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  border-color: rgba(201, 162, 74, 0.5);
  background: linear-gradient(180deg, #d6ad52, #a77c2e);
  color: #091017;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-media {
  position: relative;
  aspect-ratio: 1.18;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 11, 15, 0.05), rgba(7, 11, 15, 0.62)),
    radial-gradient(circle at 70% 22%, rgba(143, 170, 105, 0.18), transparent 34%);
}

.scope-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(242, 244, 236, 0.18);
}

.corner {
  position: absolute;
  width: 38px;
  height: 38px;
  border-color: var(--accent);
}

.corner-a {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.corner-b {
  top: -1px;
  right: -1px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.corner-c {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.corner-d {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.telemetry-readout {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(7, 11, 15, 0.7);
  color: var(--text);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.74rem;
}

.telemetry-readout span {
  padding: 10px 11px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 38px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(9, 15, 20, 0.72);
  color: var(--muted);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.78rem;
}

.hero-strip span {
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 13px 14px;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section,
.product-section,
.about-section,
.field-note,
.contact-section {
  padding: 82px 24px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: 64px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.section-heading h2,
.product-header h2,
.about-copy h2,
.field-copy h2,
.contact-inner h2 {
  margin-bottom: 0;
  font-size: 2.9rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-copy {
  border-left: 1px solid rgba(143, 170, 105, 0.34);
  padding-left: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.92fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
}

.product-media {
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--surface);
}

.product-media img {
  height: 100%;
  object-fit: cover;
}

.product-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  background:
    linear-gradient(180deg, rgba(21, 29, 36, 0.96), rgba(11, 17, 22, 0.98)),
    url("assets/images/camo-background.webp") center / cover;
  padding: 42px;
}

.product-header p,
.about-copy p,
.field-copy p,
.contact-inner p {
  color: var(--muted);
  font-size: 1.03rem;
}

.spec-list {
  display: grid;
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

.spec-row span {
  color: var(--quiet);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.78rem;
}

.spec-row strong {
  color: var(--text);
  font-size: 0.98rem;
}

.store-note {
  color: var(--quiet);
  font-size: 0.9rem;
}

.approach {
  max-width: var(--max);
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.approach-grid article {
  min-height: 260px;
  background: rgba(13, 19, 25, 0.94);
  padding: 30px;
}

.step {
  color: var(--signal);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.82rem;
}

.approach-grid h3 {
  margin: 44px 0 12px;
  font-size: 1.35rem;
}

.approach-grid p {
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.about-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 54%, rgba(7, 11, 15, 0.78)),
    linear-gradient(90deg, rgba(7, 11, 15, 0.24), transparent);
}

.about-media img {
  aspect-ratio: 0.8;
  height: auto;
  object-fit: cover;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.credentials span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.field-note {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.78fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 16px;
}

.field-image {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius) 0 0 var(--radius);
}

.field-image img {
  height: 100%;
  object-fit: cover;
}

.field-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface);
  padding: 40px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, 0.95), rgba(7, 11, 15, 0.68), rgba(7, 11, 15, 0.97)),
    url("assets/images/recon-landscape.webp") center / cover;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 11, 15, 0.78);
  padding: 26px;
}

.email-link {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1.24rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--accent);
  outline: none;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 42px;
  color: var(--quiet);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .site-header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: #070b0f;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-grid,
  .section-intro,
  .product-section,
  .about-section,
  .field-note,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .about-section {
    gap: 34px;
  }

  h1 {
    font-size: 4.2rem;
  }

  .hero-deck {
    font-size: 1.32rem;
  }

  .section-heading h2,
  .product-header h2,
  .about-copy h2,
  .field-copy h2,
  .contact-inner h2 {
    font-size: 2.25rem;
  }

  .hero-media {
    aspect-ratio: 1.35;
  }

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

  .hero-strip span:nth-child(2) {
    border-right: 0;
  }

  .hero-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .intro-copy {
    border-left: 0;
    padding-left: 0;
  }

  .product-media,
  .field-image {
    min-height: 360px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .product-panel,
  .field-copy {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 0 0 var(--radius) var(--radius);
  }

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

  .approach-grid article {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .brand-copy small {
    display: none;
  }

  .hero,
  .section,
  .product-section,
  .about-section,
  .field-note,
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-intro {
    padding-top: 38px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 20px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .hero-deck {
    margin-bottom: 12px;
    font-size: 1.14rem;
  }

  .hero-text {
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .section-heading h2,
  .product-header h2,
  .about-copy h2,
  .field-copy h2,
  .contact-inner h2 {
    font-size: 1.92rem;
  }

  .hero-actions,
  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    aspect-ratio: 1.52;
  }

  .hero-media img {
    object-position: center 34%;
  }

  .scope-frame {
    inset: 12px;
  }

  .telemetry-readout {
    grid-template-columns: 1fr;
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-size: 0.68rem;
  }

  .telemetry-readout span {
    padding: 7px 9px;
  }

  .hero-strip {
    display: none;
  }

  .product-panel,
  .field-copy,
  .approach-grid article,
  .contact-card {
    padding: 24px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-media img {
    aspect-ratio: 0.95;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
