:root {
  --ink: #1d1f1f;
  --night: #252525;
  --muted: #66726e;
  --line: #dde4df;
  --paper: #f5f7f3;
  --white: #ffffff;
  --green: #177a5b;
  --mint: #46f1a7;
  --lime: #e7ffb8;
  --coral: #f36a4a;
  --blue: #129fd1;
  --violet: #7b18ff;
  --gold: #d7b352;
  --shadow: 0 24px 70px rgba(29, 31, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

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

button {
  font: inherit;
}

:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(23, 122, 91, 0.55);
  outline-offset: 2px;
}

.nav-links a {
  transition: color 140ms ease;
}

.site-header {
  align-items: center;
  background: rgba(245, 247, 243, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 228, 223, 0.78);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
}

.brand-logo {
  display: block;
  height: 34px;
  object-fit: contain;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-action,
.button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 760;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.nav-action:hover,
.button:hover {
  box-shadow: 0 10px 26px rgba(29, 31, 31, 0.16);
  transform: translateY(-1px);
}

.nav-action:active,
.button:active {
  box-shadow: none;
  transform: translateY(0);
}

.nav-action,
.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  border: 1px solid rgba(29, 31, 31, 0.18);
  color: var(--ink);
}

.hero {
  background: var(--night);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

.hero-copy {
  align-content: center;
  display: grid;
  min-height: 720px;
  padding: clamp(34px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 5.1vw, 5.7rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero .button.primary {
  background: var(--lime);
  color: var(--ink);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof span {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 18px 0 12px;
}

.hero-proof span:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-proof strong {
  color: var(--white);
  display: block;
  font-size: 1rem;
}

.emoji-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(29, 31, 31, 0.08);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 18px;
  width: 42px;
}

.hero-stage {
  align-items: center;
  background:
    linear-gradient(#dfe7df 1px, transparent 1px),
    linear-gradient(90deg, #dfe7df 1px, transparent 1px),
    #eef3ee;
  background-size: 42px 42px;
  color: var(--ink);
  display: flex;
  justify-content: center;
  min-height: 720px;
  padding: clamp(24px, 5vw, 68px);
  position: relative;
}

.trust-visual {
  display: grid;
  gap: 16px;
  max-width: 680px;
  width: 100%;
}

.trust-header,
.program-panel-header,
.program-row,
.case-meta {
  display: flex;
  flex-wrap: wrap;
}

.trust-header {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(29, 31, 31, 0.1);
  gap: 12px;
  justify-content: space-between;
  padding: 16px;
}

.trust-header img {
  height: 46px;
  width: 46px;
}

.trust-header div {
  flex: 1 1 220px;
}

.trust-header span,
.program-panel-header span,
.program-row span,
.audience-card span,
.ops-bridge span,
.offer-label {
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-header span,
.program-panel-header span,
.program-row span,
.audience-card span,
.ops-bridge span {
  color: var(--green);
}

.trust-header strong {
  display: block;
  font-size: 1rem;
}

.trust-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.62fr) minmax(0, 1fr);
}

.audience-card,
.ops-bridge,
.program-panel {
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(29, 31, 31, 0.1);
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 230px;
  padding: 22px;
}

.audience-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.02;
  margin: 30px 0 14px;
}

.audience-card p {
  color: var(--muted);
  margin: 0;
}

.app-card {
  border-top: 5px solid var(--blue);
}

.creator-card {
  border-top: 5px solid var(--violet);
}

.ops-bridge {
  align-content: center;
  background: var(--night);
  color: var(--white);
  display: grid;
  min-height: 230px;
  padding: 22px;
}

.ops-bridge .emoji-badge,
.feature-offer .emoji-badge,
.service-card .emoji-badge {
  background: rgba(231, 255, 184, 0.12);
  border-color: rgba(231, 255, 184, 0.22);
  color: var(--white);
}

.ops-bridge span {
  color: var(--lime);
  margin-bottom: 18px;
}

.ops-bridge strong {
  font-size: 1.24rem;
  line-height: 1.18;
}

.program-panel {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.program-panel-header,
.program-row {
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.program-panel-header {
  background: #f8faf7;
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.program-panel-header strong {
  background: var(--lime);
  border-radius: 8px;
  padding: 6px 10px;
}

.program-row {
  padding: 16px 18px;
}

.program-row + .program-row {
  border-top: 1px solid var(--line);
}

.program-row strong {
  align-items: center;
  display: flex;
  flex: 1 1 260px;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  text-align: right;
}

.brand-logo-chip {
  align-items: center;
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 850;
  gap: 7px;
  min-height: 36px;
  padding: 6px 11px;
}

.brand-logo-chip.has-logo {
  border-radius: 8px;
  min-width: 66px;
}

.is-hidden {
  display: none;
}

.brand-logo-chip img {
  display: block;
  height: 20px;
  object-fit: contain;
  width: 52px;
}

.program-row img {
  background: var(--white);
  height: 20px;
  object-fit: contain;
  width: 52px;
}

.program-row:nth-child(2) span {
  color: var(--blue);
}

.program-row:nth-child(3) span {
  color: var(--violet);
}

.program-row:nth-child(4) span {
  color: var(--coral);
}

.partner-strip {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 18px clamp(18px, 4vw, 56px);
  scrollbar-width: none;
}

.partner-strip span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  flex: 0 0 auto;
  padding: 8px 13px;
  white-space: nowrap;
}

.intro-section,
.marketplace-section,
.services-section,
.marketplace-group-section,
.case-section,
.cms-section,
.cta-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro-section {
  background: var(--white);
  display: grid;
  gap: clamp(28px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.12rem;
}

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

.section-heading {
  max-width: 860px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.marketplace-layout {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  margin-top: 34px;
}

.marketplace-sidebar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 22px;
  position: sticky;
  top: 96px;
}

.marketplace-stat {
  background: var(--night);
  border-radius: 8px;
  color: var(--white);
  padding: 18px;
}

.marketplace-stat strong {
  color: var(--lime);
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 8px;
}

.marketplace-stat span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-weight: 720;
  line-height: 1.25;
}

.marketplace-sidebar h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.sidebar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-list span {
  background: #eef4f0;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 720;
  padding: 7px 10px;
}

.sidebar-list.compact span {
  background: var(--night);
  color: var(--white);
}

.sidebar-cta {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding-top: 16px;
}

.sidebar-cta a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  font-weight: 850;
  justify-content: space-between;
  min-height: 42px;
  padding: 9px 12px;
}

.sidebar-cta a:first-child {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.sidebar-cta a::after {
  content: "→";
}

.offer-grid,
.service-grid {
  display: grid;
  gap: 16px;
}

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

.offer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 230px;
  padding: 24px;
}

.offer-card.feature-offer {
  background: var(--night);
  color: var(--white);
  grid-column: span 2;
}

.offer-label {
  color: var(--blue);
  display: block;
  margin-bottom: 24px;
}

.feature-offer .offer-label {
  color: var(--lime);
}

.offer-card p {
  color: var(--muted);
}

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

.offer-card a {
  color: var(--lime);
  display: inline-flex;
  font-weight: 850;
  margin-top: 8px;
}

.inventory-preview {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(29, 31, 31, 0.08);
  margin-top: 18px;
  overflow: hidden;
}

.inventory-header {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(231, 255, 184, 0.86), rgba(213, 245, 239, 0.9)),
    var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 22px;
}

.inventory-header .eyebrow,
.inventory-header h3 {
  margin-bottom: 0;
}

.inventory-header > span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 107, 79, 0.16);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 8px 12px;
}

.inventory-table {
  display: grid;
}

.inventory-row {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(260px, 1.1fr) minmax(220px, 0.9fr) minmax(190px, 0.72fr);
  padding: 18px 22px;
}

.inventory-row + .inventory-row {
  border-top: 1px solid var(--line);
}

.inventory-partner {
  align-items: center;
  display: flex;
  gap: 12px;
}

.inventory-icon {
  align-items: center;
  background: #eef4f0;
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.inventory-partner strong,
.inventory-fit {
  display: block;
  font-size: 1rem;
}

.inventory-partner span {
  color: var(--muted);
  display: block;
  font-size: 0.92rem;
}

.inventory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inventory-tags span {
  background: #eef4f0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
  padding: 6px 10px;
}

.inventory-fit {
  color: var(--green);
}

.services-section {
  background: var(--night);
  color: var(--white);
}

.services-section .eyebrow {
  color: var(--lime);
}

.services-section .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.service-card,
.case-card,
.cms-panel {
  background: var(--white);
  border: 1px solid rgba(220, 228, 223, 0.95);
  border-radius: 8px;
  box-shadow: 0 8px 34px rgba(23, 33, 29, 0.06);
}

.service-card {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: var(--white);
  min-height: 310px;
  padding: 24px;
}

.service-number {
  color: var(--lime);
  display: block;
  font-weight: 850;
  margin-bottom: 30px;
}

.service-card p,
.case-card p,
.cms-panel li {
  color: var(--muted);
}

.service-card p {
  color: rgba(255, 255, 255, 0.66);
}

.marketplace-group-section {
  background: var(--white);
}

.advertisers-section {
  background: linear-gradient(135deg, #eaffc6 0%, #d5f5ef 56%, #f7fbff 100%);
}

.marketplace-big-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.marketplace-big-grid article {
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 24px;
}

.marketplace-big-grid h3 {
  margin-top: 16px;
}

.marketplace-big-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.marketplace-big-grid .emoji-badge {
  background: var(--white);
}

.media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.media-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 24px;
}

.media-card p {
  color: var(--muted);
}

.feature-media-card {
  background: var(--night);
  color: var(--white);
  grid-column: span 2;
}

.feature-media-card .emoji-badge {
  background: rgba(231, 255, 184, 0.12);
  border-color: rgba(231, 255, 184, 0.22);
  color: var(--white);
}

.feature-media-card .offer-label {
  color: var(--lime);
}

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

.logo-cloud {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
}

.logo-cloud > span {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 107, 79, 0.18);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 800;
  justify-content: center;
  min-height: 76px;
  padding: 16px;
  text-align: center;
}

.logo-cloud > span.has-logo {
  min-height: 90px;
}

.logo-cloud img {
  display: block;
  height: 34px;
  max-width: 120px;
  object-fit: contain;
  width: 100%;
}

.logo-label {
  font-size: 0.92rem;
  line-height: 1.1;
}

.case-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 18px;
}

.case-heading {
  max-width: 980px;
}

.case-section {
  padding-bottom: clamp(44px, 6vw, 80px);
  padding-top: clamp(44px, 6vw, 80px);
}

.case-preview-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.case-preview-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 34px rgba(23, 33, 29, 0.06);
  display: block;
  min-height: 230px;
  padding: 22px;
}

