@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&display=swap');

:root {
  --forest: #173f2b;
  --forest-2: #24543a;
  --moss: #77834b;
  --moss-light: #a8b579;
  --cream: #f4f1e6;
  --paper: #faf8ef;
  --ink: #203128;
  --brown: #8b6748;
  --gold: #e4b451;
  --coral: #e87961;
  --blue: #7fa9ad;
  --line: rgba(23, 63, 43, .17);
  --shadow: 0 22px 60px rgba(40, 47, 30, .11);
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(37, 57, 42, .055) .6px, transparent .6px);
  background-size: 6px 6px;
  z-index: 100;
  opacity: .7;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: .12;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.site-header {
  width: min(1240px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 30;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.7px;
  justify-self: start;
  line-height: 1;
  overflow: visible;
}

.wordmark-text {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.wordmark-letter {
  display: inline-block;
  height: 1.05em;
  width: auto;
  margin-top: -7px;
  margin-right: -8px;
  margin-left: -.12em;
  transform: translateY(.02em);
  object-fit: contain;
  flex-shrink: 0;
}

.wordmark-footer .wordmark-letter {
  filter: invert(1) brightness(1.05);
}

nav { display: flex; gap: 34px; }
nav a {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
nav a::after {
  content: "";
  width: 0;
  height: 6px;
  border-radius: 99px 99px 0 0;
  background: var(--moss-light);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transition: .25s;
}
nav a:hover::after { width: 18px; left: calc(50% - 9px); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 99px;
  font-weight: 700;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { padding: 12px 18px; font-size: 13px; justify-self: end; }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.28); }
.button-primary {
  background: var(--forest);
  color: white;
  padding: 17px 23px;
  box-shadow: 0 10px 25px rgba(23,63,43,.2);
}
.button-primary:hover { box-shadow: 0 14px 30px rgba(23,63,43,.28); }
.button-dark { background: var(--ink); color: white; padding: 15px 20px; font-size: 14px; }
.menu-button { display: none; }
.nav-cta { display: none; }

.hero {
  min-height: 700px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: 60px;
  position: relative;
  padding: 46px 0 78px;
}

.hero-copy { position: relative; z-index: 3; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}
.dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(232,121,97,.13);
}

h1, h2, h3 { font-family: "Fraunces", serif; line-height: .98; margin: 0; }
h1 {
  font-size: clamp(64px, 6.9vw, 104px);
  letter-spacing: -5px;
  margin: 23px 0 27px;
  color: var(--forest);
}
h1 em, h2 em { color: var(--moss); font-style: italic; font-weight: 600; }
.hero-copy > p {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.65;
  color: #506059;
  margin: 0 0 31px;
}
.hero-actions { display: flex; align-items: center; gap: 26px; }
.text-link { font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.text-link span { margin-left: 8px; }
.trust-row { display: flex; gap: 14px; align-items: center; margin-top: 48px; }
.trust-row p { margin: 0; font-size: 11px; line-height: 1.5; color: #68756f; }
.trust-row strong { color: var(--ink); }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  border: 2px solid var(--paper);
  margin-left: -7px;
  background: var(--brown);
}
.avatar-stack span:nth-child(2) { background: var(--coral); }
.avatar-stack span:nth-child(3) { background: var(--forest); }

.hero-art { position: relative; min-height: 550px; display: grid; place-items: center; }
.hero-blob {
  width: 540px;
  height: 540px;
  max-width: 100%;
  border-radius: 50% 42% 48% 45%;
  overflow: hidden;
  background: #f4f3e8;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  border: 1px solid rgba(23,63,43,.08);
  position: relative;
  z-index: 1;
}
.hero-blob::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(23,63,43,.16);
  border-radius: inherit;
}
.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.sun-orbit {
  position: absolute;
  width: 580px;
  height: 580px;
  max-width: calc(100vw - 40px);
  border: 1px dashed rgba(23,63,43,.24);
  border-radius: 50%;
  animation: orbit 38s linear infinite;
}
.sun-orbit span {
  position: absolute;
  padding: 6px 11px;
  border-radius: 99px;
  background: var(--paper);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--moss);
}
.sun-orbit span:nth-child(1) { top: 13%; left: 4%; }
.sun-orbit span:nth-child(2) { top: 52%; right: -5%; }
.sun-orbit span:nth-child(3) { bottom: 7%; left: 25%; }
@keyframes orbit { to { transform: rotate(360deg); } }

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,.89);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(23,63,43,.1);
  border-radius: 14px;
  padding: 10px 14px 10px 10px;
  box-shadow: 0 15px 35px rgba(28,45,32,.13);
}
.floating-note strong, .floating-note small { display: block; line-height: 1.4; }
.floating-note strong { font-size: 12px; }
.floating-note small { color: #758078; font-size: 9px; }
.note-icon {
  width: 31px; height: 31px; display: grid; place-items: center;
  border-radius: 9px; color: white; background: var(--coral);
}
.note-one { left: -20px; top: 26%; animation: float 5s ease-in-out infinite; }
.note-two { right: -5px; bottom: 18%; animation: float 5s .8s ease-in-out infinite; }
.note-two .note-icon { background: var(--moss); }
@keyframes float { 50% { transform: translateY(-9px) rotate(1deg); } }

.hero-moss { position: absolute; width: 110px; height: 80px; opacity: .5; pointer-events: none; }
.hero-moss::before, .hero-moss::after {
  content: ""; position: absolute; border-radius: 50% 50% 45% 45%; background: var(--moss-light);
}
.hero-moss::before { width: 70px; height: 24px; bottom: 0; }
.hero-moss::after { width: 35px; height: 17px; bottom: 12px; left: 51px; }
.hero-moss-left { left: -100px; bottom: 80px; transform: rotate(-15deg); }
.hero-moss-right { right: -100px; top: 60px; transform: rotate(165deg); }

.trail-strip {
  height: 56px;
  background: var(--forest);
  color: #d9e1c3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.3px;
  white-space: nowrap;
  transform: rotate(-1deg) scale(1.02);
}
.trail-strip i { color: var(--gold); font-style: normal; }

.section { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.apps { padding: 140px 0; }
.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.section-intro h2, .faq h2 { font-size: clamp(48px, 6vw, 76px); color: var(--forest); letter-spacing: -3px; margin-top: 12px; }
.section-intro > p { max-width: 410px; margin: 0 0 7px; color: #66736d; font-size: 16px; }

.app-card {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: #f7f4ea;
  box-shadow: 0 24px 70px rgba(26,52,34,.08);
  margin-bottom: 36px;
}
.app-visual { position: relative; overflow: hidden; display: grid; place-items: center; background: #dce3c6; }
.app-card-tags .app-visual::before {
  content: ""; position: absolute; inset: 8%;
  border: 1px solid rgba(23,63,43,.13); border-radius: 50%;
}
.app-visual img { width: 88%; height: 88%; object-fit: contain; mix-blend-mode: multiply; border-radius: 20px; }
.card-number {
  position: absolute; top: 24px; left: 27px; z-index: 3;
  font: 700 12px "DM Sans"; letter-spacing: 1px; color: var(--forest);
}
.app-content { padding: 64px 60px; display: flex; flex-direction: column; justify-content: center; }
.app-meta { display: flex; justify-content: space-between; align-items: center; font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; color: #778179; margin-bottom: 30px; }
.status { display: flex; align-items: center; gap: 7px; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(232,121,97,.12); }
.app-content h3 { font-size: clamp(48px, 5vw, 69px); color: var(--forest); letter-spacing: -3px; }
.app-subtitle { font-family: "Fraunces", serif; font-weight: 700; font-size: 20px; line-height: 1.25; margin: 13px 0 23px; color: #3e5548; }
.app-content > p:not(.app-subtitle) { font-size: 14px; color: #64716a; margin: 0; line-height: 1.7; }
.feature-list { list-style: none; padding: 0; margin: 26px 0 34px; font-size: 13px; display: grid; gap: 9px; }
.feature-list span { color: var(--moss); margin-right: 9px; font-weight: 800; }
.app-actions { display: flex; align-items: center; gap: 20px; }
.price { font-size: 10px; color: #788079; }
.price strong { color: var(--ink); font-size: 13px; }

.app-card-backtrail { background: #eef2e4; }
.app-card-backtrail .app-visual {
  background:
    radial-gradient(circle at 78% 18%, rgba(232, 121, 97, .14), transparent 36%),
    radial-gradient(circle at 18% 82%, rgba(119, 131, 75, .18), transparent 40%),
    #d7e0c4;
}
.app-card-backtrail .app-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(23, 63, 43, .12);
  border-radius: 50%;
}
.app-card-backtrail .app-visual img {
  width: min(78%, 340px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  mix-blend-mode: normal;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

.app-card-lure { background: #f0e8dc; }
.app-card-lure .app-visual {
  order: 2;
  background:
    radial-gradient(circle at 18% 20%, rgba(168, 181, 121, .22), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(139, 103, 72, .14), transparent 38%),
    #efe6d8;
  align-content: center;
  padding: 36px 28px;
}
.lure-demo {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  display: grid;
  gap: 18px;
}
.lure-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lure-demo-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8b6748;
}
.lure-demo-badge {
  flex-shrink: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #4d5f53;
  font-size: 10px;
  font-weight: 700;
}
.lure-locations {
  display: grid;
  gap: 8px;
}
.lure-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 253, 247, .72);
  border: 1px solid rgba(125, 104, 72, .14);
  border-radius: 12px;
}
.lure-location-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.lure-location-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.lure-location-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: #e7efd8;
  color: #2f4a34;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.lure-location-tag.is-retail {
  background: #ece7e0;
  color: #5d5650;
}
.lure-location-qty {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--forest);
}
.lure-demo-control { display: grid; gap: 10px; }
.lure-demo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--forest);
}
.lure-demo-slider-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}
.lure-stock-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--moss) var(--lure-progress, 15%), #d7d2c6 var(--lure-progress, 15%));
  outline: none;
}
.lure-stock-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forest-2);
  border: 2px solid #f7f2e8;
  box-shadow: 0 2px 8px rgba(23, 63, 43, .22);
  cursor: pointer;
}
.lure-stock-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forest-2);
  border: 2px solid #f7f2e8;
  box-shadow: 0 2px 8px rgba(23, 63, 43, .22);
  cursor: pointer;
}
.lure-demo-units {
  min-width: 4.5rem;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.lure-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.lure-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lure-toggle-ui {
  position: relative;
  width: 40px;
  height: 24px;
  margin-top: 1px;
  border-radius: 999px;
  background: #cfc7b8;
  transition: background .2s ease;
}
.lure-toggle-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fffdf7;
  box-shadow: 0 1px 4px rgba(40, 47, 30, .2);
  transition: transform .2s ease;
}
.lure-toggle input:checked + .lure-toggle-ui {
  background: var(--moss);
}
.lure-toggle input:checked + .lure-toggle-ui::after {
  transform: translateX(16px);
}
.lure-toggle input:focus-visible + .lure-toggle-ui {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}
.lure-toggle-copy {
  display: grid;
  gap: 2px;
}
.lure-toggle-copy strong {
  font-size: 13px;
  color: var(--ink);
}
.lure-toggle-copy span {
  font-size: 11px;
  line-height: 1.35;
  color: #6b7368;
}
.lure-product {
  background: #fffdf7;
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 40px rgba(40, 47, 30, .12);
  display: grid;
  gap: 12px;
}
.lure-product-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a9288;
}
.lure-product-price {
  color: var(--forest);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  font-size: 15px;
}
.lure-product h4 {
  margin: 0;
  font: 700 clamp(26px, 3vw, 34px)/1.1 "Fraunces", serif;
  letter-spacing: -1.2px;
  color: var(--ink);
}
.lure-seen {
  margin: 0;
  font-size: 12px;
  color: #6b7368;
}
.lure-seen strong {
  color: var(--forest);
}
.lure-status {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.lure-status p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}
.lure-status-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 5px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.2 11.4 2.8 8l1.1-1.1 2.3 2.3 5.9-5.9L13.2 4.4z'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.2 11.4 2.8 8l1.1-1.1 2.3 2.3 5.9-5.9L13.2 4.4z'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.lure-status[data-state="healthy"] {
  background: #e7efd8;
  border-color: #c7d6a8;
  color: #2f4a34;
}
.lure-status[data-state="healthy"] .lure-status-icon { background: #5c8a4d; color: #e7efd8; }
.lure-status[data-state="low"] {
  background: #f7e4cc;
  border-color: #e4c08a;
  color: #6a4320;
}
.lure-status[data-state="low"] .lure-status-icon {
  background: #c9842d;
  color: #f7e4cc;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 1.5 14.5 13h-13zm0 3.2-3.7 6.3h7.4zM7.3 6.8h1.4v3.1H7.3zm0 3.8h1.4V12H7.3z'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 1.5 14.5 13h-13zm0 3.2-3.7 6.3h7.4zM7.3 6.8h1.4v3.1H7.3zm0 3.8h1.4V12H7.3z'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.lure-status[data-state="out"] {
  background: #ece7e0;
  border-color: #d5cfc5;
  color: #5d5650;
}
.lure-status[data-state="out"] .lure-status-icon {
  background: #8a8178;
  color: #ece7e0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M3.2 2.1 13.9 12.8l-1.1 1.1L2.1 3.2zm9.6 0 1.1 1.1L4.3 13.9 3.2 12.8z'/%3E%3C/svg%3E") center / 11px 11px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M3.2 2.1 13.9 12.8l-1.1 1.1L2.1 3.2zm9.6 0 1.1 1.1L4.3 13.9 3.2 12.8z'/%3E%3C/svg%3E") center / 11px 11px no-repeat;
}
.lure-atc {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--forest);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease;
}
.lure-atc:hover { background: var(--forest-2); }
.lure-atc:disabled {
  background: #9aa39b;
  cursor: not-allowed;
  opacity: .85;
}

