/* ─────────────────────────────────────────────────────────────
   DESERT RECON — Product Page (falls-park/index.html)
   Requires: theme.css, components.css
───────────────────────────────────────────────────────────── */

/* ── Nav ── */
nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 1rem clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-back {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(229, 226, 219, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.15s;
}
.nav-back:hover { color: var(--parchment); }

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 70svh;
  background: var(--obsidian);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  filter: saturate(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--obsidian) 0%, rgba(8,20,36,0.2) 60%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(5rem, 12vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
}
.hero-zone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--obsidian);
  border-radius: 2px;
  padding: 0.3rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-coords {
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: rgba(229,226,219,0.5);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.4rem, 9vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--parchment);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  max-width: 600px;
}
.hero-sub {
  font-size: clamp(0.92rem, 2.5vw, 1.1rem);
  color: rgba(229,226,219,0.65);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.hero-cta-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-urgency {
  font-family: var(--mono);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: rgba(229,226,219,0.4);
  letter-spacing: 0.06em;
  margin: 0;
}

/* ── Stats grid ── */
#stats {
  background: var(--navy);
  border-top: 1px solid rgba(75,94,107,0.3);
  border-bottom: 1px solid rgba(75,94,107,0.3);
  padding: 1.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 500px) {
  .stats-grid { grid-template-columns: repeat(5, 1fr); }
}
.stat-cell {
  padding: 0.75rem 0.5rem;
  border-right: 1px solid rgba(75,94,107,0.25);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:nth-child(2) { border-right: none; }
@media (min-width: 500px) {
  .stat-cell:nth-child(2) { border-right: 1px solid rgba(75,94,107,0.25); }
}
.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-key {
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dust-dim);
}

/* ── Map section ── */
#map-section {
  background: var(--obsidian);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.map-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.map-text { text-align: center; max-width: 480px; }
.map-text .eyebrow { margin-bottom: 0.5rem; }
.map-text h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--parchment);
  line-height: 1.15;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.map-text p { color: var(--dust); font-size: 1rem; }
.map-img-wrap {
  width: min(480px, 90vw);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(75,94,107,0.4);
  position: relative;
}
.map-img-wrap img { width: 100%; height: auto; display: block; filter: saturate(0.6) brightness(0.85); }
.map-overlay-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
}
.map-sector, .map-threat {
  background: rgba(8,20,36,0.85);
  border: 1px solid rgba(75,94,107,0.5);
  border-radius: 2px;
  padding: 0.3rem 0.6rem;
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.map-sector { color: var(--parchment); }
.map-threat { color: var(--orange); }
.map-caption {
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dust-dim);
  text-align: center;
}

/* ── Field intelligence section ── */
#what {
  background: var(--navy);
  border-top: 1px solid rgba(75,94,107,0.3);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.what-inner {
  display: grid;
  gap: 2rem;
}
@media (min-width: 680px) {
  .what-inner { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
}
.what-text .eyebrow { margin-bottom: 0.6rem; }
.what-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--parchment);
  margin-bottom: 0.85rem;
}
.mission-objective {
  background: rgba(8,20,36,0.6);
  border: 1px solid rgba(75,94,107,0.35);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.1rem;
  margin-bottom: 1rem;
}
.mission-objective-label {
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.mission-objective-text {
  font-size: 1rem;
  color: var(--dust);
  line-height: 1.65;
}
.mission-objective-text strong { color: var(--parchment); }

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-card {
  background: rgba(8,20,36,0.5);
  border: 1px solid rgba(75,94,107,0.35);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(75,94,107,0.2);
  border: 1px solid rgba(75,94,107,0.35);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1rem;
}
.feature-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}
.feature-text span {
  font-size: 1rem;
  color: var(--dust);
  line-height: 1.5;
}

/* ── How it works ── */
#how {
  background: var(--obsidian);
  border-top: 1px solid rgba(75,94,107,0.3);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.how-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.how-header .eyebrow { margin-bottom: 0.6rem; }
.how-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: -0.01em;
}
.steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--navy);
  border: 1px solid rgba(75,94,107,0.35);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.step::before, .step::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--orange);
  border-style: solid;
  opacity: 0.3;
}
.step::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.step::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 2px;
  background: rgba(224,192,151,0.1);
  border: 1px solid rgba(224,192,151,0.25);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  font-family: var(--mono);
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.step p {
  font-size: 1rem;
  color: var(--dust);
  line-height: 1.6;
}
.how-reassurance {
  margin-top: 1.5rem;
  background: var(--navy);
  border: 1px solid rgba(75,94,107,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--dust);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
}
.how-reassurance strong { color: var(--parchment); }

/* ── What's included ── */
#includes {
  background: var(--navy);
  border-top: 1px solid rgba(75,94,107,0.3);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.includes-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.includes-header .eyebrow { margin-bottom: 0.5rem; }
.includes-header h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: -0.01em;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 0.75rem;
}
.include-card {
  background: rgba(8,20,36,0.5);
  border: 1px solid rgba(75,94,107,0.3);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.include-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.include-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.15rem;
  letter-spacing: 0.01em;
}
.include-text span {
  font-size: 1rem;
  color: var(--dust);
  line-height: 1.5;
}

/* ── Deploy CTA ── */
#cta {
  background: var(--obsidian);
  border-top: 1px solid rgba(75,94,107,0.3);
  padding: clamp(3.5rem, 9vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224,192,151,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,192,151,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner .eyebrow { margin-bottom: 0.75rem; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.cta-inner p {
  color: var(--dust);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.cta-price {
  display: inline-block;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.cta-price-note {
  display: block;
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dust-dim);
  margin-bottom: 2rem;
}
.deploy-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--obsidian);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
  box-shadow: 0 8px 32px rgba(224,192,151,0.2);
}
.deploy-btn:hover { background: var(--orange-dim); }
.cta-meta {
  margin-top: 0.85rem;
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dust-dim);
}

/* ── Footer ── */
footer {
  background: rgba(8,20,36,0.95);
  border-top: 1px solid rgba(75,94,107,0.2);
  padding: 1.75rem;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dust-dim);
}
footer a { color: var(--dust); transition: color 0.15s; }
footer a:hover { color: var(--parchment); }
