:root {
  color-scheme: light;
  --ink: #15241f;
  --muted: #5d716a;
  --paper: #fffdf7;
  --green: #1f7357;
  --green-dark: #14533f;
  --lime: #dff39a;
  --coral: #ff8069;
  --line: rgba(21, 36, 31, .12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--paper); scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.topbar { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; font-size: 21px; font-weight: 780; letter-spacing: -.04em; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 14px; color: var(--green-dark); background: var(--lime); }
.brand-mark svg { width: 25px; height: 25px; }
.lang { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 13px; }
.lang a { padding: 7px 11px; border-radius: 999px; text-decoration: none; }
.lang .active { color: white; background: var(--green); }
.hero { position: relative; overflow: hidden; min-height: 470px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 28px; padding: 58px clamp(26px, 6vw, 76px); border-radius: 34px; background: var(--green); color: white; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::before { width: 380px; height: 380px; top: -210px; right: 13%; background: rgba(223, 243, 154, .13); }
.hero::after { width: 240px; height: 240px; bottom: -145px; left: 34%; background: rgba(255, 128, 105, .16); }
.hero-copy, .hero-art { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 18px; color: var(--lime); font-size: 13px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
h1 { max-width: 650px; margin: 0; font-size: clamp(40px, 6.5vw, 74px); line-height: .99; letter-spacing: -.065em; }
.hero-copy > p:not(.eyebrow) { max-width: 510px; margin: 23px 0 0; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.6; }
.contact { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; padding: 13px 18px; border: 0; border-radius: 999px; background: var(--lime); color: var(--green-dark); font-size: 15px; font-weight: 720; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.contact:hover { transform: translateY(-2px); background: #e9f9b4; }
.contact svg { width: 17px; height: 17px; }
.hero-art { display: grid; place-items: center; min-height: 280px; }
.plate { display: grid; place-items: center; width: min(100%, 300px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.08); animation: float 5s ease-in-out infinite; }
.plate-inner { width: 72%; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--green); box-shadow: 0 22px 55px rgba(4,31,21,.18); }
.plate-inner svg { width: 57%; height: 57%; }
.spark { position: absolute; width: 17px; height: 17px; border-radius: 6px; background: var(--coral); transform: rotate(18deg); }
.spark.one { top: 19%; right: 16%; }
.spark.two { bottom: 22%; left: 12%; width: 11px; height: 11px; background: var(--lime); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 58px 0 48px; }
.feature { padding: 23px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.62); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 19px; border-radius: 14px; color: var(--green-dark); background: #edf4d5; }
.feature:nth-child(2) .feature-icon { background: #ffe5dc; color: #a74633; }
.feature:nth-child(3) .feature-icon { background: #e1efff; color: #326293; }
.feature-icon svg { width: 22px; height: 22px; }
.feature h2 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.03em; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.note { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-radius: 18px; color: var(--muted); background: #f4f3e9; font-size: 14px; line-height: 1.55; }
.note svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--green); }
footer { display: flex; justify-content: space-between; gap: 16px; padding: 30px 0 38px; color: var(--muted); font-size: 13px; }
footer a { text-decoration: none; }
footer a:hover { text-decoration: underline; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-9px) rotate(2deg); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 620px); }
  .topbar { min-height: 72px; }
  .hero { grid-template-columns: 1fr; min-height: 0; gap: 8px; padding: 42px 27px 28px; border-radius: 26px; }
  .hero-art { min-height: 210px; }
  .plate { width: 190px; }
  h1 { font-size: clamp(42px, 12vw, 62px); }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .features { grid-template-columns: 1fr; gap: 12px; padding: 30px 0; }
  .feature { display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; padding: 18px; }
  .feature-icon { grid-row: span 2; margin: 0; }
  .feature h2 { align-self: end; }
  footer { flex-direction: column; padding-bottom: 26px; }
}
