:root {
  --ink: #101827;
  --ink-soft: #465166;
  --navy: #0b1731;
  --navy-2: #111f3d;
  --cream: #f4f1e8;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #d9d9d2;
  --line-dark: rgba(255, 255, 255, 0.14);
  --lime: #baf45a;
  --lime-dark: #8fc82d;
  --blue: #6f8cff;
  --coral: #ff8c70;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(16, 24, 39, 0.12);
  --shell: min(1180px, calc(100% - 48px));
  --font-display: "Manrope", "Avenir Next", sans-serif;
  --font-body: "DM Sans", Inter, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
}

h3 {
  font-size: 1.2rem;
}

::selection {
  color: var(--navy);
  background: var(--lime);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 6px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 23, 49, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 7px;
  transform: rotate(-2deg);
}

.brand-mark span {
  display: block;
  background: var(--lime);
  border-radius: 2px;
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  opacity: 0.48;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand-name > span {
  color: var(--lime);
}

.site-nav {
  display: flex;
  gap: 31px;
  align-items: center;
}

.site-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--lime);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-3.25px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button span {
  margin-left: 11px;
  font-size: 1.05rem;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.84rem;
}

.button-primary {
  color: var(--navy);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 10px 34px rgba(186, 244, 90, 0.14);
}

.button-primary:hover {
  background: #c7ff69;
  border-color: #c7ff69;
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: #bec2c8;
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.text-link {
  position: relative;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link-light {
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: 920px;
  padding: 155px 0 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.hero::before {
  position: absolute;
  top: 8%;
  left: 46%;
  width: 640px;
  height: 640px;
  content: "";
  background: radial-gradient(circle, rgba(111, 140, 255, 0.23), transparent 66%);
  filter: blur(10px);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(186, 244, 90, 0.19);
  border-radius: 50%;
}

.orbit-one {
  top: 110px;
  right: -160px;
  width: 560px;
  height: 560px;
}

.orbit-two {
  top: 185px;
  right: -86px;
  width: 410px;
  height: 410px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.72fr);
  gap: 78px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 800px;
  margin: 25px 0 28px;
  text-wrap: balance;
}

.eyebrow,
.kicker,
.mini-label {
  font-weight: 700;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(186, 244, 90, 0.12);
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}

.hero-disclaimer {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
}

.market-card {
  position: relative;
  padding: 28px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.26);
  transform: rotate(1.15deg);
}

.market-card::before {
  position: absolute;
  z-index: -1;
  inset: -10px 10px 10px -10px;
  content: "";
  border: 1px solid rgba(186, 244, 90, 0.42);
  border-radius: inherit;
}

.market-card-head,
.builder-output-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.market-card h2 {
  margin: 5px 0 0;
  font-size: 1.28rem;
}

.mini-label {
  color: #778096;
  font-size: 0.62rem;
}

.status-pill {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 9px;
  color: #3f6542;
  background: #ebf8da;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
}

.status-pill i {
  width: 6px;
  height: 6px;
  background: #67af46;
  border-radius: 50%;
}

.market-selection {
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
}

.selection-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.selection-row span {
  color: #697287;
}

.market-result {
  display: flex;
  flex-direction: column;
  padding: 23px 0 18px;
}

.market-result > span {
  color: #687185;
  font-size: 0.76rem;
  font-weight: 600;
}

.market-result strong {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 3.55rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.market-result small {
  margin-top: 6px;
  color: #8a91a1;
  font-size: 0.7rem;
}

.field-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.field-list span {
  padding: 8px 10px;
  color: #4d586b;
  background: #f1f2ee;
  border-radius: 7px;
  font-size: 0.69rem;
  font-weight: 600;
}

.field-list span::before {
  margin-right: 6px;
  color: #679234;
  content: "✓";
  font-weight: 800;
}

.market-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 21px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.market-foot span {
  color: #5a6477;
  font-size: 0.72rem;
}

.market-foot strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.metric-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 93px;
  border-top: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  border-radius: 14px 14px 0 0;
}

.metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 128px;
  padding: 25px 30px;
  border-right: 1px solid var(--line-dark);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.metric span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
}

