:root {
  --ink: #10211f;
  --muted: #5e6b67;
  --line: #dce5df;
  --paper: #fbfaf6;
  --soft: #eef5f1;
  --deep: #0e2f2a;
  --deep-2: #173f38;
  --gold: #f0b44c;
  --coral: #df755f;
  --blue: #5876b7;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 33, 31, 0.12);
  --radius: 8px;
  font-family: "Inter", "Inter Variable", "Avenir Next", "Avenir", "SF Pro Text", -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  line-height: 1.03;
  max-width: 13.5ch;
  text-wrap: balance;
}

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

h3 {
  font-size: 1.35rem;
  line-height: 1.18;
}

button {
  cursor: pointer;
}

.skip-link {
  background: var(--gold);
  color: var(--ink);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: absolute;
  top: -4rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(220, 229, 223, 0.85);
  backdrop-filter: blur(18px);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 0 3vw;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 0.65rem;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--deep);
  border-radius: 8px;
  color: var(--paper);
  display: inline-flex;
  font-size: 0.82rem;
  height: 38px;
  justify-content: center;
  position: relative;
  width: 38px;
}

.brand-mark::after {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 8px;
  position: absolute;
  right: -2px;
  top: -2px;
  width: 8px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.site-nav a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.65rem 0.75rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--deep);
  color: var(--paper);
  padding: 0.8rem 1rem;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0.5rem;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 100%;
}

section {
  padding: 6rem 0;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 1.5rem;
  width: min(100%, 1240px);
}

.hero,
.home-hero,
.page-hero,
.audit-hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(240, 180, 76, 0.22), transparent 28rem),
    radial-gradient(circle at 18% 10%, rgba(88, 118, 183, 0.14), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 72%),
    var(--paper);
  min-height: calc(100vh - 76px);
  padding: clamp(4rem, 6vw, 6rem) 0;
}

.hero,
.page-hero,
.audit-hero {
  min-height: 640px;
}

.page-home .hero {
  background:
    radial-gradient(circle at 50% 18%, rgba(87, 118, 183, 0.16), transparent 22rem),
    radial-gradient(circle at 50% 0%, rgba(240, 180, 76, 0.14), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f8f3ea 72%),
    var(--paper);
}

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

.page-home .home-stage {
  align-items: center;
  display: grid;
  gap: 2rem;
  justify-items: center;
  text-align: center;
}

.page-home .home-intro {
  max-width: 760px;
}

.page-home .home-intro .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.page-home .home-intro .cta-row {
  justify-content: center;
}

.page-home .home-strip {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.page-home .home-strip span {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  padding: 0.65rem 0.95rem;
}

.page-home .home-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-home .home-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem;
}

.page-home .home-card:nth-child(2) {
  border-top-color: var(--coral);
}

.page-home .home-card:nth-child(3) {
  border-top-color: var(--blue);
}

.page-home .home-funnel .funnel-card {
  align-self: start;
}

.page-home .home-services .card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-services .hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(87, 118, 183, 0.14), transparent 24rem),
    radial-gradient(circle at 20% 10%, rgba(223, 117, 95, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f8f3ea 72%),
    var(--paper);
}

.page-services .hero-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.page-services .hero-copy-block::before {
  height: 8px;
  width: 220px;
}