.case-preview-card:hover {
  border-color: rgba(23, 122, 91, 0.34);
}

.case-preview-card h3 {
  margin-top: 24px;
}

.case-preview-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.case-library-link {
  margin-top: 18px;
}

.case-search {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  max-width: 680px;
}

.case-search span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.case-search input {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 52px;
  padding: 12px 16px;
  width: 100%;
}

.case-search input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(23, 122, 91, 0.15);
}

.filter-button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  min-height: 42px;
  padding: 8px 16px;
}

.filter-button.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.case-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  display: grid;
  min-height: 300px;
  padding: 22px;
}

.case-icon {
  align-items: center;
  background: #eef4f0;
  border-radius: 8px;
  display: inline-flex;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.case-tag {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.case-card h3 {
  margin-top: 24px;
}

.case-meta {
  align-self: end;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
}

.case-meta span {
  background: #eef4f0;
  border-radius: 999px;
  padding: 4px 9px;
}

.empty-state {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
}

.cms-section {
  align-items: start;
  background: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.cms-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.cms-panel {
  padding: 26px;
}

.cms-panel ol {
  margin: 0;
  padding-left: 22px;
}

.cms-panel li + li {
  margin-top: 12px;
}

.cta-section {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.cta-section::after {
  background: linear-gradient(90deg, transparent, rgba(70, 241, 167, 0.28), rgba(18, 159, 209, 0.18));
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cta-mark {
  display: block;
  max-width: 180px;
  width: 100%;
  z-index: 1;
}

.cta-section > div {
  position: relative;
  z-index: 1;
}

.cta-section .eyebrow {
  color: var(--gold);
}

.cta-section h2 {
  max-width: 980px;
}

.cta-section .button.primary {
  background: var(--white);
  color: var(--ink);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-section .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.case-library-hero {
  background: var(--night);
  color: var(--white);
  overflow: hidden;
  padding: clamp(64px, 10vw, 132px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 72px);
  position: relative;
}

.case-library-hero::after {
  background:
    linear-gradient(90deg, rgba(72, 234, 170, 0.2), rgba(33, 146, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08));
  bottom: 0;
  content: "";
  height: 9px;
  left: 0;
  position: absolute;
  width: 100%;
}

.case-library-hero h1 {
  font-size: clamp(4.2rem, 13vw, 9.8rem);
  letter-spacing: 0;
  line-height: 0.86;
  margin: 12px 0 18px;
  max-width: 1040px;
}

.case-library-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 760px;
}

.case-library-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(26px, 4vw, 44px);
}

.case-library-stats span {
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  font-size: 0.95rem;
  gap: 7px;
  padding: 10px 14px;
}

.case-library-stats strong {
  color: var(--white);
}

.case-library,
.case-detail {
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.case-library-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-library-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 34px rgba(29, 31, 31, 0.06);
  display: grid;
  overflow: hidden;
}

.case-card-media {
  background: #f4f7f4;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.case-card-image {
  background: var(--white);
  border: 1px solid rgba(29, 31, 31, 0.08);
  border-radius: 8px;
  height: 190px;
  object-fit: contain;
  padding: 12px;
  width: 100%;
}

.case-brand-badge {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(29, 31, 31, 0.08);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 58px;
  padding: 10px;
}

.case-brand-mark {
  align-items: center;
  background: #eef4f0;
  border-radius: 8px;
  display: flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  width: 42px;
}

.case-brand-mark img {
  height: 100%;
  object-fit: contain;
  padding: 3px;
  width: 100%;
}

.case-brand-mark span {
  font-size: 1.35rem;
  line-height: 1;
}

.case-brand-badge strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.1;
}

.case-brand-fetch .case-brand-mark {
  background: #201f1f;
}

.case-brand-green .case-brand-mark {
  background: rgba(72, 234, 170, 0.18);
}

.case-brand-blue .case-brand-mark {
  background: rgba(33, 146, 255, 0.14);
}

.case-brand-purple .case-brand-mark {
  background: rgba(123, 44, 255, 0.13);
}

.case-brand-yellow .case-brand-mark {
  background: rgba(255, 204, 56, 0.22);
}

.case-card-copy {
  padding: 22px;
}

.case-library-card h2 {
  font-size: 1.28rem;
  line-height: 1.18;
}

.case-library-card p:not(.eyebrow),
.case-detail-hero p,
.case-detail-body p {
  color: var(--muted);
}

.case-library-card a,
.back-link,
.source-link {
  color: var(--green);
  display: inline-flex;
  font-weight: 850;
  margin-top: 8px;
}

.back-link {
  margin-bottom: 20px;
}

.case-detail-hero {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.case-detail-hero h1 {
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
}

.case-detail-hero img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: 420px;
  object-fit: contain;
  width: 100%;
}

.case-detail-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(28px, 5vw, 52px) 0;
}

.case-detail-metrics div {
  background: var(--night);
  border-radius: 8px;
  color: var(--white);
  padding: 22px;
}

.case-detail-metrics strong {
  color: var(--lime);
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.04;
  margin-bottom: 10px;
}

.case-detail-body {
  display: grid;
  gap: 28px;
  margin: 0 auto;
  max-width: 920px;
}

.case-detail-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.case-gallery-heading {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin: clamp(28px, 5vw, 52px) 0 0;
}

.case-image-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(28px, 5vw, 52px);
}

.case-gallery-heading + .case-image-gallery {
  margin-top: 18px;
}

.case-image-gallery img {
  aspect-ratio: 1;
  background: #eef4f0;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  padding: 12px;
  width: 100%;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero,
  .intro-section,
  .marketplace-layout,
  .cms-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .hero-stage {
    min-height: auto;
  }

  .hero-stage {
    min-height: 440px;
  }

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

  .audience-card,
  .ops-bridge {
    min-height: auto;
  }

  .audience-card h2 {
    margin-top: 30px;
  }

  .marketplace-sidebar {
    position: static;
  }

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

  .service-grid,
  .marketplace-big-grid,
  .media-grid,
  .case-grid,
  .case-preview-grid,
  .case-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .inventory-row {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: center;
  }

  .brand-logo {
    height: 30px;
  }

  .nav-action {
    display: none;
  }

  .hero-copy {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-proof span {
    border-left: 0;
    padding-left: 0;
    width: 100%;
  }

  .hero-stage {
    padding: 20px;
  }

  .trust-header {
    align-items: flex-start;
  }

  .trust-header img {
    height: 38px;
    width: 38px;
  }

.program-panel-header,
.program-row {
    align-items: flex-start;
  }

  .program-row strong {
    justify-content: flex-start;
    text-align: left;
  }

  .inventory-header {
    align-items: flex-start;
  }

  .service-grid,
  .marketplace-big-grid,
  .case-grid,
  .case-preview-grid,
  .media-grid,
  .logo-cloud,
  .case-library-grid,
  .case-detail-hero,
  .case-detail-metrics,
  .case-image-gallery {
    grid-template-columns: 1fr;
  }

  .feature-media-card {
    grid-column: auto;
  }

  .service-card,
  .case-card {
    min-height: auto;
  }

  .cta-mark {
    max-width: 112px;
  }
}

.simple-header .nav-links {
  gap: 18px;
}

.simple-page {
  background: var(--paper);
}

.simple-hero {
  align-content: center;
  background: var(--night);
  color: var(--white);
  display: grid;
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 8vw, 92px) clamp(18px, 6vw, 86px);
}

.simple-hero-mark {
  height: clamp(82px, 10vw, 132px);
  margin-bottom: 28px;
  width: clamp(82px, 10vw, 132px);
}

.simple-hero .eyebrow,
.simple-contact-section .eyebrow {
  color: var(--lime);
}

.simple-hero h1 {
  max-width: 1120px;
}

.simple-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  max-width: 760px;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.simple-hero .button.primary {
  background: var(--lime);
  color: var(--ink);
}

.simple-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.logo-section,
.simple-case-section,
.about-section,
.how-section {
  padding: clamp(50px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.about-section {
  background: var(--white);
}

.about-grid {
  align-items: start;
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.about-copy {
  color: var(--muted);
  font-size: 1.12rem;
}

.about-copy p:first-child {
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 640;
}

.pillar-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 48px);
}

.pillar-card {
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 240px;
  padding: 24px;
}

.pillar-card h3 {
  margin-top: 26px;
}

.pillar-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.pillar-label {
  color: var(--green);
  display: block;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-feature {
  background: var(--night);
  border-color: var(--night);
  color: var(--white);
}

.pillar-feature .pillar-label {
  color: var(--lime);
}

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

.how-section {
  background: var(--night);
  color: var(--white);
}

.how-section .eyebrow {
  color: var(--lime);
}

.how-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 48px);
}

.how-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  min-height: 250px;
  padding: 24px;
}