.audience-band {
  padding: 27px 0;
  color: var(--navy);
  background: var(--lime);
}

.audience-row {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}

.audience-row p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-list {
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(11, 23, 49, 0.72);
  font-size: 0.83rem;
  font-weight: 700;
}

.audience-list span {
  display: flex;
  gap: 28px;
  align-items: center;
}

.audience-list span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  opacity: 0.5;
}

.section {
  padding: 125px 0;
}

.coverage-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.52fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.pricing-heading h2,
.faq-intro h2,
.use-case-copy h2 {
  max-width: 850px;
  margin: 13px 0 0;
}

.section-heading > p,
.pricing-heading > p,
.faq-intro > p {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.kicker {
  margin-bottom: 0;
  color: #627083;
  font-size: 0.7rem;
}

.kicker::before {
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 0 10px 3px 0;
  content: "";
  background: var(--lime-dark);
}

.coverage-builder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d7d9d6;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.builder-controls {
  padding: 42px;
  border-right: 1px solid var(--line);
}

.builder-intro {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.builder-intro .step-number {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.builder-intro h3 {
  margin: 6px 0 0;
  font-size: 1.3rem;
}

.builder-controls > label {
  display: block;
  margin: 19px 0 7px;
  color: #626c7e;
  font-size: 0.72rem;
  font-weight: 700;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 17px;
  color: #6b7484;
  content: "⌄";
  pointer-events: none;
  transform: translateY(-58%);
}

.select-wrap select,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #d7d9d7;
  border-radius: 9px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.select-wrap select {
  height: 54px;
  padding: 0 45px 0 15px;
  appearance: none;
  font-size: 0.93rem;
  font-weight: 600;
}

.select-wrap select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: #7e9d42;
  box-shadow: 0 0 0 4px rgba(186, 244, 90, 0.18);
}

.builder-controls .button {
  width: 100%;
  margin-top: 27px;
}

.builder-output {
  position: relative;
  padding: 43px 48px 38px;
  color: var(--white);
  background: var(--navy);
}

.builder-output::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  content: "";
  border: 1px solid rgba(186, 244, 90, 0.18);
  border-radius: 50%;
}

.builder-output-top {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.77rem;
  font-weight: 600;
}

.status-pill-light {
  color: var(--lime);
  background: rgba(186, 244, 90, 0.1);
}

.status-pill-light i {
  background: var(--lime);
}

.coverage-count {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6.8rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.builder-output > p:not(.coverage-note) {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.coverage-bar {
  position: relative;
  z-index: 1;
  height: 5px;
  margin: 28px 0 31px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 20px;
}

.coverage-bar span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--lime);
  border-radius: inherit;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.coverage-details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

.coverage-details > div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.coverage-details > div:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.coverage-details > div:nth-child(even) {
  padding-left: 20px;
}

.coverage-details dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-details dd {
  margin: 3px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.coverage-note {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.67rem;
  line-height: 1.5;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.industry-card {
  min-height: 224px;
  padding: 23px 20px;
  border-right: 1px solid var(--line);
}

.industry-card:last-child {
  border-right: 0;
}

.industry-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.industry-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #455169;
  background: #eef0eb;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
}

.inventory-tag {
  display: none;
  color: rgba(11, 23, 49, 0.58);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-card h3 {
  min-height: 40px;
  margin: 38px 0 18px;
  font-size: 0.98rem;
}

.industry-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.045em;
}

.industry-card p {
  margin: 2px 0 0;
  color: #7a8291;
  font-size: 0.66rem;
}

.industry-card-featured {
  color: var(--navy);
  background: var(--lime);
}

.industry-card-featured .industry-icon {
  background: rgba(255, 255, 255, 0.55);
}

.product-section {
  color: var(--white);
  background: var(--navy);
}

.product-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: center;
}

.kicker-light {
  color: rgba(255, 255, 255, 0.56);
}

.product-copy h2 {
  margin: 17px 0 24px;
}

.product-copy > p:not(.kicker) {
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.72;
}

.data-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.compare-card {
  min-height: 410px;
  padding: 31px;
  border-radius: var(--radius);
}

.compare-yes {
  color: var(--navy);
  background: var(--white);
}

.compare-no {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  border-top: 1px solid rgba(11, 23, 49, 0.11);
  font-size: 0.82rem;
  font-weight: 600;
}

.compare-no li {
  color: rgba(255, 255, 255, 0.69);
  border-color: rgba(255, 255, 255, 0.1);
}

.compare-card li span {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  background: #eaf8d6;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.compare-no li span {
  color: #ff9c88;
  background: rgba(255, 140, 112, 0.11);
}

.completeness-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
  margin-top: 85px;
  padding: 49px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.completeness-intro h3 {
  margin: 10px 0 13px;
  font-size: 1.55rem;
}

.completeness-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.field-meter-list {
  display: grid;
  gap: 18px;
}

.field-meter > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}

.field-meter strong {
  color: var(--lime);
  font-size: 0.69rem;
}

.field-meter i {
  display: block;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9px;
}

.field-meter i span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
}