.philosophy {
  background: var(--forest);
  color: white;
  min-height: 850px;
  position: relative;
  overflow: hidden;
  padding: 130px 24px 120px;
  border-radius: 33px;
}
.philosophy::before {
  content: ""; position: absolute; inset: 0; opacity: .16;
  background-image: radial-gradient(circle at 20% 30%, #aabd72 0, transparent 25%), radial-gradient(circle at 80% 70%, #8d6a4d 0, transparent 20%);
}
.corner-art {
  position: absolute;
  width: clamp(200px, 48vw, 540px);
  height: clamp(200px, 48vw, 540px);
  object-fit: contain;
  opacity: .22;
  pointer-events: none;
}
.corner-left {
  left: 0;
  bottom: 0;
  object-position: left bottom;
}
.corner-right {
  right: 0;
  top: 0;
  object-position: right top;
  transform: translate(9%, -6%) rotate(270deg);
  transform-origin: center center;
}
.philosophy-inner { max-width: 1060px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.kicker.light { color: #bac99a; }
.philosophy h2 { font-size: clamp(56px, 7vw, 94px); letter-spacing: -4px; margin: 22px 0 27px; }
.philosophy h2 em { color: var(--gold); }
.philosophy-inner > p { max-width: 665px; margin: 0 auto; color: #c6d1c8; font-size: 17px; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 80px; text-align: left; }
.principles article { border-top: 1px solid rgba(255,255,255,.2); padding: 25px 12px 0; position: relative; }
.principle-number { color: #91a58d; font-size: 10px; letter-spacing: 1px; }
.principle-icon { font-size: 35px; color: var(--gold); margin: 35px 0 26px; }
.principles h3 { font-size: 23px; letter-spacing: -.7px; margin-bottom: 13px; }
.principles p { color: #aebdb2; font-size: 13px; margin: 0; max-width: 250px; }

.faq { padding: 140px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq > *, .app-card > * { min-width: 0; }
.faq-aside > p { color: #66736d; max-width: 380px; margin: 28px 0 35px; }
.response-badge { display: flex; align-items: center; gap: 13px; padding: 13px 16px; background: #e9eddc; width: fit-content; border-radius: 12px; }
.response-badge strong, .response-badge small { display: block; line-height: 1.45; }
.response-badge strong { font-size: 12px; }
.response-badge small { font-size: 9px; color: #758078; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: #5c9c68; box-shadow: 0 0 0 5px rgba(92,156,104,.13); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { min-width: 0; list-style: none; cursor: pointer; padding: 25px 0; font: 700 19px "Fraunces", serif; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { width: 26px; height: 26px; flex: 0 0 26px; border: 1px solid var(--line); border-radius: 50%; position: relative; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; width: 8px; height: 1px; background: var(--forest); top: 12px; left: 8px; transition: .2s; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { color: #6b7770; font-size: 14px; max-width: 570px; margin: -5px 40px 25px 0; }
.accordion details p a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hello {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 100px;
  scroll-margin-top: 100px;
}
.hello-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 58px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(232, 196, 112, .22), transparent 42%),
    linear-gradient(145deg, #f3eee2 0%, #e8efdc 55%, #dde8d0 100%);
  border: 1px solid rgba(125, 104, 72, .12);
}
.hello-copy .kicker { color: var(--forest); }
.hello-copy h2 {
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -2.2px;
  margin: 10px 0 14px;
  color: var(--ink);
}
.hello-copy p {
  margin: 0;
  max-width: 34ch;
  color: #5d675f;
  font-size: 15px;
  line-height: 1.55;
}
.hello-form {
  display: grid;
  gap: 16px;
}
.hello-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hello-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: var(--forest);
}
.hello-form .optional {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #7a847c;
}
.hello-form input,
.hello-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 63, 43, .14);
  border-radius: 14px;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.hello-form textarea {
  resize: vertical;
  min-height: 132px;
  line-height: 1.45;
}
.hello-form input:focus,
.hello-form textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(119, 131, 75, .18);
}
.hello-form > .button {
  justify-self: start;
  margin-top: 4px;
}
.hello-form-message {
  margin: 0;
  min-height: 1.2em;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
}
.hello-form-message.is-error { color: #a44a32; }

.waitlist {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 120px;
  background: var(--moss);
  color: white;
  border-radius: 28px;
  padding: 65px 70px;
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.waitlist-mountains {
  position: absolute;
  right: -6%;
  top: 50%;
  width: min(720px, 88%);
  height: auto;
  opacity: .34;
  pointer-events: none;
  z-index: 0;
  transform: translateY(-42%);
}
.waitlist-copy { position: relative; z-index: 2; }
.waitlist h2 { font-size: 56px; letter-spacing: -2.5px; margin: 12px 0 15px; }
.waitlist p { color: #e1e8d3; font-size: 13px; max-width: 500px; }
.signup-form { position: relative; z-index: 2; }
.signup-form > input {
  width: 100%; height: 62px; border: 0; outline: none; border-radius: 99px;
  padding: 0 165px 0 23px; color: var(--ink); background: white; box-shadow: 0 12px 30px rgba(30,48,25,.16);
}
.signup-form > button {
  position: absolute; top: 6px; right: 6px; height: 50px; border: 0; border-radius: 99px;
  padding: 0 19px; background: var(--forest); color: white; font-weight: 700; cursor: pointer;
}
.signup-form > button:disabled { cursor: wait; opacity: .72; }
.form-message { margin: 10px 0 0 18px !important; color: white !important; }
.form-message.is-error { color: #ffd6cc !important; }

footer {
  background: #112d20;
  color: #d9e1d9;
  padding: 120px max(24px, calc((100% - 1120px)/2)) 30px;
  position: relative;
  overflow: visible;
}
.footer-log {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: min(calc(100% - 32px), 1180px);
  height: auto;
  aspect-ratio: 3556 / 1152;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -52%);
  pointer-events: none;
}
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; align-items: start; padding-bottom: 58px; }
.wordmark-footer { color: white; font-size: 25px; }
.footer-top > p { margin: 0; color: #91a296; font-size: 13px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; font-size: 13px; }
.footer-links a:hover { color: var(--gold); }
.moose-tip { border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: grid; grid-template-columns: 210px 1fr 30px; align-items: center; }
.tip-label { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.moose-tip p { margin: 0; font: 600 17px "Fraunces", serif; }
.moose-tip button { background: transparent; border: 0; color: #93a396; font-size: 20px; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; color: #6f8175; font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }

#track-layer { position: fixed; inset: 0; pointer-events: none; z-index: 80; }
.hoof {
  position: fixed;
  width: 31px;
  height: 18px;
  opacity: 0;
  background: var(--moss);
  -webkit-mask: url("assets/moose_knuckles_min.svg") center / contain no-repeat;
  mask: url("assets/moose_knuckles_min.svg") center / contain no-repeat;
  transform: rotate(var(--r));
  transform-origin: center;
  animation: hoofFade 2.3s ease-out forwards;
}
@keyframes hoofFade { 0% { opacity: 0; transform: scale(.6) rotate(var(--r)); } 15% { opacity: .32; } 100% { opacity: 0; transform: scale(1.08) rotate(var(--r)); } }

#mobile-track-layer {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 8;
}
.mobile-track {
  position: absolute;
  width: 27px;
  height: 16px;
  background: var(--track-color, var(--moss));
  opacity: .32;
  -webkit-mask: url("assets/moose_knuckles_min.svg") center / contain no-repeat;
  mask: url("assets/moose_knuckles_min.svg") center / contain no-repeat;
  transform: rotate(var(--track-rotation, 0deg));
}

@media (hover: none), (pointer: coarse) {
  #mobile-track-layer { display: block; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* 404 */
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 40px 24px; background: var(--cream); }
.error-shell { max-width: 940px; text-align: center; }
.error-brand { margin-bottom: 35px; }
.error-visual { height: 340px; position: relative; display: grid; place-items: center; margin-bottom: 15px; }
.error-number { font: 800 clamp(150px, 25vw, 290px)/1 "Fraunces", serif; letter-spacing: -24px; color: var(--forest); opacity: .12; }
.error-moose { position: absolute; width: 330px; height: 260px; object-fit: cover; object-position: 50% 24%; border-radius: 50%; mix-blend-mode: multiply; }
.moss-mouth { position: absolute; width: 108px; height: 34px; border-radius: 50%; background: var(--moss); bottom: 116px; box-shadow: 15px -7px 0 #93a35e, -16px -3px 0 #667443, 2px -13px 0 -4px #a8b579; }
.error-shell h1 { font-size: clamp(42px, 7vw, 68px); letter-spacing: -3px; margin: 0 0 18px; }
.error-shell > p { color: #657169; max-width: 560px; margin: 0 auto 30px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 40;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border: 0;
    border-radius: 24px;
    background:
      radial-gradient(circle at 92% 8%, rgba(168, 181, 121, .22), transparent 42%),
      radial-gradient(circle at 8% 92%, rgba(228, 180, 81, .12), transparent 36%),
      var(--forest);
    box-shadow: 0 24px 55px rgba(23, 63, 43, .32);
    text-align: left;
    overflow: hidden;
  }
  .site-header nav::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -18%;
    width: 70%;
    height: 55%;
    opacity: .18;
    pointer-events: none;
    background: url("assets/waitlist-mountains.svg") right bottom / contain no-repeat;
  }
  .site-header nav.open { display: flex; }
  .site-header nav a {
    position: relative;
    z-index: 1;
    padding: 15px 16px;
    border-radius: 14px;
    color: #e7efe3;
    font-family: "Fraunces", serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.4px;
  }
  .site-header nav a::after { display: none; }
  .site-header nav a:hover,
  .site-header nav a:active {
    background: rgba(255, 255, 255, .08);
    color: white;
  }
  .site-header nav .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    padding: 15px 18px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--forest);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
  }
  .site-header nav .nav-cta:hover,
  .site-header nav .nav-cta:active {
    background: #efc56a;
    color: var(--forest);
  }
  .site-header > .button { display: none; }
  .menu-button {
    display: grid;
    gap: 5px;
    place-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
  }
  .menu-button span {
    width: 16px;
    height: 2px;
    margin: 0 auto;
    background: var(--forest);
    transition: transform .22s ease, opacity .22s ease;
  }
  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero { grid-template-columns: 1fr; padding-top: 70px; text-align: center; }
  .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-art { min-height: 570px; }
  .section-intro { align-items: start; gap: 35px; }
  .app-content { padding: 50px 38px; }
  .faq { gap: 60px; }
  .hello-inner { grid-template-columns: 1fr; gap: 28px; padding: 42px 34px; }
  .hello-form-row { grid-template-columns: 1fr; }
  .waitlist { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .waitlist p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 720px) {
  #mobile-track-layer { display: block; }
  .site-header, .hero, .section, .hello, .waitlist {
    width: calc(100% - 30px);
    max-width: 1120px;
  }
  .site-header { height: 70px; }
  .hero { padding-top: 45px; gap: 15px; min-height: auto; }
  h1 { font-size: 58px; letter-spacing: -3px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .trust-row { margin-top: 35px; }
  .hero-art { min-height: 440px; }
  .hero-blob { width: min(360px, calc(100vw - 30px)); height: min(360px, calc(100vw - 30px)); }
  .hero-blob img { padding: 18px; }
  .sun-orbit { width: min(390px, calc(100vw - 4px)); height: min(390px, calc(100vw - 4px)); }
  .floating-note { transform: scale(.85); }
  .note-one { left: -15px; }
  .note-two { right: -12px; bottom: 12%; }
  .trail-strip { gap: 20px; }
  .apps { padding: 95px 0; }
  .section-intro { display: block; }
  .section-intro h2, .faq h2 { font-size: 50px; letter-spacing: -2px; }
  .section-intro > p { margin-top: 25px; }
  .app-card { grid-template-columns: 1fr; }
  .app-visual { min-height: 400px; padding: 18px; }
  .app-card-tags .app-visual img { width: 100%; height: 100%; }
  .app-card-backtrail .app-visual { min-height: 420px; }
  .app-card-backtrail .app-visual img { width: min(86%, 320px); }
  .app-card-lure .app-visual { order: 0; padding: 28px 18px 32px; }
  .lure-demo { width: 100%; gap: 18px; }
  .lure-product h4 { font-size: 28px; }
  .app-content { padding: 45px 27px; }
  .app-content h3 { font-size: 52px; }
  .app-actions { align-items: flex-start; flex-direction: column; }
  .philosophy { padding: 100px 20px; }
  .philosophy h2 { font-size: 52px; letter-spacing: -2.5px; }
  .corner-art {
    width: min(260px, 72vw);
    height: min(260px, 72vw);
  }
  .corner-left { left: -18px; bottom: 0; }
  .corner-right {
    right: -12px;
    top: 0;
    transform: translate(4%, -8%) rotate(269deg);
  }
  .principles { grid-template-columns: 1fr; gap: 40px; margin-top: 60px; }
  .principles article { text-align: center; }
  .principles p { margin: 0 auto; }
  .principle-icon { margin: 18px 0; }
  .faq { grid-template-columns: minmax(0, 1fr); padding: 100px 0; gap: 45px; }
  .faq-aside, .accordion { width: 100%; min-width: 0; }
  .accordion summary { font-size: 18px; line-height: 1.25; }
  .waitlist { padding: 48px 22px; margin-bottom: 90px; }
  .hello-inner { padding: 34px 22px; }
  .waitlist h2 { font-size: 46px; }
  .signup-form > input { padding-right: 20px; }
  .signup-form > button { position: static; width: 100%; margin-top: 10px; }
  footer { padding-top: 85px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .moose-tip { grid-template-columns: 1fr 30px; gap: 10px; }
  .tip-label { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .error-visual { height: 280px; }
  .error-moose { width: 280px; height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