.how-number {
  color: var(--lime);
  display: block;
  font-weight: 850;
  margin-bottom: 30px;
}

.how-card h3 {
  margin-top: 0;
}

.how-card p {
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 0;
}

.affiliates-logo-section {
  background: linear-gradient(180deg, var(--white) 0%, #f7faf8 100%);
}

.brand-logo-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(72, 234, 170, 0.18), transparent 28%),
    linear-gradient(135deg, #f8ffea 0%, #e7f7f2 54%, #f7fbff 100%);
}

.tech-logo-section {
  background:
    radial-gradient(circle at 88% 14%, rgba(24, 146, 223, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
}

.simple-section-heading {
  max-width: 980px;
}

.simple-section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  max-width: 920px;
}

.proof-logo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.proof-logo-grid .logo-tile {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 107, 79, 0.13);
  border-radius: 8px;
  color: inherit;
  display: grid;
  min-height: 184px;
  padding: 16px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.affiliates-logo-section .proof-logo-grid .logo-tile,
.tech-logo-section .proof-logo-grid .logo-tile {
  background: var(--white);
  border-color: var(--line);
}

.proof-logo-grid .logo-tile:hover {
  border-color: rgba(30, 107, 79, 0.28);
  box-shadow: 0 14px 36px rgba(29, 31, 31, 0.08);
  transform: translateY(-2px);
}

.proof-logo-grid img,
.proof-icon,
.logo-symbol {
  align-items: center;
  display: inline-flex;
  height: 64px;
  margin-bottom: 20px;
  max-width: 178px;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.proof-icon,
.logo-symbol {
  background: #f2f7f4;
  border: 1px solid rgba(30, 107, 79, 0.14);
  border-radius: 8px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  width: 64px;
}

.logo-wordmark {
  background: #fff;
  color: #1267a8;
  font-size: 1.02rem;
  min-width: 150px;
  padding: 0 16px;
  width: auto;
}

.adjust-wordmark {
  color: #111;
  font-size: 1.18rem;
}

.logo-tile img {
  background: #f8faf7;
  border: 1px solid rgba(30, 107, 79, 0.1);
  border-radius: 8px;
  padding: 13px;
}

.logo-tile img[src$="fetch-icon.png"],
.logo-tile img[src$="propel.png"],
.logo-tile img[src$="the-freebie-guy.png"],
.logo-tile img[src$="vera-money.png"],
.logo-tile img[src$="renew-home.png"],
.logo-tile img[src$="root.svg"] {
  max-width: 74px;
  object-position: center;
  padding: 8px;
}

.proof-logo-grid strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.15;
  margin-top: auto;
}

.proof-logo-grid span:not(.proof-icon):not(.logo-symbol) {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.simple-media-strip {
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px clamp(18px, 5vw, 72px);
}

.simple-media-strip span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 760;
  padding: 8px 13px;
}

.simple-case-section {
  background:
    linear-gradient(135deg, rgba(24, 31, 29, 0.94), rgba(20, 74, 59, 0.94)),
    var(--ink);
  color: var(--white);
}

.case-feature-head {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 1180px;
}

.case-feature-head .eyebrow {
  color: var(--lime);
}

.case-feature-head h2 {
  color: var(--white);
  max-width: 860px;
}

.case-feature-head .button.primary {
  background: var(--lime);
  color: var(--ink);
}

.simple-case-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 1180px;
}

