:root {
  --background: #f5f3ee;
  --foreground: #18221f;
  --muted: #66736d;
  --line: #d6d0c5;
  --green: #23443e;
  --green-2: #6f8f83;
  --paper: #fffdf8;
  --clay: #b9684a;
  --ink: #0f1715;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: clip;
  overflow-wrap: anywhere;
}

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

main {
  min-height: 100vh;
}

.hero {
  padding: 24px clamp(20px, 5vw, 72px) 0;
  background:
    linear-gradient(90deg, rgba(35, 68, 62, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(35, 68, 62, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(185, 104, 74, 0.18), transparent 28%),
    var(--background);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
}

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

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

.brand img {
  height: 34px;
  width: 34px;
}

.nav-links {
  color: var(--muted);
  font-size: 14px;
  gap: 24px;
}

.hero-visual {
  margin: 48px auto 0;
  max-width: 1536px;
  position: relative;
}

.hero-image {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hero-cta-hit {
  border-radius: 8px;
  display: block;
  position: absolute;
}

.hero-cta-hit:focus-visible {
  outline: 3px solid #23443e;
  outline-offset: 4px;
}

.hero-cta-primary-hit {
  height: 5.66%;
  left: 5.2%;
  top: 53.32%;
  width: 16.8%;
}

.hero-cta-secondary-hit {
  height: 5.66%;
  left: 23.2%;
  top: 53.32%;
  width: 10.4%;
}

.eyebrow {
  color: var(--clay);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  margin-bottom: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.button {
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.secondary {
  background: rgba(255, 253, 248, 0.7);
  color: var(--green);
}

.section {
  margin: 0 auto;
  max-width: 1160px;
  padding: 84px clamp(20px, 5vw, 72px);
}

.intro {
  color: #2e3d38;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.55;
  max-width: 1050px;
  padding-bottom: 52px;
}

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

.movie,
.workflow {
  border-top: 1px solid var(--line);
}

.movie-frame {
  background: var(--ink);
  border: 1px solid #283834;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(24, 34, 31, 0.16);
  margin-top: 34px;
  overflow: hidden;
}

.movie-frame video {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  width: 100%;
}

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

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

.feature-card p,
.steps p,
.cta p {
  color: var(--muted);
  line-height: 1.75;
}

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

.steps div {
  border-left: 3px solid var(--green-2);
  padding-left: 22px;
}

.steps span {
  color: var(--clay);
  font-family: "Courier New", monospace;
  font-weight: 700;
}

.cta {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: white;
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}

.cta p {
  margin-bottom: 0;
}

.cta span {
  color: #d8ede7;
  display: inline-block;
  font-weight: 700;
}

.cta .button {
  border-color: #d8ede7;
  background: #d8ede7;
  color: var(--ink);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

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

  .feature-card {
    min-height: auto;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 18px;
  }

  .nav,
  .nav-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 12px;
  }

  .hero-visual {
    margin-top: 28px;
  }

  .hero-image {
    margin-left: calc(50% - 50vw);
    max-width: none;
    width: 100vw;
  }

  .hero-cta-hit {
    transform: translateX(calc(50% - 50vw));
  }

  .section {
    padding: 64px 20px;
  }
}
