:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --paper: #fffdf8;
  --ink: #17201d;
  --muted: #66716c;
  --line: #ded8ca;
  --teal: #087f78;
  --teal-dark: #055a55;
  --coral: #e45d45;
  --amber: #d89928;
  --graphite: #2d3532;
  --shadow: 0 22px 60px rgba(23, 32, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 245, 239, 0.9);
  border-bottom: 1px solid rgba(222, 216, 202, 0.9);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.hero-metrics,
.section-strip,
.contact-section {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--teal-dark);
}

.header-action {
  color: var(--teal);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px) 42px;
}

.hero-copy {
  max-width: 650px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  font-size: clamp(4.5rem, 18vw, 10.5rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.7rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
}

.hero-text {
  max-width: 580px;
  margin: 20px 0 0;
  color: #3d4843;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.button.primary {
  color: #fff;
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--graphite);
  background: var(--paper);
  border-color: var(--line);
}

.hero-metrics {
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 0;
}

.hero-metrics div {
  min-width: 146px;
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.75);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-metrics dt {
  font-size: 1.5rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  width: min(100%, 940px);
  border: 1px solid rgba(23, 32, 29, 0.13);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-strip {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: var(--graphite);
}

.section-strip span {
  padding: 8px 14px;
  color: #f7f5ef;
  border: 1px solid rgba(247, 245, 239, 0.22);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

.content-section,
.workflow-section,
.plans-section,
.contact-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

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

.section-heading p:not(.eyebrow),
.workflow-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-card,
.plan-card {
  min-height: 230px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card p,
.plan-card p {
  color: var(--muted);
}

.feature-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  margin-bottom: 42px;
  color: #fff;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-token.teal {
  background: var(--teal);
}

.feature-token.coral {
  background: var(--coral);
}

.feature-token.graphite {
  background: var(--graphite);
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #fffdf8;
  border-block: 1px solid var(--line);
}

.workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px;
  background: #f4efe5;
  border: 1px solid #e6ddcf;
  border-radius: 8px;
}

.workflow-list span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border-radius: 8px;
  font-weight: 900;
}

.workflow-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.plans-section {
  background: #eef5f1;
}

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

.plan-card {
  min-height: 210px;
}

.plan-card.featured {
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.plan-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.plan-name {
  margin: 0 0 28px;
  color: var(--coral);
  font-weight: 900;
}

.contact-section {
  justify-content: space-between;
  gap: 24px;
  background: var(--graphite);
  color: #fff;
}

.contact-section .eyebrow {
  color: #7fd0c9;
}

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

@media (max-width: 920px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .workflow-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(3.5rem, 22vw, 5.8rem);
  }

  .button {
    width: 100%;
  }

  .hero-metrics div {
    width: 100%;
  }

  .workflow-list li {
    grid-template-columns: 1fr;
  }

  .contact-section {
    align-items: stretch;
  }
}
