:root {
  --ink: #172021;
  --paper: #f7f7f2;
  --lime: #c7f260;
  --coral: #ff7b68;
  --line: rgba(23, 32, 33, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 48px)); margin: 0 auto; }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 94px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 1.26rem; font-weight: 800; letter-spacing: -.075em; }
.brand img { display: block; }
.brand strong { color: #608e08; font-weight: 800; }
.nav-link { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: .83rem; font-weight: 750; transition: border-color .18s ease, background .18s ease; }
.nav-link:hover { background: #fff; border-color: rgba(23, 32, 33, .32); }
.nav-link span { color: #6d930f; margin-left: 5px; }
.hero { position: relative; padding: 122px 0 142px; overflow: hidden; }
.hero::before { position: absolute; top: -155px; right: -105px; z-index: -1; width: min(42vw, 590px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #e6ffd0 0 6%, #c7f260 7% 33%, #b1d953 34% 47%, transparent 48%); content: ""; opacity: .88; }
.eyebrow, .section-label { display: flex; align-items: center; gap: 8px; margin: 0 0 24px; text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 800; color: #60716e; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 970px; margin-bottom: 32px; font-size: clamp(3.4rem, 8vw, 7.3rem); line-height: .9; letter-spacing: -.082em; }
h1 em { font-family: Georgia, serif; font-weight: 400; color: #6b960d; }
.intro { max-width: 610px; color: #53615f; font-size: 1.15rem; line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { display: inline-block; padding: 15px 21px; border-radius: 999px; font-size: .88rem; font-weight: 780; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; box-shadow: 0 9px 18px rgba(23, 32, 33, .13); }
.button-primary:hover { box-shadow: 0 14px 25px rgba(23, 32, 33, .2); }
.button-secondary { background: rgba(255,255,255,.45); border: 1px solid var(--line); }
.statement { padding: 82px 0; background: var(--lime); }
.statement-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 44px; }
.statement h2 { margin: 0; max-width: 810px; font-size: clamp(2rem, 4vw, 3.9rem); line-height: 1; letter-spacing: -.055em; }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 124px 0; }
.services article { min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.36); transition: transform .2s ease, box-shadow .2s ease; }
.services article:hover { transform: translateY(-5px); box-shadow: 0 18px 35px rgba(23, 32, 33, .08); }
.number { color: #719d10; font-size: .82rem; font-weight: 800; }
.services h3 { margin: 74px 0 12px; font-size: 1.45rem; letter-spacing: -.04em; }
.services p, .feature p { color: #596664; line-height: 1.6; }
.feature { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: stretch; margin-bottom: 108px; padding: 62px; background: var(--ink); color: white; border-radius: 12px; overflow: hidden; box-shadow: 0 22px 55px rgba(23, 32, 33, .18); }
.feature h2 { margin-bottom: 16px; font-size: clamp(2.7rem, 5vw, 4.8rem); letter-spacing: -.065em; }
.feature p { max-width: 510px; color: #cbd5d1; }
.feature-mark { position: relative; display: grid; place-items: center; min-height: 240px; border-radius: 7px; background: var(--coral); color: var(--ink); font-size: 8rem; overflow: hidden; }
.feature-mark::after { position: absolute; width: 215px; height: 215px; border: 2px solid rgba(23,32,33,.25); border-radius: 50%; content: ""; }
.feature-mark span { z-index: 1; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 31px 0 45px; border-top: 1px solid var(--line); color: #64716f; font-size: .82rem; }
.footer .brand { color: var(--ink); font-size: 1.05rem; }
@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1140px); }
  .hero { padding: 76px 0 92px; }
  .statement-grid, .services, .feature { grid-template-columns: 1fr; }
  .statement { padding: 55px 0; }
  .services { padding: 72px 0; }
  .feature { padding: 30px; gap: 24px; margin-bottom: 64px; }
  .feature-mark { min-height: 160px; font-size: 5.8rem; }
  .footer { flex-direction: column; }
}
