:root {
  --bg: #fff8ef;
  --ink: #241b14;
  --muted: #6f6258;
  --line: rgba(36, 27, 20, 0.12);
  --panel: #fffdfa;
  --accent: #138a55;
  --accent-dark: #0b5f3a;
  --warm: #ffcf70;
  --shadow: 0 26px 80px rgba(72, 43, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 207, 112, 0.45), transparent 34%),
    linear-gradient(225deg, rgba(19, 138, 85, 0.16), transparent 28%),
    var(--bg);
}

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

.page,
.site-footer {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  padding: 28px 0 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  padding-top: 82px;
}

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

h1,
h2 {
  margin: 16px 0 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 7.4rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
}

.lead,
.section p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.06rem;
}

.lead {
  max-width: 62ch;
  margin: 24px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 42px rgba(19, 138, 85, 0.26);
}

.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-line span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.9rem;
}

.workspace-card,
.proof-card,
.support-card,
.lead-form,
.pain-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.workspace-card {
  border-radius: 32px;
  padding: 26px;
  transform: rotate(1.5deg);
}

.workspace-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  margin-bottom: 18px;
  box-shadow: 0 18px 46px rgba(72, 43, 18, 0.16);
}

.card-head,
.pipeline div,
.handoff {
  border-radius: 22px;
  padding: 18px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  background: var(--ink);
  color: white;
}

.pipeline {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.pipeline div {
  background: #f6efe5;
}

.pipeline span,
.handoff span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.pipeline strong {
  display: block;
  margin-top: 6px;
  font-size: 1.7rem;
}

.handoff {
  margin-top: 16px;
  background: rgba(19, 138, 85, 0.09);
}

.section {
  padding: 84px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.pain-grid article {
  border-radius: 24px;
  padding: 24px;
}

.pain-grid strong {
  font-size: 1.15rem;
}

.flow {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
}

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

.steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 0 0 20px;
}

.steps span {
  display: grid;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: var(--warm);
  font-weight: 900;
}

.steps strong {
  font-size: 1.25rem;
}

.proof {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 18px;
}

.proof-card,
.support-card,
.lead-form {
  border-radius: 28px;
  padding: 28px;
}

.support-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: white;
}

.support-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.support-card p {
  color: rgba(255, 255, 255, 0.72);
}

.form-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.faq-list h3 {
  margin: 0;
  font-size: 1.12rem;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
select {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 0 14px;
  font: inherit;
  background: white;
  color: var(--ink);
}

.form-status {
  margin: 0;
  font-weight: 700;
  color: var(--accent-dark);
}

.site-footer {
  padding: 54px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) repeat(4, minmax(130px, 1fr));
  gap: 42px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 290px;
  color: var(--muted);
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h2 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-column a,
.footer-bottom {
  color: var(--muted);
}

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

.footer-bottom {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .hero-grid,
  .pain-grid,
  .flow,
  .proof,
  .faq-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .workspace-card {
    transform: none;
  }
}

@media (max-width: 560px) {
  .actions,
  .button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
