:root {
  --navy: #071d49;
  --navy-deep: #041536;
  --navy-soft: #17396f;
  --teal: #1fb6b2;
  --teal-dark: #008f91;
  --teal-pale: #e9f5f2;
  --blue-pale: #edf3fa;
  --paper: #f8f8f4;
  --paper-deep: #f0f1eb;
  --white: #ffffff;
  --ink: #202a31;
  --muted: #68727a;
  --muted-light: #9ba3a7;
  --line: rgba(7, 29, 73, 0.12);
  --line-strong: rgba(7, 29, 73, 0.2);
  --soft-shadow: 0 24px 70px rgba(20, 45, 75, 0.12);
  --max-width: 1180px;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.7rem, 7vw, 6.35rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

::selection {
  background: rgba(31, 182, 178, 0.22);
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid rgba(31, 182, 178, 0.5);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-180%);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-intro {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--paper) 0%, var(--paper) 68%, var(--white) 100%);
}

.site-intro::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(248, 248, 244, 0.3) 0%,
      rgba(248, 248, 244, 0.34) calc(100% - 108px),
      rgba(248, 248, 244, 0.52) calc(100% - 78px),
      rgba(255, 255, 255, 0.76) calc(100% - 42px),
      #fff 100%
    ),
    url("hero-geo-city-v3.webp") center 58% / cover no-repeat;
  content: "";
  filter: saturate(0.88) contrast(0.98) brightness(1.03);
  opacity: 0.98;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - 108px),
    rgba(0, 0, 0, 0.9) calc(100% - 88px),
    rgba(0, 0, 0, 0.66) calc(100% - 58px),
    rgba(0, 0, 0, 0.32) calc(100% - 28px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - 108px),
    rgba(0, 0, 0, 0.9) calc(100% - 88px),
    rgba(0, 0, 0, 0.66) calc(100% - 58px),
    rgba(0, 0, 0, 0.32) calc(100% - 28px),
    transparent 100%
  );
}

.site-intro::after {
  position: absolute;
  z-index: -1;
  top: 104px;
  left: 50%;
  width: min(1180px, calc(100vw + 180px));
  height: 410px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(248, 248, 244, 0.62) 0%,
    rgba(248, 248, 244, 0.51) 42%,
    rgba(248, 248, 244, 0.27) 68%,
    rgba(248, 248, 244, 0) 90%
  );
  content: "";
  filter: blur(12px);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  width: min(var(--max-width), calc(100vw - 40px));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 0 14px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 36px rgba(35, 57, 72, 0.1);
  backdrop-filter: blur(18px);
}

.company-brand {
  display: inline-grid;
  align-content: center;
  width: max-content;
  color: var(--navy);
  line-height: 1;
}

.company-wordmark {
  font-size: 1.62rem;
  font-weight: 950;
  letter-spacing: -0.065em;
}

.company-wordmark span {
  color: var(--teal-dark);
}

.company-descriptor {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: #5d676d;
  font-size: 0.79rem;
  font-weight: 650;
}

.nav-links > a:not(.nav-cta) {
  padding: 12px 0;
}