.page-services .product-panel {
  background: linear-gradient(180deg, #143a34, #0e2f2a);
  border: 0;
  box-shadow: 0 28px 80px rgba(14, 47, 42, 0.18);
}

.page-services .panel-top,
.page-services .product-panel .index-card,
.page-services .product-panel .source-grid span {
  border-color: rgba(255, 255, 255, 0.12);
}

.page-services .panel-top strong,
.page-services .product-panel strong,
.page-services .product-panel p,
.page-services .product-panel span {
  color: var(--paper);
}

.page-services .product-panel .index-card,
.page-services .product-panel .source-grid span {
  background: rgba(255, 255, 255, 0.08);
}

.page-services .product-panel .hero-copy {
  color: rgba(251, 250, 246, 0.82);
}

.page-services .tint {
  background: linear-gradient(180deg, #fffdf8 0%, #f4ede2 100%);
}

.page-services .card-grid {
  gap: 1.25rem;
}

.page-services .card {
  border-top: 4px solid var(--gold);
  box-shadow: 0 18px 44px rgba(16, 33, 31, 0.08);
  padding: 1.55rem;
}

.page-services .card:nth-child(2) {
  border-top-color: var(--coral);
}

.page-services .card:nth-child(3) {
  border-top-color: var(--blue);
}

.page-services .card ul {
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
}

.page-services .dark {
  background: linear-gradient(180deg, #f6f1e6 0%, #efe7d9 100%);
}

.page-services .dark h2,
.page-services .dark .eyebrow,
.page-services .dark h3,
.page-services .dark p,
.page-services .dark span {
  color: var(--ink);
}

.page-services .final-cta {
  background: linear-gradient(135deg, #143a34, #245048);
}

.page-services .service-stack {
  display: grid;
  gap: 1rem;
}

.page-services .service-row {
  align-items: start;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.8fr) auto;
  padding: 1.25rem 1.35rem;
}

.page-services .service-row:nth-child(2) {
  border-left-color: var(--coral);
}

.page-services .service-row:nth-child(3) {
  border-left-color: var(--blue);
}

.page-services .service-row ul {
  color: var(--muted);
  margin: 0;
  padding-left: 1.15rem;
}

.page-services .service-row a {
  align-self: center;
  white-space: nowrap;
}

.page-services .service-row {
  align-items: center;
}

.page-services .hero-copy-block {
  max-width: 44rem;
}

.page-services .service-row ul {
  display: grid;
  gap: 0.4rem;
}

@media (max-width: 1100px) {
  .page-services .service-row,
  .page-resources .resource-layout,
  .page-resources .resource-note,
  .page-industries .industry-playbook,
  .proof-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-resources .resource-grid,
  .page-industries .industry-grid,
  .page-home .home-grid,
  .page-home .home-services .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-industries .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.page-industries .product-panel,
.page-industries .ai-panel {
  background: linear-gradient(180deg, #fbf4e7, #ffffff);
}

.page-industries .industry-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-industries .industry-spotlight {
  background: linear-gradient(180deg, #fffdf7, #f8f1e3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
}

.page-industries .industry-map {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8ef 100%);
}

.page-industries .industry-playbook {
  align-items: start;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.page-industries .playbook-list {
  display: grid;
  gap: 0.75rem;
}

.page-industries .playbook-list div {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.95rem 1rem;
}

.page-industries .industry-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}

.page-industries .industry-card h3 {
  margin-bottom: 0.5rem;
}

.page-industries .industry-card a {
  color: var(--deep);
  display: inline-block;
  font-weight: 850;
  margin-top: 0.85rem;
}

.page-industries .tone-1 {
  border-top: 4px solid var(--gold);
}

.page-industries .tone-2 {
  border-top: 4px solid var(--coral);
}

.page-industries .tone-3 {
  border-top: 4px solid var(--blue);
}

.page-industries .tone-0 {
  border-top: 4px solid #55b78e;
}

.page-resources .resource-layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.page-resources .resource-spotlight,
.page-resources .resource-card,
.page-resources .resource-note,
.page-resources .resource-lead {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-resources .resource-lead {
  padding: 1.4rem;
}

.page-resources .resource-spotlight {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
}

.page-resources .resource-spotlight article {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.page-resources .resource-archive {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.page-resources .resource-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-resources .resource-card {
  padding: 1.2rem;
}

.page-resources .resource-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1rem;
}

.page-resources .resource-note {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  padding: 1.4rem;
}

.page-resources .tone-1 {
  border-top: 4px solid var(--gold);
}

.page-resources .tone-2 {
  border-top: 4px solid var(--coral);
}

.page-resources .tone-3 {
  border-top: 4px solid var(--blue);
}

.page-resources .tone-0 {
  border-top: 4px solid #55b78e;
}

.resource-hero,
.proof-hero,
.about-hero,
.contact-hero {
  min-height: calc(100vh - 76px);
  padding: 5rem 0;
}

.resource-hero {
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.proof-hero {
  background: linear-gradient(180deg, #f6f7f2 0%, #ffffff 100%);
}

.about-hero {
  background: linear-gradient(180deg, #f7f5ef 0%, #ffffff 100%);
}

.contact-hero {
  background: linear-gradient(180deg, #f4f8f6 0%, #ffffff 100%);
}

.proof-layout,
.about-layout,
.contact-layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.proof-stats,
.about-principles {
  display: grid;
  gap: 0.85rem;
}

.proof-stats div,
.about-principles div {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.proof-stats strong,
.about-principles strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.proof-stats span,
.about-principles span {
  color: var(--muted);
}

.page-resources .hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(87, 118, 183, 0.16), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f3f7fb 72%),
    var(--paper);
}

.page-case-studies .hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(14, 47, 42, 0.11), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8f5 72%),
    var(--paper);
}

.page-pricing .hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(240, 180, 76, 0.2), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #fbf4e9 72%),
    var(--paper);
}

.page-about .hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(223, 117, 95, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f7f5ef 72%),
    var(--paper);
}

.page-contact .hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(88, 118, 183, 0.16), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f4f8f6 72%),
    var(--paper);
}

.page-industries .hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 180, 76, 0.16), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f6f7f2 72%),
    var(--paper);
}

.page-audit .hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(240, 180, 76, 0.16), transparent 22rem),
    radial-gradient(circle at 18% 10%, rgba(87, 118, 183, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbf7 72%),
    var(--paper);
}

