:root {
  color-scheme: light;
  --ink: #101817;
  --muted: #53615e;
  --panel: #f6f4ee;
  --paper: #fffdf8;
  --forest: #0b1c18;
  --moss: #376b4c;
  --blue: #265f73;
  --amber: #c9892b;
  --line: #d9d5ca;
  --shadow: 0 24px 70px rgba(10, 24, 20, 0.16);
}

* {
  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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(6, 18, 15, 0.86), rgba(6, 18, 15, 0.12));
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.nav-contact {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 9px 15px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 15, 12, 0.9) 0%, rgba(5, 15, 12, 0.7) 34%, rgba(5, 15, 12, 0.15) 72%),
    linear-gradient(0deg, rgba(5, 15, 12, 0.75) 0%, rgba(5, 15, 12, 0.1) 46%);
}

.hero-content {
  position: relative;
  max-width: 840px;
  padding: 148px clamp(20px, 6vw, 76px) 12vh;
  color: #fff;
}

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

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

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.4vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 13px 19px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #121915;
  background: #f1b24f;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.button.full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 132px;
  padding: 28px clamp(20px, 4vw, 44px);
  background: var(--paper);
}

.trust-strip strong,
.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.trust-strip span,
.metrics span {
  color: var(--muted);
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 76px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

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

.section-copy p,
.about p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #26312f;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss), var(--blue));
}

.feature-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-band {
  color: #fff;
  background: #0b1c18;
}

.section-heading {
  max-width: 960px;
  margin-bottom: 42px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  min-height: 258px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.card p {
  color: rgba(255, 255, 255, 0.72);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: #f1b24f;
  font-weight: 900;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics div {
  padding-right: 24px;
}

.metrics strong {
  color: var(--moss);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1;
}

.purchase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 460px);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.pricing-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  box-shadow: var(--shadow);
}

.plan-name {
  margin-bottom: 8px;
  color: var(--moss);
  font-weight: 900;
}

.price {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.pricing-panel ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0 0 28px;
  color: #303936;
}

.fine-print {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about {
  max-width: 980px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 44px;
  color: #fff;
  background: linear-gradient(135deg, #0b1c18, #1d4030 56%, #265f73);
}

.contact .eyebrow {
  color: #f1b24f;
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
}

address {
  display: grid;
  gap: 12px;
  align-content: center;
  font-style: normal;
}

address a,
address span {
  display: block;
  color: #fff;
  text-decoration: none;
}

address a {
  font-size: 1.28rem;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 6vw, 76px);
  color: #fff;
  background: #07120f;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.not-found-page {
  min-height: 100vh;
  color: #fff;
  background: #0b1c18;
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 20px;
  max-width: 720px;
  padding: clamp(28px, 6vw, 76px);
}

.not-found h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.not-found p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.not-found .button {
  width: fit-content;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px 14px;
    font-size: 0.82rem;
  }

  .nav-contact {
    padding: 0;
    border: 0;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    padding-top: 170px;
  }

  .trust-strip,
  .split,
  .cards,
  .metrics,
  .purchase,
  .contact {
    grid-template-columns: 1fr;
  }

  .cards {
    gap: 12px;
  }

  .card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    display: grid;
  }

  .brand img {
    height: 38px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 820px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 15, 12, 0.92), rgba(5, 15, 12, 0.5)),
      linear-gradient(0deg, rgba(5, 15, 12, 0.78), rgba(5, 15, 12, 0.14));
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .button {
    width: 100%;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
