:root {
  --ink: #101418;
  --muted: #56616b;
  --line: #d9dedf;
  --panel: #f5f1e9;
  --paper: #fffdf8;
  --steel: #19333d;
  --green: #1f5a4b;
  --accent: #c46f3a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(196, 111, 58, 0.18), transparent 34rem),
    linear-gradient(135deg, #f7f4ed 0%, #eef2ef 100%);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  margin: 0;
}

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

.site-header,
main,
footer {
  margin: 0 auto;
  max-width: 1180px;
  width: min(calc(100% - 40px), 1180px);
}

.site-header {
  align-items: center;
  border-bottom: 1px solid rgba(16, 20, 24, 0.12);
  display: flex;
  justify-content: space-between;
  min-height: 78px;
}

.brand,
nav,
.hero-actions,
.signal-header,
footer {
  align-items: center;
  display: flex;
}

.brand {
  font-size: 1.05rem;
  font-weight: 750;
  gap: 0.65rem;
}

.brand-mark {
  background: var(--steel);
  color: var(--paper);
  display: grid;
  height: 36px;
  place-items: center;
  width: 36px;
}

nav {
  color: #29333a;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-cta {
  border: 1px solid var(--ink);
  padding: 0.7rem 1rem;
}

.hero {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  padding: 7rem 0 5rem;
}

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

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

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
  max-width: 900px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
  margin-top: 1.6rem;
  max-width: 760px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.button {
  border: 1px solid var(--ink);
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-width: 190px;
  padding: 0.95rem 1.2rem;
}

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

.button.secondary {
  background: transparent;
}

.signal-card,
.offer-grid article,
.cta {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(16, 20, 24, 0.14);
  box-shadow: 0 24px 80px rgba(16, 20, 24, 0.08);
}

.signal-card {
  align-self: end;
  padding: 1.25rem;
}

.signal-header {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  padding-bottom: 1rem;
}

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

.signal-header strong {
  color: var(--green);
}

.workflow-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.workflow-list div {
  background: var(--panel);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  padding: 1rem;
}

.workflow-list span {
  color: var(--accent);
  font-weight: 800;
}

.section {
  padding: 5.4rem 0;
}

.section-heading {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  margin-bottom: 2rem;
}

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

.offer-grid article {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
}

.examples {
  background: var(--steel);
  color: var(--paper);
  margin: 1rem 0;
  padding: 2rem;
}

.examples .eyebrow,
.examples p {
  color: #f0c099;
}

.example-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.example-row span {
  border: 1px solid rgba(255, 253, 248, 0.26);
  padding: 0.78rem 1rem;
}

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

.credibility-copy {
  display: grid;
  gap: 1.2rem;
}

.cta {
  margin: 4rem 0 5rem;
  padding: clamp(2rem, 5vw, 4rem);
}

.cta p {
  margin: 1.2rem 0 2rem;
  max-width: 760px;
}

footer {
  border-top: 1px solid rgba(16, 20, 24, 0.12);
  color: var(--muted);
  justify-content: space-between;
  min-height: 82px;
}

footer a {
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero,
  .section-heading,
  .credibility {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 28px), 1180px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  nav {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .nav-cta,
  .button {
    text-align: center;
    width: 100%;
  }

  .hero {
    gap: 2rem;
    padding: 4rem 0 3rem;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .examples {
    padding: 1.3rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
  }
}
