.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
:root {
  --paper: #f6f4eb;
  --ivory: #fffdf5;
  --ink: #20382c;
  --dark: #172e25;
  --green: #2e533e;
  --sage: #dce5cf;
  --muted: #637064;
  --line: #d9dfd2;
  --orange: #f17626;
  --orange-dark: #a3410b;
  --light: #f2f3e9;
  --white: #fff;
  --feedback-time: 160ms;
  --feedback-ease: cubic-bezier(0.2, 0.7, 0.3, 1);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --display:
    'Arial Black', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
  background: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
svg {
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.13;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 850;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(35px, 3.7vw, 54px);
}
h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
  font-weight: 750;
}
em {
  font-style: normal;
  color: #6e7d65;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  width: min(1240px, calc(100% - 104px));
  margin: 0 auto;
}
.section {
  padding: 108px 0;
  scroll-margin-top: 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1.65px;
  line-height: 1.7;
  color: #5f7061;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow .icon {
  width: 20px;
  height: 20px;
  color: var(--orange);
}
.eyebrow.light {
  color: #c3cebb;
}
.intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  white-space: normal;
  text-align: center;
}
.button .icon {
  width: 19px;
  height: 19px;
}
.button.primary {
  background: var(--orange);
  color: #172b20;
  box-shadow: 0 3px 0 #0000000b;
}
@media (hover: hover) and (pointer: fine) {
  .button.primary:hover:not(:disabled) {
    background: #ff8d41;
    transform: translateY(-2px);
    box-shadow: 0 7px 22px #1112;
  }
}
.button.secondary {
  border-color: var(--line);
  background: var(--ivory);
  color: var(--ink);
}
.button.secondary:hover {
  background: var(--sage);
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 0;
  line-height: 1.6;
}
.text-button .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .text-button:hover .icon {
    transform: translateX(4px);
  }
}
.icon-button {
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.icon-button:hover {
  background: var(--sage);
}
:focus-visible {
  outline: 3px solid #f19452;
  outline-offset: 5px;
}
.skip {
  position: fixed;
  left: 20px;
  top: -80px;
  padding: 12px 20px;
  background: var(--orange);
  color: #162e23;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
[hidden] {
  display: none !important;
}
.nojs {
  padding: 16px 25px;
  background: #ffdfa6;
  font-size: 14px;
}
.header,
.consent-note {
  --nav-radius: 27px 32px 25px 30px;
  --mud-height: 32px;
  --mud-bottom: -16px;
  --mud-wash-height: 58px;
}
.header {
  --header-top: max(20px, env(safe-area-inset-top));
  position: fixed;
  top: var(--header-top);
  left: 24px;
  right: 24px;
  width: min(920px, calc(100% - 48px));
  height: 76px;
  margin-inline: auto;
  z-index: 30;
  transform: translateY(0);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.header[data-scroll-hidden='true'] {
  transform: translateY(calc(-100% - var(--header-top) - 40px));
  /* Accelerate out of view; the reveal's fast ease-out made the exit look instant. */
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none;
}
.header:has(:focus-visible) {
  transition: none;
}
.nav-wrap {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Blur lives on its own layer so the mobile panel has an independent backdrop. */
.nav-wrap::before,
.consent-note::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  border-radius: var(--nav-radius);
  border: 1px solid #e0d4bc80;
  background: #f6f4eb;
  box-shadow:
    0 8px 30px #10271c1c,
    inset 0 -5px 12px #8b603520;
}
/* Sediment belongs to the same curved body, with a clear centre for controls. */
.nav-wrap::after,
.consent-note::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: var(--nav-radius);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 100%, #745132b0 0%, #9b764847 36%, transparent 70%) left bottom /
      170px var(--mud-wash-height) no-repeat,
    radial-gradient(ellipse at 100% 100%, #735031c9 0%, #9870445c 25%, transparent 66%) right
      bottom / 110px var(--mud-wash-height) no-repeat,
    radial-gradient(ellipse at 7% 0%, #9770444d, transparent 60%) left top / 150px 13px no-repeat,
    linear-gradient(174deg, #ffffff34, transparent 38%, #8873470b 80%, #78533540);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-wrap::before,
  .consent-note::before {
    background: rgb(246 244 235 / 86%);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    backdrop-filter: blur(20px) saturate(125%);
  }
}
.nav-mud-body {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: var(--nav-radius);
  overflow: hidden;
  pointer-events: none;
}
.nav-mud,
.nav-mud-drips {
  position: absolute;
  width: 100%;
  height: var(--mud-height);
  left: 0;
  bottom: var(--mud-bottom);
  overflow: visible;
  pointer-events: none;
}
.mud-source,
.mud-bead,
.mud-impact {
  position: absolute;
  pointer-events: none;
  background: radial-gradient(ellipse at 35% 23%, #ac7946, #765033 45%, #503623 90%);
  box-shadow:
    inset 1px 1px 1px #ce9a5933,
    0 1px 1px #15221930;
  opacity: 0;
}
.mud-source {
  bottom: -7px;
  width: 14px;
  height: 12px;
  border-radius: 38% 48% 55% 52%;
  transform-origin: center top;
}
#mud-scene {
  position: fixed;
  inset: 0;
  z-index: 29;
  pointer-events: none;
  overflow: hidden;
}
.mud-bead {
  top: 0;
  left: 0;
  width: 10px;
  height: 13px;
  border-radius: 42% 48% 50% 55%;
}
.mud-impact {
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  border-radius: 48% 35% 50% 40%;
}
.mud-anchor {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}
.mud-anchor-left {
  left: 21px;
  top: -4px;
}
.mud-turn-left {
  left: 2px;
  top: 2px;
}
.mud-anchor-inset {
  left: 44%;
  top: -4px;
}
.mud-turn-right {
  right: 2px;
  top: 2px;
}
.mud-corner-left {
  left: -4px;
  top: 26px;
}
.mud-end-left {
  left: -4px;
  top: 72px;
}
.mud-anchor-right {
  right: 21px;
  top: -4px;
}
.mud-corner-right {
  right: -4px;
  top: 26px;
}
.mud-end-right {
  right: -4px;
  top: 72px;
}
@media (prefers-reduced-motion: reduce) {
  #mud-scene,
  .mud-source {
    display: none;
  }
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 48px;
  border-radius: 10px;
}
.brand img {
  width: 122px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.main-nav a {
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  padding: 12px 14px;
  border-radius: 999px;
  min-height: 44px;
  position: relative;
  transition: background var(--feedback-time);
}
.main-nav a::after {
  content: '';
  position: absolute;
  height: 2px;
  bottom: 7px;
  left: 14px;
  right: 14px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.main-nav a:hover::after {
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.language {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-shrink: 0;
}
.language a {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 750;
  justify-content: center;
  width: 44px;
  padding: 6px;
  color: #4c5b4e;
  border-radius: 50%;
  min-height: 44px;
}
.language a[aria-current='page'] {
  background: #20382c0e;
  color: var(--ink);
}
.nav-cta {
  background: var(--ink);
  color: var(--ivory);
  min-height: 44px;
  padding: 10px 17px;
  font-size: 12px;
  gap: 14px;
  border-radius: 999px;
}
.nav-cta:hover {
  background: #35583f;
}
.menu-toggle,
.mobile-nav-cta {
  display: none;
}
.hero {
  padding-top: 108px;
  background: var(--dark);
  color: var(--ivory);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.topo {
  position: absolute;
  pointer-events: none;
  opacity: 0.09;
  background: repeating-radial-gradient(
    ellipse at 62% 43%,
    transparent 0 40px,
    #e0e7c2 41px 42px,
    transparent 43px 69px
  );
  transform: rotate(-21deg);
  z-index: -1;
}
.topo-hero {
  width: 140%;
  height: 160%;
  left: -12%;
  top: -28%;
  opacity: 0.055;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 0 42px;
  position: relative;
}
.hero-copy {
  padding: 65px 0 50px;
  z-index: 2;
}
.hero .eyebrow {
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(58px, 5.68vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.063em;
  color: var(--ivory);
}
.hero h1 span {
  color: #d6e2b8;
}
.hero-description {
  font-size: 15px;
  line-height: 1.9;
  color: #c3cdbd;
  max-width: 480px;
  margin-top: 27px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 25px;
  align-items: center;
  margin-top: 31px;
}
.hero .text-button {
  color: #efefdf;
  font-size: 12px;
}
.platform {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 21px;
  font-size: 10px;
  color: #a7b7a5;
}
.platform .icon {
  width: 15px;
  height: 15px;
}
.hero-art {
  position: relative;
  min-width: 0;
  min-height: 630px;
  align-self: center;
}
.radar-rings {
  position: absolute;
  width: 570px;
  height: 570px;
  left: -7px;
  top: 15px;
  border: 1px solid #b3c19712;
  border-radius: 50%;
}
.radar-rings span {
  position: absolute;
  border: 1px dashed #b3c19729;
  border-radius: 50%;
  inset: 55px;
}
.radar-rings span:nth-child(2) {
  inset: 110px;
  border-style: solid;
}
.radar-rings span:nth-child(3) {
  inset: 170px;
  border-style: solid;
}
.hero-coordinates {
  position: absolute;
  right: 25px;
  top: 15px;
  color: #8d9d84;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}
.hero-coordinates span {
  display: block;
  font-size: 25px;
  font-weight: 200;
  margin-top: 6px;
}
.stage-badge {
  position: absolute;
  top: 13px;
  left: 55px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e3e8d4;
  background: #2c4436;
  border: 1px solid #52644a;
  border-radius: 40px;
  font-size: 10px;
  letter-spacing: 0.15px;
  padding: 7px 14px;
  z-index: 5;
}
.stage-badge i {
  width: 6px;
  height: 6px;
  display: block;
  background: #e0b85e;
  border-radius: 50%;
}
.device {
  border: 6px solid #26372c;
  background: #26372c;
  border-radius: 34px;
  padding: 0;
  box-shadow:
    0 24px 40px #061d233f,
    inset 0 0 0 1px #688064;
  overflow: hidden;
  line-height: 0;
  display: block;
  isolation: isolate;
}
.device img {
  width: 100%;
  height: auto;
  border-radius: 27px;
  background: #f7f9f0;
}
.hero-device {
  position: absolute;
  width: 244px;
  transition: transform 0.5s;
}
.map-device {
  left: 10px;
  top: 81px;
  transform: rotate(-9deg);
  filter: brightness(0.96);
  z-index: 1;
  border-color: #475543;
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .map-device:hover {
    transform: rotate(-6deg) translateY(-5px);
  }
}
.mission-device {
  right: 12px;
  top: 94px;
  transform: rotate(7deg);
  z-index: 2;
  border-color: #708064;
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .mission-device:hover {
    transform: rotate(4deg) translateY(-5px);
  }
}
.free-stamp {
  position: absolute;
  z-index: 5;
  left: -24px;
  top: 360px;
  background: #e0e6b6;
  color: #223b28;
  width: 137px;
  min-height: 134px;
  padding: 19px 15px;
  clip-path: polygon(5% 0, 95% 0, 100% 7%, 100% 93%, 95% 100%, 5% 100%, 0 93%, 0 7%);
  text-align: center;
  transform: rotate(-8deg);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 5px 20px #0002;
}
.free-stamp .icon {
  display: block;
  margin: 0 auto 10px;
  width: 25px;
  height: 25px;
}
.floating-card {
  position: absolute;
  right: 5px;
  bottom: 13px;
  z-index: 5;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 19px;
  display: flex;
  gap: 13px;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0 10px 28px #10201133;
  transform: rotate(-2deg);
  max-width: 300px;
}
.floating-card > .icon {
  color: #577345;
}
.floating-card small {
  font-size: 9px;
  color: #71816b;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.floating-card strong {
  font-size: 12px;
  line-height: 1.5;
  display: block;
  font-weight: 750;
}
.hero-bottom {
  grid-column: 1/-1;
  padding: 19px 0 24px;
  border-top: 1px solid #d1dbc022;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.orange-square {
  width: 6px;
  height: 6px;
  background: var(--orange);
  display: inline-block;
  flex-shrink: 0;
}
.hero-bottom p {
  font-size: 9px;
  color: #a0b29d;
  line-height: 1.6;
  max-width: 450px;
  text-align: right;
}
.principles {
  border-bottom: 1px solid var(--line);
  background: #ebece0;
}
.principles .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}
.principles .wrap > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 650;
  color: #46533f;
}
.principles .icon {
  width: 19px;
  height: 19px;
  color: #586d4f;
}
.problem {
  padding-top: 95px;
  padding-bottom: 96px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 75px;
  align-items: center;
}
.problem h2 {
  font-size: 35px;
  line-height: 1.25;
  letter-spacing: -0.045em;
}
.problem p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}
.how {
  background: #fffdf6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 88px;
  align-items: start;
}
.how-copy {
  padding-top: 16px;
}
.how h2 {
  font-size: 52px;
}
.how .intro {
  margin-top: 24px;
  max-width: 450px;
  font-size: 14px;
}
.steps {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.step {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 18px;
  text-align: left;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s;
}
.step-number {
  font-size: 11px;
  font-weight: 700;
  line-height: 2;
  margin-top: 1px;
  color: #909d88;
  flex-shrink: 0;
  min-width: 22px;
}
.step-copy {
  display: block;
  flex: 1;
}
.step-copy strong {
  display: block;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.3px;
  line-height: 1.45;
}
.step-description {
  display: none;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 400px;
  margin-top: 12px;
}
.step.active .step-description {
  display: block;
}
.step.active .step-number {
  color: var(--orange-dark);
}
.step > .icon {
  width: 17px;
  height: 17px;
  color: #83917e;
  margin-top: 5px;
  flex-shrink: 0;
}
.step.active > .icon {
  color: var(--orange-dark);
  transform: rotate(45deg);
}
.step:not(.active):hover {
  background: #f3f4e9;
}
.how-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 687px;
  border-radius: 7px;
  background: #e4e8d8;
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 1px solid #d6decb;
}
.topo-light {
  inset: -100px -140px;
  background: repeating-radial-gradient(
    ellipse at 58% 48%,
    transparent 0 36px,
    #5b7845 37px 38px,
    transparent 39px 61px
  );
  opacity: 0.1;
}
.screen-caption {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  z-index: 2;
}
.how-device {
  width: 245px;
  box-shadow: 0 20px 30px #2f4d3225;
  border-color: #78836f;
  border-width: 5px;
  border-radius: 28px;
}
.how-device img {
  border-radius: 22px;
}
.screen-bottom {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 9px;
  color: #6a775f;
}
.screen-bottom .icon {
  width: 13px;
  height: 13px;
}
.focus-note {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 27px;
}
.focus-note > .icon {
  color: var(--orange-dark);
  width: 19px;
  height: 19px;
}
.focus-note strong {
  font-size: 13px;
  white-space: nowrap;
}
.focus-note p {
  font-size: 12px;
  color: var(--muted);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 42px;
}
.section-heading > .intro {
  max-width: 390px;
  font-size: 14px;
  margin-bottom: 3px;
}
.community-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.community-card {
  padding: 32px 37px 34px;
  border: 1px solid #d5ddcd;
  border-radius: 6px;
  background: #e8eadc;
  position: relative;
  overflow: hidden;
}
.community-card::after {
  position: absolute;
  content: '+';
  font-size: 240px;
  line-height: 0.7;
  right: -20px;
  bottom: -30px;
  opacity: 0.035;
  pointer-events: none;
  font-weight: 300;
}
.card-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.card-index .icon {
  width: 32px;
  height: 32px;
  color: #5b7450;
  stroke-width: 1.3;
}
.card-index > span {
  font-size: 12px;
  font-weight: 600;
  color: #8e9d82;
}
.community-card .eyebrow {
  font-size: 9px;
  letter-spacing: 1.6px;
  margin-bottom: 17px;
}
.community-card h3 {
  font-size: 34px;
  line-height: 1.17;
  letter-spacing: -1.3px;
}
.community-card p {
  font-size: 13px;
  line-height: 1.9;
  color: #697760;
  max-width: 400px;
  margin-top: 19px;
}
.community-card .text-button {
  margin-top: 22px;
  font-size: 12px;
  gap: 18px;
}
.community-card.help {
  background: #294833;
  border-color: #294833;
  color: #f3f3df;
}
.community-card.help .eyebrow,
.community-card.help p {
  color: #c0cdb3;
}
.community-card.help .card-index .icon {
  color: #d2deae;
}
.community-card.help .card-index > span {
  color: #97ab86;
}
.community-card.help .text-button {
  color: #e3e9c5;
}
.origin {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-top: 46px;
  padding: 26px 0 30px;
  border-top: 1px solid var(--line);
}
.origin .eyebrow {
  font-size: 9px;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.origin h3 {
  font-size: 23px;
  line-height: 1.35;
}
.origin p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.origin .text-button {
  font-size: 12px;
  margin-top: 12px;
}
.identity {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: 7px;
  background: #e1e8d8;
  border: 1px solid #b9c9aa;
  border-left: 4px solid #526f45;
}
.identity > .icon {
  width: 38px;
  height: 38px;
  color: #426038;
  stroke-width: 1.5;
}
.identity > div {
  flex: 1;
}
.identity h3 {
  font-size: 22px;
  letter-spacing: -0.4px;
  line-height: 1.3;
}
.identity p {
  font-size: 14px;
  color: #475b40;
  line-height: 1.8;
  margin-top: 10px;
  max-width: 740px;
}
.identity .text-button {
  font-size: 12px;
  max-width: 175px;
  flex-shrink: 0;
  gap: 10px;
}
.offline {
  overflow: hidden;
  background: #eaece1;
  border-top: 1px solid #e0e4d8;
  border-bottom: 1px solid #e0e4d8;
  padding: 98px 0;
}
.offline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}
.offline-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  isolation: isolate;
}
.compass-rose {
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid #667e5133;
  border-radius: 50%;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.compass-rose::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px dashed #667e5140;
  border-radius: 50%;
}
.compass-rose::before {
  content: '';
  position: absolute;
  inset: 85px;
  border: 1px solid #667e5133;
  border-radius: 50%;
}
.compass-rose span {
  position: absolute;
  top: -27px;
  left: 49%;
  font-size: 11px;
  color: #667e5188;
}
.compass-rose i {
  position: absolute;
  inset: 0;
  transform: rotate(35deg);
}
.compass-rose i::after {
  content: '';
  position: absolute;
  height: 1px;
  left: -20px;
  right: -20px;
  top: 50%;
  background: #667e5125;
}
.compass-rose i::before {
  content: '';
  position: absolute;
  width: 1px;
  left: 50%;
  top: -20px;
  bottom: -20px;
  background: #667e5125;
}
.offline-device {
  width: 252px;
  transform: rotate(-3deg);
  border-color: #617351;
  box-shadow: 16px 22px 33px #3f502520;
}
.offline-caption {
  font-size: 9px;
  line-height: 1.7;
  color: #717e67;
  max-width: 310px;
  text-align: center;
  margin-top: 29px;
}
.offline-copy .eyebrow {
  margin-bottom: 12px;
}
.offline-copy h2 {
  font-size: 46px;
  line-height: 1.16;
}
.offline-copy > .intro {
  font-size: 14px;
  margin-top: 24px;
  line-height: 1.9;
}
.saved-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #faf6e9;
  border: 1px solid #e1d7b8;
  border-left: 3px solid #cf935b;
  padding: 18px;
  margin-top: 26px;
  border-radius: 3px;
}
.saved-note > .icon {
  width: 18px;
  height: 18px;
  color: #9c692c;
  margin-top: 3px;
}
.saved-note strong {
  font-size: 14px;
  line-height: 1.5;
}
.saved-note p {
  font-size: 12px;
  color: #7a725b;
  line-height: 1.85;
  margin-top: 5px;
}
.future-feature {
  margin-top: 26px;
  padding-top: 23px;
  border-top: 1px solid #ced7bf;
}
.future-feature .eyebrow {
  font-size: 8px;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
}
.future-feature h3 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.25px;
}
.future-feature p {
  font-size: 12px;
  line-height: 1.85;
  color: #6e7b64;
  margin-top: 7px;
}
.partners {
  background: var(--dark);
  color: var(--ivory);
  isolation: isolate;
  position: relative;
  overflow: hidden;
  padding: 99px 0 0;
}
.topo-partners {
  inset: -220px -100px -230px 42%;
  opacity: 0.045;
  transform: rotate(30deg);
}
.partners-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0 92px;
}
.partners .eyebrow {
  font-size: 9px;
  letter-spacing: 1.4px;
}
.partners h2 {
  font-size: 48px;
  line-height: 1.15;
}
.partners h2 span {
  color: #d6e2b8;
}
.partners-copy > .intro {
  color: #b9c7b1;
  font-size: 14px;
  line-height: 1.9;
  margin-top: 26px;
  max-width: 500px;
}
.partners-copy > .button {
  margin-top: 27px;
  font-size: 12px;
}
.partner-options {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}
.partner-option {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 31px 0;
  border-bottom: 1px solid #dae4c729;
}
.partner-option:first-child {
  padding-top: 0;
}
.partner-option:last-child {
  border-bottom: 0;
}
.option-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #304a35;
  border: 1px solid #52704b;
  border-radius: 4px;
  color: #d9e6b5;
  flex-shrink: 0;
}
.option-icon .icon {
  width: 22px;
  height: 22px;
}
.partner-option h3 {
  font-size: 18px;
  letter-spacing: -0.35px;
  line-height: 1.4;
  color: #f3f4e3;
}
.partner-option p {
  font-size: 12px;
  line-height: 1.95;
  margin-top: 10px;
  color: #afc1a7;
}
.partners-bottom {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 11px;
  color: #b6c8a7;
  padding: 27px 0;
  margin-top: 57px;
  border-top: 1px solid #dae4c729;
  line-height: 1.8;
}
.partners-bottom .icon {
  width: 17px;
  height: 17px;
  color: #d1dfb4;
}
.faq {
  display: grid;
  grid-template-columns: 0.78fr 1.3fr;
  gap: 100px;
  padding-top: 112px;
  padding-bottom: 112px;
}
.faq-heading h2 {
  font-size: 44px;
}
.faq-heading .intro {
  margin-top: 25px;
  font-size: 13px;
  line-height: 1.9;
}
.faq-heading .eyebrow {
  font-size: 9px;
  letter-spacing: 1.2px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 650;
  padding: 19px 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .icon {
  width: 17px;
  height: 17px;
  color: #637258;
  transition: transform 0.2s;
}
.faq-item[open] summary .icon {
  transform: rotate(45deg);
  color: var(--orange-dark);
}
.faq-item[open] summary {
  color: #315238;
}
.faq-item p {
  font-size: 12px;
  line-height: 1.95;
  color: #6c7862;
  padding: 0 27px 23px 0;
}
.closing {
  position: relative;
  border-top: 1px solid #d9e1cc;
  background: #e0e6d0;
  overflow: hidden;
  padding: 77px 0 84px;
}
.closing::before,
.closing::after {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 540px;
  height: 540px;
  border: 1px solid #9cac7929;
  border-radius: 50%;
  left: -220px;
  top: 35px;
}
.closing::after {
  left: auto;
  right: -220px;
  top: -250px;
  width: 630px;
  height: 630px;
}
.closing-inner {
  text-align: center;
  position: relative;
}
.closing .eyebrow {
  justify-content: center;
  font-size: 9px;
  letter-spacing: 1.6px;
  margin-bottom: 19px;
}
.closing h2 {
  font-size: 65px;
  line-height: 1.1;
  letter-spacing: -0.058em;
}
.closing h2 em {
  color: #64794d;
}
.closing p {
  max-width: 490px;
  margin: 21px auto 0;
  font-size: 14px;
  color: #6a785a;
  line-height: 1.9;
}
.closing .button {
  margin-top: 27px;
}
.closing-note {
  font-size: 10px;
  color: #667857;
  margin-top: 18px;
}
.closing-mark {
  display: inline-grid;
  place-items: center;
  border: 1px solid #b1c28d;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  margin-bottom: 21px;
  background: #d4ddbe;
}
.closing-mark .icon {
  width: 26px;
  height: 26px;
  color: #4b663a;
}
.footer {
  background: #f1f1e7;
  padding: 55px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 1fr;
  gap: 35px;
}
.footer-brand img {
  width: 152px;
}
.footer-brand p {
  font-size: 11px;
  color: #697860;
  line-height: 1.8;
  margin-top: 17px;
}
.footer-links h3 {
  font-size: 9px;
  letter-spacing: 1.6px;
  font-weight: 700;
  margin: 8px 0 17px;
}
.footer-links a,
.footer-links button {
  display: block;
  font-size: 11px;
  color: #63705a;
  line-height: 1.7;
  padding: 4px 0;
  text-align: left;
}
.footer-links a:hover,
.footer-links button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-safety {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 8px;
  color: #74816a;
}
.footer-safety .icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
.footer-safety p {
  font-size: 11px;
  line-height: 1.9;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #d7dfcb;
  margin-top: 2px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 35px;
  color: #7f8a77;
  font-size: 9px;
  line-height: 1.7;
}
.footer-bottom span:nth-child(2) {
  margin-left: auto;
}
.footer-bottom a {
  height: 29px;
  width: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-bottom a .icon {
  width: 15px;
  height: 15px;
}
body.modal-open {
  overflow: hidden;
}
dialog {
  border: 1px solid #ced9c1;
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  border-radius: 9px;
  box-shadow: 0 30px 100px #071c2755;
  max-height: 90dvh;
  width: min(620px, calc(100% - 36px));
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #0e271fc2;
  backdrop-filter: blur(6px);
}
.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 25px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 3;
}
.dialog-brand {
  display: block;
  flex-shrink: 0;
}
.dialog-brand img {
  display: block;
  width: 128px;
  height: auto;
}
.dialog-head > strong {
  font-size: 10px;
  letter-spacing: 0.9px;
}
.dialog-head .icon-button {
  height: 32px;
  width: 32px;
}
.dialog-head .icon-button .icon {
  height: 17px;
  width: 17px;
}
.contact-content {
  padding: 29px 34px 32px;
}
.contact-content .eyebrow {
  font-size: 8px;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}
.contact-content h2 {
  font-size: 36px;
  line-height: 1.12;
}
.contact-content .intro {
  font-size: 12px;
  margin-top: 15px;
  line-height: 1.9;
}
.preview-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  background: #f6ecd7;
  border: 1px solid #e6d6b1;
  border-radius: 5px;
  margin-top: 20px;
}
.preview-notice .icon {
  height: 17px;
  width: 17px;
  margin-top: 3px;
  color: #99662e;
}
.preview-notice strong {
  display: block;
  font-size: 8px;
  letter-spacing: 1px;
  color: #8d6126;
}
.preview-notice p {
  font-size: 11px;
  line-height: 1.85;
  color: #7e6d4e;
  margin-top: 3px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 22px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 650;
  margin-bottom: 6px;
}
.field label small {
  font-size: 10px;
  color: #72816a;
  font-weight: 400;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  max-width: 100%;
  background: #fffdf6;
  border: 1px solid #d1dbc4;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  padding: 9px 11px;
  min-height: 42px;
  outline-offset: 2px;
}
.field textarea {
  min-height: 86px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9ba78f;
  font-size: 11px;
}
.field select {
  padding-right: 23px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  line-height: 1.9;
  color: #5f7256;
  margin-top: 21px;
  cursor: pointer;
}
.consent input {
  accent-color: #365734;
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  flex-shrink: 0;
}
.form-footnote {
  font-size: 10px;
  line-height: 1.85;
  color: #839078;
  margin: 13px 0 0;
}
.form-submit {
  width: 100%;
  margin-top: 20px;
}
.form-error {
  font-size: 12px;
  line-height: 1.8;
  padding: 12px;
  border-radius: 4px;
  background: #f5dfd3;
  color: #8e3f24;
  margin-top: 13px;
}
#form-privacy-url {
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 10px;
}
#form-result {
  margin-top: 23px;
}
#form-result h3 {
  font-size: 26px;
  line-height: 1.25;
}
#form-result > p {
  font-size: 12px;
  color: #6a7b60;
  line-height: 1.85;
  margin-top: 14px;
}
.result-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #d9e6c6;
  color: #476039;
  border-radius: 50%;
  margin-bottom: 15px;
}
#draft-text {
  width: 100%;
  font-family: monospace;
  font-size: 11px;
  line-height: 1.8;
  color: #506545;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px;
  background: #fffdf6;
  margin-top: 19px;
  resize: vertical;
}
.result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.result-actions .button {
  font-size: 11px;
  gap: 9px;
  padding: 10px 14px;
  min-height: 42px;
}
.result-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
}
.result-bottom .text-button {
  font-size: 11px;
  color: #75836c;
}
.privacy-content {
  padding: 28px 32px 32px;
}
.privacy-content h2 {
  font-size: 30px;
}
.privacy-content p {
  font-size: 13px;
  line-height: 1.9;
  color: #687961;
  margin-top: 20px;
}
.privacy-content .button {
  margin-top: 24px;
  font-size: 11px;
  min-height: 42px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 15px);
  z-index: 100;
  background: #203e2e;
  color: #fffdeb;
  padding: 12px 20px;
  border: 1px solid #54754a;
  border-radius: 5px;
  font-size: 12px;
  box-shadow: 0 8px 24px #0003;
  max-width: calc(100% - 30px);
  width: max-content;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (min-width: 1650px) {
  .wrap {
    width: min(1350px, calc(100% - 120px));
  }
  .hero h1 {
    font-size: 87px;
  }
  .hero-copy {
    padding: 75px 0 65px;
  }
  .hero-art {
    min-height: 670px;
  }
  .hero-device {
    width: 263px;
  }
  .map-device {
    top: 85px;
    left: 27px;
  }
  .mission-device {
    top: 85px;
    right: 16px;
  }
  .floating-card {
    bottom: 17px;
  }
  .free-stamp {
    left: 0;
    top: 390px;
  }
  .stage-badge {
    left: 99px;
  }
  .hero-grid {
    gap: 0 60px;
  }
  .how-visual {
    min-height: 712px;
  }
  .how-device {
    width: 255px;
  }
  .how-copy {
    padding-top: 27px;
  }
}
@media (max-width: 1200px) {
  .wrap {
    width: calc(100% - 74px);
  }
  .hero-grid {
    gap: 0 25px;
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 66px;
  }
  .hero-copy {
    padding-top: 65px;
    padding-bottom: 40px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-art {
    min-height: 580px;
  }
  .hero-device {
    width: 213px;
  }
  .map-device {
    left: 8px;
    top: 87px;
  }
  .mission-device {
    right: 0;
    top: 113px;
  }
  .free-stamp {
    width: 117px;
    min-height: 115px;
    left: -15px;
    top: 338px;
    font-size: 11px;
    padding: 15px 10px;
  }
  .free-stamp .icon {
    margin-bottom: 8px;
  }
  .stage-badge {
    left: 35px;
    top: 28px;
    font-size: 9px;
  }
  .floating-card {
    bottom: 3px;
    font-size: 11px;
    padding: 11px 14px;
    right: 0;
  }
  .floating-card strong {
    font-size: 11px;
  }
  .hero-coordinates {
    right: 15px;
    top: 22px;
  }
  .radar-rings {
    width: 490px;
    height: 490px;
    left: -17px;
    top: 45px;
  }
  .hero-actions {
    gap: 19px;
  }
  .hero .button {
    font-size: 12px;
    padding: 14px 17px;
    gap: 15px;
  }
  .hero .text-button {
    font-size: 11px;
  }
  .problem-grid {
    gap: 40px;
  }
  .problem h2 {
    font-size: 32px;
  }
  .problem p {
    font-size: 13px;
  }
  .how-grid {
    gap: 35px 50px;
  }
  .how h2 {
    font-size: 45px;
  }
  .how-visual {
    min-height: 655px;
    padding: 27px 20px;
  }
  .how-device {
    width: 233px;
  }
  .how .intro {
    font-size: 13px;
  }
  .step-copy strong {
    font-size: 16px;
  }
  .step-description {
    font-size: 12px;
  }
  .section {
    padding: 88px 0;
  }
  .community-card {
    padding: 28px;
  }
  .community-card h3 {
    font-size: 31px;
  }
  .section-heading {
    gap: 45px;
  }
  .section-heading > .intro {
    max-width: 330px;
    font-size: 13px;
  }
  .origin {
    gap: 40px;
  }
  .identity {
    gap: 15px;
    padding: 21px;
  }
  .identity .text-button {
    max-width: 143px;
  }
  .offline-grid {
    gap: 60px;
  }
  .offline-copy h2 {
    font-size: 40px;
  }
  .offline-copy > .intro {
    font-size: 13px;
  }
  .offline-device {
    width: 235px;
  }
  .compass-rose {
    width: 380px;
    height: 380px;
    top: 87px;
  }
  .partners {
    padding-bottom: 0;
  }
  .partners-grid {
    gap: 0 55px;
  }
  .partners h2 {
    font-size: 42px;
  }
  .partners-copy > .intro {
    font-size: 13px;
  }
  .partners .eyebrow {
    font-size: 8px;
  }
  .partner-option {
    gap: 16px;
  }
  .partner-option h3 {
    font-size: 16px;
  }
  .option-icon {
    width: 40px;
    height: 40px;
  }
  .partner-option p {
    font-size: 11px;
  }
  .faq {
    gap: 55px;
  }
  .faq-heading h2 {
    font-size: 39px;
  }
  .faq-item summary {
    font-size: 13px;
  }
  .closing h2 {
    font-size: 58px;
  }
  .footer-grid {
    gap: 25px;
  }
  .footer-safety p {
    font-size: 10px;
  }
}
@media (max-width: 980px) {
  .header,
  .consent-note {
    --nav-radius: 22px;
    --mud-height: 24px;
    --mud-bottom: -12px;
    --mud-wash-height: 40px;
  }
  .header {
    --header-top: max(12px, env(safe-area-inset-top));
    height: 68px;
    left: 16px;
    right: 16px;
    width: min(760px, calc(100% - 32px));
  }
  .nav-wrap {
    gap: 12px;
    padding: 8px 10px 8px 18px;
  }
  .brand img {
    width: 108px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 24px);
    left: auto;
    right: 0;
    width: min(400px, 100%);
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 12px;
    background: #f6f4eb;
    border: 1px solid #ffffffa3;
    border-radius: 22px;
    box-shadow: 0 14px 32px #10271c26;
    gap: 4px;
    max-height: calc(100dvh - max(12px, env(safe-area-inset-top)) - 108px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 12px;
  }
  .main-nav a::after {
    left: 18px;
    right: 18px;
  }
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-color: #20382c26;
    background: #ffffff40;
  }
  .menu-toggle[aria-expanded='true'] {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
  }
  .hero {
    padding-top: 92px;
  }
  .nav-cta {
    padding: 10px 16px;
    gap: 11px;
    font-size: 11px;
    min-height: 44px;
  }
  .nav-actions {
    gap: 10px;
  }
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 0 20px;
  }
  .hero-copy {
    padding-top: 55px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.9;
  }
  .hero .eyebrow {
    font-size: 8px;
    margin-bottom: 22px;
  }
  .hero-actions {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
    margin-top: 24px;
  }
  .hero-actions > .text-button {
    padding-left: 1px;
  }
  .platform {
    font-size: 9px;
    margin-top: 15px;
    gap: 5px;
  }
  .hero-art {
    min-height: 570px;
  }
  .hero-device {
    width: 190px;
    border-width: 5px;
    border-radius: 27px;
  }
  .hero-device img {
    border-radius: 21px;
  }
  .map-device {
    left: -3px;
    top: 75px;
    transform: rotate(-9deg);
  }
  .mission-device {
    top: 155px;
    right: -1px;
    transform: rotate(7deg);
  }
  .free-stamp {
    width: 99px;
    min-height: 102px;
    top: 324px;
    left: -10px;
    font-size: 9px;
    padding: 13px 9px;
  }
  .free-stamp .icon {
    width: 20px;
    height: 20px;
  }
  .floating-card {
    right: 0;
    bottom: 3px;
    padding: 10px 12px;
    gap: 8px;
  }
  .floating-card strong {
    font-size: 10px;
  }
  .floating-card .icon {
    height: 18px;
    width: 18px;
  }
  .hero-coordinates {
    right: 2px;
    top: 48px;
  }
  .stage-badge {
    left: 13px;
    top: 13px;
    font-size: 8px;
    padding: 6px 9px;
  }
  .radar-rings {
    left: -65px;
    top: 55px;
  }
  .hero-bottom p {
    font-size: 8px;
    max-width: 320px;
  }
  .principles .wrap {
    min-height: 75px;
    gap: 16px;
  }
  .principles .wrap > div {
    font-size: 10px;
    gap: 9px;
    line-height: 1.7;
  }
  .principles .icon {
    width: 17px;
    height: 17px;
  }
  .problem-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 30px;
  }
  .problem h2 {
    font-size: 28px;
  }
  .problem .eyebrow {
    font-size: 9px;
  }
  .how-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 25px 30px;
  }
  .how h2 {
    font-size: 38px;
  }
  .how .eyebrow {
    font-size: 9px;
  }
  .how .intro {
    font-size: 12px;
  }
  .how-visual {
    min-height: 597px;
  }
  .how-device {
    width: 210px;
    border-radius: 25px;
    border-width: 4px;
  }
  .how-device img {
    border-radius: 20px;
  }
  .step {
    gap: 12px;
    padding: 18px 0;
  }
  .step-copy strong {
    font-size: 15px;
  }
  .step-description {
    font-size: 11px;
    line-height: 1.85;
    margin-top: 9px;
  }
  .steps {
    margin-top: 22px;
  }
  .step > .icon {
    width: 15px;
    height: 15px;
  }
  .screen-caption {
    font-size: 9px;
    margin-bottom: 24px;
  }
  .screen-bottom {
    font-size: 8px;
    text-align: center;
  }
  .focus-note {
    gap: 10px;
  }
  .focus-note strong {
    font-size: 11px;
  }
  .focus-note p {
    font-size: 10px;
    max-width: 450px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .section-heading > .intro {
    font-size: 12px;
    max-width: 290px;
  }
  .community-card h3 {
    font-size: 27px;
  }
  .community-card p {
    font-size: 12px;
  }
  .community-card .text-button {
    font-size: 11px;
    gap: 12px;
  }
  .origin {
    gap: 34px;
  }
  .origin h3 {
    font-size: 21px;
  }
  .origin p {
    font-size: 12px;
  }
  .identity {
    flex-wrap: wrap;
  }
  .identity > div {
    min-width: 75%;
  }
  .identity .text-button {
    max-width: none;
    margin-left: 48px;
    padding-top: 0;
  }
  .offline-grid {
    gap: 40px;
  }
  .offline-copy h2 {
    font-size: 35px;
  }
  .offline-copy > .intro {
    font-size: 12px;
  }
  .offline .eyebrow {
    font-size: 9px;
  }
  .offline-device {
    width: 216px;
  }
  .compass-rose {
    width: 330px;
    height: 330px;
    top: 90px;
  }
  .saved-note {
    padding: 14px;
    gap: 9px;
  }
  .saved-note strong {
    font-size: 12px;
  }
  .saved-note p {
    font-size: 11px;
  }
  .future-feature h3 {
    font-size: 14px;
  }
  .future-feature p {
    font-size: 11px;
  }
  .offline-caption {
    font-size: 8px;
    max-width: 260px;
  }
  .partners-grid {
    gap: 0 36px;
  }
  .partners h2 {
    font-size: 37px;
  }
  .partners .button {
    padding: 12px 16px;
    font-size: 11px;
    gap: 13px;
  }
  .partner-option {
    gap: 12px;
  }
  .option-icon {
    width: 35px;
    height: 35px;
  }
  .option-icon .icon {
    width: 19px;
    height: 19px;
  }
  .partner-option h3 {
    font-size: 15px;
  }
  .partners-bottom {
    margin-top: 40px;
    font-size: 10px;
  }
  .faq {
    grid-template-columns: 0.75fr 1.2fr;
    gap: 40px;
  }
  .faq-heading h2 {
    font-size: 33px;
  }
  .faq-heading .eyebrow {
    font-size: 8px;
  }
  .faq-heading .intro {
    font-size: 12px;
  }
  .faq-item summary {
    font-size: 12px;
  }
  .faq-item p {
    font-size: 11px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 0.9fr 1fr;
    gap: 25px;
  }
  .footer-safety {
    grid-column: 1/-1;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
  }
  .footer-bottom {
    margin-top: 0;
  }
  .footer-safety p {
    font-size: 10px;
  }
  .closing h2 {
    font-size: 55px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 108px;
  }
  .wrap {
    width: calc(100% - 44px);
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-copy {
    padding-top: 44px;
    padding-bottom: 38px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1.1px;
    gap: 7px;
    margin-bottom: 23px;
  }
  .hero .eyebrow .icon {
    width: 16px;
    height: 16px;
  }
  .hero-description {
    font-size: 12px;
    margin-top: 20px;
    line-height: 1.9;
  }
  .hero .button {
    font-size: 11px;
    gap: 12px;
    min-height: 48px;
    padding: 12px 15px;
  }
  .hero-art {
    min-height: 550px;
  }
  .hero-device {
    width: 168px;
  }
  .map-device {
    top: 100px;
    left: 1px;
  }
  .mission-device {
    top: 181px;
    right: 0;
  }
  .stage-badge {
    font-size: 7px;
    left: 0;
    top: 48px;
    letter-spacing: 0;
  }
  .hero-coordinates {
    top: 68px;
  }
  .free-stamp {
    width: 87px;
    min-height: 87px;
    font-size: 8px;
    top: 324px;
    left: -3px;
    padding: 10px 6px;
  }
  .free-stamp .icon {
    width: 18px;
    height: 18px;
    margin-bottom: 5px;
  }
  .floating-card {
    bottom: 1px;
    right: 0;
    padding: 9px 10px;
    gap: 7px;
    max-width: 230px;
  }
  .floating-card strong {
    font-size: 9px;
  }
  .floating-card small {
    font-size: 7px;
  }
  .hero-bottom {
    gap: 20px;
    padding: 16px 0 20px;
  }
  .hero-bottom p {
    font-size: 8px;
    max-width: 280px;
  }
  .principles .wrap {
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 17px 0;
    gap: 15px 20px;
    min-height: 0;
  }
  .principles .wrap > div {
    font-size: 10px;
  }
  .section {
    padding: 68px 0;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .problem h2 {
    font-size: 33px;
  }
  .problem p {
    font-size: 13px;
    max-width: 580px;
  }
  .problem .eyebrow {
    font-size: 8px;
  }
  .how-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 25px 24px;
  }
  .how h2 {
    font-size: 33px;
  }
  .how .eyebrow {
    font-size: 8px;
  }
  .how-copy {
    padding-top: 9px;
  }
  .how .intro {
    font-size: 11px;
    margin-top: 19px;
  }
  .step {
    gap: 9px;
    padding: 16px 0;
  }
  .step-copy strong {
    font-size: 13px;
  }
  .step-number {
    font-size: 9px;
    min-width: 15px;
  }
  .step-description {
    font-size: 10px;
  }
  .step > .icon {
    height: 12px;
    width: 12px;
  }
  .how-visual {
    padding: 20px 13px;
    min-height: 547px;
  }
  .how-device {
    width: 185px;
    border-width: 4px;
    border-radius: 24px;
  }
  .how-device img {
    border-radius: 19px;
  }
  .screen-caption {
    font-size: 8px;
    margin-bottom: 24px;
  }
  .screen-bottom {
    font-size: 8px;
    line-height: 1.6;
  }
  .focus-note {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 22px;
    gap: 6px 10px;
  }
  .focus-note p {
    margin-left: 29px;
    max-width: 500px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 30px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
  }
  .section-heading > .intro {
    font-size: 11px;
    max-width: 260px;
    padding-top: 43px;
  }
  .community-cards {
    gap: 15px;
  }
  .community-card {
    padding: 25px;
  }
  .community-card h3 {
    font-size: 25px;
  }
  .community-card .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .card-index {
    margin-bottom: 25px;
  }
  .card-index .icon {
    width: 27px;
    height: 27px;
  }
  .community-card p {
    font-size: 11px;
  }
  .community-card .text-button {
    font-size: 10px;
    gap: 10px;
    text-align: left;
  }
  .origin {
    gap: 28px;
    margin-top: 32px;
    padding-bottom: 24px;
  }
  .origin h3 {
    font-size: 19px;
  }
  .origin .eyebrow {
    font-size: 8px;
  }
  .origin p {
    font-size: 11px;
  }
  .origin .text-button {
    font-size: 10px;
    text-align: left;
  }
  .identity h3 {
    font-size: 22px;
    letter-spacing: -0.4px;
    line-height: 1.3;
  }
  .identity p {
    font-size: 14px;
    color: #475b40;
    line-height: 1.8;
    margin-top: 10px;
    max-width: 740px;
  }
  .offline-grid {
    gap: 27px;
    grid-template-columns: 0.85fr 1fr;
  }
  .offline-copy h2 {
    font-size: 31px;
  }
  .offline-device {
    width: 199px;
  }
  .compass-rose {
    width: 260px;
    height: 260px;
    top: 97px;
  }
  .offline-copy > .intro {
    font-size: 11px;
    margin-top: 19px;
  }
  .saved-note {
    margin-top: 20px;
  }
  .saved-note p {
    font-size: 10px;
  }
  .future-feature {
    margin-top: 21px;
    padding-top: 20px;
  }
  .future-feature h3 {
    font-size: 13px;
  }
  .future-feature p {
    font-size: 10px;
  }
  .offline .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .future-feature .eyebrow {
    font-size: 7px;
  }
  .partners {
    padding-bottom: 0;
  }
  .partners-grid {
    gap: 0 33px;
    grid-template-columns: 1.1fr 1fr;
  }
  .partners h2 {
    font-size: 32px;
  }
  .partners-copy > .intro {
    font-size: 12px;
  }
  .partners .eyebrow {
    font-size: 7px;
    letter-spacing: 1.1px;
  }
  .partner-option {
    gap: 10px;
    padding: 25px 0;
  }
  .partner-option h3 {
    font-size: 14px;
  }
  .partner-option p {
    font-size: 10px;
  }
  .option-icon {
    width: 30px;
    height: 30px;
  }
  .option-icon .icon {
    width: 17px;
    height: 17px;
  }
  .partners .button {
    font-size: 10px;
    padding: 12px;
    gap: 10px;
  }
  .partners-bottom {
    font-size: 9px;
    gap: 9px;
    justify-content: flex-start;
  }
  .faq {
    gap: 30px;
    grid-template-columns: 0.77fr 1.2fr;
  }
  .faq-heading h2 {
    font-size: 30px;
  }
  .faq-heading .intro {
    font-size: 11px;
  }
  .faq-item summary {
    font-size: 11px;
    gap: 20px;
    padding: 16px 0;
  }
  .faq-item p {
    font-size: 10px;
    padding-right: 10px;
  }
  .closing h2 {
    font-size: 51px;
  }
  .closing p {
    font-size: 13px;
  }
  .footer {
    padding-top: 40px;
  }
  .footer-links h3 {
    font-size: 8px;
  }
  .footer-brand img {
    width: 133px;
  }
  .footer-brand p {
    font-size: 10px;
  }
  .footer-links a,
  .footer-links button {
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 20px;
  }
}
@media (max-width: 570px) {
  .header,
  .consent-note {
    --mud-height: 18px;
    --mud-bottom: -9px;
    --mud-wash-height: 28px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .brand img {
    width: 98px;
  }
  .nav-cta {
    display: none;
  }
  .mobile-nav-cta {
    display: flex;
    margin-top: 6px;
    justify-content: space-between;
    padding-inline: 18px;
    font-size: 13px;
    border-radius: 12px;
    min-height: 48px;
  }
  .nav-actions {
    gap: 6px;
  }
  .header {
    height: 64px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy {
    padding: 38px 0 22px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(43px, 10.9vw, 62px);
    letter-spacing: -0.058em;
    line-height: 1.04;
    max-width: 450px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.85;
    max-width: 425px;
    margin-top: 23px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    margin-top: 23px;
  }
  .hero .button {
    font-size: 11px;
    min-height: 47px;
    gap: 11px;
  }
  .hero .text-button {
    font-size: 10px;
    gap: 8px;
  }
  .platform {
    font-size: 9px;
    margin-top: 17px;
  }
  .hero-art {
    min-height: 498px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    align-self: stretch;
  }
  .hero-device {
    width: 190px;
    border-width: 5px;
    border-radius: 27px;
  }
  .hero-device img {
    border-radius: 21px;
  }
  .map-device {
    top: 65px;
    left: 19px;
    transform: rotate(-9deg);
  }
  .mission-device {
    top: 85px;
    right: 10px;
    transform: rotate(7deg);
  }
  .stage-badge {
    top: 7px;
    left: 67px;
    font-size: 8px;
    padding: 6px 11px;
  }
  .free-stamp {
    left: 2px;
    top: 312px;
    width: 105px;
    min-height: 101px;
    padding: 14px 10px;
    font-size: 9px;
  }
  .free-stamp .icon {
    height: 22px;
    width: 22px;
    margin-bottom: 7px;
  }
  .floating-card {
    right: 8px;
    bottom: 0;
    padding: 10px 13px;
    gap: 8px;
  }
  .floating-card strong {
    font-size: 10px;
  }
  .floating-card small {
    font-size: 7px;
  }
  .radar-rings {
    top: 0;
    left: -45px;
    width: 460px;
    height: 460px;
  }
  .hero-coordinates {
    right: 13px;
    top: 30px;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 26px;
    padding-top: 20px;
    padding-bottom: 23px;
  }
  .hero-bottom p {
    text-align: left;
    max-width: 100%;
    font-size: 8px;
  }
  .principles .wrap {
    gap: 14px 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .principles .wrap > div {
    font-size: 9px;
    gap: 7px;
  }
  .principles .icon {
    height: 16px;
    width: 16px;
  }
  .section {
    padding: 60px 0;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.25px;
    margin-bottom: 18px;
  }
  .problem-grid {
    gap: 20px;
  }
  .problem h2 {
    font-size: 31px;
    line-height: 1.22;
    letter-spacing: -1.25px;
  }
  .problem h2 br {
    display: none;
  }
  .problem h2 em {
    display: block;
    margin-top: 2px;
  }
  .problem p {
    font-size: 12px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .how h2 {
    font-size: 39px;
  }
  .how .intro {
    font-size: 12px;
    max-width: none;
    margin-top: 20px;
  }
  .how-copy {
    padding-top: 0;
  }
  .steps {
    margin-top: 26px;
  }
  .step {
    padding: 20px 0;
    gap: 14px;
  }
  .step-copy strong {
    font-size: 16px;
  }
  .step-number {
    font-size: 11px;
    min-width: 21px;
  }
  .step-description {
    font-size: 12px;
    line-height: 1.85;
    max-width: none;
  }
  .step > .icon {
    height: 17px;
    width: 17px;
  }
  .how-visual {
    min-height: 622px;
    padding: 27px 18px;
    border-radius: 5px;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
  .how-device {
    width: 222px;
    border-radius: 27px;
  }
  .how-device img {
    border-radius: 23px;
  }
  .screen-caption {
    font-size: 9px;
    margin-bottom: 24px;
  }
  .screen-bottom {
    font-size: 9px;
  }
  .focus-note {
    gap: 8px 10px;
    padding-top: 23px;
    align-items: center;
  }
  .focus-note strong {
    font-size: 12px;
  }
  .focus-note p {
    font-size: 11px;
    margin-left: 29px;
    line-height: 1.8;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .section-heading > .intro {
    max-width: 380px;
    font-size: 12px;
    line-height: 1.85;
    padding-top: 0;
    margin-top: 19px;
  }
  .community-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .community-card {
    padding: 28px;
  }
  .community-card h3 {
    font-size: 31px;
    letter-spacing: -1.1px;
  }
  .community-card p {
    font-size: 12px;
  }
  .community-card .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .card-index {
    margin-bottom: 27px;
  }
  .card-index .icon {
    width: 29px;
    height: 29px;
  }
  .community-card .text-button {
    font-size: 12px;
    margin-top: 20px;
  }
  .origin {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 25px 0 26px;
    margin-top: 29px;
  }
  .origin h3 {
    font-size: 24px;
  }
  .origin .eyebrow {
    margin-bottom: 12px;
    font-size: 8px;
  }
  .origin p {
    font-size: 12px;
  }
  .origin .text-button {
    font-size: 12px;
  }
  .identity {
    align-items: flex-start;
    padding: 21px 18px;
    gap: 12px;
  }
  .identity > .icon {
    width: 38px;
    height: 38px;
    color: #426038;
    stroke-width: 1.5;
  }
  .identity > div {
    min-width: 0;
    flex-basis: calc(100% - 50px);
  }
  .identity h3 {
    font-size: 22px;
    letter-spacing: -0.4px;
    line-height: 1.3;
  }
  .identity p {
    font-size: 14px;
    color: #475b40;
    line-height: 1.8;
    margin-top: 10px;
    max-width: 740px;
  }
  .identity .text-button {
    font-size: 12px;
    margin-left: 50px;
  }
  .offline-grid {
    grid-template-columns: 1fr;
    gap: 39px;
  }
  .offline-copy {
    grid-row: 1;
  }
  .offline-copy h2 {
    font-size: 37px;
  }
  .offline-copy > .intro {
    font-size: 12px;
    margin-top: 20px;
  }
  .offline-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .saved-note {
    padding: 17px;
    margin-top: 22px;
    gap: 12px;
  }
  .saved-note strong {
    font-size: 14px;
  }
  .saved-note p {
    font-size: 11px;
  }
  .future-feature {
    margin-top: 24px;
    padding-top: 21px;
  }
  .future-feature .eyebrow {
    font-size: 8px;
  }
  .future-feature h3 {
    font-size: 16px;
  }
  .future-feature p {
    font-size: 12px;
    line-height: 1.9;
  }
  .offline-device {
    width: 233px;
    border-width: 5px;
    border-radius: 28px;
  }
  .offline-device img {
    border-radius: 22px;
  }
  .compass-rose {
    width: 335px;
    height: 335px;
    top: 76px;
  }
  .offline-caption {
    max-width: 310px;
    font-size: 9px;
  }
  .partners {
    padding-bottom: 0;
  }
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .partners h2 {
    font-size: 38px;
  }
  .partners .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
    margin-bottom: 20px;
  }
  .partners-copy > .intro {
    font-size: 13px;
    margin-top: 24px;
  }
  .partners .button {
    font-size: 11px;
    min-height: 49px;
    padding: 13px 18px;
    gap: 18px;
  }
  .partner-options {
    padding-top: 0;
  }
  .partner-option {
    padding: 26px 0;
    gap: 17px;
  }
  .partner-option:first-child {
    padding-top: 26px;
    border-top: 1px solid #dae4c729;
  }
  .option-icon {
    width: 40px;
    height: 40px;
  }
  .option-icon .icon {
    width: 21px;
    height: 21px;
  }
  .partner-option h3 {
    font-size: 17px;
  }
  .partner-option p {
    font-size: 12px;
    line-height: 1.85;
    margin-top: 10px;
  }
  .partners-bottom {
    grid-column: 1;
    margin-top: 0;
    padding: 22px 0 26px;
    gap: 12px;
    font-size: 10px;
    align-items: flex-start;
  }
  .partners-bottom .icon {
    margin-top: 4px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .faq-heading h2 {
    font-size: 39px;
  }
  .faq-heading .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .faq-heading .intro {
    font-size: 12px;
    max-width: 370px;
    margin-top: 18px;
  }
  .faq-item summary {
    font-size: 13px;
    gap: 22px;
    padding: 19px 0;
    line-height: 1.6;
  }
  .faq-item p {
    font-size: 12px;
    line-height: 1.9;
    padding-bottom: 23px;
  }
  .closing {
    padding: 57px 0 62px;
  }
  .closing h2 {
    font-size: 43px;
    line-height: 1.11;
    letter-spacing: -0.055em;
  }
  .closing .eyebrow {
    font-size: 7px;
    letter-spacing: 1.3px;
  }
  .closing p {
    font-size: 12px;
    max-width: 340px;
  }
  .closing .button {
    font-size: 12px;
    gap: 19px;
  }
  .closing-note {
    font-size: 9px;
    line-height: 1.8;
  }
  .closing-mark {
    height: 47px;
    width: 47px;
  }
  .footer {
    padding-top: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .footer-brand p {
    margin: 0;
    font-size: 10px;
  }
  .footer-brand img {
    width: 135px;
  }
  .footer-links h3 {
    font-size: 8px;
    margin-bottom: 13px;
    letter-spacing: 1.5px;
  }
  .footer-links a,
  .footer-links button {
    font-size: 11px;
    padding: 5px 0;
  }
  .footer-safety {
    padding-top: 22px;
  }
  .footer-safety p {
    font-size: 10px;
  }
  .footer-bottom {
    position: relative;
    display: block;
    font-size: 8px;
    padding-top: 19px;
    padding-bottom: 22px;
    padding-right: 35px;
    margin-top: -5px;
  }
  .footer-bottom span {
    display: block;
  }
  .footer-bottom span:nth-child(2) {
    margin-top: 5px;
  }
  .footer-bottom a {
    position: absolute;
    right: 0;
    top: 23px;
  }
  .contact-content {
    padding: 24px;
  }
  .contact-content h2 {
    font-size: 31px;
  }
  .dialog-head {
    padding: 14px 20px;
  }
  .contact-content .intro {
    font-size: 12px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .field.full {
    grid-column: auto;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
    min-height: 44px;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    font-size: 12px;
  }
  .field label {
    font-size: 12px;
  }
  .consent {
    font-size: 11px;
  }
  .preview-notice {
    padding: 12px;
  }
  .preview-notice p {
    font-size: 10px;
  }
  .form-footnote {
    font-size: 9px;
  }
  .form-submit {
    font-size: 12px;
  }
  .result-actions .button {
    flex: 1;
    font-size: 10px;
    gap: 7px;
  }
  .privacy-content {
    padding: 23px;
  }
  .privacy-content h2 {
    font-size: 29px;
  }
  .privacy-content p {
    font-size: 12px;
  }
  dialog {
    max-height: 92dvh;
    width: calc(100% - 28px);
  }
  .toast {
    font-size: 11px;
    padding: 10px 14px;
    bottom: 16px;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero .button {
    font-size: 10px;
    padding: 12px 13px;
  }
  .hero .text-button {
    font-size: 9px;
    gap: 7px;
  }
  .hero-art {
    min-height: 455px;
  }
  .hero-device {
    width: 171px;
  }
  .map-device {
    top: 68px;
    left: 8px;
  }
  .mission-device {
    top: 86px;
    right: 2px;
  }
  .stage-badge {
    left: 44px;
    top: 14px;
    font-size: 8px;
  }
  .free-stamp {
    width: 91px;
    min-height: 91px;
    top: 300px;
    left: 0;
    font-size: 8px;
    padding: 11px 7px;
  }
  .free-stamp .icon {
    width: 20px;
    height: 20px;
  }
  .floating-card {
    bottom: 0;
    right: 0;
    max-width: 220px;
  }
  .floating-card strong {
    font-size: 9px;
  }
  .compass-rose {
    width: 285px;
    height: 285px;
    top: 95px;
  }
  .principles .wrap > div {
    font-size: 8px;
    gap: 6px;
  }
  .problem h2 {
    font-size: 29px;
  }
  .how h2,
  .section-heading h2,
  .faq-heading h2 {
    font-size: 35px;
  }
  .community-card {
    padding: 25px;
  }
  .community-card h3 {
    font-size: 29px;
  }
  .partners h2 {
    font-size: 34px;
  }
  .closing h2 {
    font-size: 38px;
  }
  .closing .eyebrow {
    font-size: 7px;
    letter-spacing: 0.85px;
  }
  .form-grid {
    gap: 13px;
  }
  .contact-content {
    padding: 20px;
  }
  .contact-content h2 {
    font-size: 29px;
  }
}
/* Keep each contact step small enough to read and act on in one view.
   Short viewports and enlarged text retain the dialog's natural scrolling. */
.contact-dialog {
  position: fixed;
  width: min(560px, calc(100% - 24px));
  max-height: calc(var(--contact-viewport-height, 100dvh) - 24px);
  top: calc(var(--contact-viewport-offset, 0px) + var(--contact-viewport-height, 100dvh) / 2);
  bottom: auto;
  margin-block: 0;
  transform: translateY(-50%);
  overflow-y: auto;
}
.contact-dialog .dialog-head {
  padding: 8px 22px;
}
.contact-dialog .dialog-head .icon-button {
  width: 44px;
  height: 44px;
}
.contact-dialog .contact-content {
  padding: 20px 28px 24px;
}
.form-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.contact-dialog .eyebrow {
  margin: 0;
  font-size: 8px;
  letter-spacing: 1px;
}
#form-progress {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.contact-dialog h2 {
  font-size: clamp(22px, 5.5vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.8px;
}
.contact-dialog .intro {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
}
.form-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.form-steps li {
  border-top: 3px solid var(--line);
  padding-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}
.form-steps li[aria-current] {
  border-color: var(--orange);
  color: var(--ink);
  font-weight: 700;
}
.form-steps li.complete {
  border-color: var(--green);
}
#contact-form fieldset {
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0;
}
.contact-dialog .form-grid {
  margin-top: 18px;
  gap: 12px;
}
.contact-dialog .field label {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.5;
}
.contact-dialog .field input,
.contact-dialog .field textarea,
.contact-dialog .field select {
  font-size: 16px;
  min-height: 44px;
  padding: 8px 10px;
}
.contact-dialog .field textarea {
  min-height: 76px;
  height: 76px;
  line-height: 1.45;
}
.contact-dialog .preview-notice {
  margin-top: 14px;
  padding: 9px 11px;
}
.contact-dialog .preview-notice p {
  font-size: 10px;
  line-height: 1.5;
}
.contact-dialog .consent {
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.6;
}
.contact-dialog .form-footnote {
  margin-top: 9px;
  font-size: 10px;
  line-height: 1.5;
}
.contact-dialog #form-privacy-url {
  display: inline-block;
  margin-top: 9px;
  line-height: 1.5;
}
.form-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 22px;
}
.form-actions .button {
  min-height: 46px;
  padding: 12px 16px;
  font-size: 12px;
  line-height: 1.4;
}
.form-actions .primary {
  flex: 1;
  justify-content: center;
  width: auto;
  margin: 0;
}
.contact-dialog button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}
@media (max-width: 600px) {
  .contact-dialog .contact-content {
    padding: 16px 20px 20px;
  }
  .contact-dialog .dialog-head {
    padding: 6px 14px;
  }
  .contact-dialog .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-dialog .field.full {
    grid-column: auto;
  }
}
@media (max-height: 740px) {
  .contact-dialog .form-steps {
    margin-top: 12px;
  }
  .contact-dialog .form-actions {
    margin-top: 16px;
  }
}
/* Small, action-led feedback. Reading sections and decorative artwork stay still. */
.icon-button,
.language a,
.footer-bottom a,
.step,
.faq-item summary,
.field input,
.field select,
.field textarea,
.form-steps li {
  transition:
    background-color var(--feedback-time),
    border-color var(--feedback-time),
    color var(--feedback-time);
}
.step > .icon,
.button > .icon,
.footer-bottom a > .icon {
  transition: transform var(--feedback-time) var(--feedback-ease);
}
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}
.field :is(input, select, textarea):focus {
  border-color: var(--green);
}
.field :is(input, textarea)::placeholder {
  color: var(--muted);
}
.field :is(input, select, textarea):user-invalid {
  border-color: #a3410b;
}
.confirmation footer a {
  text-underline-offset: 4px;
}
.button:active:not(:disabled),
.button.primary:active:not(:disabled),
.icon-button:active:not(:disabled),
.confirmation button:active:not(:disabled) {
  transform: translateY(1px);
}
.confirmation button:disabled {
  cursor: wait;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover:not(:disabled) > .icon {
    transform: translateX(3px);
  }
  #form-back:hover:not(:disabled) > .icon {
    transform: translateX(-3px);
  }
  .main-nav a:hover {
    background: #20382c0a;
  }
  .language a:not([aria-current]):hover,
  .footer-bottom a:hover {
    background: var(--sage);
    color: var(--ink);
  }
  .footer-bottom a:hover > .icon {
    transform: translateY(-2px);
  }
  .faq-item summary:hover {
    color: var(--orange-dark);
  }
  .confirmation footer a:hover,
  .footer-links :is(a, button):hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  @keyframes feedback-enter {
    from {
      opacity: 0;
      transform: translateY(6px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes feedback-fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* Opacity on the dialog preserves the contact dialog's centering transform.
     Closing remains immediate, so focus, reset and cancellation never wait. */
  dialog[open],
  dialog[open]::backdrop {
    animation: feedback-fade 180ms var(--feedback-ease);
  }
  [data-form-step]:not([hidden]),
  #form-result:not([hidden]),
  .faq-item[open] > p,
  .step.active .step-description {
    animation: feedback-enter 220ms var(--feedback-ease);
  }
  @media (max-width: 980px) {
    .main-nav.open {
      animation: feedback-enter 180ms var(--feedback-ease);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .button,
  .button > .icon,
  .text-button .icon,
  .icon-button,
  .footer-bottom a > .icon,
  .confirmation button {
    transform: none !important;
  }
}
@media (max-width: 980px) {
  @supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .main-nav {
      background: rgb(246 244 235 / 94%);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
    }
  }
}
@media (prefers-reduced-transparency: reduce) {
  .nav-wrap::before,
  .consent-note::before,
  .main-nav {
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
@media print {
  @page {
    size: A4;
    margin: 14mm;
  }
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  body {
    font-size: 10pt;
    background: white;
  }
  .header {
    position: static;
    transform: none !important;
    height: 65px;
    width: 100%;
  }
  .nav-wrap::before,
  .nav-wrap::after,
  #mud-scene,
  .mud-source,
  .nav-mud-body,
  .nav-mud-drips,
  .nav-mud {
    display: none;
  }
  .hero {
    padding-top: 0;
  }
  .nav-wrap {
    width: 100%;
  }
  .main-nav,
  .nav-actions,
  .button,
  .text-button,
  dialog,
  .toast,
  .hero-art,
  .topo,
  .compass-rose {
    display: none !important;
  }
  .wrap {
    width: 100%;
  }
  .hero-grid {
    display: block;
  }
  .hero-copy {
    padding: 30px;
  }
  .hero h1 {
    font-size: 42pt;
  }
  .hero-description {
    font-size: 11pt;
  }
  .hero-bottom {
    padding: 15px 30px;
  }
  .principles .wrap {
    padding: 15px;
  }
  .section {
    padding: 30px 0;
    break-inside: auto;
  }
  .problem-grid,
  .how-grid,
  .offline-grid,
  .partners-grid,
  .faq {
    display: block;
  }
  .how-visual,
  .offline-visual {
    display: none;
  }
  .step-description {
    display: block !important;
  }
  .step {
    break-inside: avoid;
  }
  .focus-note {
    margin-top: 20px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > .intro {
    max-width: none;
    padding: 0;
    margin-top: 15px;
  }
  .community-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .community-card {
    break-inside: avoid;
  }
  .identity {
    break-inside: avoid;
  }
  .offline-copy,
  .partners-copy {
    padding: 20px;
  }
  .partner-options {
    padding: 0 20px;
  }
  .partner-option {
    break-inside: avoid;
  }
  .partners-bottom {
    margin-top: 15px;
  }
  .faq-list {
    margin-top: 20px;
  }
  .faq-item p {
    display: block !important;
  }
  .faq-item {
    break-inside: avoid;
  }
  .closing h2 {
    font-size: 33pt;
  }
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-links {
    display: none;
  }
  .footer-bottom {
    width: 100%;
  }
  .footer-safety {
    flex: 1;
  }
  .footer-bottom a {
    display: none;
  }
}

/* Consent uses the header's shared material, artwork and responsive mud dimensions. */
.consent-note[hidden] {
  display: none;
}
.consent-note {
  position: fixed;
  --nav-radius: 27px 32px 25px 30px;
  inset: 0;
  isolation: isolate;
  width: min(var(--consent-width, 440px), calc(100% - 48px));
  height: fit-content;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: var(--nav-radius);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  max-height: none;
  overflow: visible;
}
.consent-summary-view {
  display: grid;
  gap: 16px;
}
.consent-note-inner {
  padding: 28px 24px;
  border-radius: inherit;
  max-height: calc(100dvh - 48px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.consent-mud-trim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: -1;
}
.consent-mud-trim > svg {
  position: absolute;
  overflow: hidden;
}
/* Curved corner pieces keep the soil attached to the surface at every size. */
.consent-mud-tl {
  left: -10px;
  top: -10px;
  width: 37px;
  height: 37px;
}
.consent-mud-top {
  left: 27px;
  top: -10px;
  width: calc(100% - 59px);
  height: 20px;
}
.consent-mud-tr {
  right: -10px;
  top: -10px;
  width: 42px;
  height: 42px;
}
.consent-mud-left {
  left: -10px;
  top: 27px;
  width: 20px;
  height: calc(100% - 57px);
}
.consent-mud-right {
  right: -10px;
  top: 32px;
  width: 20px;
  height: calc(100% - 57px);
}
.consent-mud-bl {
  left: -10px;
  bottom: -10px;
  width: 40px;
  height: 40px;
}
.consent-mud-br {
  right: -10px;
  bottom: -10px;
  width: 35px;
  height: 35px;
}
.consent-side-drip {
  position: absolute;
  width: 9px;
  height: 15px;
  pointer-events: none;
  z-index: -1;
}
.consent-side-drip-left {
  left: -9px;
  top: 25%;
}
.consent-side-drip-right {
  right: -9px;
  top: 68%;
}
.consent-note::after {
  background:
    linear-gradient(#94603938, transparent) top / 100% 23px no-repeat,
    radial-gradient(ellipse at 0% 0%, #745132a3, #9b764847 35%, transparent 72%) left top / 110px
      47px no-repeat,
    radial-gradient(ellipse at 100% 0%, #73503180, #98704430 28%, transparent 70%) right top / 77px
      40px no-repeat,
    radial-gradient(ellipse at 0% 25%, #9b764854, transparent 72%) left top / 20px 63% no-repeat,
    radial-gradient(ellipse at 100% 70%, #98704460, transparent 72%) right bottom / 19px 75%
      no-repeat,
    radial-gradient(ellipse at 0% 100%, #745132b0 0%, #9b764847 36%, transparent 70%) left bottom /
      170px var(--mud-wash-height) no-repeat,
    radial-gradient(ellipse at 100% 100%, #735031c9 0%, #9870445c 25%, transparent 66%) right
      bottom / 110px var(--mud-wash-height) no-repeat,
    radial-gradient(ellipse at 7% 0%, #9770444d, transparent 60%) left top / 150px 13px no-repeat,
    linear-gradient(174deg, #ffffff34, transparent 38%, #8873470b 80%, #78533540);
}
.consent-note .consent-actions button {
  border-radius: 999px;
}
.consent-note .consent-close {
  z-index: 1;
}
/* Native modality makes the blurred page inert and keeps keyboard focus in the overlay. */
.consent-note::backdrop {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
/* Fading the dialog's opacity temporarily suppresses WebKit's backdrop blur. */
.consent-note[open],
.consent-note[open]::backdrop {
  animation: none;
}
/* An actual top-layer element also blurs in WebKit. Filtering the backdrop,
   rather than each page section, avoids pale halos along their edges. */
.consent-shade {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: #172e2526;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
html:has(.consent-note[open]) {
  overflow: hidden;
}
.consent-logo {
  width: 96px;
  height: auto;
}
.consent-note .consent-kicker {
  margin: 0 28px 10px 0;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: inherit;
}
.consent-note h2:focus {
  outline: none;
}
.consent-note h2 {
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.consent-note p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.consent-text-button,
.consent-policy {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.consent-text-button {
  min-height: 44px;
  padding: 10px 0 0;
}
.consent-actions {
  display: flex;
  gap: 10px;
}
.consent-actions button {
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
  border-radius: 12px;
  min-height: 48px;
  min-width: 0;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  flex: 1 1 0;
  overflow-wrap: anywhere;
}
.consent-actions button:hover {
  background: var(--green);
}
.consent-actions button[data-consent-choice='denied'] {
  /* Muted clay orange balances the green while keeping the white label readable. */
  background: #a56543;
  border-color: #a56543;
  color: var(--white);
}
.consent-actions button[data-consent-choice='denied']:hover {
  background: #8f5437;
  border-color: #8f5437;
}
/* One surface and one backdrop stay in place while only the content changes. */
.consent-note:not([data-consent-view='summary']) {
  --consent-width: 560px;
}
.consent-note:not([data-consent-view='summary']) .consent-note-inner {
  margin-top: 52px;
  padding-top: 8px;
  max-height: calc(100dvh - 100px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.consent-note[data-consent-view='policy'] .consent-note-inner {
  /* Reserve reading space during loading/retry so the card does not jump. */
  height: calc(100dvh - 100px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
}
.consent-back {
  position: absolute;
  top: 8px;
  left: 20px;
  min-height: 44px;
  padding: 8px 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.consent-note [hidden] {
  display: none;
}
.consent-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}
.consent-close:hover {
  background: var(--sage);
}
.consent-kicker {
  margin-top: 26px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--orange-dark);
}
.consent-details > p:not(.consent-kicker),
.consent-policy-content p {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 16px;
}
.consent-details .consent-logo {
  margin-bottom: 18px;
}
.consent-details .consent-policy {
  display: inline-block;
  margin-top: 18px;
  padding-block: 8px;
  min-height: 44px;
  text-align: left;
}
.consent-details .consent-state {
  font-weight: 700;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.consent-details .consent-actions {
  margin-top: 12px;
}
.consent-save-status:empty,
.consent-policy-status:empty {
  display: none;
}
.consent-details .consent-save-status,
.consent-policy-content .privacy-date {
  font-size: 12px;
  color: var(--muted);
}
.consent-policy-content section {
  margin-top: 28px;
}
.consent-policy-content h3 {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.consent-policy-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.consent-policy-view > [data-consent-back] {
  margin-top: 24px;
}
.consent-footer {
  display: block;
  padding: 14px 24px;
  margin: 16px auto 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 13px;
}
.consent-note button:focus-visible,
.consent-note a:focus-visible,
.consent-footer:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 3px;
}
@media (max-width: 620px) {
  .consent-note {
    width: calc(
      100% - max(16px, env(safe-area-inset-left)) - max(16px, env(safe-area-inset-right))
    );
  }
  .consent-note-inner {
    padding: 24px 20px;
  }
  .consent-note h2 {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .consent-actions {
    flex-direction: column;
  }
}