.hero-grid,
.audit-grid,
.split {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 4vw, 4.5rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.hero-grid > *,
.audit-grid > *,
.split > * {
  min-width: 0;
}

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

.eyebrow {
  color: var(--deep-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-copy {
  color: #394944;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  margin-top: 1.4rem;
  max-width: 46ch;
  width: 100%;
}

.hero-copy-block {
  position: relative;
  max-width: 50rem;
}

.hero-copy-block::before {
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--blue));
  border-radius: 999px;
  content: "";
  display: block;
  height: 6px;
  margin-bottom: 2rem;
  width: 172px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
}

.button.primary {
  background: var(--deep);
  color: var(--paper);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--ink);
}

.product-panel,
.ai-panel,
.funnel-card,
.card,
.form-shell,
.cal-card,
.case-card,
.price-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 229, 223, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 247, 0.92));
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  max-width: 540px;
  justify-self: end;
}

.panel-top {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: -1rem -1rem 1rem;
  padding: 1rem;
}

.panel-top strong {
  color: var(--deep);
}

.dot {
  background: var(--line);
  border-radius: 999px;
  display: inline-block;
  height: 10px;
  margin-right: 0.35rem;
  width: 10px;
}

.dot:nth-child(1) {
  background: var(--coral);
}

.dot:nth-child(2) {
  background: var(--gold);
}

.dot:nth-child(3) {
  background: #55b78e;
}

.index-card,
.query-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
}

.index-card span {
  color: var(--muted);
  display: block;
  font-weight: 800;
}

.index-card strong {
  display: block;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1;
  margin: 0.5rem 0 1rem;
}

.bar-track {
  background: #e8eee9;
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.bar-track i {
  background: linear-gradient(90deg, var(--deep), var(--gold));
  border-radius: inherit;
  display: block;
  height: 100%;
}

.query-card {
  display: grid;
  gap: 0.7rem;
}

.query-card p {
  color: var(--ink);
  font-weight: 900;
}

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

.query-card span {
  color: var(--muted);
}

.query-card b {
  background: var(--soft);
  border-radius: 999px;
  color: var(--deep);
  font-size: 0.8rem;
  padding: 0.35rem 0.6rem;
}

.source-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.source-grid span {
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  padding: 0.75rem;
}

.logos {
  background: var(--deep);
  padding: 1.25rem 0;
}

.logos .section-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.logos p {
  color: rgba(251, 250, 246, 0.72);
  font-size: 0.9rem;
  font-weight: 850;
}

.logos div div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.logos span {
  background: rgba(251, 250, 246, 0.1);
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 0.45rem 0.7rem;
}

.ai-panel {
  padding: 1.25rem;
}

.panel-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.panel-header span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.signal-row span {
  color: var(--muted);
}

.signal-row b {
  background: var(--soft);
  border-radius: 999px;
  color: var(--deep);
  font-size: 0.82rem;
  padding: 0.35rem 0.6rem;
}

.mini-chart {
  align-items: end;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(5, 1fr);
  height: 160px;
  margin-top: 1.5rem;
}

.mini-chart span {
  background: linear-gradient(180deg, var(--gold), var(--coral));
  border-radius: 8px 8px 0 0;
}

.mini-chart span:nth-child(1) { height: 35%; }
.mini-chart span:nth-child(2) { height: 54%; }
.mini-chart span:nth-child(3) { height: 72%; }
.mini-chart span:nth-child(4) { height: 48%; }
.mini-chart span:nth-child(5) { height: 88%; }

.funnel-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.funnel-card > div {
  border-radius: 8px;
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.funnel-card > div:first-child {
  background: #f6f1e6;
}

.funnel-card > div:last-child {
  background: #eef5f1;
}

.funnel-card span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  padding: 0.75rem;
  text-align: center;
}

.funnel-card > div:last-child span:last-child {
  background: var(--deep);
  color: var(--paper);
}

.engine-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, 1fr);
}

.tint {
  background: var(--soft);
}

.dark {
  background: var(--deep);
}

.dark h2,
.dark .eyebrow {
  color: var(--paper);
}

.dark p,
.dark span {
  color: rgba(251, 250, 246, 0.72);
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 780px;
}

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

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

.card {
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 260px;
  padding: 1.35rem;
}

.card.compact {
  min-height: 180px;
}