.simple-case-grid a {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 20px;
}

.simple-case-grid img {
  align-items: center;
  background: #eef4f0;
  border-radius: 8px;
  height: 62px;
  margin-bottom: 22px;
  max-width: 138px;
  object-fit: contain;
  padding: 8px;
  width: 100%;
}

.simple-case-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: auto;
}

.simple-case-grid strong {
  font-size: 1.35rem;
  line-height: 1.05;
}

.simple-contact-section {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 20px;
  justify-items: start;
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.simple-contact-section img {
  height: 46px;
  object-fit: contain;
  width: auto;
}

.simple-contact-section h2 {
  max-width: 820px;
}

.simple-contact-section .button.primary {
  background: var(--white);
  color: var(--ink);
}

.partner-hero {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(150px, 230px) minmax(0, 1fr);
}

.partner-hero h1 {
  font-size: clamp(2.35rem, 4.5vw, 4.2rem);
}

.partner-hero > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 720px;
}

.partner-logo-card {
  align-items: center;
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 34px rgba(23, 33, 29, 0.06);
  display: flex;
  justify-content: center;
  padding: 26px;
}

.partner-logo-card img {
  max-height: 150px;
  object-fit: contain;
  width: 100%;
}

.partner-logo-card .logo-symbol {
  height: auto;
  margin-bottom: 0;
  min-height: 64px;
}

