:root {
  --ink: #101513;
  --muted: #5a6660;
  --paper: #f5f2ec;
  --paper-strong: #fffaf1;
  --line: rgba(16, 21, 19, 0.16);
  --forest: #0f2a23;
  --mint: #9bd8bf;
  --amber: #f0b14a;
  --clay: #c86d4d;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(12, 21, 17, 0.18);
  color-scheme: light;
  font-family: "Avenir Next", "Trebuchet MS", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 18px 32px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header::before {
  background: rgba(245, 242, 236, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  content: "";
  inset: 10px 18px;
  position: absolute;
  z-index: -1;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 22px;
  color: rgba(16, 21, 19, 0.78);
  font-size: 14px;
  font-weight: 700;
}

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

.hero {
  background: #0b1713;
  color: var(--white);
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("/assets/hero-map.jpg");
  background-position: center 38%;
  background-size: cover;
  filter: saturate(0.86) contrast(1.05);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 16, 13, 0.94), rgba(7, 16, 13, 0.54) 50%, rgba(7, 16, 13, 0.22)),
    linear-gradient(180deg, rgba(7, 16, 13, 0.10), rgba(7, 16, 13, 0.88));
}

.hero-content {
  margin: 0 auto;
  max-width: 1180px;
  min-height: 92vh;
  padding: 178px 32px 118px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0 0 24px;
  max-width: 780px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.48;
  margin: 0;
  max-width: 710px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--mint);
  color: #07100d;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button.store {
  background: var(--white);
  color: var(--ink);
}

.status-strip {
  background: var(--forest);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.status-strip div {
  background: rgba(255, 255, 255, 0.04);
  min-height: 132px;
  padding: 30px 32px;
}

.status-strip strong,
.status-strip span {
  display: block;
}

.status-strip strong {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.status-strip span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 96px 32px;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.intro {
  background:
    repeating-linear-gradient(0deg, rgba(16, 21, 19, 0.035) 0 1px, transparent 1px 36px),
    var(--paper);
}

.intro .section-inner {
  max-width: 880px;
}

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

.section p {
  color: var(--muted);
  font-size: 18px;
  margin: 22px 0 0;
}

.feature-band {
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(16, 21, 19, 0.12);
  border-radius: 8px;
  min-height: 236px;
  padding: 24px;
}

.feature-index {
  color: var(--clay);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
}

.feature-card h3 {
  font-size: 22px;
  line-height: 1.18;
  margin: 0;
}

.feature-card p {
  font-size: 15px;
  margin-top: 12px;
}

.screens {
  background: #e8eee7;
  overflow: hidden;
}

.screens-heading {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.screens-heading p:last-child {
  margin-bottom: 7px;
}

.phone-row {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
}

.phone-shot {
  margin: 0;
}

.phone-shot img {
  aspect-ratio: 1125 / 2436;
  border: 9px solid #0b0d0c;
  border-radius: 34px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.phone-shot figcaption {
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
  margin-top: 14px;
  text-align: center;
}

.privacy {
  background: var(--forest);
  color: var(--white);
}

.privacy .section-kicker {
  color: var(--mint);
}

.privacy h2 {
  color: var(--white);
}

.privacy-layout {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.privacy-copy {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 32px;
}

.privacy-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.privacy-copy p:first-child {
  margin-top: 0;
}

.final-cta {
  background: var(--paper);
  text-align: center;
}

.final-cta .section-inner {
  max-width: 800px;
}

.final-cta .button {
  margin-top: 28px;
}

.site-footer {
  align-items: center;
  background: #0b0d0c;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px 32px;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding: 150px 22px 88px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .status-strip,
  .feature-grid,
  .screens-heading,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .status-strip div {
    min-height: 108px;
    padding: 24px 22px;
  }

  .section {
    padding: 72px 22px;
  }

  .section h2 {
    font-size: 36px;
  }

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

  .privacy-copy {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding-left: 0;
    padding-top: 28px;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 16px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    min-height: 88vh;
    padding-top: 132px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .phone-row {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .phone-shot {
    margin: 0 auto;
    max-width: 260px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
