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

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

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

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

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

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

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

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

:root {
  --color-bg: #f6f8f3;
  --color-surface: #ffffff;
  --color-surface-muted: #edf3e9;
  --color-ink: #17211b;
  --color-muted: #637066;
  --color-line: #d8e0d6;
  --color-primary: #2f7d57;
  --color-primary-dark: #155d3c;
  --color-primary-ink: #f7fff8;
  --color-pin: #d94f3d;
  --color-location: #376da6;
  --color-open: #24784b;
  --color-warn: #a97118;
  --shadow-sheet: 0 18px 50px rgb(23 33 27 / 14%);
  --shadow-soft: 0 12px 32px rgb(23 33 27 / 10%);
  --radius-control: 16px;
  --radius-card: 22px;
  --radius-inner: 14px;
  --max-page: 1450px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgb(255 255 255 / 88%) 0%, rgb(246 248 243 / 96%) 38%, var(--color-bg) 100%),
    url("/assets/auth-map-background.webp") center top / 1200px auto no-repeat;
  opacity: 0.9;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: var(--radius-inner);
  background: var(--color-ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgb(216 224 214 / 72%);
  background: rgb(246 248 243 / 86%);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-page);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0d4b36;
  font-family: Newsreader, Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-surface-muted);
  color: var(--color-pin);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.brand-mark circle {
  fill: var(--color-primary-ink);
}

.brand-text {
  display: block;
  transform: translateY(2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 44px);
  color: #334239;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.nav-cta {
  border-radius: 999px;
}

.nav-links a:focus-visible,
.nav-cta:focus-visible,
.brand:focus-visible,
.waitlist-form button:focus-visible,
.waitlist-form input:focus-visible,
.form-privacy a:focus-visible,
.footer-link:focus-visible,
.back-link:focus-visible,
summary:focus-visible,
.retrieval-row a:focus-visible {
  outline: 3px solid rgb(55 109 166 / 34%);
  outline-offset: 4px;
}

.nav-cta {
  padding: 12px 18px;
  background: var(--color-primary);
  color: var(--color-primary-ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgb(47 125 87 / 18%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  max-width: var(--max-page);
  min-height: calc(100svh - 138px);
  margin: 0 auto;
  padding: clamp(32px, 4.8vw, 62px) clamp(18px, 4vw, 56px) 46px;
  gap: clamp(34px, 5vw, 74px);
}

.hero-copy {
  max-width: 650px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
}

h1 {
  max-width: 680px;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 500;
  line-height: 0.96;
}

.hero-emphasis {
  font-style: italic;
  font-weight: 500;
}

.hero-text {
  max-width: 630px;
  margin: 22px 0 0;
  color: #27352e;
  font-size: clamp(17px, 1.75vw, 21px);
  font-weight: 600;
  line-height: 1.55;
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 610px;
  margin-top: 16px;
  gap: 8px;
  color: #314039;
  font-size: 14px;
  font-weight: 800;
}

.source-strip-label,
.source-strip-note {
  color: var(--color-muted);
  font-weight: 700;
}

.source-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgb(216 224 214 / 88%);
  border-radius: 999px;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 8px 18px rgb(23 33 27 / 8%);
}

.waitlist-form {
  max-width: 560px;
  margin-top: 22px;
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  color: #0e5739;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-row {
  display: flex;
  min-height: 60px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.form-row input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 20px;
  background: transparent;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 700;
}

.form-row input::placeholder {
  color: #8a958c;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-row button {
  border: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-primary-ink);
  cursor: pointer;
  font-weight: 800;
}

.form-row button {
  min-width: 150px;
  padding: 0 22px;
  white-space: nowrap;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.hero .form-note {
  margin-bottom: 0;
}

.form-privacy {
  max-width: 540px;
  margin: 6px 0 0;
  color: #68766b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.form-privacy a,
.footer-link,
.privacy-notice a {
  color: #0f6a47;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hero-visual {
  --side-offset: clamp(146px, 14.8vw, 198px);
  --side-drop: clamp(20px, 3vw, 34px);

  position: relative;
  isolation: isolate;
  width: min(100%, 700px);
  min-height: clamp(520px, 47vw, 640px);
  margin: 0;
  overflow: visible;
}

.hero-visual::after {
  position: absolute;
  right: 8%;
  bottom: 3%;
  left: 8%;
  z-index: -1;
  height: 25%;
  border-radius: 999px;
  background: rgb(47 125 87 / 16%);
  filter: blur(24px);
  content: "";
}

.phone-shot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: clamp(184px, 16.5vw, 232px);
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 26px rgb(23 33 27 / 22%));
}