.partner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.partner-chips span {
  background: #eef4f0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 760;
  padding: 8px 14px;
}

.partner-chips strong {
  color: var(--ink);
}

.partner-case-section {
  margin-top: clamp(28px, 5vw, 52px);
}

.partner-case-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.partner-cta {
  background: var(--night);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 6px;
  justify-items: start;
  margin-top: clamp(28px, 5vw, 52px);
  padding: clamp(28px, 4vw, 52px);
}

.partner-cta .eyebrow {
  color: var(--lime);
}

.partner-cta h2 {
  max-width: 720px;
}

.partner-cta .button.primary {
  background: var(--lime);
  color: var(--ink);
  margin-top: 12px;
}

.partner-group + .partner-group {
  margin-top: clamp(38px, 6vw, 64px);
}

.partner-group h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

@media (max-width: 700px) {
  .partner-hero {
    grid-template-columns: 1fr;
  }

  .partner-logo-card {
    aspect-ratio: auto;
    max-width: 230px;
  }
}

.contact-modal {
  align-items: center;
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 100;
}

.contact-modal.open {
  display: flex;
}

.contact-modal-backdrop {
  background: rgba(29, 31, 31, 0.62);
  inset: 0;
  position: absolute;
}

.contact-dialog {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.22);
  max-height: min(90vh, 820px);
  max-width: 760px;
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  position: relative;
  width: 100%;
  z-index: 1;
}

