:root {
  color-scheme: light;
  --forest-950: #0b291f;
  --forest-900: #103b2c;
  --forest-800: #164b38;
  --forest-700: #1f684d;
  --forest-600: #2d7d5c;
  --amber-400: #f0a81d;
  --amber-100: #fff0c9;
  --cream-50: #fffdf8;
  --ink: #14251f;
  --muted: #5d7068;
  --line: #dbe2da;
  --shadow: 0 28px 80px rgb(25 73 54 / 14%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--cream-50);
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--cream-50);
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 94% 3%,
      rgb(230 241 214 / 85%) 0,
      transparent 28rem
    ),
    radial-gradient(
      circle at 2% 27%,
      rgb(255 236 190 / 48%) 0,
      transparent 26rem
    ),
    var(--cream-50);
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.25;
  background-image: radial-gradient(#164b38 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 55%);
}
img {
  max-width: 100%;
}
a {
  color: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--amber-400);
  outline-offset: 4px;
  border-radius: 6px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: white;
  background: var(--forest-950);
  border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  min-height: 72px;
  margin-top: 10px;
  padding: 10px 12px 10px 14px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgb(211 222 214 / 80%);
  border-radius: 20px;
  background: rgb(255 253 248 / 88%);
  box-shadow: 0 10px 40px rgb(25 73 54 / 8%);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img {
  border-radius: 13px;
  box-shadow: 0 6px 20px rgb(22 75 56 / 16%);
}
.brand-copy {
  display: grid;
}
.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.055em;
}
.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}
.main-nav a {
  position: relative;
  padding-block: 12px;
  color: #334c43;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--forest-600);
  transition:
    right 0.2s ease,
    left 0.2s ease;
}
.main-nav a:hover::after {
  right: 0;
  left: 0;
}
.nav-cta {
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  color: white;
  background: var(--forest-800);
  border-radius: 13px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta-short {
  display: none;
}
.mobile-menu {
  display: none;
}
.quick-nav {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
  margin: 0 0 24px;
  padding: 28px;
  border: 1px solid #d8e4d8;
  border-radius: 24px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 18px 46px rgb(25 73 54 / 8%);
}
.quick-nav-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quick-nav-heading .eyebrow {
  margin-bottom: 9px;
}
.quick-nav-heading h2 {
  max-width: 300px;
  margin: 0;
  color: var(--forest-950);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.quick-nav-heading p:last-child {
  max-width: 280px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.quick-nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.quick-nav-links a {
  position: relative;
  min-height: 112px;
  padding: 16px 42px 15px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #dce7dc;
  border-radius: 15px;
  color: var(--ink);
  background: #fbfdf9;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.quick-nav-links a:last-child {
  grid-column: span 2;
  min-height: 88px;
  color: white;
  border-color: var(--forest-800);
  background: var(--forest-800);
}
.quick-nav-links a:hover {
  border-color: var(--forest-600);
  box-shadow: 0 10px 22px rgb(25 73 54 / 10%);
  transform: translateY(-2px);
}
.quick-nav-links span {
  color: var(--forest-600);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.quick-nav-links a:last-child span,
.quick-nav-links a:last-child small {
  color: #d5ead6;
}
.quick-nav-links b {
  margin-top: 6px;
  font-size: 0.98rem;
}
.quick-nav-links small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.77rem;
}
.quick-nav-links i {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--amber-400);
  font-size: 1.25rem;
  font-style: normal;
  transform: translateY(-50%);
}
.quick-nav-links a:last-child b,
.quick-nav-links a:last-child i {
  color: white;
}
.product-explorer {
  margin: 0 0 24px;
  padding: 30px;
  border: 1px solid #d8e4d8;
  border-radius: 24px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 18px 46px rgb(25 73 54 / 8%);
}
.explorer-heading {
  max-width: 650px;
  margin-bottom: 22px;
}
.explorer-heading h2 {
  margin: 0;
  color: var(--forest-950);
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.explorer-heading p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}
.explorer-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.explorer-tabs input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.explorer-tabs label {
  min-height: 94px;
  padding: 13px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #dce7dc;
  border-radius: 14px;
  background: #fbfdf9;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.explorer-tabs label:hover {
  border-color: var(--forest-600);
  transform: translateY(-2px);
}
.explorer-tabs label span {
  color: var(--forest-600);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.explorer-tabs label b {
  margin-top: 6px;
  font-size: 0.9rem;
}
.explorer-tabs label small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}
.explorer-tabs input:checked + label {
  color: white;
  border-color: var(--forest-800);
  background: var(--forest-800);
  box-shadow: 0 10px 22px rgb(22 75 56 / 18%);
  transform: translateY(-2px);
}
.explorer-tabs input:checked + label span,
.explorer-tabs input:checked + label small {
  color: #d5ead6;
}
.explorer-tabs input:focus-visible + label {
  outline: 3px solid var(--amber-400);
  outline-offset: 3px;
}
.explorer-panels {
  margin-top: 14px;
}
.explorer-panel {
  min-height: 225px;
  padding: 26px;
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 30px;
  align-items: center;
  border-radius: 18px;
  background: linear-gradient(120deg, #edf7ee, #f9f7ed);
}
.explorer-panel h3 {
  max-width: 560px;
  margin: 9px 0 10px;
  color: var(--forest-950);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.explorer-panel p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.explorer-visual {
  min-height: 170px;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 9px;
  border-radius: 16px;
  color: var(--forest-950);
  background: white;
  box-shadow: 0 16px 35px rgb(25 73 54 / 10%);
}
.explorer-visual b {
  margin-bottom: 4px;
  color: var(--forest-800);
}
.explorer-visual span {
  padding: 8px 10px;
  border-radius: 8px;
  background: #eef6ef;
  font-size: 0.82rem;
  font-weight: 700;
}
#explore-radar:checked ~ .explorer-panels .panel-radar,
#explore-demand:checked ~ .explorer-panels .panel-demand,
#explore-match:checked ~ .explorer-panels .panel-match,
#explore-business:checked ~ .explorer-panels .panel-business,
#explore-trust:checked ~ .explorer-panels .panel-trust {
  display: grid;
}

.hero {
  min-height: 690px;
  padding: clamp(56px, 9vw, 112px) 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: #a05213;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.135em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero .eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--amber-400);
  box-shadow: 0 0 0 6px var(--amber-100);
}
h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(3.1rem, 6.3vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.058em;
}
h1 em {
  color: var(--forest-700);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #496058;
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.72;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  color: white;
  background: var(--forest-800);
  box-shadow: 0 14px 34px rgb(22 75 56 / 24%);
}
.button.primary:hover {
  background: var(--forest-700);
  box-shadow: 0 18px 40px rgb(22 75 56 / 30%);
}
.button.secondary {
  color: var(--forest-900);
  border: 1px solid #b9c9bf;
  background: rgb(255 255 255 / 62%);
}
.promise-list {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
}
.promise-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.promise-list span {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: var(--forest-700);
  background: #dfeee3;
  border-radius: 99px;
  font-size: 0.67rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.visual-glow {
  position: absolute;
  inset: 9% 4% 6%;
  z-index: -2;
  border-radius: 50%;
  background: linear-gradient(145deg, #e1eed0, #fff1cb);
  filter: blur(2px);
}
.marketplace-art {
  position: absolute;
  right: -9%;
  bottom: -9%;
  z-index: -1;
  width: 88%;
  height: auto;
  opacity: 0.8;
  filter: drop-shadow(0 30px 36px rgb(43 82 58 / 15%));
}
.phone-preview {
  position: relative;
  width: min(320px, 66vw);
  min-height: 530px;
  margin: -14px 0 0 -14%;
  padding: 27px 18px 20px;
  overflow: hidden;
  color: var(--ink);
  border: 9px solid var(--forest-950);
  border-radius: 42px;
  background: #f7f9f1;
  box-shadow: 0 36px 90px rgb(16 59 44 / 28%);
  transform: rotate(-2deg);
}
.phone-preview::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 82px;
  height: 17px;
  content: "";
  background: var(--forest-950);
  border-radius: 0 0 13px 13px;
  transform: translateX(-50%);
}
.phone-top {
  padding: 10px 3px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.35rem;
  font-weight: 850;
}
.phone-top i {
  width: 19px;
  height: 19px;
  border: 2px solid var(--forest-900);
  border-radius: 50%;
}
.location-pill {
  margin-bottom: 14px;
  padding: 10px 12px;
  color: #415b51;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 750;
}
.radar-card {
  padding: 17px;
  color: white;
  border-radius: 19px;
  background:
    radial-gradient(circle at 85% 16%, #458565, transparent 27%),
    var(--forest-900);
  box-shadow: 0 15px 30px rgb(16 59 44 / 20%);
}
.radar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.radar-head b {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.93rem;
}
.radar-head b span {
  color: var(--amber-400);
  font-size: 1.3rem;
}
.radar-head small {
  padding: 5px 7px;
  color: #62250e;
  background: #ffc19e;
  border-radius: 7px;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.radar-card p {
  margin: 11px 0 15px;
  color: #dceae4;
  font-size: 0.72rem;
}
.radar-line {
  position: relative;
  height: 3px;
  background: #ffffff36;
  border-radius: 99px;
}
.radar-line i {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--amber-400);
  border-radius: 50%;
  transform: translateY(-50%);
}
.radar-line i:nth-child(1) {
  left: 14%;
}
.radar-line i:nth-child(2) {
  left: 55%;
}
.radar-line i:nth-child(3) {
  left: 88%;
}
.search-preview {
  margin-top: 14px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
}
.search-preview > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--forest-700);
  background: #e5f0e7;
  border-radius: 11px;
  font-size: 1.5rem;
}
.search-preview div {
  display: grid;
  gap: 3px;
}
.search-preview small {
  color: var(--muted);
  font-size: 0.63rem;
}
.search-preview b {
  font-size: 0.78rem;
}
.mini-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.mini-grid span {
  min-height: 90px;
  padding: 12px;
  display: flex;
  align-items: flex-end;
  color: var(--forest-900);
  background: linear-gradient(145deg, #d9f0dc, #b9dfbe);
  border-radius: 14px;
  font-size: 0.7rem;
  font-weight: 800;
}
.mini-grid span:last-child {
  background: linear-gradient(145deg, #ffe7b2, #f5c66d);
}
.floating-note {
  position: absolute;
  z-index: 3;
  min-width: 145px;
  padding: 12px 14px;
  display: grid;
  gap: 2px;
  background: rgb(255 255 255 / 92%);
  border: 1px solid #dae2da;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgb(16 59 44 / 16%);
  backdrop-filter: blur(12px);
}
.floating-note b {
  font-size: 0.8rem;
}
.floating-note span {
  color: var(--muted);
  font-size: 0.65rem;
}
.note-search {
  top: 11%;
  right: -3%;
}
.note-search b {
  color: var(--forest-700);
  font-size: 1rem;
}
.note-demand {
  right: -4%;
  bottom: 12%;
}

.proof-strip {
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: white;
  background: var(--forest-950);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.proof-strip div {
  padding: 4px 22px;
  display: grid;
  gap: 5px;
  border-right: 1px solid #ffffff22;
}
.proof-strip div:last-child {
  border-right: 0;
}
.proof-strip b {
  font-size: 0.92rem;
}
.proof-strip span {
  color: #bcd1c8;
  font-size: 0.76rem;
}

.section {
  padding: clamp(78px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--line);
}
.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}
.section-heading.compact {
  max-width: 680px;
}
.section-heading h2,
.download h2,
.impact h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.section-heading > p:last-child,
.impact p,
.download > div > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}
.signature-card {
  min-height: 470px;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--forest-950);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.feature-number {
  color: #a9d6bd;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.signature-copy h3 {
  margin: 12px 0 15px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.05em;
}
.signature-copy > p {
  color: #cfe0d8;
  line-height: 1.72;
}
.check-list {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: #edf5f1;
  font-size: 0.9rem;
}
.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--amber-400);
  font-weight: 900;
}
.radar-stage {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle,
    #2d795a 0,
    #164b38 28%,
    #103b2c 54%,
    transparent 55%
  );
  border-radius: 50%;
}
.radar-orbit,
.radar-orbit::before,
.radar-orbit::after {
  position: absolute;
  border: 1px solid #a5d2bd55;
  border-radius: 50%;
}
.radar-orbit {
  width: 300px;
  height: 300px;
}
.radar-orbit::before {
  inset: 42px;
  content: "";
}
.radar-orbit::after {
  inset: 91px;
  content: "";
}
.radar-orbit i {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  background: var(--amber-400);
  border-radius: 50%;
  box-shadow: 0 0 0 7px #f0a81d22;
}
.radar-orbit i:nth-child(1) {
  top: 17%;
  left: 12%;
}
.radar-orbit i:nth-child(2) {
  top: 7%;
  right: 23%;
}
.radar-orbit i:nth-child(3) {
  right: 4%;
  bottom: 32%;
}
.radar-orbit i:nth-child(4) {
  bottom: 5%;
  left: 32%;
}
.radar-center {
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 2px;
}
.radar-center span {
  color: var(--amber-400);
  font-size: 3rem;
}
.radar-center b {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.radar-ticker {
  position: absolute;
  right: -58px;
  bottom: 5px;
  left: -58px;
  padding: 12px 0;
  overflow: hidden;
  color: var(--forest-950);
  background: var(--amber-400);
  transform: rotate(-3deg);
}
.radar-ticker div {
  width: max-content;
  display: flex;
  gap: 12px;
  animation: ticker 19s linear infinite;
}
.radar-ticker span {
  padding: 6px 12px;
  background: #ffffffa8;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 850;
  white-space: nowrap;
}

.feature-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  min-height: 400px;
  padding: clamp(25px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgb(255 255 255 / 68%);
  box-shadow: 0 20px 60px rgb(25 73 54 / 7%);
}
.feature-card::before {
  position: absolute;
  top: -95px;
  right: -85px;
  width: 210px;
  height: 210px;
  content: "";
  background: #e6efdc;
  border-radius: 50%;
  opacity: 0.62;
}
.feature-card:nth-child(2)::before,
.feature-card:nth-child(5)::before {
  background: #ffdf9c;
}
.feature-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--forest-800);
  border-radius: 15px;
  font-size: 1.45rem;
  box-shadow: 0 10px 24px rgb(22 75 56 / 20%);
}
.feature-kicker {
  margin: 26px 0 8px;
  color: #a05213;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.feature-card h3 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.feature-card > p:not(.feature-kicker) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}
.query-list {
  margin-top: 26px;
  display: grid;
  gap: 8px;
}
.query-list span {
  padding: 10px 13px;
  display: grid;
  grid-template-columns: 55px 28px 1fr;
  align-items: center;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 0.82rem;
}
.query-list b {
  color: var(--forest-700);
}
.query-list i {
  color: #9aaca3;
  font-style: normal;
}
.empty-example {
  margin-top: 30px;
  padding: 15px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  border: 1px dashed #bdc9c0;
  border-radius: 13px;
  background: var(--cream-50);
  font-size: 0.78rem;
}
.empty-example b {
  color: var(--forest-700);
}
.shelf {
  position: relative;
  height: 85px;
  margin-top: 35px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  border-bottom: 8px solid var(--forest-900);
}
.shelf i {
  width: 50px;
  height: 62px;
  background: linear-gradient(#f0b13e 0 28%, #fff7df 28%);
  border: 2px solid #e0c88d;
  border-radius: 20px 20px 8px 8px;
}
.shelf i:nth-child(2) {
  height: 78px;
  background: linear-gradient(#7aa84a 0 25%, #e8f1dc 25%);
}
.shelf i:nth-child(3) {
  height: 52px;
  background: linear-gradient(#dc7449 0 30%, #ffe9da 30%);
}
.chat-example {
  margin-top: 30px;
  display: grid;
  gap: 9px;
}
.chat-example span {
  width: fit-content;
  max-width: 85%;
  padding: 10px 13px;
  color: #445a51;
  background: #edf0eb;
  border-radius: 14px 14px 14px 4px;
  font-size: 0.78rem;
}
.chat-example span:last-child {
  margin-left: auto;
  color: white;
  background: var(--forest-700);
  border-radius: 14px 14px 4px 14px;
}
.status-flow {
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  list-style: none;
}
.status-flow li {
  position: relative;
  padding-top: 25px;
  color: var(--muted);
  font-size: 0.66rem;
  text-align: center;
}
.status-flow li::before {
  position: absolute;
  top: 0;
  left: calc(50% - 7px);
  z-index: 2;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--forest-700);
  border: 3px solid #dcebe1;
  border-radius: 50%;
}
.status-flow li::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 100%;
  height: 2px;
  content: "";
  background: #b8c9be;
}
.status-flow li:last-child::after {
  display: none;
}
.trust-example {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-example span {
  padding: 9px 11px;
  color: var(--forest-800);
  background: #e2efe4;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  list-style: none;
}
.steps li {
  min-height: 300px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background: var(--forest-900);
  border-radius: 22px;
}
.steps li:nth-child(even) {
  color: var(--ink);
  background: var(--amber-100);
}
.steps > li > span {
  color: var(--amber-400);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.05em;
}
.steps li:nth-child(even) > span {
  color: #af6712;
}
.steps small {
  color: #a7c4b8;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.steps li:nth-child(even) small {
  color: #9a641b;
}
.steps h3 {
  margin: 8px 0;
  font-size: 1.3rem;
}
.steps p {
  margin: 0;
  color: #c9d9d2;
  font-size: 0.83rem;
  line-height: 1.6;
}
.steps li:nth-child(even) p {
  color: #675b45;
}
.model-note {
  margin-top: 20px;
  padding: 17px 20px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #41564e;
  background: #eff3ed;
  border-radius: 15px;
  font-size: 0.86rem;
  line-height: 1.6;
}
.model-note > span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--forest-700);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 800;
}
.model-note p {
  margin: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.audience-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.audience-grid article > span {
  display: inline-flex;
  padding: 6px 9px;
  color: var(--forest-800);
  background: #e6f0e7;
  border-radius: 7px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.audience-grid h3 {
  margin: 20px 0 8px;
  font-size: 1.4rem;
}
.audience-grid p {
  color: var(--muted);
  line-height: 1.62;
}
.audience-grid a {
  display: inline-block;
  margin-top: 8px;
  color: var(--forest-700);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.trust-section {
  background: linear-gradient(120deg, transparent, #eef4e9 55%, transparent);
}
.trust-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}
.trust-points {
  display: grid;
  gap: 12px;
}
.trust-points article {
  padding: 20px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  background: rgb(255 255 255 / 75%);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.trust-points article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--forest-700);
  background: #e5efe3;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 900;
}
.trust-points h3 {
  margin: 1px 0 5px;
  font-size: 1rem;
}
.trust-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.impact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.impact-visual {
  position: relative;
  width: min(370px, 78vw);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border: 1px solid #d8e2d5;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff8df 0 27%,
    #e7f0df 28% 52%,
    transparent 53%
  );
}
.impact-visual::before,
.impact-visual::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px dashed #6e9a7855;
  border-radius: 50%;
}
.impact-visual::after {
  inset: 34%;
}
.impact-visual > span {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--amber-400);
  border: 5px solid #fff5d8;
  border-radius: 50%;
}
.impact-visual > span:nth-child(1) {
  top: 12%;
  left: 48%;
}
.impact-visual > span:nth-child(2) {
  right: 10%;
  bottom: 30%;
  background: var(--forest-600);
  border-color: #e1eee2;
}
.impact-visual > span:nth-child(3) {
  bottom: 13%;
  left: 25%;
}
.impact-visual b {
  z-index: 2;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--forest-700);
  border-radius: 50%;
  font-size: 1.7rem;
  box-shadow: 0 15px 35px rgb(31 104 77 / 25%);
}