.field-meter-variable strong {
  color: rgba(255, 255, 255, 0.48);
}

.field-meter-variable i span {
  width: 72%;
  background: var(--blue);
}

.workflow-section {
  background: var(--cream);
}

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

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #c9cbc4;
  list-style: none;
}

.workflow-step {
  position: relative;
  padding: 37px 27px 10px 0;
}

.workflow-step:not(:last-child) {
  border-right: 1px solid #c9cbc4;
}

.workflow-step:not(:first-child) {
  padding-left: 27px;
}

.workflow-step > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.workflow-step h3 {
  margin: 32px 0 13px;
}

.workflow-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.66;
}

.pricing-section {
  background: var(--paper);
}

.pricing-heading {
  max-width: 730px;
  margin: 0 auto 60px;
  text-align: center;
}

.pricing-heading .kicker::before {
  display: none;
}

.pricing-heading h2 {
  margin: 15px auto 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 37px 34px 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-card-featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 25px 70px rgba(11, 23, 49, 0.18);
  transform: translateY(-11px);
}

.recommended {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 8px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 5px;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.price-name {
  margin-bottom: 29px;
  color: #697487;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card-featured .price-name {
  color: rgba(255, 255, 255, 0.54);
}

.price {
  display: flex;
  align-items: flex-start;
  min-height: 74px;
  font-family: var(--font-display);
}

.price > span {
  align-self: flex-end;
  margin: 0 7px 13px 0;
  color: #727c8e;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price sup {
  margin: 9px 4px 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.price strong {
  font-size: 3.55rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price-caption {
  margin: 8px 0 25px;
  color: #7a8392;
  font-size: 0.75rem;
}

.price-card-featured .price-caption {
  color: rgba(255, 255, 255, 0.47);
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 32px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card-featured ul {
  border-color: rgba(255, 255, 255, 0.13);
}

.price-card li {
  position: relative;
  padding-left: 19px;
  color: #4e5a6e;
  font-size: 0.79rem;
}

.price-card-featured li {
  color: rgba(255, 255, 255, 0.7);
}

.price-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #79aa35;
  content: "✓";
  font-weight: 800;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 36px 0 0;
  color: #687386;
  font-size: 0.8rem;
}

.pricing-note span {
  color: #6b9b28;
  font-weight: 800;
}

.use-case-section {
  padding-top: 0;
  background: var(--paper);
}

.use-case-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  padding-top: 110px;
  border-top: 1px solid var(--line);
}

.use-case-list {
  border-top: 1px solid var(--line);
}

.use-case {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.use-case > span {
  padding-top: 3px;
  color: #829043;
  font-size: 0.69rem;
  font-weight: 800;
}

.use-case h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.use-case p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.faq-section {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:last-child {
  margin-top: 21px;
}

.faq-list {
  border-top: 1px solid #c6c9c2;
}

.faq-list details {
  border-bottom: 1px solid #c6c9c2;
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 16px;
  height: 1.5px;
  content: "";
  background: var(--navy);
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

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

.faq-list details p {
  max-width: 680px;
  margin: -5px 0 25px;
  padding-right: 50px;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.72;
}

.request-section {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  color: var(--white);
  background: #142344;
}

.request-section::before {
  position: absolute;
  top: -400px;
  left: -180px;
  width: 750px;
  height: 750px;
  content: "";
  border: 1px solid rgba(186, 244, 90, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(186, 244, 90, 0.025), 0 0 0 170px rgba(186, 244, 90, 0.018);
}

.request-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.kicker-bright {
  color: var(--lime);
}

.request-copy h2 {
  margin: 18px 0 24px;
}

.request-copy > p:not(.kicker) {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.02rem;
}

.request-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.request-promises span {
  display: flex;
  gap: 10px;
  align-items: center;
}

.request-promises i {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.63rem;
  font-style: normal;
  font-weight: 800;
}

.principal-card {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 55px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.principal-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.77rem;
  font-weight: 800;
}

.principal-card div {
  display: flex;
  flex-direction: column;
}

.principal-card strong {
  font-size: 0.87rem;
}

.principal-card small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
}

.request-form-wrap {
  padding: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
}

.request-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: 18px;
}

.form-heading {
  margin-bottom: 27px;
}

.form-heading h3 {
  margin: 5px 0 0;
  font-size: 1.45rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field > span {
  color: #596478;
  font-size: 0.7rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 49px;
  padding: 12px 13px;
  font-size: 0.84rem;
}

.form-field textarea {
  resize: vertical;
}

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

.consent-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 19px 0;
  color: #657084;
  font-size: 0.7rem;
  line-height: 1.45;
}

.consent-line input {
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--navy);
}

.consent-line a {
  font-weight: 700;
}

.button-submit {
  width: 100%;
}

.form-foot,
.form-status {
  margin: 12px 0 0;
  color: #858d9a;
  font-size: 0.65rem;
  text-align: center;
}

.form-status {
  display: none;
  padding: 10px;
  color: #31502d;
  background: #eef8df;
  border-radius: 7px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-pending {
  color: #70540f;
  background: #fff5d8;
}

.form-status.is-error {
  color: #7a2828;
  background: #ffeded;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  color: var(--white);
  background: #091326;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.6fr 0.7fr 1fr;
  gap: 70px;
  align-items: start;
  padding-top: 60px;
  padding-bottom: 58px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer-top nav {
  display: flex;
  gap: 27px;
  justify-content: flex-end;
}

.footer-top nav a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-top nav a:hover,
.footer-bottom a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
}

.footer-bottom div {
  display: flex;
  gap: 17px;
}

.footer-disclaimer {
  text-align: right;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .market-card.reveal {
  transform: translateY(18px) rotate(1.15deg);
}

.js .market-card.reveal.is-visible {
  transform: translateY(0) rotate(1.15deg);
}

.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  color: var(--white);
  background: var(--navy);
}

.legal-header .nav-shell {
  min-height: 76px;
}

.legal-back {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-main {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 120px;
}

.legal-main h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.legal-date {
  margin-bottom: 55px;
  color: #667185;
  font-size: 0.8rem;
}

.legal-main h2 {
  margin: 45px 0 13px;
  font-size: 1.35rem;
}

.legal-main p,
.legal-main li {
  color: #465267;
  font-size: 0.92rem;
  line-height: 1.75;
}

.legal-main li + li {
  margin-top: 8px;
}

.legal-callout {
  margin: 42px 0;
  padding: 24px;
  background: var(--white);
  border-left: 4px solid var(--lime-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  color: var(--white);
  background: var(--navy);
}

.thank-you-card {
  width: min(650px, 100%);
  padding: 55px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 27px;
  place-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
}

.thank-you-card h1 {
  margin-bottom: 17px;
  font-size: clamp(2.2rem, 6vw, 3.7rem);
}

.thank-you-card p {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.65fr);
    gap: 45px;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 6.7vw, 5.2rem);
  }

  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-card {
    border-bottom: 1px solid var(--line);
  }

  .industry-card:nth-child(3) {
    border-right: 0;
  }

  .industry-card:nth-child(n+4) {
    border-bottom: 0;
  }

  .product-layout,
  .faq-layout,
  .request-layout {
    gap: 60px;
  }

  .completeness-panel {
    gap: 55px;
  }

  .footer-top {
    grid-template-columns: 0.6fr 0.7fr 1.2fr;
    gap: 35px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 18px;
    color: var(--white);
    background: rgba(11, 23, 49, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 15px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .site-nav .button {
    margin-top: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .hero-copy h1 {
    font-size: clamp(3.4rem, 12vw, 5.7rem);
  }

  .market-card {
    width: min(520px, 96%);
    margin-inline: auto;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .audience-row,
  .audience-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .audience-row {
    gap: 15px;
  }

  .audience-list {
    gap: 13px 22px;
  }

  .audience-list span {
    gap: 22px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading,
  .product-layout,
  .faq-layout,
  .request-layout,
  .use-case-layout {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .section-heading {
    align-items: start;
  }

  .coverage-builder {
    grid-template-columns: 1fr;
  }

  .builder-controls {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .completeness-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-step:nth-child(2) {
    border-right: 0;
  }

  .workflow-step:nth-child(-n+2) {
    padding-bottom: 34px;
    border-bottom: 1px solid #c9cbc4;
  }

  .workflow-step:nth-child(n+3) {
    padding-top: 34px;
  }

  .workflow-step:nth-child(3) {
    padding-left: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 570px;
    margin-inline: auto;
  }

  .price-card {
    min-height: 0;
  }

  .price-card-featured {
    transform: none;
  }

  .use-case-section {
    padding-top: 0;
  }

  .faq-intro {
    position: static;
  }

  .request-copy {
    max-width: 600px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-disclaimer {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-copy h1 {
    margin-top: 21px;
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .market-card {
    width: 96%;
    padding: 21px;
    transform: none;
  }

  .js .market-card.reveal,
  .js .market-card.reveal.is-visible {
    transform: translateY(0) rotate(0);
  }

  .market-card-head {
    align-items: center;
  }

  .market-card .status-pill {
    font-size: 0;
  }

  .market-card .status-pill i {
    width: 8px;
    height: 8px;
  }

  .metric-strip {
    margin-top: 63px;
  }

  .metric {
    min-height: 110px;
    padding: 19px;
  }

  .metric strong {
    font-size: 1.35rem;
  }

  .audience-band {
    display: none;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 38px;
  }

  .builder-controls,
  .builder-output {
    padding: 28px 22px;
  }

  .coverage-details {
    grid-template-columns: 1fr;
  }

  .coverage-details > div:nth-child(odd),
  .coverage-details > div:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .coverage-count {
    font-size: 4.3rem;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-card {
    min-height: 200px;
  }

  .industry-card:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .industry-card:nth-child(even) {
    border-right: 0;
  }

  .industry-card:nth-child(n+4) {
    border-bottom: 1px solid var(--line);
  }

  .industry-card:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .data-compare {
    grid-template-columns: 1fr;
  }

  .compare-card {
    min-height: 0;
  }

  .completeness-panel {
    margin-top: 60px;
    padding: 28px 22px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step,
  .workflow-step:not(:first-child),
  .workflow-step:nth-child(3) {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid #c9cbc4;
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .use-case-layout {
    padding-top: 75px;
  }

  .use-case {
    grid-template-columns: 42px 1fr;
  }

  .faq-list summary {
    font-size: 0.96rem;
  }

  .request-section {
    padding: 78px 0;
  }

  .request-form-wrap {
    margin-inline: -5px;
  }

  .request-form {
    padding: 28px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-top nav {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 18px 25px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .thank-you-card {
    padding: 38px 24px;
  }

  .legal-main {
    width: calc(100% - 32px);
    padding-top: 70px;
  }
}

@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,
  .js .market-card.reveal {
    opacity: 1;
    transform: none;
  }
}