.contact-dialog h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  margin-bottom: 22px;
}

.contact-close {
  align-items: center;
  background: #eef4f0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.45rem;
  height: 40px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(23, 122, 91, 0.14);
}

.contact-full,
.contact-submit,
.contact-status {
  grid-column: 1 / -1;
}

.contact-submit {
  justify-self: start;
}

.contact-status {
  color: var(--muted);
  margin: 0;
  min-height: 1.4em;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1040px) {
  .proof-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .case-feature-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .proof-logo-grid,
  .simple-case-grid,
  .pillar-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .how-card {
    min-height: auto;
  }

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

.case-library-card,
.case-preview-card,
.simple-case-grid a {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.case-library-card:hover,
.case-preview-card:hover,
.simple-case-grid a:hover {
  box-shadow: 0 18px 48px rgba(29, 31, 31, 0.13);
  transform: translateY(-2px);
}

/* ===================== 2026 landing redesign ===================== */

/* --- minimal header --- */
.header-actions {
  align-items: center;
  display: flex;
  gap: 18px;
}

.header-actions .header-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
  transition: color 140ms ease;
}

.header-actions .header-link:hover {
  color: var(--ink);
}

/* --- staggered hero reveal --- */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.simple-hero > * {
  animation: rise-in 640ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.simple-hero > *:nth-child(2) { animation-delay: 90ms; }
.simple-hero > *:nth-child(3) { animation-delay: 180ms; }
.simple-hero > *:nth-child(4) { animation-delay: 270ms; }
.simple-hero > *:nth-child(5) { animation-delay: 360ms; }

.simple-hero {
  background:
    radial-gradient(720px 420px at 82% 18%, rgba(70, 241, 167, 0.14), transparent 64%),
    radial-gradient(560px 380px at 8% 88%, rgba(18, 159, 209, 0.1), transparent 60%),
    var(--night);
  position: relative;
}

/* --- logo marquees --- */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  overflow: hidden;
}

.marquee + .marquee {
  margin-top: 14px;
}

.marquee-track {
  display: flex;
  gap: 14px;
  padding: 4px 0;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--marquee-speed, 46s) linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  to { transform: translateX(calc(-50% - 7px)); }
}

.marquees {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

/* --- partner chip cards (marquee + strips) --- */
.partner-chip-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 13px;
  min-height: 74px;
  padding: 11px 20px 11px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.partner-chip-card:hover {
  border-color: rgba(23, 122, 91, 0.4);
  box-shadow: 0 12px 30px rgba(29, 31, 31, 0.12);
  transform: translateY(-2px);
}

.chip-logo {
  align-items: center;
  background: #f2f7f4;
  border: 1px solid rgba(30, 107, 79, 0.1);
  border-radius: 10px;
  display: inline-flex;
  flex: 0 0 52px;
  height: 52px;
  justify-content: center;
  overflow: hidden;
  width: 52px;
}

.chip-logo img {
  height: 100%;
  object-fit: contain;
  padding: 7px;
  width: 100%;
}

.chip-logo span {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0 4px;
  text-align: center;
}

.partner-chip-card > div {
  display: grid;
  gap: 2px;
}

.partner-chip-card strong {
  font-size: 1.02rem;
  line-height: 1.1;
  white-space: nowrap;
}

.partner-chip-card small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  white-space: nowrap;
}

