html {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

body {
  line-height: 1.6;
}



@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --color-text:    #334155;
  --color-heading: #475569;
  --color-heading-1: #94a3b8;
  --color-heading-2: #64748b;
  --color-heading-3: #475569;
  --color-heading-4: #334155;
  --color-muted:   #475569;
  --color-accent:  #0f766e;
  --color-border:  #e2e8f0;
  --color-surface: #ffffff;
  --color-surface-muted: #f8fafc;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, .site-brand__name {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-heading);
}

h1, .site-brand__name {
  color: var(--color-heading-1);
}

h2 {
  color: var(--color-heading-2);
}

h3 {
  color: var(--color-heading-3);
}

h4 {
  color: var(--color-heading-4);
}




p, li, a, span, input, textarea, button {
  font-family: var(--font-body);
}


.site-header__inner,
.site-main,
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}


.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}


.site-brand {
  flex: 0 0 auto;
}

.site-brand__name {
  font-size: 1.45rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
  flex-wrap: nowrap;
}


.site-nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
}

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

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text) !important;
  background: var(--color-surface);
}

.site-nav__cta:hover {
  border-color: #cbd5e1;
  background: var(--color-surface-muted);
}

.hero__title,
.section-heading h2,
.cta-band h2 {
  font-family: var(--font-heading);
}

.hero__title {
  font-size: clamp(3rem, 5.8vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.section-heading h2,
.cta-band h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.card h3,
.process-step h3,
.proof-card h3,
.feature-panel h3 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero__lead,
.section-heading p,
.card p,
.process-step p,
.proof-card p,
.feature-panel p,
.cta-band p {
  font-size: 1.02rem;
  color: var(--color-muted);
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    backdrop-filter: none;
  }

  .site-header__inner {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-brand__name {
    font-size: 1.3rem;
  }
}





.prose a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 500;
}

.prose a:hover {
  text-decoration: underline;
}

.prose img {
  border-radius: 1rem;
}

.prose h2,
.prose h3,
.prose h4 {
  scroll-margin-top: 5rem;
}

.prose h2,
.prose h3,
.prose h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1.15;
  scroll-margin-top: 5rem;
}

.prose h1 {
  margin-top: 3.0rem;
  margin-bottom: 1.2rem;
  font-size: clamp(1.95rem, 2.6vw, 2.85rem);
  color: var(--color-heading-1);
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  color: var(--color-heading-2);
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  color: var(--color-heading-3);
}

.prose h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  color: var(--color-heading-4);
}

.prose p,
.prose li {
  font-size: 1.04rem;
  line-height: 1.78;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul,
.prose ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.prose li + li {
  margin-top: 0.35rem;
}




.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero__inner {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__lead {
  margin: 1.5rem 0 0;
  max-width: 64ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

.hero__actions,
.feature-panel__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.section {
  padding: 4rem 0;
}

.section--muted {
  background: #f8fafc;
}

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

.section-heading h2,
.cta-band h2 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-heading p,
.card p,
.feature-panel p,
.cta-band p {
  color: #475569;
  line-height: 1.7;
}

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

.card,
.feature-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
}

.card h3,
.feature-panel h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.feature-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band {
  border-top: 1px solid #e2e8f0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.15rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.button--primary {
  background: #0f766e;
  color: #ffffff;
}

.button--primary:hover {
  background: #115e59;
}

.button--secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.button--secondary:hover {
  background: #cbd5e1;
}

.text-link {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
}

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

@media (max-width: 800px) {
  .card-grid,
  .cta-band__inner,
  .feature-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 3.5rem;
  }
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero__inner {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  max-width: 12ch;
}

.hero__lead {
  margin: 1.5rem 0 0;
  max-width: 64ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #475569;
}

.hero__actions,
.feature-panel__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.section {
  padding: 4.5rem 0;
}

.section--muted {
  background: #f8fafc;
}

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

.section-heading h2,
.cta-band h2 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-heading p,
.card p,
.process-step p,
.proof-card p,
.feature-panel p,
.cta-band p {
  color: #475569;
  line-height: 1.7;
}

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

.card,
.process-step,
.proof-card,
.feature-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
}

.card h3,
.process-step h3,
.proof-card h3,
.feature-panel h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.12rem;
  line-height: 1.3;
}

.process-step {
  position: relative;
  padding-top: 3.25rem;
}

.process-step__number {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0f766e;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid #dbe3ea;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 500;
}

.feature-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band {
  border-top: 1px solid #e2e8f0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.15rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button--primary {
  background: #0f766e;
  color: #ffffff;
}

.button--primary:hover {
  background: #115e59;
}

.button--secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.button--secondary:hover {
  background: #cbd5e1;
}

.text-link {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
}

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

.site-footer {
  margin-top: 0;
  padding: 2rem 0 3rem;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.95rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: #0f172a;
}

@media (max-width: 900px) {
  .card-grid,
  .process-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner,
  .feature-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3.5rem 0 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero__title {
    max-width: none;
  }

  .pill-grid {
    gap: 0.65rem;
  }
}





.split-panel {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}

.split-panel__intro h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.split-panel__content p + p {
  margin-top: 1rem;
}

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

.project-card {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
}

.project-card__meta {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.project-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.project-card p {
  color: var(--color-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .split-panel,
  .project-grid {
    grid-template-columns: 1fr;
  }
}


.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.logo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding: 1.5rem;
  text-align: center;
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
}

.logo-card img {
  max-width: 180px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.logo-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--color-text);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 3rem;
}

.client-card {
  display: grid;
  grid-template-rows: 120px 72px;
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  min-height: 192px;
}

.client-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.client-card__logo img {
  max-width: 160px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-card__name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  text-align: center;
}

.client-card__name p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--color-text);
}



.section-nav {
  margin: 2rem 0 2.5rem;
}

.section-nav__inner {
  background: var(--color-surface-muted, var(--color-surface));
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.25rem;
}

.section-nav__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.section-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.section-nav__item {
  margin: 0;
}

.section-nav__link {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.85rem;
  background: var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.35;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.section-nav__link:hover,
.section-nav__link:focus {
  transform: translateY(-1px);
  border-color: var(--color-primary);
  background: var(--color-surface-2, #fff);
  text-decoration: none;
}

.section-nav__link:active {
  transform: translateY(0);
}


