:root {
  color-scheme: dark;
  --bg: #07110e;
  --bg-2: #0d1d17;
  --panel: rgba(15, 32, 27, 0.76);
  --panel-strong: rgba(18, 42, 34, 0.9);
  --line: rgba(205, 231, 211, 0.15);
  --text: #f3f6ed;
  --muted: #aebdaf;
  --pine: #245c45;
  --pine-bright: #42a071;
  --amber: #f5b85c;
  --red: #e84545;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(232, 69, 69, 0.14), transparent 28rem),
    radial-gradient(circle at 16% 18%, rgba(66, 160, 113, 0.22), transparent 30rem),
    linear-gradient(160deg, #030806 0%, var(--bg) 42%, #102018 100%);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(245, 184, 92, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 184, 92, 0.045) 1px, transparent 1px),
    repeating-radial-gradient(circle at 70% 18%, transparent 0 36px, rgba(174, 189, 175, 0.07) 37px, transparent 39px);
  background-size: 64px 64px, 64px 64px, 180px 180px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
  pointer-events: none;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 13, 10, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(245, 184, 92, 0.1), inset 0 0 0 4px rgba(232, 69, 69, 0.35);
}

.nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.nav a,
.site-footer a,
.text-link {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--text);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: clamp(2rem, 7vw, 5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: clamp(0.5rem, 2vw, 1.5rem) 0;
  z-index: -1;
  border: 1px solid rgba(205, 231, 211, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 8, 6, 0.9) 0%, rgba(3, 8, 6, 0.72) 42%, rgba(3, 8, 6, 0.52) 100%),
    linear-gradient(180deg, rgba(3, 8, 6, 0.2), rgba(3, 8, 6, 0.86)),
    url("/assets/hero-wilderness-background.webp") center / cover no-repeat,
    linear-gradient(160deg, #030806 0%, var(--bg) 42%, #102018 100%);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.75);
  opacity: 0.84;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7.25rem);
  line-height: 0.88;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  margin: 0 0 0.8rem;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 620px;
  color: #dce7d9;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
}

.button-primary {
  color: #190b08;
  background: linear-gradient(135deg, var(--amber), #ffdf9b);
  box-shadow: 0 16px 34px rgba(245, 184, 92, 0.18);
}

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

.trust-line,
.fine-print,
.notice {
  font-size: 0.92rem;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}

.signal-ring {
  position: absolute;
  border: 1px solid rgba(245, 184, 92, 0.16);
  border-radius: 50%;
}

.ring-one {
  width: 420px;
  height: 420px;
}

.ring-two {
  width: 560px;
  height: 560px;
  border-color: rgba(66, 160, 113, 0.11);
}

.phone {
  position: relative;
  width: min(310px, 86vw);
  aspect-ratio: 0.49;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2.3rem;
  background: linear-gradient(160deg, #17251f, #020605);
  box-shadow: var(--shadow);
}

.phone-speaker {
  position: absolute;
  top: 0.72rem;
  left: 50%;
  width: 5.5rem;
  height: 0.35rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #030806;
}

.phone-screen {
  height: 100%;
  padding: 3.1rem 1rem 1rem;
  border-radius: 1.7rem;
  background:
    linear-gradient(rgba(245, 184, 92, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 184, 92, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #0c1814, #06100d);
  background-size: 28px 28px, 28px 28px, auto;
}

.screen-top,
.status-card {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.screen-top span,
.status-card span {
  color: var(--muted);
}

.screen-top strong {
  color: var(--pine-bright);
}

.map-panel {
  position: relative;
  height: 190px;
  margin: 1.1rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    repeating-radial-gradient(circle at 52% 45%, transparent 0 25px, rgba(245, 184, 92, 0.12) 26px, transparent 28px),
    radial-gradient(circle at 78% 25%, rgba(232, 69, 69, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(36, 92, 69, 0.42), rgba(0, 0, 0, 0.2));
}

.route-line {
  position: absolute;
  left: 27%;
  top: 26%;
  width: 46%;
  height: 48%;
  border-right: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
  transform: skew(-16deg);
}

.route-dot {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 7px rgba(245, 184, 92, 0.16);
}

.route-dot.start {
  left: 25%;
  top: 23%;
}

.route-dot.end {
  right: 23%;
  bottom: 21%;
  background: var(--red);
}

.status-card {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.sos-control {
  display: grid;
  place-items: center;
  height: 3.4rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  color: #fff6f0;
  font-weight: 900;
  background: linear-gradient(135deg, #8e1f1f, var(--red));
}

.narrow {
  max-width: 820px;
}

.narrow p,
.privacy-band p {
  font-size: 1.14rem;
}

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

.card-grid,
.pricing-grid,
.support-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.price-card,
.legal-content article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
}

.card-number,
.badge {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-grid,
.tag-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.feature-grid div,
.tag-list li {
  min-height: 4.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #dce7d9;
  background: rgba(255, 255, 255, 0.045);
}

.split-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-band,
.final-cta {
  text-align: center;
}

.privacy-band .section-heading,
.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
}

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

.price-card {
  min-height: 210px;
}

.price-card.featured {
  border-color: rgba(245, 184, 92, 0.45);
  background: linear-gradient(160deg, rgba(66, 160, 113, 0.22), rgba(245, 184, 92, 0.1));
}

.price {
  margin: 1rem 0 0;
  color: var(--text);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

summary {
  cursor: pointer;
  padding: 1rem;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 5, 0.45);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.legal-page {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
}

.legal-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 2.5rem;
}

.legal-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.legal-content {
  padding-bottom: 5rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content a {
  color: #ffd38a;
}

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

.notice {
  display: inline-block;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(245, 184, 92, 0.35);
  border-radius: var(--radius);
  color: #ffe0a3;
  background: rgba(245, 184, 92, 0.08);
}

.not-found-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.not-found {
  width: min(680px, calc(100% - 2rem));
  text-align: center;
}

.not-found .brand {
  justify-content: center;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .hero,
  .split-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .phone-stage {
    min-height: 560px;
  }

  .three,
  .feature-grid,
  .tag-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav {
    width: 100%;
  }

  .section {
    width: min(100% - 1rem, 1120px);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .button {
    width: 100%;
  }

  .phone-stage {
    min-height: 500px;
    overflow: hidden;
  }

  .ring-one {
    width: 330px;
    height: 330px;
  }

  .ring-two {
    width: 430px;
    height: 430px;
  }

  .three,
  .feature-grid,
  .tag-list,
  .pricing-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid div,
  .tag-list li {
    min-height: auto;
  }
}