.section-head-row {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.section-head-row .simple-section-heading {
  flex: 1 1 480px;
}

.section-more-link {
  color: var(--green);
  font-weight: 850;
  white-space: nowrap;
}

.section-more-link:hover {
  text-decoration: underline;
}

/* --- integrations strip --- */
.integration-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* --- case study carousel --- */
.case-carousel {
  margin-top: 34px;
  position: relative;
}

.case-track {
  display: flex;
  gap: 18px;
  -ms-overflow-style: none;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.case-track::-webkit-scrollbar {
  display: none;
}

.case-slide {
  background:
    radial-gradient(340px 220px at 88% -10%, rgba(70, 241, 167, 0.16), transparent 70%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  color: var(--white);
  display: grid;
  flex: 0 0 min(378px, 84vw);
  gap: 10px;
  min-height: 300px;
  padding: 26px;
  scroll-snap-align: start;
  transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.case-slide:hover {
  border-color: rgba(231, 255, 184, 0.42);
  transform: translateY(-3px);
}

.case-slide-brand {
  align-items: center;
  display: flex;
  gap: 10px;
}

.case-slide-brand img {
  background: var(--white);
  border-radius: 9px;
  height: 40px;
  object-fit: contain;
  padding: 5px;
  width: 40px;
}

.case-slide-brand strong {
  font-size: 0.98rem;
}

.case-slide-brand small {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-size: 0.8rem;
  font-weight: 720;
}

.case-slide-stat {
  color: var(--lime);
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-top: 8px;
}

.case-slide-stat small {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  font-size: 0.86rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  margin-top: 7px;
  text-transform: uppercase;
}

.case-slide h3 {
  font-size: 1.14rem;
  line-height: 1.25;
  margin: 6px 0 0;
}

.case-slide-link {
  align-self: end;
  color: var(--mint);
  font-weight: 850;
  margin-top: 10px;
}

.case-carousel-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}

.case-carousel-nav button {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.15rem;
  height: 46px;
  justify-content: center;
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
  width: 46px;
}

.case-carousel-nav button:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  transform: translateY(-1px);
}

/* --- fat footer --- */
.site-footer {
  background:
    radial-gradient(680px 320px at 90% 0%, rgba(70, 241, 167, 0.09), transparent 62%),
    var(--ink);
  color: var(--white);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px) 30px;
  position: relative;
}

.site-footer::before {
  background: linear-gradient(90deg, transparent, rgba(70, 241, 167, 0.5), rgba(18, 159, 209, 0.3), transparent);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.footer-grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(150px, 1fr));
}

.footer-brand img {
  height: 40px;
  object-fit: contain;
  width: auto;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.64);
  margin: 16px 0 20px;
  max-width: 340px;
}

.footer-brand .button.primary {
  background: var(--lime);
  color: var(--ink);
}

.footer-col h3 {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 140ms ease;
}

.footer-col a:hover {
  color: var(--mint);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.88rem;
  gap: 12px;
  justify-content: space-between;
  margin-top: clamp(36px, 5vw, 60px);
  padding-top: 22px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: var(--mint);
}

@media (max-width: 1040px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-actions .header-link {
    display: none;
  }

  .case-slide {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .simple-hero > * {
    animation: none;
  }

  .case-track {
    scroll-behavior: auto;
  }
}

/* --- case study editorial layer --- */
.case-byline {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 720;
  gap: 6px 0;
  margin: -8px 0 14px;
}

.case-byline span + span::before {
  content: "·";
  margin: 0 9px;
  opacity: 0.6;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.case-tags span {
  background: #eef4f0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  padding: 5px 12px;
}

.partner-mix {
  margin-top: clamp(28px, 5vw, 52px);
}

.partner-mix > h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.partner-mix > p {
  color: var(--muted);
  max-width: 860px;
}

.partner-mix-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.partner-mix-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}

.partner-mix-card .emoji-badge {
  background: #f2f7f4;
  border-color: rgba(30, 107, 79, 0.14);
}

.partner-mix-card h3 {
  margin-bottom: 8px;
}

.partner-mix-card p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .partner-mix-grid {
    grid-template-columns: 1fr;
  }
}

/* --- phone CTA + newsletter + how-it-works steps --- */
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.phone-cta {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 10px 16px;
}

.phone-cta:hover {
  transform: translateY(-1px) rotate(-3deg);
}

