:root {
  --ink: #0b2d63;
  --ink-soft: #284a72;
  --paper: #f5f8fc;
  --paper-deep: #e7edf5;
  --white: #ffffff;
  --signal: #0d8bec;
  --signal-dark: #0d41af;
  --line: rgba(13, 65, 175, 0.15);
  --line-light: rgba(255, 255, 255, 0.22);
  --muted: #67788d;
  --shadow: 0 20px 50px rgba(9, 43, 150, 0.16);
  --radius: 0;
  --max-width: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Public Sans,
    Avenir Next,
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

[data-contact-open],
.header-cta,
.company-contact {
  cursor: pointer;
}

svg {
  display: block;
}

.skip-link,
.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:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  margin: 12px;
  padding: 12px 16px;
  color: var(--signal-dark);
  background: var(--white);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 68px;
  padding: 0 clamp(24px, 3.5vw, 58px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 180ms ease,
    color 180ms ease,
    height 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 58px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: fit-content;
}

.brand-mark {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.13em;
}

.brand-copy small {
  margin-top: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
  opacity: 0.68;
  text-transform: uppercase;
}

.brand-cursor {
  color: #bfe3ff;
}

.site-header.is-scrolled .brand-cursor,
.site-header.menu-active .brand-cursor {
  color: var(--signal);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 11px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.language-option {
  padding: 5px 0;
  background: none;
  border: 0;
  cursor: pointer;
  opacity: 0.42;
}

.language-option.is-active {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    box-shadow 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(13, 65, 175, 0.22);
}

.button-small {
  min-height: 34px;
  padding: 0 14px;
  font-size: 9px;
}

.button-dark {
  color: var(--signal-dark);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 35, 96, 0.16);
}

.site-header.is-scrolled .button-dark,
.site-header.menu-active .button-dark {
  color: var(--white);
  background: var(--signal-dark);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--signal), var(--signal-dark));
  box-shadow: 0 10px 24px rgba(13, 65, 175, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #2a9df2, #123d9a);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 112px clamp(24px, 4vw, 64px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.15), transparent 25%),
    radial-gradient(circle at 18% 75%, rgba(138, 211, 255, 0.2), transparent 30%),
    linear-gradient(141deg, var(--signal-dark) 0%, var(--signal) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.75);
}

.hero h1,
.statement h2,
.company h2,
.cta-content h2 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 80px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 span,
.hero h1 em,
.statement h2 span,
.statement h2 em,
.company h2 span,
.company h2 em,
.cta-content h2 span,
.cta-content h2 em {
  display: block;
}

.hero h1 em,
.statement h2 em,
.company h2 em,
.cta-content h2 em {
  color: var(--signal-dark);
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
}

.hero-intro {
  max-width: 590px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
}

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

.text-link {
  display: inline-flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 em {
  color: #d9eeff;
}

.hero .button-primary {
  color: var(--signal-dark);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 35, 96, 0.2);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: #edf7ff;
}

.search-stage {
  position: relative;
  min-width: 0;
}

.search-stage::before {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 430px;
  height: 430px;
  background: #cbe7ff;
  border-radius: 50%;
  content: "";
  filter: blur(130px);
  opacity: 0.2;
  pointer-events: none;
}

.suggest-box {
  position: relative;
  padding: clamp(22px, 3vw, 38px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid rgba(13, 65, 175, 0.18);
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(13, 65, 175, 0.07);
}

.search-input-wrap svg,
.suggestion-item svg {
  flex: 0 0 auto;
  width: 18px;
  fill: none;
  stroke: #71819a;
  stroke-width: 1.7;
}

.search-input-wrap input {
  flex: 0 1 auto;
  width: auto;
  max-width: calc(100% - 34px);
  min-width: 0;
  padding: 0;
  color: #17365f;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: clamp(13px, 1vw, 16px);
}

.input-cursor {
  flex: 0 0 auto;
  width: 2px;
  height: 21px;
  margin-left: -10px;
  background: var(--signal-dark);
  animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

.suggestion-list {
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0;
  overflow: hidden;
  list-style: none;
}

.suggestion-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 36px;
  padding: 6px 14px;
  border-bottom: 1px solid rgba(13, 65, 175, 0.08);
  font-size: clamp(11px, 0.9vw, 13px);
}

.suggestion-item:last-child {
  border-bottom: 0;
}

.suggestion-item strong {
  font-weight: 700;
}

.suggestion-featured {
  background: rgba(13, 139, 236, 0.12);
  border-left: 3px solid var(--signal-dark);
}

.placement-tag {
  margin-left: auto;
  padding: 4px 6px;
  color: var(--white);
  background: var(--signal);
  border-radius: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.hero-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, var(--max-width));
  margin: clamp(58px, 8vh, 90px) auto 0;
  border-top: 1px solid var(--line-light);
}

