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: #0f172a;
  --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-text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 2rem;
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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


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