.faq-list {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  min-height: 76px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 800;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--forest-700);
  background: #e5efe3;
  border-radius: 50%;
  font-size: 1.3rem;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  max-width: 790px;
  margin: 0 0 25px;
  color: var(--muted);
  line-height: 1.7;
}

.download {
  position: relative;
  margin: clamp(72px, 10vw, 125px) 0 70px;
  padding: clamp(38px, 7vw, 76px);
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 30px;
  overflow: hidden;
  color: white;
  background: var(--forest-950);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.download::before {
  position: absolute;
  right: 10%;
  bottom: -170px;
  width: 370px;
  height: 370px;
  content: "";
  background: #30805e;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.34;
}
.download > div {
  position: relative;
  z-index: 2;
}
.download .eyebrow {
  color: #f6b84d;
}
.download h2 {
  max-width: 690px;
}
.download > div > p {
  color: #c9dad3;
}
.download-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.store-status {
  min-height: 62px;
  padding: 8px 15px 8px 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-950);
  background: white;
  border-radius: 14px;
}
.store-status img {
  border-radius: 11px;
}
.store-status > span {
  display: grid;
  gap: 2px;
}
.store-status small {
  color: var(--muted);
  font-size: 0.6rem;
}
.store-status b {
  font-size: 0.78rem;
}
.button.light {
  min-height: 62px;
  color: white;
  border: 1px solid #ffffff4a;
  background: #ffffff12;
}
.download-rings {
  position: relative !important;
  min-height: 270px;
  display: grid;
  place-items: center;
}
.download-rings i {
  position: absolute;
  border: 1px solid #a7d5bf44;
  border-radius: 50%;
}
.download-rings i:nth-child(1) {
  width: 255px;
  height: 255px;
}
.download-rings i:nth-child(2) {
  width: 180px;
  height: 180px;
}
.download-rings i:nth-child(3) {
  width: 105px;
  height: 105px;
}
.download-rings span {
  z-index: 2;
  color: var(--amber-400);
  font-size: 2.3rem;
  font-weight: 300;
}