.phone-shot-left {
  transform: translate(
      calc(-50% - var(--side-offset)),
      calc(-50% + var(--side-drop))
    )
    rotate(-3.2deg);
}

.phone-shot-center {
  z-index: 3;
  width: clamp(232px, 21.5vw, 292px);
  filter: drop-shadow(0 28px 32px rgb(23 33 27 / 26%));
}

.phone-shot-right {
  transform: translate(
      calc(-50% + var(--side-offset)),
      calc(-50% + var(--side-drop))
    )
    rotate(3.2deg);
}

.retrieval-row img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 15px;
  object-fit: cover;
}

.retrieval-row strong,
.retrieval-row span {
  display: block;
}

main > section {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 56px);
}

.section-band {
  max-width: min(calc(var(--max-page) - 80px), calc(100% - 36px));
  margin: 0 auto;
  border: 1px solid rgb(216 224 214 / 70%);
  border-radius: 34px;
  background: rgb(255 255 255 / 74%);
  box-shadow: var(--shadow-soft);
}

.section-copy h2,
.section-heading h2,
.join h2 {
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 650;
  line-height: 1;
}

.section-copy p,
.join p {
  max-width: 780px;
  margin: 24px 0 0;
  color: #314037;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.6;
}

.narrow {
  max-width: 880px;
}

.callout {
  color: #0e5739 !important;
  font-weight: 800 !important;
}

.section-heading {
  max-width: 820px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.step-item {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: rgb(255 255 255 / 78%);
  box-shadow: var(--shadow-soft);
}

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

.step-item h3 {
  margin-top: 28px;
  font-size: 24px;
  font-weight: 800;
}

.step-item p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 600;
}

.privacy-layout,
.decision-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}

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

.proof-list div {
  padding: 18px 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  background: var(--color-surface);
  color: #173528;
  font-weight: 800;
}

.decision-card {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background: #0f2e22;
  color: var(--color-primary-ink);
  box-shadow: var(--shadow-sheet);
}

.decision-card .section-copy p {
  color: #d9eadc;
}

.decision-preview {
  padding: 16px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 24px;
  background: rgb(255 255 255 / 10%);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.filter-row span {
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
  color: #eef9ef;
  font-size: 12px;
  font-weight: 800;
}

.retrieval-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.retrieval-row span {
  color: #b8caba;
  font-size: 13px;
  font-weight: 700;
}

.retrieval-row a {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--color-primary-ink);
  color: #0f2e22;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.join {
  padding-top: 34px;
  text-align: center;
}

.privacy-page {
  max-width: var(--max-page);
  margin: 0 auto;
}

.privacy-notice {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 4vw, 56px) 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #0e5739;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.privacy-notice h1 {
  font-size: clamp(52px, 7vw, 86px);
}

.privacy-lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: #314037;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.6;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 42px;
  margin-top: 56px;
}

.notice-grid section {
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
}

.notice-grid h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 650;
}

.notice-grid p {
  margin: 14px 0 0;
  color: #3f4d44;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-primary-ink);
  font-weight: 800;
}

.join-inner {
  max-width: 780px;
  margin: 0 auto;
}

.join p,
.join .waitlist-form {
  margin-right: auto;
  margin-left: auto;
}

.waitlist-form-bottom {
  margin-top: 32px;
  text-align: left;
}

.waitlist-form-bottom .form-row button {
  min-width: 220px;
}

.faq {
  padding-top: 54px;
}

.faq .section-heading {
  max-width: none;
  text-align: center;
}

.faq-list {
  max-width: 920px;
  margin: 36px auto 0;
}

details {
  border-top: 1px solid var(--color-line);
}

details:last-child {
  border-bottom: 1px solid var(--color-line);
}

