:root {
  --pine-black: #10140f;
  --deep-pine: #233025;
  --pineland-green: #344333;
  --field-olive: #5b684d;
  --coyote-tan: #b2a075;
  --map-bone: #e8e0d0;
  --smoke-gray: #7b8076;
  --iron-gray: #2f3836;
  --clay-mark: #a75a3e;
  --line: rgba(16, 20, 15, 0.18);
  --shadow: 0 18px 50px rgba(16, 20, 15, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pine-black);
  background:
    linear-gradient(rgba(16, 20, 15, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 15, 0.05) 1px, transparent 1px),
    var(--map-bone);
  background-size: 72px 72px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 58px);
  color: var(--map-bone);
  background: rgba(16, 20, 15, 0.94);
  border-bottom: 1px solid rgba(178, 160, 117, 0.5);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 700;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy small {
  color: var(--coyote-tan);
  font: 700 0.62rem/1.1 Consolas, "Courier New", monospace;
  letter-spacing: 0.16em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.92rem;
}

nav a {
  color: var(--map-bone);
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--coyote-tan);
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--map-bone);
  background: var(--pine-black);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(91, 104, 77, 0.32), transparent 32%),
    linear-gradient(135deg, var(--deep-pine), var(--pine-black) 72%);
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 9vh 0 7vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coyote-tan);
  font: 700 0.78rem/1.2 Consolas, "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(232, 224, 208, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--coyote-tan);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.15;
}

.button.primary {
  color: var(--pine-black);
  background: var(--coyote-tan);
}

.button.secondary {
  color: var(--map-bone);
  background: rgba(35, 48, 37, 0.72);
}

.button.ghost {
  color: var(--deep-pine);
  background: transparent;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin: 46px 0 0;
  border: 1px solid rgba(178, 160, 117, 0.58);
  background: rgba(178, 160, 117, 0.58);
}

.hero-stats div {
  padding: 16px;
  background: rgba(16, 20, 15, 0.72);
}

.hero-stats dt {
  color: var(--map-bone);
  font: 700 1.35rem/1 Bahnschrift, "Segoe UI", sans-serif;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(232, 224, 208, 0.72);
  font-size: 0.9rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--deep-pine);
  color: var(--map-bone);
  border-top: 1px solid var(--coyote-tan);
  border-bottom: 1px solid var(--coyote-tan);
}

.feature-strip p {
  margin: 0;
  padding: 16px;
  text-align: center;
  background: var(--deep-pine);
  font-weight: 700;
}

.store-section,
.how {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2,
.bundle-band h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--iron-gray);
  font-size: 1rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 24px;
}

.filter {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--pine-black);
  background: transparent;
  border: 1px solid var(--field-olive);
  font: 700 0.88rem/1 "Segoe UI", sans-serif;
  cursor: pointer;
}

.filter.active,
.filter:hover,
.filter:focus-visible {
  color: var(--map-bone);
  background: var(--deep-pine);
}

input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--pine-black);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--field-olive);
  font: 600 1rem/1.2 "Segoe UI", sans-serif;
}

.coupon-entry {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 16px;
  background: rgba(232, 224, 208, 0.78);
  border: 1px solid var(--line);
}

.coupon-entry label {
  font-weight: 800;
}

.coupon-entry label span {
  color: var(--iron-gray);
  font-weight: 600;
}

.coupon-entry > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.coupon-entry input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--pine-black);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--field-olive);
  font: 700 1rem/1.2 "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.coupon-entry p {
  margin: 0;
  color: var(--iron-gray);
  font-size: 0.88rem;
}

.coupon-entry .coupon-message {
  min-height: 20px;
  color: var(--clay-mark);
  font-weight: 800;
}

.checkout-status {
  min-height: 22px;
  margin: -6px 0 18px;
  color: var(--clay-mark);
  font-weight: 700;
}

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

.product {
  display: grid;
  grid-template-rows: 255px 1fr;
  min-height: 100%;
  overflow: hidden;
  background: rgba(232, 224, 208, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(16, 20, 15, 0.1);
}

.product.featured,
.product.complete {
  border-color: var(--coyote-tan);
  box-shadow: var(--shadow);
}

.product.compact {
  grid-template-rows: 215px 1fr;
}

.product[hidden] {
  display: none;
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--deep-pine);
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.tag {
  width: fit-content;
  margin: 0;
  padding: 5px 8px;
  color: var(--map-bone);
  background: var(--deep-pine);
  font: 700 0.72rem/1 Consolas, "Courier New", monospace;
  text-transform: uppercase;
}

.product h3 {
  font-size: 1.45rem;
}

.product p:not(.tag) {
  margin: 0;
  color: var(--iron-gray);
  font-size: 0.94rem;
}

.includes {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: var(--iron-gray);
  font-size: 0.88rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.price {
  font: 800 1.7rem/1 Bahnschrift, "Segoe UI", sans-serif;
}

.subprice {
  color: var(--field-olive);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: right;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-links a {
  padding: 6px 8px;
  color: var(--deep-pine);
  border: 1px solid var(--field-olive);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}

.buy-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.buy-button.loading {
  pointer-events: none;
}

.bundle-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  padding: 56px clamp(18px, 6vw, 72px);
  color: var(--map-bone);
  background: var(--pine-black);
  border-block: 1px solid var(--coyote-tan);
}

.ladder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(178, 160, 117, 0.7);
}

.ladder div {
  padding: 18px;
  background: var(--deep-pine);
}

.ladder span {
  color: var(--coyote-tan);
  font: 800 1.5rem/1 Bahnschrift, "Segoe UI", sans-serif;
}

.ladder p {
  margin: 8px 0 0;
  color: rgba(232, 224, 208, 0.78);
}

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

.steps div {
  padding: 22px;
  background: rgba(232, 224, 208, 0.74);
  border: 1px solid var(--line);
}

.steps span {
  color: var(--clay-mark);
  font: 800 1rem/1 Consolas, "Courier New", monospace;
}

.steps h3 {
  margin-top: 12px;
  font-size: 1.45rem;
}

.steps p {
  margin: 10px 0 0;
  color: var(--iron-gray);
}

footer {
  padding: 28px clamp(18px, 4vw, 58px);
  color: rgba(232, 224, 208, 0.75);
  background: var(--pine-black);
  font-size: 0.82rem;
}

footer p {
  margin: 4px 0;
}

.success-panel {
  min-height: calc(100vh - 124px);
  display: grid;
  align-content: center;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0;
}

.success-panel h1 {
  color: var(--pine-black);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.success-panel .hero-copy {
  color: var(--iron-gray);
}

@media (max-width: 960px) {
  .product-grid,
  .steps,
  .bundle-band,
  .ladder {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats,
  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 760px;
  }

  .hero-actions,
  .price-row,
  .coupon-entry > div,
  .inline-controls {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .button,
  .filter {
    width: 100%;
  }

  .hero-stats,
  .feature-strip,
  .product-grid,
  .steps,
  .bundle-band,
  .ladder {
    grid-template-columns: 1fr;
  }

  .product {
    grid-template-rows: 220px 1fr;
  }

  .subprice {
    text-align: left;
  }
}
