:root {
  --bg: #f5f1e8;
  --surface: #fffdfa;
  --surface-alt: #ebe8dc;
  --surface-green: #e6f0ea;
  --ink: #14211d;
  --muted: #66716a;
  --line: #ddd5c7;
  --accent: #0f7664;
  --accent-strong: #0a5145;
  --accent-soft: #dcebe5;
  --graphite: #1d2421;
  --navy: #10201c;
  --sage: #8ea99a;
  --copper: #c97850;
  --sand: #d9c7aa;
  --shadow: 0 18px 48px rgba(20, 33, 29, 0.1);
  --shadow-soft: 0 12px 34px rgba(20, 33, 29, 0.07);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(15, 118, 100, 0.13), transparent 30rem),
    radial-gradient(circle at 86% 12%, rgba(201, 120, 80, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 253, 250, 0.9), rgba(245, 241, 232, 0) 560px),
    var(--bg);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 250, 0.88);
  border-bottom: 1px solid rgba(227, 222, 210, 0.88);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), var(--navy));
  border-radius: 8px;
}

.site-nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

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

.nav-cta {
  padding: 10px 14px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-radius: 8px;
}

.section,
.section-band {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section {
  max-width: 1280px;
  margin: 0 auto;
}

.section-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  align-items: center;
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(52px, 7vw, 96px);
}

.problem {
  background: linear-gradient(180deg, rgba(255, 253, 250, 0), rgba(217, 199, 170, 0.16));
  border-radius: 8px;
}

.section[id],
.references-section[id],
.section-band[id] {
  scroll-margin-top: 96px;
}

.references-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(235, 232, 220, 0.54), rgba(245, 241, 232, 0));
  border-radius: 8px;
}

.references-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.references-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.logo-row {
  margin-bottom: 20px;
}

.references-section > p,
.logo-strip p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.logo-row img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  padding: 18px 24px;
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: saturate(0.72);
}

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

.client-project-card {
  padding: 26px;
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.client-project-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

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

.client-project-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.client-project-card li {
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5.4vw, 5.15rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.45vw, 3.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.hero-copy,
.section-heading p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.hero-copy {
  max-width: 790px;
  margin-bottom: 30px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 34px rgba(14, 122, 103, 0.2);
}

.button-primary:hover {
  background: var(--accent-strong);
}

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

.trust-list {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 24px;
}

.trust-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--copper);
  border-radius: 50%;
  content: "";
}

.hero-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(246, 242, 232, 0.98));
  color: var(--ink);
  border: 1px solid rgba(14, 122, 103, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.audit-card h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.audit-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(14, 122, 103, 0.12);
}

.metric-grid,
.audit-outcomes {
  display: grid;
  gap: 12px;
}

.metric-grid div,
.audit-outcomes span,
.terminal-card {
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.audit-outcomes span {
  position: relative;
  padding-left: 42px;
  color: var(--ink);
  font-weight: 800;
}

.audit-outcomes span::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(14, 122, 103, 0.1);
  content: "";
  transform: translateY(-50%);
}