.newsletter-section {
  background:
    radial-gradient(520px 300px at 12% 0%, rgba(70, 241, 167, 0.35), transparent 62%),
    linear-gradient(120deg, #eaffc6 0%, #d5f5ef 60%, #eef9ff 100%);
  padding: clamp(44px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.newsletter-inner {
  align-items: center;
  display: grid;
  gap: clamp(22px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.newsletter-inner h2 {
  margin-bottom: 10px;
}

.newsletter-inner > div > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 480px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  background: var(--white);
  border: 1px solid rgba(29, 31, 31, 0.16);
  border-radius: 8px;
  flex: 1 1 240px;
  font: inherit;
  min-height: 48px;
  padding: 12px 16px;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--green);
  outline: 3px solid rgba(23, 122, 91, 0.15);
}

.newsletter-status {
  color: var(--ink);
  flex-basis: 100%;
  font-weight: 720;
  margin: 0;
  min-height: 1.4em;
}

.how-step-top {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}

.how-emoji {
  align-items: center;
  background: rgba(231, 255, 184, 0.12);
  border: 1px solid rgba(231, 255, 184, 0.24);
  border-radius: 12px;
  display: inline-flex;
  font-size: 1.7rem;
  height: 54px;
  justify-content: center;
  line-height: 1;
  width: 54px;
}

.how-step-label {
  background: rgba(231, 255, 184, 0.14);
  border-radius: 999px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  padding: 6px 12px;
  text-transform: uppercase;
}

.how-card {
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.how-card::after {
  color: rgba(231, 255, 184, 0.5);
  content: "→";
  font-size: 1.5rem;
  position: absolute;
  right: -26px;
  top: 44px;
}

.how-card:last-child::after {
  content: none;
}

@media (max-width: 1040px) {
  .how-card::after {
    content: none;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
  }
}

.footer-link-button {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  padding: 0;
  transition: color 140ms ease;
}

.footer-link-button:hover {
  color: var(--mint);
}

/* --- emoji-forward What we do --- */
.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.value-chips span {
  background: #f2f7f4;
  border: 1px solid rgba(30, 107, 79, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 760;
  padding: 9px 15px;
}

.pillar-emoji {
  display: block;
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 16px;
}

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

.pillar-card h3 {
  margin-top: 14px;
}

.pillar-card .pillar-label {
  margin-top: 2px;
}

/* --- advertiser cards with market flags --- */
.advertiser-card {
  border-radius: 16px;
  gap: 16px;
  min-height: 96px;
  min-width: 264px;
  padding: 14px 26px 14px 14px;
}

.advertiser-card .chip-logo {
  border-radius: 12px;
  flex-basis: 64px;
  height: 64px;
  width: 64px;
}

.advertiser-card strong {
  font-size: 1.12rem;
}

.chip-flags {
  display: block;
  font-size: 1.02rem;
  letter-spacing: 2px;
  margin-top: 3px;
}

/* --- integration chips with domain links --- */
.integration-chip {
  cursor: default;
}

.integration-chip:hover {
  transform: none;
}

.chip-domain {
  color: var(--green);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 3px;
}

.chip-domain:hover {
  text-decoration: underline;
}

/* --- combined Get in touch + newsletter block --- */
.cta-newsletter-head {
  align-items: center;
  display: grid;
  gap: clamp(22px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.1fr) auto;
}

.cta-newsletter-head h2 {
  margin-bottom: 10px;
}

.cta-newsletter-head > div > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 480px;
}

.cta-big {
  font-size: 1.08rem;
  padding: 16px 26px;
}

.cta-divider {
  border: 0;
  border-top: 1px solid rgba(29, 31, 31, 0.14);
  margin: clamp(26px, 4vw, 44px) 0;
}

.contact-checkbox {
  align-items: center;
  display: flex !important;
  flex-direction: row;
  gap: 10px;
}

.contact-checkbox input {
  accent-color: var(--green);
  height: 19px;
  width: 19px;
}

.contact-checkbox span {
  color: var(--ink) !important;
  font-size: 0.95rem !important;
  font-weight: 640 !important;
}

@media (max-width: 700px) {
  .cta-newsletter-head {
    grid-template-columns: 1fr;
  }
}

/* --- integration cards: logo + name emphasis --- */
.integration-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  flex: 1 1 170px;
  gap: 3px;
  justify-items: start;
  max-width: 220px;
  padding: 22px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.integration-card:hover {
  border-color: rgba(23, 122, 91, 0.35);
  box-shadow: 0 14px 36px rgba(29, 31, 31, 0.1);
  transform: translateY(-2px);
}

.integration-card img {
  border-radius: 14px;
  height: 64px;
  margin-bottom: 14px;
  object-fit: contain;
  width: 64px;
}

.integration-card strong {
  font-size: 1.18rem;
  line-height: 1.1;
}

.integration-card small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 720;
}

.integration-card .chip-domain {
  margin-top: 8px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 760px;
}

/* --- dark Get in touch panel, distinct from newsletter --- */
.cta-newsletter-head {
  background:
    radial-gradient(420px 260px at 88% 0%, rgba(70, 241, 167, 0.16), transparent 62%),
    var(--night);
  border-radius: 18px;
  color: var(--white);
  margin-bottom: clamp(30px, 5vw, 52px);
  padding: clamp(26px, 4vw, 46px);
}

.cta-newsletter-head .eyebrow {
  color: var(--lime);
}

.cta-newsletter-head > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.cta-newsletter-head .cta-big {
  background: var(--lime);
  color: var(--ink);
}

.cta-divider {
  display: none;
}

/* --- case study detail: more air, section separation --- */
.case-detail-body {
  gap: 34px;
}

.case-detail-body section + section {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.case-detail-hero {
  padding-bottom: clamp(10px, 2vw, 24px);
}

.partner-mix {
  border-top: 1px solid var(--line);
  padding-top: clamp(26px, 4vw, 44px);
}

.case-image-gallery {
  border-top: 1px solid var(--line);
  padding-top: clamp(26px, 4vw, 44px);
}
