@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit_semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter_medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter_semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --sage-900: #0f1b0f;
  --sage-800: #1e351d;
  --sage-700: #2d4f2b;
  --sage-600: #3d6a39;
  --sage-500: #4e8548;
  --sage-100: #d8e5d5;
  --sage-50: #f1f5f0;
  --gold-400: #ffca28;
  --gold-100: #ffecb3;
  --neutral-900: #1a1714;
  --neutral-700: #4a453d;
  --neutral-600: #6b6459;
  --neutral-300: #d4cfc8;
  --neutral-200: #e8e5e0;
  --neutral-100: #f3f1ee;
  --neutral-50: #faf9f7;
  --sky-50: #edf7ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(26, 23, 20, 0.14);
}

* {
  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(--neutral-900);
  background: var(--neutral-50);
  line-height: 1.58;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 5;
  background: var(--neutral-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 3;
  background: rgba(250, 249, 247, 0.9);
  border-bottom: 1px solid rgba(212, 207, 200, 0.7);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", ui-sans-serif, sans-serif;
  font-weight: 700;
  font-size: 21px;
  text-decoration: none;
  color: var(--sage-900);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--neutral-700);
}

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

.hero {
  min-height: min(860px, calc(100svh - 72px));
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 27, 15, 0.96) 0%, rgba(30, 53, 29, 0.9) 48%, rgba(30, 53, 29, 0.56) 100%),
    url("/assets/screenshots/01-light-meter-1080x1920.png") right center / auto 108% no-repeat,
    var(--sage-800);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(250, 249, 247, 0) 0%, var(--neutral-50) 100%);
}

.hero-copy {
  width: min(740px, 100%);
  padding: 64px 0 70px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-100);
}

h1,
h2,
h3 {
  font-family: "Outfit", ui-sans-serif, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 8vw, 88px);
  max-width: 720px;
}

.lead {
  margin: 0;
  max-width: 650px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.button-primary {
  color: var(--neutral-900);
  background: var(--gold-400);
}

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

.hero-proof {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(15, 27, 15, 0.28);
}

.screens {
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

.screen-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.phone-shot {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.phone-shot img {
  border-radius: 6px;
  border: 1px solid var(--neutral-100);
}

.section {
  padding: 82px 0;
}

.section-tight {
  padding: 60px 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--sage-600);
  font-weight: 800;
}

.section h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  max-width: 780px;
}

.section-intro {
  max-width: 740px;
  margin: 18px 0 0;
  font-size: 18px;
  color: var(--neutral-600);
}

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

.feature {
  min-height: 210px;
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.feature p {
  margin: 0;
  color: var(--neutral-600);
}

.band {
  background: var(--sage-50);
  border-top: 1px solid var(--sage-100);
  border-bottom: 1px solid var(--sage-100);
}

.workflow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.step-list {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(78, 133, 72, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--sage-600);
  color: var(--white);
  font-weight: 800;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: var(--neutral-600);
}

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

.trust-item {
  border-top: 1px solid var(--neutral-300);
  padding-top: 18px;
}

.trust-item strong {
  display: block;
  font-family: "Outfit", ui-sans-serif, sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.trust-item span {
  color: var(--neutral-600);
}

.locale-grid {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.locale-grid a {
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  padding: 8px 11px;
  text-decoration: none;
  background: var(--white);
  color: var(--neutral-700);
  font-size: 14px;
}

.final-cta {
  padding: 78px 0 86px;
  background: var(--sage-800);
  color: var(--white);
}

.final-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 58px);
}

.final-cta p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

footer {
  padding: 36px 0;
  color: var(--neutral-600);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--neutral-700);
}

.article {
  padding: 72px 0 90px;
}

.article-body {
  max-width: 820px;
}

.article-body h1 {
  color: var(--sage-900);
}

.article-body h2 {
  margin-top: 42px;
  font-size: 30px;
}

.article-body p,
.article-body li {
  color: var(--neutral-700);
  font-size: 17px;
}

.article-body li + li {
  margin-top: 8px;
}

@media (max-width: 860px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    min-height: 720px;
    background-position: 64% center;
    background-size: auto 106%;
  }

  .hero-copy {
    padding: 64px 0 70px;
  }

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

  .feature-grid,
  .workflow,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .final-cta .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .nav-inner {
    min-height: 64px;
  }

  .brand {
    font-size: 19px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 690px;
    background-position: 62% center;
    background-size: auto 104%;
  }

  .hero-copy {
    width: min(330px, 100%);
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero-proof {
    display: none;
  }

  .button {
    width: 100%;
  }

  .nav .button {
    width: auto;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
  }

  h1 {
    max-width: 330px;
    font-size: 34px;
  }

  .lead {
    max-width: 330px;
    font-size: 16px;
  }

  .screens {
    margin-top: 0;
    padding-top: 18px;
  }

  .screen-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .phone-shot {
    flex: 0 0 72%;
    scroll-snap-align: center;
  }

  .section {
    padding: 62px 0;
  }
}
