@font-face {
  font-family: "e-Ukraine";
  src: url("fonts/e-Ukraine-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "e-Ukraine";
  src: url("fonts/e-Ukraine-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "e-Ukraine";
  src: url("fonts/e-Ukraine-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "e-Ukraine";
  src: url("fonts/e-Ukraine-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fff5e9;
  --surface: rgba(255, 255, 255, 0.55);
  --surface-strong: rgba(255, 255, 255, 0.7);
  --ink: #123a28;
  --muted: rgba(18, 58, 40, 0.72);

  --green: #2f5b45;
  --green-2: #254b39;
  --green-3: #1f3f30;

  --line: rgba(47, 91, 69, 0.14);
  --glow: 0 0 0 1px rgba(47, 91, 69, 0.12), 0 20px 60px rgba(18, 58, 40, 0.12);

  --ring: rgba(47, 91, 69, 0.35);
  --shadow: 0 14px 40px rgba(18, 58, 40, 0.15);
  --shadow-soft: 0 10px 30px rgba(18, 58, 40, 0.1);

  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.top {
  height: 0;
}

html.nav-open,
html.nav-open body {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "e-Ukraine", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.35;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(47, 91, 69, 0.12), transparent 60%),
    radial-gradient(1100px 650px at 82% 20%, rgba(47, 91, 69, 0.08), transparent 58%),
    radial-gradient(900px 650px at 50% 95%, rgba(47, 91, 69, 0.06), transparent 60%);
  opacity: 0.9;
}

img {
  max-width: 100%;
  height: auto;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 9999;
  padding: 10px 12px;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 10px;
}

.skip:focus {
  left: 10px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 245, 233, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(47, 91, 69, 0.08);
  box-shadow: 0 6px 18px rgba(18, 58, 40, 0.08);
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__sub {
  font-weight: 500;
  opacity: 0.75;
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav__link {
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 12px;
  opacity: 0.85;
}

.nav__link:hover {
  background: rgba(47, 91, 69, 0.08);
  opacity: 1;
}

.header__cta {
  display: block;
}

.burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(47, 91, 69, 0.16);
  background: rgba(255, 255, 255, 0.35);
}

.burger:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.burger__line + .burger__line {
  margin-top: 7px;
}

.burger[aria-expanded="true"] .burger__line:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger__line:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity 170ms ease;
}

.mobile[data-open="true"] {
  pointer-events: auto;
  opacity: 1;
}

.mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 58, 40, 0.38);
  backdrop-filter: blur(10px);
}

.mobile__sheet {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(255, 245, 233, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  transform: translateY(-12px);
  transition: transform 200ms ease;
}

.mobile[data-open="true"] .mobile__sheet {
  transform: translateY(0);
}

.mobile__inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 18px;
}

.mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 6px;
}

.mobile__brand {
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--green-2);
}

.mobile__close {
  border: 1px solid rgba(47, 91, 69, 0.16);
  background: rgba(255, 255, 255, 0.55);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
}

.mobile__close:hover {
  background: rgba(255, 255, 255, 0.7);
}

.mobile__link {
  padding: 14px 14px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(47, 91, 69, 0.12);
}

.mobile__link:hover {
  background: rgba(255, 255, 255, 0.65);
}

.mobile__cta {
  padding-top: 6px;
}

.hero {
  position: relative;
  padding: 56px 0 30px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.hero__fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 550px at 18% 20%, rgba(47, 91, 69, 0.14), transparent 60%),
    radial-gradient(900px 500px at 82% 36%, rgba(47, 91, 69, 0.08), transparent 55%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  padding: 6px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47, 91, 69, 0.08);
  border: 1px solid rgba(47, 91, 69, 0.16);
  color: var(--green-2);
  font-weight: 600;
}

.h1 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.03;
  letter-spacing: 0.01em;
}

.h1__accent {
  color: var(--green);
}

.lead {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  max-width: 62ch;
}

.actions {
  display: flex;
  gap: 12px;
  margin: 20px 0 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(47, 91, 69, 0.18);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
}

.btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(180deg, var(--green), var(--green-2));
  color: var(--bg);
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0 10px 24px rgba(47, 91, 69, 0.25);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(47, 91, 69, 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.7);
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.check {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(47, 91, 69, 0.06);
  border: 1px solid rgba(47, 91, 69, 0.12);
  font-weight: 600;
}

.note {
  margin: 14px 0 0;
  color: var(--green-2);
  font-weight: 700;
}