.metric-label,
.terminal-card span {
  display: block;
  margin-bottom: 6px;
  color: #9ca3af;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-grid strong,
.terminal-card code {
  color: #f8fafc;
  font-size: 0.98rem;
}

.terminal-card {
  margin-top: 16px;
}

.terminal-card code {
  white-space: normal;
}

.audit-summary {
  margin-top: 16px;
  padding: 18px;
  background: #eef8f4;
  border: 1px solid rgba(14, 122, 103, 0.16);
  border-radius: 8px;
}

.audit-summary strong,
.audit-summary span {
  display: block;
}

.audit-summary strong {
  margin-bottom: 6px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audit-summary span {
  color: #26352f;
  font-weight: 800;
  line-height: 1.45;
}

.section-muted {
  max-width: none;
  background: var(--surface-green);
}

.section-muted > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.pain-grid,
.proof-grid,
.example-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pain-grid span,
.proof-grid span,
.example-list span {
  padding: 10px 13px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(20, 33, 29, 0.045);
}

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

.use-card,
.offer-card,
.case-grid article,
.trust-grid article,
.deliverable-grid article,
.process-grid article {
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.use-card {
  padding: 24px;
}

.use-card p,
.offer-card p,
.case-grid p,
.trust-grid p,
.deliverable-grid p,
.process-grid p {
  color: var(--muted);
}

.use-card ul,
.offer-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.use-card li,
.offer-card li {
  color: var(--ink);
}

.deliverable-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.deliverable-grid article,
.process-grid article,
.case-grid article,
.trust-grid article {
  padding: 24px;
}

.card-index,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-radius: 8px;
  font-weight: 800;
}

.section-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 22px;
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.section-cta.compact {
  margin-top: 22px;
}

.section-cta div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.section-cta strong {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.25;
}

.section-cta span {
  color: var(--muted);
  font-weight: 600;
}

.section-dark {
  max-width: none;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(15, 118, 100, 0.2), transparent 24rem),
    radial-gradient(circle at 84% 4%, rgba(201, 120, 80, 0.16), transparent 18rem),
    var(--graphite);
}

.section-dark > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .eyebrow {
  color: #9ee6d2;
}

.section-dark p,
.section-dark .proof-grid span {
  color: #d8dfda;
}

.section-dark .proof-grid span {
  background: rgba(255, 253, 250, 0.08);
  border-color: rgba(255, 253, 250, 0.14);
}

.credibility-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.founder-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.98), rgba(230, 240, 234, 0.94)),
    var(--surface);
  border: 1px solid rgba(255, 253, 250, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--copper));
  content: "";
}

.founder-card-header {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.founder-card img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(14, 122, 103, 0.12), 0 16px 32px rgba(20, 33, 29, 0.16);
}

.founder-badge {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 5px 8px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid rgba(14, 122, 103, 0.18);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.founder-card .founder-name {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 800;
}

.founder-card-header p:not(.founder-name) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 11px;
  color: var(--accent-strong);
  background: rgba(14, 122, 103, 0.08);
  border: 1px solid rgba(14, 122, 103, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.linkedin-link:hover {
  background: rgba(14, 122, 103, 0.14);
  border-color: rgba(14, 122, 103, 0.34);
  transform: translateY(-1px);
}

.linkedin-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.founder-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 18px 0 0;
  color: var(--ink);
  border-top: 1px solid var(--line);
  list-style: none;
}

.founder-card li {
  position: relative;
  padding-left: 24px;
}

.founder-card li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(14, 122, 103, 0.1);
  content: "";
}

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

.case-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.offer-card .button {
  align-self: center;
  margin-top: auto;
}

.offer-label {
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card.highlight {
  border-color: rgba(15, 118, 100, 0.42);
  box-shadow: var(--shadow);
}

.examples .section-heading {
  margin-bottom: 28px;
}

.example-list span {
  background: #fffdfa;
  font-size: 0.94rem;
}

.final-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(201, 120, 80, 0.24), transparent 24rem),
    var(--graphite);
  color: #fff;
}

.final-cta .eyebrow {
  color: #9ee6d2;
}

.final-cta h2 {
  max-width: 900px;
  margin-bottom: 14px;
}

.final-cta p {
  max-width: 760px;
  color: #d1d5db;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 1040px) {
  .section-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

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

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

  .client-project-grid {
    grid-template-columns: 1fr;
  }

  .credibility-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-nav a {
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .section,
  .section-band {
    padding: 58px 20px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.75rem);
  }

  .hero-panel {
    padding: 20px;
  }

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

  .section-cta {
    padding: 18px;
  }

  .use-case-grid,
  .offer-grid,
  .case-grid,
  .case-grid.expanded,
  .trust-grid,
  .deliverable-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .references-section {
    padding-bottom: 46px;
  }

  .logo-row {
    grid-template-columns: 1fr;
  }

  .logo-row img {
    height: 76px;
  }

  .site-footer {
    flex-direction: column;
  }
}
