:root {
  color-scheme: light;
  --ink: #171511;
  --muted: #5f5a50;
  --line: #ded6c9;
  --paper: #f8f3ea;
  --surface: #fffaf2;
  --green: #ff612c;
  --green-dark: #171511;
  --amber: #ffb13b;
  --rust: #b85c38;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 21, 17, 0.08);
  background: rgba(248, 243, 234, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  gap: 10px;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  font-size: 12px;
}

.variant-nav {
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.variant-nav a {
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.variant-nav .active {
  background: var(--ink);
  color: var(--surface);
}

.hero,
.section,
.cta-section {
  padding-right: clamp(20px, 4vw, 56px);
  padding-left: clamp(20px, 4vw, 56px);
}

.hero {
  min-height: calc(100vh - 73px);
  padding-top: 54px;
  padding-bottom: 54px;
  background:
    linear-gradient(180deg, rgba(248, 243, 234, 0.05), var(--paper)),
    radial-gradient(circle at 70% 20%, rgba(231, 168, 58, 0.2), transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(31, 122, 90, 0.18), transparent 34%);
}

.hero-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  min-height: calc(100vh - 181px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

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

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 850px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

.channel-rotate {
  display: inline-block;
  min-width: 0;
  color: var(--green);
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  border: 1px solid rgba(23, 21, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  padding: 7px 13px 7px 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 16px 48px rgba(23, 21, 17, 0.08);
}

.proof-pill strong {
  color: var(--ink);
}

.avatar-stack {
  display: flex;
  width: 58px;
}

.avatar-stack span {
  width: 24px;
  height: 24px;
  margin-right: -7px;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff612c, #ffb13b);
}

.avatar-stack span:nth-child(2) {
  background: linear-gradient(135deg, #171511, #5f5a50);
}

.avatar-stack span:nth-child(3) {
  background: linear-gradient(135deg, #b85c38, #efe5d6);
}

h2 {
  margin-bottom: 14px;
  max-width: 780px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.hero-text,
.section-heading p,
.cta-section p,
.split p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.lead-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.lead-form button {
  background: var(--ink);
  color: #fffaf2;
}

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

.pipeline-visual {
  width: 100%;
  border: 1px solid rgba(23, 21, 17, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 28px 90px rgba(23, 21, 17, 0.14);
  overflow: hidden;
}

.visual-header,
.visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.status-pill {
  border-radius: 999px;
  background: rgba(255, 97, 44, 0.12);
  color: var(--green);
  padding: 5px 9px;
  font-size: 11px;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.pipeline-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
}

.dot.green {
  background: var(--green);
}

.dot.amber {
  background: var(--amber);
}

.dot.rust {
  background: var(--rust);
}

.visual-footer {
  gap: 12px;
  padding: 18px;
  background: #efe5d6;
}

.visual-footer div {
  min-width: 0;
  flex: 1;
}

.metric {
  display: block;
  font-size: 24px;
  font-weight: 850;
}

.visual-footer span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.section.muted {
  border-top: 1px solid rgba(23, 21, 17, 0.08);
  border-bottom: 1px solid rgba(23, 21, 17, 0.08);
  background: #efe5d6;
}

.section-heading,
.service-grid,
.feature-grid,
.split,
.cta-section {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 32px;
}

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

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

.service-card,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.service-kicker,
.number {
  color: var(--rust);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p,
.feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}

ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.7;
}

.split {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list p {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.check-list span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
}

.cta-section {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  align-items: start;
  margin-bottom: 56px;
  border-radius: 8px;
  background: var(--ink);
  padding-top: 42px;
  padding-bottom: 42px;
  color: var(--surface);
}

.cta-section .eyebrow {
  color: var(--amber);
}

.cta-section p {
  color: #d9d0c1;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #efe5d6;
  font-size: 13px;
  font-weight: 750;
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2;
  padding: 13px 12px;
  font: inherit;
}

.lead-form input::placeholder {
  color: rgba(255, 250, 242, 0.48);
}

.lead-form select option {
  color: var(--ink);
}

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

  .hero-grid,
  .service-grid,
  .feature-grid,
  .split,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .variant-nav {
    width: 100%;
  }

  .variant-nav a {
    flex: 1;
    text-align: center;
  }

  h1 {
    font-size: 38px;
    line-height: 1;
  }

  .proof-pill {
    align-items: flex-start;
    border-radius: 8px;
  }

  .avatar-stack {
    flex: 0 0 58px;
  }

  .visual-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-footer div {
    width: 100%;
  }
}