summary {
  cursor: pointer;
  padding: 26px 6px;
  font-size: 18px;
  font-weight: 800;
}

details p {
  max-width: 760px;
  margin: -8px 0 28px;
  color: var(--color-muted);
  font-weight: 600;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 56px) 46px;
  gap: 20px;
  border-top: 1px solid var(--color-line);
}

.site-footer p,
.footer-copy {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-copy span {
  display: block;
}

.footer-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
}

.trademark-note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-visual {
    width: min(100%, 760px);
    min-height: 560px;
    justify-self: center;
  }
}

@media (min-width: 821px) and (max-height: 760px) {
  .nav {
    min-height: 64px;
  }

  .hero {
    min-height: calc(100svh - 112px);
    padding-top: 24px;
    padding-bottom: 24px;
  }

  h1 {
    font-size: clamp(48px, 5.25vw, 68px);
  }

  .hero-text {
    margin-top: 16px;
    font-size: 17px;
  }

  .waitlist-form {
    margin-top: 20px;
  }

  .hero-visual {
    --side-offset: 166px;
    --side-drop: 22px;

    min-height: 520px;
  }

  .phone-shot {
    width: 190px;
  }

  .phone-shot-center {
    width: 270px;
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: 68px;
  }

  .brand {
    font-size: 22px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 10px 14px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 22px;
    gap: 32px;
  }

  h1 {
    font-size: clamp(48px, 11vw, 66px);
  }

  .step-grid,
  .privacy-layout,
  .decision-card,
  .notice-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    --side-offset: clamp(136px, 24vw, 176px);
    --side-drop: 24px;

    width: min(100%, 660px);
    min-height: 390px;
    margin: 0 auto;
  }

  .phone-shot {
    width: clamp(150px, 22vw, 168px);
  }

  .phone-shot-center {
    width: clamp(184px, 25vw, 194px);
  }

  .section-band {
    max-width: calc(100% - 28px);
    border-radius: 26px;
  }

  .privacy-layout,
  .decision-card {
    gap: 28px;
  }

  .retrieval-row {
    grid-template-columns: 58px 1fr;
  }

  .retrieval-row a {
    grid-column: 2;
    justify-self: start;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    background: #fbfcf9;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 26px;
    padding-bottom: 18px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 50px);
  }

  .hero-text,
  .section-copy p,
  .join p {
    font-size: 16px;
  }

  .hero-text {
    margin-top: 16px;
  }

  .source-strip {
    margin-top: 14px;
    gap: 6px;
    font-size: 13px;
  }

  .source-strip-note {
    display: none;
  }

  .source-pill {
    min-height: 30px;
    padding: 0 11px;
  }

  .waitlist-form {
    margin-top: 18px;
  }

  .form-row {
    display: grid;
    min-height: 0;
    overflow: visible;
    gap: 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .form-row input,
  .form-row button {
    min-height: 56px;
    border-radius: var(--radius-control);
  }

  .form-row input {
    border: 1px solid var(--color-line);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
  }

  .form-row button {
    width: 100%;
  }

  .hero .form-note {
    margin-bottom: 0;
  }

  .form-privacy {
    font-size: 11.5px;
  }

  .hero-visual {
    --side-offset: 102px;
    --side-drop: 22px;

    width: 100%;
    height: 168px;
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .hero-visual::after {
    right: 7%;
    bottom: -10%;
    left: 7%;
    height: 34%;
    filter: blur(18px);
  }

  .phone-shot {
    top: 12px;
    width: 120px;
    transform: translateX(-50%);
  }

  .phone-shot-left {
    transform: translateX(calc(-50% - var(--side-offset))) translateY(var(--side-drop))
      rotate(-4deg);
  }

  .phone-shot-center {
    top: 0;
    width: 150px;
    transform: translateX(-50%);
  }

  .phone-shot-right {
    transform: translateX(calc(-50% + var(--side-offset))) translateY(var(--side-drop))
      rotate(4deg);
  }

  .section-copy h2,
  .section-heading h2,
  .join h2 {
    font-size: 38px;
  }

  main > section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .step-item {
    min-height: 0;
    padding: 24px;
  }

  .decision-card {
    padding: 24px;
    border-radius: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