.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta):focus-visible {
  color: var(--navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
}

.nav-cta:hover {
  background: var(--navy-soft);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  width: min(var(--max-width), calc(100vw - 40px));
  margin: 0 auto;
  padding: 84px 0 112px;
  text-align: center;
}

.hero-copy {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(3.5rem, 6.2vw, 5.3rem);
  text-shadow: 0 2px 26px rgba(248, 248, 244, 0.9);
}

.hero h1 > span {
  color: var(--teal);
}

.lede {
  width: min(720px, 100%);
  margin: 26px auto 0;
  color: var(--navy);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  font-weight: 600;
  line-height: 1.68;
  text-shadow:
    0 1px 2px rgba(248, 248, 244, 0.98),
    0 1px 18px rgba(248, 248, 244, 0.98);
}

.opportunity-example {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  width: min(736px, 100%);
  margin: 26px auto 0;
  padding: 15px 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: rgba(248, 248, 244, 0.66);
  box-shadow: 0 16px 44px rgba(18, 43, 78, 0.09);
  text-align: left;
  backdrop-filter: blur(12px);
}

.opportunity-example-amount {
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding-right: clamp(18px, 3vw, 34px);
  border-right: 1px solid rgba(7, 29, 73, 0.16);
}

.opportunity-example-amount > span {
  color: var(--teal-dark);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.opportunity-example-amount > strong {
  display: flex;
  align-items: baseline;
  gap: 0.16em;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2.55rem, 4.1vw, 3.65rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.opportunity-example-amount > strong small {
  color: #38506c;
  font-family: var(--sans);
  font-size: 0.27em;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.opportunity-example .hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  padding: 4px 22px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.55);
}

.button-primary:hover {
  background: var(--navy-soft);
}

.button-secondary {
  padding: 4px 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(7, 29, 73, 0.1);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: var(--white);
}

.map-image-frame {
  position: relative;
  overflow: hidden;
}

.map-brand-mask {
  position: absolute;
  z-index: 3;
  top: 5.4%;
  right: 1.5%;
  width: 10.4%;
  height: 9.2%;
  border-radius: 8px;
  background: rgba(225, 244, 232, 0.98);
  box-shadow: 0 0 0 1px rgba(142, 181, 157, 0.12);
}

.story-section {
  padding: 28px max(20px, calc((100vw - var(--max-width)) / 2)) 100px;
  background: var(--white);
}

.story-intro {
  width: min(810px, 100%);
  margin: 0 auto 104px;
  text-align: center;
}

.section-kicker,
.panel-number {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-intro > p:last-child,
.section-heading > p:last-child {
  width: min(660px, 100%);
  margin: 28px auto 0;
  font-size: 1.04rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: clamp(50px, 7vw, 92px);
  align-items: start;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.story-toc {
  position: sticky;
  top: 28px;
  display: flex;
  flex-direction: column;
}

.story-toc a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  color: #adb3b5;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  transition: color 180ms ease;
}

.story-toc a span {
  width: 24px;
  color: var(--muted-light);
  font-family: var(--sans);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story-toc a:hover {
  color: var(--muted);
}

.story-toc a.is-active {
  color: var(--navy);
  font-weight: 650;
}

.story-toc a.is-active span {
  color: var(--teal-dark);
}

.story-panels {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 118px;
}

.story-panel {
  min-width: 0;
  scroll-margin-top: 48px;
}

.story-panel:not(:last-child) {
  border-bottom: 1px solid var(--line);
  padding-bottom: 118px;
}

.panel-copy {
  max-width: 690px;
  margin-bottom: 42px;
}

.panel-copy h3 {
  color: var(--navy);
}

.panel-copy > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1rem;
}

.search-card,
.map-viewer,
.report-stage,
.action-stage {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.demo-topbar {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 14px 20px;
}

.demo-platform {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-platform div {
  display: grid;
  gap: 3px;
}

.demo-platform small {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-platform strong {
  color: var(--navy);
  font-size: 0.87rem;
}

.platform-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.demo-label {
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  padding: 7px 11px;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.query-shell {
  display: flex;
  height: 68px;
  min-height: 68px;
  align-items: center;
  gap: 13px;
  margin: 26px 26px 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  font-weight: 650;
  transition: opacity 180ms ease, transform 180ms ease;
}

.query-icon {
  position: relative;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  border: 2px solid var(--muted);
  border-radius: 50%;
}

.query-icon::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  transform: rotate(45deg);
  background: var(--muted);
  content: "";
}

.answer-shell {
  margin: 0 26px;
  padding: 28px 0 26px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.answer-shell > p {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.answer-shell h4 {
  height: 2.2em;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.answer-lines {
  display: grid;
  gap: 9px;
  margin: 23px 0;
}

.answer-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--paper-deep);
}

.answer-lines span:nth-child(1) {
  width: 92%;
}

.answer-lines span:nth-child(2) {
  width: 78%;
}

.answer-lines span:nth-child(3) {
  width: 56%;
}

.start-promise > span {
  display: grid;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.trade-selector {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: #fbfbf8;
  padding: 12px;
}

.trade-chip {
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
}

.trade-chip:hover,
.trade-chip:focus-visible,
.trade-chip.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(26, 47, 63, 0.08);
}

.search-card.is-changing .query-shell,
.search-card.is-changing .answer-shell {
  opacity: 0.28;
  transform: translateY(4px);
}

.map-figure {
  margin: 0;
}

.map-figure .map-image-frame > img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  transition: opacity 150ms ease;
}

.map-figure figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px 22px;
}

.map-figure figcaption div {
  display: grid;
  gap: 6px;
  transition: opacity 150ms ease;
}

.map-viewer.is-changing .map-figure .map-image-frame > img,
.map-viewer.is-changing .map-figure figcaption div {
  opacity: 0.28;
}

.map-figure figcaption span {
  color: var(--teal-dark);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.map-figure figcaption strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.map-figure figcaption small {
  color: var(--muted-light);
  font-size: 0.62rem;
  white-space: nowrap;
}

.map-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.map-tab {
  display: grid;
  gap: 5px;
  min-height: 76px;
  border: 0;
  background: #fbfbf8;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
}

.map-tab span {
  color: var(--muted-light);
  font-size: 0.59rem;
  font-weight: 800;
}

.map-tab strong {
  color: var(--muted);
  font-size: 0.76rem;
}

.map-tab:hover,
.map-tab.active {
  background: var(--white);
}

.map-tab.active span {
  color: var(--teal-dark);
}

.map-tab.active strong {
  color: var(--navy);
}

.report-stage {
  display: grid;
  grid-template-columns: minmax(230px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 30px;
  padding: 34px;
  background:
    radial-gradient(circle at 82% 12%, rgba(31, 182, 178, 0.18), transparent 30%),
    linear-gradient(145deg, #edf5f3, #e9eef6);
}

.report-stage-copy {
  display: grid;
  align-content: center;
}

.report-stage-copy > span {
  color: var(--teal-dark);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-stage-copy > strong {
  margin-top: 11px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.report-stage-copy > .report-revenue-amount {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.16em;
  margin-top: 15px;
  font-size: clamp(2.8rem, 4.7vw, 4.05rem);
  letter-spacing: -0.065em;
  line-height: 0.88;
  white-space: nowrap;
}

.report-revenue-amount > small {
  color: #38506c;
  font-family: var(--sans);
  font-size: 0.2em;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.report-stage-copy > .report-revenue-general {
  display: block;
  font-size: clamp(1.25rem, 1.4vw, 1.35rem);
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.report-stage-copy > p {
  margin: 18px 0 0;
  color: #43566a;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.5;
}

.report-stage-copy ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.report-stage-copy li {
  position: relative;
  padding-left: 20px;
  color: #56646a;
  font-size: 0.78rem;
  font-weight: 650;
}

.report-stage-copy li::before {
  position: absolute;
  top: 0.43em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.report-pages {
  display: flex;
  align-items: center;
  gap: 18px;
}

.report-pages img {
  width: calc(50% - 9px);
  border: 1px solid rgba(7, 29, 73, 0.12);
  background: var(--white);
  box-shadow: 0 26px 54px rgba(30, 58, 80, 0.2);
}

.report-pages img:nth-child(2) {
  transform: translateY(18px);
}

.action-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  background: #fbfbf8;
}

.action-page-wrap {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 24%, rgba(31, 182, 178, 0.18), transparent 34%),
    var(--blue-pale);
}

.action-page-wrap img {
  width: min(245px, 100%);
  border: 1px solid rgba(7, 29, 73, 0.12);
  box-shadow: 0 28px 60px rgba(30, 58, 80, 0.2);
}

.action-list {
  padding: 34px 38px;
}

.action-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.action-list article:last-child {
  border-bottom: 0;
}

.action-list article > span {
  padding-top: 4px;
  color: var(--teal-dark);
  font-size: 0.63rem;
  font-weight: 850;
}

.action-list article div {
  display: grid;
  gap: 8px;
}

.action-list strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pricing-section,
.faq-section,
.start-section {
  padding: 150px max(20px, calc((100vw - var(--max-width)) / 2));
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 70px;
}

.pricing-section {
  background: var(--white);
  padding-top: 100px;
}

.pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(40px, 7vw, 90px);
  width: min(var(--max-width), 100%);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 18%, rgba(31, 182, 178, 0.16), transparent 34%),
    var(--paper);
  padding: clamp(34px, 6vw, 74px);
}

.pricing-copy h2 {
  color: var(--navy);
}

.pricing-copy > p:not(.section-kicker) {
  max-width: 540px;
  margin: 24px 0 0;
}

.help-note {
  display: grid;
  gap: 7px;
  max-width: 540px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.help-note strong {
  color: var(--navy);
  font-size: 0.8rem;
}

.help-note span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.price-card {
  border-radius: 24px;
  background: var(--navy);
  padding: clamp(30px, 4vw, 48px);
  color: var(--white);
  box-shadow: 0 28px 60px rgba(7, 29, 73, 0.2);
}

.price-card > p {
  margin: 0;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.price strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.2rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.price span {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem;
  font-weight: 700;
}

.price-card > small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 23px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.price-card .button-primary {
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  box-shadow: none;
}

.price-card .button-primary:hover {
  background: #4ec8c4;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
  background: var(--paper);
}

.faq-section .section-heading {
  margin-bottom: 0;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 0 22px;
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--teal-dark);
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 620px;
  margin: -2px 0 20px;
  font-size: 0.8rem;
}

.start-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
  background:
    radial-gradient(circle at 14% 24%, rgba(31, 182, 178, 0.17), transparent 32%),
    var(--blue-pale);
}

.start-copy {
  position: sticky;
  top: 80px;
}

.start-copy h2 {
  color: var(--navy);
}

.start-copy > p:not(.section-kicker) {
  max-width: 500px;
  margin: 25px 0 0;
}

.start-promise {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 500px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.start-promise p {
  margin: 1px 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
}

.start-promise strong {
  color: var(--navy);
}

.form-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  scroll-margin-top: 24px;
}

.form-panel label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.67rem;
  font-weight: 750;
}

.form-panel input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  padding: 0 14px;
  color: var(--ink);
  outline: 0;
}

.form-panel input:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 4px rgba(31, 182, 178, 0.13);
}

.form-panel .button-primary {
  margin-top: 4px;
}

.form-panel .button-primary:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: #176d4d;
}

.form-status.is-error {
  color: #a43434;
}

.hidden {
  display: none;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 132px;
  padding: 24px max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--navy-deep);
  color: var(--white);
}

.footer .company-wordmark {
  color: var(--white);
}

.footer .company-descriptor {
  color: rgba(255, 255, 255, 0.52);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

.footer > a:last-child {
  justify-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links > a:not(.nav-cta) {
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 82px;
  }

  .story-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 52px;
  }

  .report-stage {
    padding: 38px 32px;
  }

  .pricing-shell {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  }
}

@media (max-width: 900px) {
  .nav-links > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 78px;
  }

  .story-section {
    padding-top: 18px;
    padding-bottom: 80px;
  }

  .story-intro {
    margin-bottom: 76px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-toc {
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    padding: 0 max(20px, calc((100vw - var(--max-width)) / 2));
    backdrop-filter: blur(14px);
    scrollbar-width: none;
  }

  .story-toc::-webkit-scrollbar {
    display: none;
  }

  .story-toc a {
    min-width: 150px;
    padding: 0 14px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
  }

  .story-toc a:first-child {
    border-left: 1px solid var(--line);
  }

  .story-panel {
    scroll-margin-top: 76px;
  }

  .story-panels {
    gap: 92px;
  }

  .story-panel:not(:last-child) {
    padding-bottom: 92px;
  }

  .pricing-section,
  .faq-section,
  .start-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .pricing-section {
    padding-top: 80px;
  }

  .pricing-shell {
    grid-template-columns: 1fr;
  }

  .price-card {
    max-width: 520px;
  }

  .start-section {
    grid-template-columns: 1fr;
  }

  .start-copy {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .nav {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding-right: 16px;
    border-radius: 17px;
  }

  .menu-button {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    padding: 9px;
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(16px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a:not(.nav-cta) {
    display: block;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 8px;
  }

  .hero {
    padding: 68px 0 136px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .button {
    width: min(320px, 100%);
  }

  .story-section {
    padding-top: 18px;
    padding-bottom: 80px;
  }

  .story-intro {
    margin-bottom: 64px;
  }

  .panel-copy {
    margin-bottom: 32px;
  }

  .search-card,
  .map-viewer,
  .report-stage,
  .action-stage {
    border-radius: 20px;
  }

  .map-figure figcaption {
    align-items: start;
    flex-direction: column;
  }

  .map-figure figcaption small {
    white-space: normal;
  }

  .report-stage {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 24px 42px;
  }

  .report-stage-copy ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-pages {
    max-width: 560px;
  }

  .action-stage {
    grid-template-columns: 1fr;
  }

  .action-page-wrap {
    padding: 30px 24px;
  }

  .action-page-wrap img {
    width: min(245px, 78%);
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-section .section-heading {
    margin-bottom: 0;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 42px;
    padding-bottom: 42px;
    text-align: left;
  }

  .footer > a:last-child {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .nav,
  .hero {
    width: calc(100vw - 24px);
  }

  .company-wordmark {
    font-size: 1.45rem;
  }

  .company-descriptor {
    font-size: 0.51rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 3.55rem);
  }

  h3 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero {
    padding-top: 58px;
  }

  .lede {
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .opportunity-example {
    grid-template-columns: 1fr;
    gap: 9px;
    max-width: 350px;
    margin-top: 22px;
    padding: 15px 16px;
    text-align: center;
  }

  .opportunity-example-amount {
    justify-items: center;
    min-width: 0;
    padding: 0;
    border: 0;
  }

  .opportunity-example-amount > strong {
    font-size: 2.7rem;
  }

  .opportunity-example .hero-actions {
    width: 100%;
    margin-top: 4px;
  }

  .story-toc {
    grid-template-columns: repeat(4, 146px);
  }

  .story-toc a {
    min-width: 146px;
  }

  .query-shell {
    height: 84px;
    margin: 18px 18px 0;
    border-radius: 16px;
    padding: 13px 15px;
  }

  .answer-shell {
    margin: 0 18px;
    padding-top: 24px;
  }

  .answer-shell h4 {
    height: 3.3em;
  }

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

  .trade-chip:last-child {
    grid-column: 1 / -1;
  }

  .map-figure figcaption {
    padding: 17px;
  }

  .map-figure figcaption strong {
    font-size: 1.18rem;
  }

  .map-tabs {
    grid-template-columns: 1fr;
  }

  .map-tab {
    grid-template-columns: 28px 1fr;
    align-items: center;
    min-height: 52px;
  }

  .report-stage-copy ul {
    grid-template-columns: 1fr;
  }

  .report-pages {
    gap: 10px;
  }

  .report-pages img {
    width: calc(50% - 5px);
  }

  .action-page-wrap img {
    width: min(225px, 86%);
  }

  .action-list {
    padding: 20px 22px;
  }

  .action-list article {
    grid-template-columns: 34px 1fr;
  }

  .pricing-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .price-card {
    border-radius: 19px;
    padding: 30px 24px;
  }

  .form-panel {
    grid-template-columns: 1fr;
    border-radius: 20px;
    padding: 24px 20px;
  }

  .form-panel label,
  .full {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