.hero-footer div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 68px;
  padding: 0 30px;
  border-right: 1px solid var(--line-light);
}

.hero-footer div:first-child {
  padding-left: 0;
}

.hero-footer div:last-child {
  border-right: 0;
}

.hero-footer span,
.section-kicker,
.process-index,
.feature-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.hero-footer span {
  color: #d9eeff;
  font-size: 10px;
}

.hero-footer p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(72px, 8vw, 112px) clamp(24px, 5vw, 78px);
}

.section-kicker {
  display: flex;
  gap: 18px;
  width: min(100%, var(--max-width));
  margin: 0 auto clamp(42px, 5vw, 72px);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-kicker span:first-child {
  color: var(--muted);
}

.statement-grid,
.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(48px, 7vw, 110px);
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.statement h2,
.company h2 {
  font-size: clamp(42px, 4.8vw, 70px);
}

.statement h2 em,
.company h2 em {
  color: var(--signal-dark);
}

.statement-copy {
  align-self: end;
  max-width: 560px;
}

.statement-copy p,
.company-intro > p {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(100%, var(--max-width));
  margin: clamp(48px, 6vw, 82px) auto 0;
}

.feature-card {
  position: relative;
  min-height: 270px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
  border: 1px solid rgba(13, 65, 175, 0.1);
  border-radius: 0;
  box-shadow: 0 18px 45px rgba(13, 65, 175, 0.08);
}

.feature-card-dark {
  color: var(--white);
  background: linear-gradient(141deg, var(--signal-dark), var(--signal));
  border-color: transparent;
}

.feature-number {
  color: var(--muted);
  font-size: 10px;
}

.feature-card-dark .feature-number {
  color: #d9eeff;
}

.feature-card h3 {
  max-width: 280px;
  margin: 70px 0 14px;
  font-size: clamp(19px, 1.6vw, 25px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.feature-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.finder {
  background: var(--paper-deep);
}

.finder-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.finder-heading h2,
.fit-card-large h2 {
  margin: 0;
  font-size: clamp(42px, 4.8vw, 70px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.finder-heading h2 span,
.finder-heading h2 em {
  display: block;
}

.finder-heading h2 em {
  color: var(--signal-dark);
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
}

.finder-heading p {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
}

.finder-shell {
  width: min(100%, var(--max-width));
  margin: clamp(46px, 5vw, 70px) auto 0;
  background: var(--white);
  border: 1px solid rgba(13, 65, 175, 0.1);
  border-radius: 0;
  box-shadow: 0 24px 65px rgba(13, 65, 175, 0.12);
  overflow: hidden;
}

.finder-form {
  display: grid;
  grid-template-columns: 0.55fr 1.5fr 1fr auto;
  gap: 10px;
  align-items: end;
  padding: 18px;
  background: linear-gradient(120deg, var(--signal-dark), var(--signal));
}

.finder-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-form input,
.finder-form select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 0;
  outline: none;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
}

.finder-form input:focus,
.finder-form select:focus {
  border-color: var(--signal);
}

.finder-submit {
  height: 44px;
  min-height: 44px;
  color: var(--signal-dark);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 35, 96, 0.18);
  white-space: nowrap;
}

.finder-submit:hover,
.finder-submit:focus-visible {
  background: #edf7ff;
}

.finder-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  min-height: 440px;
}

.finder-results {
  min-width: 0;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.finder-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.finder-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.finder-panel-heading h3,
.finder-cart h3 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.finder-result-count {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--signal), var(--signal-dark));
  border-radius: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}

.finder-table-wrap {
  overflow-x: auto;
}

.finder-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

.finder-table th {
  padding: 18px 12px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.finder-table th:first-child,
.finder-table td:first-child {
  padding-left: 0;
}

.finder-table th:last-child,
.finder-table td:last-child {
  padding-right: 0;
  text-align: right;
}

.finder-table td {
  padding: 13px 10px;
  border-top: 1px solid var(--line);
  vertical-align: middle;
}

.finder-table tbody tr {
  transition: background 140ms ease;
}

.finder-table tbody tr:hover {
  background: rgba(13, 139, 236, 0.045);
}

.finder-keyword {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 180px;
}

.finder-keyword strong {
  font-weight: 400;
}

.finder-keyword span {
  color: var(--muted);
  font-size: 10px;
}

.finder-traffic {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.traffic-bar {
  width: 38px;
  height: 5px;
  background: var(--paper-deep);
}

.traffic-bar i {
  display: block;
  width: var(--traffic);
  height: 100%;
  background: var(--signal-dark);
}

.finder-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.metric-bar {
  width: 30px;
  height: 5px;
  background: var(--paper-deep);
}

.metric-bar i {
  display: block;
  width: var(--metric);
  height: 100%;
}

.finder-metric-cpc .metric-bar i {
  background: #d94452;
}

.finder-metric-competition .metric-bar i {
  background: #e2b21f;
}

.finder-pagination {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.finder-pagination[hidden] {
  display: none;
}

.finder-pagination > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.finder-pagination button {
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 9px;
}

.finder-pagination button:hover,
.finder-pagination button.is-active {
  color: var(--white);
  background: var(--signal-dark);
  border-color: var(--signal-dark);
}

.finder-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.finder-pagination small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.keyword-toggle {
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  font-size: 17px;
}

.keyword-toggle:hover,
.keyword-toggle.is-selected {
  color: var(--white);
  background: var(--signal);
  border-color: var(--signal-dark);
}

.finder-cart {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  background: #f0f5fb;
}

.finder-cart-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}

.cart-keyword {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.cart-keyword strong {
  overflow: hidden;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-keyword button {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.finder-empty {
  display: grid;
  place-items: center;
  margin: auto 0;
  padding: 35px 20px;
  color: var(--muted);
  border: 1px dashed rgba(13, 65, 175, 0.24);
  border-radius: 0;
  text-align: center;
}

.finder-empty[hidden] {
  display: none;
}

.finder-empty span {
  font-family: Georgia, Times New Roman, serif;
  font-size: 40px;
}

.finder-empty p {
  max-width: 210px;
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.finder-totals {
  margin-top: auto;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.finder-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 11px;
}

.finder-totals strong {
  color: var(--ink);
  font-size: 17px;
}

.finder-request {
  width: 100%;
}

.finder-request.is-disabled {
  cursor: not-allowed;
  opacity: 0.42;
  pointer-events: none;
}

.finder-notes {
  display: block;
  padding: 22px 34px;
  color: var(--muted);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  line-height: 1.6;
}

.finder-notes p {
  max-width: 780px;
  margin: 0;
}

.method {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.13), transparent 26%),
    linear-gradient(141deg, var(--signal-dark), var(--signal));
}

.section-kicker-light {
  border-color: var(--line-light);
}

.method-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 54px;
  align-items: end;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.method-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.method-heading p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.process-list {
  width: min(100%, var(--max-width));
  margin: clamp(50px, 6vw, 82px) auto 0;
  padding: 0;
  border-top: 0;
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 10px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  backdrop-filter: blur(6px);
}

.process-index {
  color: #d9eeff;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.9vw, 29px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.process-step p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.process-visual {
  align-self: center;
  width: 112px;
  height: 78px;
  object-fit: contain;
  object-position: center;
}

.fit {
  background: var(--paper);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 14px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.fit-card {
  min-height: 390px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
  border: 1px solid rgba(13, 65, 175, 0.1);
  border-radius: 0;
  box-shadow: 0 18px 45px rgba(13, 65, 175, 0.08);
}

.fit-card-large {
  display: flex;
  flex-direction: column;
}

.fit-card-large h2 {
  margin-top: 42px;
  font-size: clamp(38px, 4vw, 58px);
}

.fit-card p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.fit-card-large p {
  max-width: 700px;
  margin-top: auto;
  font-size: 15px;
}

.fit-card h3 {
  margin: 28px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.fit-card-dark {
  color: var(--white);
  background: linear-gradient(141deg, var(--signal-dark), var(--signal));
  border-color: transparent;
}

.fit-card-dark .finder-label {
  color: rgba(255, 255, 255, 0.62);
}

.fit-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.monitor-visual {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 120px;
  margin-top: 44px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
}

.monitor-visual span {
  width: 20%;
  height: var(--bar);
  background: linear-gradient(180deg, var(--signal), var(--signal-dark));
  border-radius: 0;
}

.success-display {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 120px;
  margin-top: 44px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line-light);
  border-radius: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.success-display strong {
  margin-top: 8px;
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
}

.company {
  background: var(--white);
}

.company-grid {
  align-items: start;
}

.company-intro > p {
  max-width: 660px;
  margin-top: 30px;
}

.principles {
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.principle > span {
  padding-top: 5px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

.principle h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.cta-section {
  min-height: 560px;
  padding: clamp(58px, 6vw, 86px) clamp(24px, 5vw, 78px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15), transparent 30%),
    linear-gradient(141deg, var(--signal-dark), var(--signal));
}

.cta-terminal {
  display: flex;
  justify-content: space-between;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.terminal-status {
  color: #d9eeff;
}

.cta-content {
  width: min(100%, var(--max-width));
  margin: clamp(54px, 6vw, 86px) auto 0;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.cta-content h2 {
  max-width: 1080px;
  font-size: clamp(44px, 5.5vw, 82px);
}

.cta-content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  padding: 70px clamp(24px, 6vw, 96px) 24px;
  background: var(--paper-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line);
}

.footer-main > p {
  justify-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-main > a:last-child {
  justify-self: end;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 28px;
  width: min(100%, var(--max-width));
  margin: 36px auto;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-links button {
  padding: 4px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  border-bottom-color: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

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

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

  .search-stage {
    width: min(100%, 780px);
    margin-left: auto;
  }

  .statement-grid,
  .company-grid,
  .finder-heading {
    grid-template-columns: 1fr;
  }

  .statement-copy {
    max-width: 720px;
  }

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

  .finder-form {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .finder-submit {
    width: 100%;
  }

  .finder-workspace {
    grid-template-columns: 1fr;
  }

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

  .finder-cart {
    min-height: 420px;
  }

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

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

  .fit-card-large {
    grid-column: 1 / -1;
    min-height: 450px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-main > p {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .site-header.is-scrolled {
    height: 62px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .header-actions {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 34px;
    height: 34px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.menu-active .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-active .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    top: 62px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 45px 24px;
    color: var(--ink);
    background: var(--white);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 30px;
    letter-spacing: -0.04em;
  }

  .mobile-menu a:last-child {
    margin-top: auto;
    color: var(--white);
    background: linear-gradient(135deg, var(--signal), var(--signal-dark));
    border: 0;
    border-radius: 0;
    padding: 18px;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
  }

  .hero {
    min-height: 0;
    padding: 124px 20px 0;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .hero-intro {
    margin-top: 28px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .search-stage {
    width: 100%;
  }

  .suggest-box {
    padding: 24px 12px 16px;
  }

  .suggestion-item {
    font-size: 11px;
  }

  .placement-tag {
    display: none;
  }

  .hero-footer {
    grid-template-columns: 1fr;
    margin-top: 76px;
  }

  .hero-footer div,
  .hero-footer div:first-child {
    min-height: 66px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .section-pad {
    padding: 90px 20px;
  }

  .section-kicker {
    margin-bottom: 60px;
  }

  .statement-grid,
  .company-grid {
    gap: 45px;
  }

  .statement h2,
  .company h2,
  .finder-heading h2 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .feature-card {
    min-height: 310px;
  }

  .feature-card h3 {
    margin-top: 95px;
  }

  .finder-heading {
    gap: 35px;
  }

  .finder-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .finder-results {
    padding: 26px 18px;
  }

  .finder-panel-heading {
    align-items: start;
  }

  .finder-table {
    min-width: 0;
  }

  .finder-table thead {
    display: none;
  }

  .finder-table tbody {
    display: block;
  }

  .finder-table tr {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
    padding: 18px 42px 18px 0;
    border-top: 1px solid var(--line);
  }

  .finder-table td,
  .finder-table td:first-child,
  .finder-table td:last-child {
    padding: 0;
    border: 0;
    text-align: left;
  }

  .finder-table td:first-child {
    grid-column: 1 / -1;
  }

  .finder-table td:not(:first-child):not(:last-child)::before {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    content: attr(data-label);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 7px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .finder-table td:last-child {
    position: absolute;
    top: 18px;
    right: 0;
  }

  .finder-pagination {
    grid-template-columns: 1fr 1fr;
  }

  .finder-pagination > div {
    grid-column: 1 / -1;
    grid-row: 1;
    flex-wrap: wrap;
  }

  .finder-cart {
    min-height: 480px;
    padding: 28px 20px;
  }

  .finder-notes {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .method-heading {
    gap: 30px;
  }

  .method-heading h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .process-list {
    margin-top: 70px;
  }

  .process-step {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 26px 20px;
  }

  .process-visual {
    grid-column: 2;
    width: 100%;
    max-width: 150px;
    height: 92px;
    margin-top: 12px;
    object-position: left center;
  }

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

  .fit-card,
  .fit-card:nth-child(2) {
    min-height: 410px;
  }

  .fit-card-large h2 {
    margin-top: 50px;
    font-size: clamp(42px, 12vw, 64px);
  }

  .monitor-visual,
  .success-display {
    margin-top: 45px;
  }

  .company-intro > p {
    margin-top: 30px;
  }

  .cta-section {
    min-height: 680px;
    padding: 70px 20px;
  }

  .cta-content h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .cta-content .button {
    width: 100%;
  }

  .site-footer {
    padding: 58px 20px 22px;
  }

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

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

  .footer-links {
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

.client-grid img:nth-child(7) {
  background: #0072bc;
}

.client-grid img:nth-child(11) {
  filter: invert(1);
}

/* Compact hero, interactive benefits, journey tabs and client logos */
.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero {
  min-height: 620px;
  padding-top: 94px;
  padding-bottom: 52px;
}

.feature-card {
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-card:hover,
.feature-card:focus-within {
  color: var(--white);
  background: linear-gradient(141deg, var(--signal-dark), var(--signal));
  border-color: transparent;
  box-shadow: 0 24px 54px rgba(13, 65, 175, 0.2);
  transform: translateY(-4px);
}

.feature-card:hover p,
.feature-card:focus-within p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-card:hover h3,
.feature-card:focus-within h3 {
  color: var(--white);
}

.feature-card:hover .feature-image,
.feature-card:focus-within .feature-image {
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.process-tabs {
  width: min(100%, var(--max-width));
  margin: clamp(46px, 5vw, 70px) auto 0;
}

.process-tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.process-tab {
  min-height: 54px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.process-tab:last-child {
  border-right: 0;
}

.process-tab:hover,
.process-tab:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.process-tab.is-active {
  color: var(--signal-dark);
  background: var(--white);
}

.process-panels {
  background: var(--white);
}

.process-step {
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  min-height: 340px;
  margin: 0;
  padding: clamp(34px, 5vw, 68px);
  color: var(--ink);
  background: var(--white);
  border: 0;
  backdrop-filter: none;
}

.process-step[hidden] {
  display: none;
}

.process-copy {
  max-width: 570px;
}

.process-index {
  display: block;
  margin-bottom: 22px;
  color: var(--signal);
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 600;
}

.process-step p {
  color: var(--ink-soft);
  font-size: clamp(13px, 1.1vw, 16px);
}

.process-visual {
  justify-self: center;
  width: min(100%, 360px);
  height: 230px;
}

.client-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 0;
}

.client-grid img {
  flex: 0 0 calc(100% / 7);
  width: calc(100% / 7);
  max-width: calc(100% / 7);
  height: 58px;
  padding: 14px 18px;
  object-fit: contain;
  filter: saturate(0.88);
}

.client-grid img:nth-child(7) {
  background: #0072bc;
}

.client-grid img:nth-child(11) {
  filter: invert(1);
}

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

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-visual {
    justify-self: start;
    width: min(100%, 420px);
  }

  .client-grid img {
    flex-basis: 20%;
    width: 20%;
    max-width: 20%;
  }
}

@media (max-width: 760px) {
  .brand-name {
    font-size: 12px;
  }

  .hero {
    padding-top: 92px;
    padding-bottom: 54px;
  }

  .process-tab {
    min-height: 48px;
    padding: 0 8px;
    font-size: 8px;
    text-align: center;
  }

  .process-step {
    min-height: 0;
    padding: 28px 22px;
  }

  .process-visual {
    height: 190px;
  }

  .client-grid img {
    flex-basis: 33.333%;
    width: 33.333%;
    max-width: 33.333%;
    height: 52px;
    padding: 12px;
  }
}

/* Keep translated journey labels stable across cached and responsive states. */
.hero-demo-tabs button {
  white-space: nowrap;
}

html[lang="en"] .hero-demo-tabs {
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
}

@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;
  }

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

/* 2026 campaign-builder revision */
.site-header,
.hero,
.section-pad,
.cta-section,
.site-footer {
  padding-right: max(28px, calc((100vw - 1040px) / 2));
  padding-left: max(28px, calc((100vw - 1040px) / 2));
}

.site-header {
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 3vw, 52px);
  height: 58px;
}

.brand-mark {
  width: 38px;
  height: 30px;
  stroke-width: 1.5;
}

.brand-mark-highlight {
  stroke: #bfe3ff;
  stroke-width: 3.5;
}

.site-header.is-scrolled .brand-mark-highlight,
.site-header.menu-active .brand-mark-highlight,
.brand-footer .brand-mark-highlight {
  stroke: var(--signal);
}

.language-switch {
  gap: 8px;
}

.language-option {
  display: grid;
  place-items: center;
  width: 26px;
  height: 24px;
  padding: 0;
  font-size: 17px;
  filter: none;
  opacity: 0.48;
}

.language-option.is-active {
  opacity: 1;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 760px;
  padding-top: 108px;
  padding-bottom: 76px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(40px, 5vw, 80px);
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(46px, 4.7vw, 73px);
  line-height: 0.96;
}

.search-stage {
  justify-self: end;
  width: min(100%, 470px);
}

.hero-demo-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-demo-tabs button {
  position: relative;
  z-index: 1;
  min-height: 36px;
  padding: 0 24px 0 18px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-demo-tabs button:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: -19px;
  z-index: 3;
  width: 20px;
  height: 36px;
  display: none;
  background: var(--white);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  pointer-events: none;
}

.hero-demo-tabs button + button {
  padding-left: 28px;
}

.hero-demo-tabs button {
  white-space: nowrap;
}

html[lang="en"] .hero-demo-tabs {
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
}

.hero-demo-tabs button.is-active {
  z-index: 2;
  color: var(--signal-dark);
  background: var(--white);
}

.hero-demo-tabs button.is-active::after {
  display: block;
}

.hero-demo-panel {
  min-height: 330px;
  opacity: 1;
  transition: opacity 550ms ease;
}

.hero-demo-panel[hidden] {
  display: none;
}

.hero-demo-panel.is-changing {
  opacity: 0;
}

.suggest-box {
  padding: 24px;
}

.example-refresh {
  position: absolute;
  top: 50px;
  right: 4px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--signal-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.example-refresh svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 220ms ease;
}

.example-refresh:hover svg,
.example-refresh:focus-visible svg {
  transform: rotate(70deg);
}

.search-input-wrap input,
.suggestion-list {
  text-transform: lowercase;
}

.serp-demo,
.website-demo {
  min-height: 330px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.serp-search {
  margin-bottom: 22px;
  padding: 12px 14px;
  color: #334b6b;
  border: 1px solid var(--line);
  font-size: 12px;
  text-transform: lowercase;
}

.serp-result {
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
}

.serp-result:last-child {
  border-bottom: 0;
}

.serp-result small {
  color: #47637e;
  font-size: 9px;
}

.serp-result h3 {
  margin: 6px 0;
  color: #174ea6;
  font-size: 15px;
  font-weight: 500;
}

.serp-result p {
  margin: 0;
  color: #53657a;
  font-size: 10px;
  line-height: 1.5;
}

.serp-result-featured {
  border-left: 3px solid var(--signal);
  padding-left: 12px;
}

.website-demo {
  padding: 0;
  overflow: hidden;
}

.website-demo-bar {
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  background: var(--paper-deep);
}

.website-demo-bar span {
  width: 6px;
  height: 6px;
  background: #a8b5c6;
  border-radius: 50%;
}

.website-demo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-size: 9px;
}

.website-demo-nav strong {
  color: var(--signal-dark);
  letter-spacing: 0.08em;
}

.website-demo-nav span {
  color: var(--muted);
}

.website-demo-hero {
  min-height: 242px;
  padding: 34px 24px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(13, 65, 175, 0.94), rgba(13, 139, 236, 0.72)),
    linear-gradient(25deg, #0d41af, #8ed2ff);
}

.website-demo-hero small {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.website-demo-hero h3 {
  margin: 16px 0 24px;
  font-size: 27px;
  line-height: 1.02;
}

.website-demo-button {
  display: inline-block;
  padding: 9px 12px;
  color: var(--signal-dark);
  background: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.statement {
  z-index: 2;
  margin-top: -18px;
  padding-top: 0;
  position: relative;
}

.feature-grid {
  margin-top: 0;
}

.feature-card {
  min-height: 360px;
  padding: clamp(20px, 2vw, 30px);
}

.feature-image {
  display: block;
  width: 100%;
  height: 128px;
  margin: 22px 0 18px;
  object-fit: contain;
}

.feature-card-dark .feature-image {
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.feature-card h3 {
  margin: 0 0 12px;
}

.finder-heading {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.finder {
  padding-top: clamp(24px, 3vw, 42px);
}

.finder-intro {
  width: min(100%, 760px);
  margin: 0 auto clamp(28px, 3vw, 42px);
  text-align: center;
}

.finder-intro h2 {
  margin: 0;
  font-size: clamp(39px, 4.45vw, 65px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.finder-intro p {
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.finder .finder-shell {
  margin-top: 0;
}

.guarantee-section {
  padding-top: 0;
  padding-bottom: clamp(70px, 8vw, 118px);
}

.guarantee-section .listing-guarantee {
  grid-template-columns: max-content minmax(0, 1fr);
}

.company-contact {
  margin-top: 24px;
}

.finder-heading h2 {
  max-width: 520px;
}

.finder-form {
  grid-template-columns: 0.45fr minmax(280px, 1.8fr) auto;
}

.finder-source {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.finder-error {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: #7b1830;
  background: #fff0f3;
  border-left: 3px solid #b72a4b;
  font-size: 11px;
  line-height: 1.5;
}

.finder-error[hidden] {
  display: none;
}

.finder-no-results {
  padding: 38px 12px !important;
  color: var(--muted);
  text-align: center !important;
}

.finder-workspace {
  grid-template-columns: minmax(0, 1fr) 350px;
}

.finder-preview {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.preview-brand-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.preview-brand-field input {
  width: 100%;
  height: 34px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}

.preview-brand-field input:focus {
  border-color: var(--signal);
}

.preview-suggest-box {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(13, 65, 175, 0.08);
}

.preview-query,
.preview-suggestion {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 10px;
  font-size: 10px;
  text-transform: lowercase;
}

.preview-brand-field input {
  text-transform: lowercase;
}

.preview-query {
  border-bottom: 1px solid var(--line);
}

.preview-suggestion {
  background: rgba(13, 139, 236, 0.11);
  border-left: 3px solid var(--signal-dark);
}

.preview-query svg,
.preview-suggestion svg {
  flex: 0 0 auto;
  width: 14px;
  fill: none;
  stroke: #71819a;
  stroke-width: 1.7;
}

.preview-suggestion strong {
  color: var(--signal-dark);
}

.finder-cart > div:nth-child(2) {
  padding-top: 24px;
}

.finder-request {
  width: 100%;
}

.finder-request:disabled {
  cursor: not-allowed;
}

.reporting {
  background: var(--white);
}

.reporting-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.reporting-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 4.8vw, 70px);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.reporting-heading p {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
}

.reporting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max-width));
  margin: clamp(46px, 5vw, 70px) auto 0;
}

.reporting-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.reporting-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
}

.reporting-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
}

.reporting-card figcaption strong {
  font-size: 18px;
  font-weight: 500;
}

.reporting-card figcaption span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.listing-guarantee {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.55fr 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(120deg, var(--signal-dark), var(--signal));
}

.listing-guarantee .finder-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.listing-guarantee > strong {
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}

.company-intro h2 span,
.company-intro h2 em {
  display: inline;
}

.company-intro h2 span::after {
  content: " ";
}

html[lang="de"] .company-intro h2 {
  font-size: clamp(39px, 4.45vw, 65px);
}

.logos-meaning {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.03em;
}

.listing-guarantee p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.client-section {
  width: min(100%, var(--max-width));
  margin: clamp(60px, 7vw, 100px) auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-wordmark {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 16px;
  color: #526780;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-align: center;
}

.client-green {
  color: #24734a;
  font-size: 11px;
}

.client-serif {
  color: #d42c2c;
  font-family: Georgia, serif;
  font-size: 26px;
}

.client-lower {
  color: var(--signal-dark);
  font-size: 18px;
  text-transform: lowercase;
}

.client-compact {
  font-size: 10px;
  letter-spacing: 0.02em;
}

.client-wordmark:nth-last-child(3),
.client-wordmark:nth-last-child(2) {
  grid-column: span 2;
}

.contact-modal {
  width: min(680px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.contact-modal::backdrop {
  background: rgba(7, 25, 57, 0.76);
  backdrop-filter: blur(5px);
}

.contact-modal-card {
  position: relative;
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border-top: 5px solid var(--signal);
  box-shadow: 0 30px 80px rgba(4, 23, 57, 0.32);
}

.contact-modal-card h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.contact-modal-card > p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.legal-modal {
  width: min(780px, calc(100vw - 40px));
  overflow-y: auto;
}

.legal-modal-copy {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.legal-modal-copy[hidden] {
  display: none;
}

.legal-modal-copy p {
  margin: 0 0 20px;
}

.legal-modal-copy strong {
  color: var(--ink);
}

.legal-modal-copy a {
  color: var(--signal-dark);
  border-bottom: 1px solid currentColor;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--ink);
  background: var(--paper-deep);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 18px;
}

.contact-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-fields input,
.contact-fields textarea {
  width: 100%;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  resize: vertical;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.contact-fields input:focus,
.contact-fields textarea:focus {
  border-color: var(--signal);
}

.contact-selection {
  margin-bottom: 20px;
  padding: 14px;
  color: var(--ink-soft);
  background: var(--paper-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  line-height: 1.6;
  white-space: pre-line;
}

.contact-modal-card > .contact-status {
  margin: 0 0 18px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
}

.contact-status.is-success {
  color: #124e2c;
  background: #e9f7ef;
  border-left: 3px solid #23834b;
}

.contact-status.is-error {
  color: #7a1d1d;
  background: #fff0f0;
  border-left: 3px solid #c93b3b;
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .section-pad,
  .cta-section,
  .site-footer {
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-actions {
    gap: 14px;
  }

  .statement {
    margin-top: -12px;
    padding-top: 0;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(48px, 5vw, 62px);
  }

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

  .company-grid {
    gap: 54px;
  }

  .finder-workspace {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 1101px) {
  .finder.is-expanded .finder-shell {
    position: relative;
    left: 50%;
    width: min(94vw, 1680px);
    max-width: none;
    transform: translateX(-50%);
  }

  .finder.is-expanded .finder-table {
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .finder-heading,
  .reporting-heading {
    grid-template-columns: 1fr;
  }

  .search-stage {
    justify-self: start;
  }

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

  .finder-workspace,
  .reporting-grid {
    grid-template-columns: 1fr;
  }

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

  .listing-guarantee {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .listing-guarantee > strong {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .section-pad,
  .cta-section,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header {
    height: 56px;
  }

  .brand-name {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: auto;
    padding-top: 106px;
    padding-bottom: 70px;
  }

  .hero-demo-tabs button {
    min-width: 0;
    padding: 0 14px 0 8px;
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  .hero-demo-tabs button:not(:last-child)::after {
    right: -15px;
    width: 16px;
  }

  .hero-demo-tabs button + button {
    padding-left: 18px;
  }

  .finder-form,
  .feature-grid,
  .client-grid,
  .contact-fields {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .contact-field-wide {
    grid-column: auto;
  }
}

/* Final cascade overrides for the compact revision */
.hero {
  min-height: 620px;
  padding-top: 94px;
  padding-bottom: 52px;
}

.client-grid {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: none;
  align-items: center;
  margin-top: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 0;
}

.client-grid img {
  flex: 0 0 calc(100% / 7);
  width: calc(100% / 7);
  max-width: calc(100% / 7);
  height: 58px;
  padding: 14px 18px;
  object-fit: contain;
  filter: saturate(0.88);
}

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

  .process-step {
    grid-template-columns: 1fr !important;
  }

  .process-visual {
    grid-column: auto !important;
    justify-self: start;
    width: min(100%, 420px);
  }

  .client-grid img {
    flex-basis: 20%;
    width: 20%;
    max-width: 20%;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 92px;
    padding-bottom: 54px;
  }

  .process-step {
    gap: 28px;
  }

  .process-visual {
    height: 190px;
  }

  .client-grid {
    display: flex;
  }

  .client-grid img {
    flex-basis: 33.333%;
    width: 33.333%;
    max-width: 33.333%;
    height: 52px;
    padding: 12px;
  }
}