.hero__card {
  position: relative;
}

.card {
  position: sticky;
  top: 92px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  box-shadow: var(--glow);
}

.h2 {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--green-2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.features {
  display: grid;
  gap: 12px;
}

.feature {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 245, 233, 0.65);
  border: 1px solid rgba(47, 91, 69, 0.1);
}

.feature__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(47, 91, 69, 0.1);
}

.feature__title {
  font-weight: 800;
}

.feature__text {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.divider {
  height: 1px;
  margin: 14px 0;
  background: var(--line);
}

.mini__label {
  font-weight: 700;
  color: var(--green-2);
  font-size: 13px;
  margin-bottom: 10px;
}

.mini__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(47, 91, 69, 0.08);
  border: 1px solid rgba(47, 91, 69, 0.14);
  font-weight: 700;
  font-size: 13px;
}

.chip:hover {
  background: rgba(47, 91, 69, 0.12);
}

.section {
  padding: 56px 0;
}

.section--alt {
  background: rgba(47, 91, 69, 0.05);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section__title {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--green-2);
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  font-weight: 500;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.panel {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.panel--lift {
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.panel--lift:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.panel--accent {
  border: 1px solid rgba(47, 91, 69, 0.18);
  background:
    radial-gradient(850px 420px at 10% 5%, rgba(47, 91, 69, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 245, 233, 0.55));
  box-shadow: var(--glow);
}

.panel--wide {
  margin-top: 16px;
}

.panel__title {
  margin: 0 0 10px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--green-2);
}

.panel__text {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.panel__text--strong {
  color: var(--green-2);
  font-weight: 800;
  margin-top: 12px;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--green-2);
  font-weight: 700;
}

.list li {
  margin: 10px 0;
}

.list--spaced li {
  margin: 14px 0;
  color: var(--green-2);
}

.socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social {
  display: block;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(47, 91, 69, 0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.social:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.social:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.social__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.social__name {
  font-weight: 900;
  font-size: 15px;
}

.social__icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47, 91, 69, 0.1);
}

.social__link {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  word-break: break-word;
}

.cta {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 91, 69, 0.18);
  background: linear-gradient(180deg, rgba(255, 245, 233, 0.75), rgba(255, 255, 255, 0.55));
  box-shadow: var(--shadow-soft);
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 245, 233, 0.65);
  border: 1px solid rgba(47, 91, 69, 0.12);
}

.step__n {
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: linear-gradient(180deg, var(--green), var(--green-2));
  padding: 8px 10px;
  border-radius: 12px;
  min-width: 52px;
  text-align: center;
}

.step__t {
  font-weight: 800;
  color: var(--green-2);
}

.cta__title {
  font-weight: 900;
  font-size: 16px;
}

.cta__sub {
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.palette {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.swatch {
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(47, 91, 69, 0.14);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.swatch__title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.swatch__meta {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.swatch__copy {
  justify-self: start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 800;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease;
}

.swatch__copy:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.75);
}

.swatch__copy:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.swatch--green {
  background: var(--green);
  color: var(--bg);
  border-color: rgba(0, 0, 0, 0);
}

.swatch--green .swatch__copy {
  background: rgba(255, 245, 233, 0.16);
  border-color: rgba(255, 245, 233, 0.35);
  color: var(--bg);
}

.swatch--green .swatch__copy:hover {
  background: rgba(255, 245, 233, 0.22);
}

.swatch--cream {
  background: var(--bg);
  color: var(--green);
}

.logoBox {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 245, 233, 0.7);
  border: 1px solid rgba(47, 91, 69, 0.12);
}

.logoBox--hero {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(47, 91, 69, 0.14);
}

.logoBox__img {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: rgba(47, 91, 69, 0.08);
}

.logoBox__title {
  font-weight: 900;
}

.logoBox__sub {
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.footer {
  padding: 26px 0;
}

.footer__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.footer__brand {
  font-weight: 900;
}

.footer__muted {
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
}

.footer__top {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(47, 91, 69, 0.14);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.footer__top:hover {
  background: rgba(255, 255, 255, 0.7);
}

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

  .card {
    position: relative;
    top: auto;
  }

  .socials {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid3 {
    grid-template-columns: 1fr;
  }

  .grid2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav,
  .header__cta {
    display: none;
  }

  .burger {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .hero {
    padding-top: 34px;
  }

  .socials {
    grid-template-columns: 1fr;
  }

  .palette {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .social,
  .swatch__copy {
    transition: none;
  }
}
