:root {
  --background: #fbf6ec;
  --cream: #fffaf1;
  --cream-deep: #f4ead9;
  --green: #4f8a3d;
  --green-dark: #243f25;
  --green-deep: #365c32;
  --green-card: #416f3a;
  --green-muted: #66735d;
  --terracotta: #d77f45;
  --border: #dfd0b8;
  --border-strong: #d4c1a4;
  --white: #ffffff;
  --shadow-soft: 0 14px 38px rgba(83, 96, 64, 0.08);
  --shadow-medium: 0 24px 70px rgba(70, 88, 53, 0.22);
  --radius-xl: 2rem;
  --radius-2xl: 2.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

main {
  min-height: 100vh;
  overflow: hidden;
}

.container,
.site-header,
.hero-grid {
  width: min(100% - 2.5rem, 80rem);
  margin-inline: auto;
}

.hero-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid #d9cbb5;
  background: var(--background);
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}

.hero-overlay {
  z-index: -1;
  background: rgba(251, 246, 236, 0.7);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #264327;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.brand-mark,
.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #d9cbb5;
  background: var(--white);
  box-shadow: 0 1px 5px rgba(70, 88, 53, 0.1);
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
}

.footer-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  color: #4f6246;
  font-size: 0.875rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.875rem 1.75rem;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.button-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(79, 138, 61, 0.26);
}

.button-primary:hover {
  background: #416f33;
}

.button-outline {
  border-color: #cdbb9d;
  background: rgba(255, 255, 255, 0.8);
  color: #385339;
}

.button-outline:hover {
  background: #efe5d3;
  color: var(--green-dark);
}

.button-light {
  background: var(--cream);
  color: #2d542d;
}

.button-light:hover {
  background: #f1dfc2;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 2rem 4rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #d8c7aa;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  color: #4f6246;
  font-size: 0.875rem;
  font-weight: 800;
  box-shadow: 0 1px 6px rgba(70, 88, 53, 0.09);
}

.eyebrow svg {
  color: var(--green);
}

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

h1 {
  max-width: 48rem;
  color: var(--green-dark);
  font-size: clamp(3.25rem, 12vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.hero-text {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: #5f6f57;
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-card {
  max-width: 36rem;
  margin-top: 2.5rem;
  border: 1px solid #ddcfb8;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  box-shadow: 0 1px 8px rgba(70, 88, 53, 0.08);
  backdrop-filter: blur(8px);
}

.hero-card,
.hero-card > div {
  display: flex;
  gap: 1rem;
}

.hero-card > div {
  flex-direction: column;
  gap: 0.5rem;
}

.hero-card h2,
.benefit-card h3,
.step-card h3 {
  color: #2d452d;
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.hero-card p,
.benefit-card p,
.step-card p {
  color: #66735d;
  line-height: 1.7;
}

.icon-pill,
.icon-box,
.feature-icon,
.step-card > span {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.icon-pill,
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
}

.icon-pill,
.icon-box {
  background: #e6f0dc;
  color: var(--green);
}

.hero-visual-wrap {
  min-height: 24rem;
}

.hero-visual {
  overflow: hidden;
  margin-left: auto;
  border: 10px solid white;
  border-radius: var(--radius-2xl);
  background: #efe5d3;
  box-shadow: var(--shadow-medium);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #f8f3e8;
  object-fit: cover;
  object-position: top;
}

.section {
  padding: 5rem 0;
}

.benefits-section,
.feature-strip-section,
.site-footer {
  background: var(--cream);
}

.section-heading {
  max-width: 43rem;
}

.section-kicker,
.cta-kicker {
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading h2,
.start-copy h2,
.cta-card h2 {
  margin-top: 0.75rem;
  color: var(--green-dark);
  font-size: clamp(2.5rem, 8vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.benefit-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.benefit-card {
  border: 1px solid #e0d0b7;
  border-radius: var(--radius-xl);
  background: white;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(83, 96, 64, 0.14);
}

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.15rem;
}

.icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
}

.benefit-card h3 {
  margin-top: 1.75rem;
}

.benefit-card p {
  margin-top: 0.75rem;
}

.start-section {
  border-block: 1px solid var(--border);
  background: var(--cream-deep);
}

.start-grid {
  display: grid;
  gap: 2.5rem;
}

.code-card {
  overflow: hidden;
  border: 10px solid white;
  border-radius: var(--radius-xl);
  background: #263f27;
  box-shadow: 0 22px 60px rgba(68, 83, 52, 0.16);
}

.code-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #1f341f;
  padding: 1rem 1.25rem;
}

.code-titlebar span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
}

.code-titlebar span:nth-child(1) {
  background: #f19b6b;
}

.code-titlebar span:nth-child(2) {
  background: #f0cc77;
}

.code-titlebar span:nth-child(3) {
  background: #8fcf7a;
}

.code-titlebar strong {
  margin-left: 0.75rem;
  color: #dfead7;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

pre {
  overflow-x: auto;
  margin: 0;
  padding: 1.25rem;
  color: #f5f0e7;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  line-height: 1.75;
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.step-card {
  display: flex;
  gap: 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 1.75rem;
  background: var(--cream);
  padding: 1.25rem;
  box-shadow: 0 1px 8px rgba(70, 88, 53, 0.07);
}

.step-card > span {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  background: var(--green);
  color: var(--cream);
  font-size: 1.125rem;
  font-weight: 950;
}

.step-card p {
  margin-top: 0.5rem;
}

.feature-strip {
  display: grid;
  gap: 1.5rem;
}

.feature-strip article {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #e2d2bb;
  border-radius: 1.75rem;
  background: var(--background);
  padding: 1.25rem;
}

.feature-icon {
  background: var(--terracotta);
  color: white;
}

.feature-strip p {
  color: #2d452d;
  font-size: 1.125rem;
  font-weight: 950;
}

.cta-section {
  background: var(--green-deep);
  color: var(--cream);
}

.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-2xl);
  background: var(--green-card);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 26px 70px rgba(27, 54, 24, 0.24);
}

.cta-kicker {
  color: #f4c79f;
}

.cta-card h2 {
  color: var(--cream);
}

.cta-card p:not(.cta-kicker) {
  max-width: 48rem;
  margin: 1.25rem auto 0;
  color: #e8f0df;
  font-size: 1.125rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.site-footer {
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer-inner p {
  color: #6f7a66;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-actions,
  .cta-actions {
    flex-direction: row;
  }

  .hero-visual img {
    aspect-ratio: 5 / 4;
  }

  pre {
    padding: 1.75rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

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

  .footer-inner {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .container,
  .site-header,
  .hero-grid {
    width: min(100% - 5rem, 80rem);
  }

  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 3.5rem;
    padding-block: 3.5rem 6rem;
  }

  .hero-visual-wrap {
    min-height: 38.75rem;
  }

  .hero-visual {
    width: 92%;
  }

  .hero-visual img {
    aspect-ratio: 4 / 5;
  }

  .start-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }
}