footer {
  padding: 25px 0 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--muted);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  border-radius: 12px;
}
.footer-brand > div {
  display: grid;
  gap: 3px;
}
.footer-brand strong {
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.footer-brand span {
  font-size: 0.74rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}
footer nav a {
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}
footer nav a:hover {
  color: var(--forest-700);
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes breathe {
  50% {
    transform: scale(1.035);
    opacity: 0.8;
  }
}
@keyframes float-phone {
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .phone-preview {
    animation: float-phone 7s ease-in-out infinite;
  }
  .visual-glow {
    animation: breathe 6s ease-in-out infinite;
  }
  .radar-orbit {
    animation: breathe 4.5s ease-in-out infinite;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .main-nav a:nth-child(3),
  .main-nav a:nth-child(4) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 0.78fr;
  }
  .phone-preview {
    margin-left: -24%;
  }
  .note-search,
  .note-demand {
    right: -9%;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  .proof-strip div:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 790px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 680px);
  }
  .site-header {
    top: 7px;
    min-height: 64px;
    border-radius: 17px;
  }
  .brand-copy small,
  .main-nav {
    display: none;
  }
  .mobile-menu {
    position: relative;
    display: block;
    margin-left: auto;
  }
  .mobile-menu summary {
    min-height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    color: var(--forest-800);
    border: 1px solid #cbdccc;
    border-radius: 11px;
    background: #f8fcf7;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    min-width: 210px;
    padding: 8px;
    display: grid;
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    box-shadow: 0 18px 50px rgb(16 42 29 / 16%);
  }
  .mobile-menu nav a {
    padding: 11px 12px;
    border-radius: 9px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus-visible {
    background: #eef6ef;
  }
  .nav-cta {
    margin-left: auto;
    min-height: 40px;
    padding-inline: 13px;
  }
  .hero {
    min-height: auto;
    padding-top: 58px;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero .eyebrow,
  .hero-actions,
  .promise-list {
    justify-content: center;
  }
  .lead {
    margin-inline: auto;
  }
  .hero-visual {
    min-height: 570px;
    margin-top: -15px;
  }
  .phone-preview {
    margin-left: 0;
  }
  .marketplace-art {
    right: -2%;
    width: 78%;
  }
  .note-search {
    right: 3%;
  }
  .note-demand {
    right: 2%;
  }
  .proof-strip,
  .quick-nav,
  .product-explorer,
  .feature-grid,
  .audience-grid,
  .trust-layout,
  .impact,
  .download,
  .signature-card {
    grid-template-columns: 1fr;
  }
  .quick-nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .explorer-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .explorer-panel {
    grid-template-columns: 1fr;
  }
  .signature-card {
    padding-bottom: 58px;
  }
  .radar-stage {
    min-height: 320px;
  }
  .trust-layout .section-heading {
    margin-bottom: 0;
  }
  .impact {
    text-align: center;
  }
  .download-rings {
    display: none;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer nav {
    justify-content: flex-start;
  }
  footer > p {
    grid-column: 1;
  }
}
@media (max-width: 520px) {
  .site-header,
  main,
  footer {
    width: calc(100% - 22px);
  }
  .site-header {
    padding: 8px;
  }
  .brand img {
    width: 39px;
    height: 39px;
  }
  .brand-copy strong {
    font-size: 0.84rem;
  }
  .nav-cta {
    padding-inline: 12px;
    font-size: 0.74rem;
  }
  .nav-cta-full {
    display: none;
  }
  .nav-cta-short {
    display: inline;
  }
  .hero,
  .hero-copy,
  .hero-visual {
    min-width: 0;
    max-width: 100%;
  }
  .hero-copy {
    overflow-wrap: break-word;
  }
  .hero .eyebrow {
    font-size: 0.68rem;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.8vw, 3rem);
    line-height: 0.98;
  }
  .hero h1 em {
    display: block;
  }
  .lead {
    max-width: 100%;
    font-size: 1rem;
  }
  .button {
    width: 100%;
  }
  .promise-list {
    display: grid;
    justify-content: start;
    text-align: left;
  }
  .hero-visual {
    min-height: 530px;
  }
  .phone-preview {
    width: min(294px, 84vw);
    min-height: 500px;
  }
  .marketplace-art {
    right: 0;
    bottom: -3%;
    width: 92%;
  }
  .floating-note {
    min-width: 120px;
    padding: 9px 10px;
  }
  .note-search {
    top: 11%;
    right: -1%;
  }
  .note-demand {
    right: -1%;
    bottom: 8%;
  }
  .proof-strip {
    padding: 20px 18px;
    grid-template-columns: 1fr;
  }
  .quick-nav {
    gap: 20px;
    padding: 21px;
  }
  .product-explorer {
    padding: 21px;
  }
  .explorer-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-nav-links {
    grid-template-columns: 1fr;
  }
  .quick-nav-links a:last-child {
    grid-column: auto;
  }
  .proof-strip div {
    padding: 8px 4px 16px;
    border-right: 0;
    border-bottom: 1px solid #ffffff22;
  }
  .proof-strip div:last-child {
    border-bottom: 0;
  }
  .section {
    padding-block: 72px;
  }
  .section-heading h2,
  .download h2,
  .impact h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }
  .feature-card {
    min-height: 0;
  }
  .radar-stage {
    min-height: 280px;
  }
  .radar-orbit {
    width: 245px;
    height: 245px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps li {
    min-height: 240px;
  }
  .audience-grid article {
    padding: 24px;
  }
  .trust-points article {
    grid-template-columns: 38px 1fr;
    padding: 17px;
  }
  .download {
    margin-inline: -2px;
    padding: 32px 23px;
    border-radius: 25px;
  }
  .store-status,
  .button.light {
    width: 100%;
  }
}
@media (max-width: 390px) {
  .brand {
    gap: 8px;
  }
  .brand-copy strong {
    font-size: 0.79rem;
  }
}