.card a,
.resource-card button {
  color: var(--deep);
  font-weight: 900;
  margin-top: auto;
}

.card-kicker {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 150px;
  padding: 1rem;
}

.step span {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 34px;
}

.step p {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.3;
}

.metric-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  min-height: 0;
}

.metric {
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 8px;
  padding: 1.25rem;
}

.metric strong {
  color: var(--gold);
  display: block;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.quote-band {
  border-left: 6px solid var(--gold);
}

blockquote {
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  font-weight: 850;
  line-height: 1.12;
  margin: 0 0 1rem;
  max-width: 900px;
}

.final-cta {
  background: linear-gradient(135deg, var(--deep), #204a42);
  color: var(--paper);
}

.final-cta h2,
.final-cta p {
  color: var(--paper);
  max-width: 780px;
}

.final-cta .button.primary {
  background: var(--gold);
  color: var(--ink);
}

.final-cta .button.secondary {
  background: transparent;
  border-color: rgba(251, 250, 246, 0.4);
  color: var(--paper);
}

.audit-list {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
  max-width: 680px;
}

.audit-list span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  padding: 0.85rem;
}

.form-shell {
  padding: 1.25rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

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

label,
legend {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: block;
  margin-top: 0.4rem;
  min-height: 46px;
  padding: 0.75rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 1rem;
}

fieldset label {
  align-items: center;
  display: flex;
  gap: 0.6rem;
  font-weight: 700;
}

fieldset input {
  display: inline-block;
  height: 18px;
  margin: 0;
  min-height: auto;
  width: 18px;
}

.hp-field {
  display: none;
}

.form-status {
  color: var(--deep);
  font-weight: 850;
}

.check-list {
  display: grid;
  gap: 0.8rem;
}

.check-list div {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  font-weight: 850;
  gap: 0.75rem;
  padding: 1rem;
}

.check-list span {
  background: var(--gold);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 12px;
  width: 12px;
}

.faq {
  display: grid;
  gap: 1rem;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-top: 0.7rem;
}

.resource-card ul,
.price-card ul {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.resource-card button {
  color: var(--deep);
  cursor: pointer;
  font-weight: 900;
}

.resource-card button {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}

.case-list {
  display: grid;
  gap: 1rem;
}

.case-card {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.7fr 1fr 1fr 1fr;
  padding: 1.25rem;
}

.case-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.case-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

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

.price-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.price-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.price-card strong {
  color: var(--deep);
}

.cal-card {
  padding: 1.25rem;
}

.cal-card p {
  margin: 1rem 0;
}

.narrow {
  max-width: 820px;
}

.site-footer {
  align-items: start;
  background: #091f1b;
  color: var(--paper);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 3rem 3vw;
}

.site-footer p,
.site-footer a {
  color: rgba(251, 250, 246, 0.72);
}

.footer-brand {
  color: var(--paper);
  margin-bottom: 0.8rem;
}

.footer-columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
}

.footer-columns div {
  display: grid;
  gap: 0.65rem;
}

.footer-columns strong {
  color: var(--paper);
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 1rem 3vw 1.4rem;
    position: absolute;
    right: 0;
    top: 76px;
    z-index: 30;
  }

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

  .site-nav a {
    width: 100%;
  }

  .hero-grid,
  .audit-grid,
  .split,
  .case-card {
    grid-template-columns: 1fr;
  }

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

  .logos .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .logos div div {
    justify-content: flex-start;
  }

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

  .hero-copy-block {
    max-width: 100%;
  }

  .product-panel {
    justify-self: stretch;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
    max-width: 11ch;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  section,
  .home-hero,
  .page-hero,
  .audit-hero {
    padding: 4rem 0;
  }

  .page-hero,
  .audit-hero {
    min-height: auto;
  }

  .card-grid,
  .pricing-grid,
  .metric-grid,
  .steps,
  .form-grid,
  .audit-list,
  .engine-grid {
    grid-template-columns: 1fr;
  }

  .cta-row,
  .button,
  .ai-panel,
  .funnel-card,
  .form-shell,
  .cal-card {
    max-width: 100%;
  }

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

  .hero-grid,
  .audit-grid,
  .split {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 0 1rem;
  }

  .section-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .hero,
  .page-hero,
  .audit-hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .page-home .home-stage,
  .page-home .home-grid,
  .page-home .home-services .card-grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-strip {
    gap: 0.5rem;
  }

  .hero-copy-block {
    max-width: 100%;
  }

  .hero-copy {
    max-width: 100%;
  }

  .product-panel {
    max-width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  .product-panel {
    width: 100%;
  }

  .brand span:last-child {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-footer {
    display: grid;
  }

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