/* Leuga — leuga.northido.com · Gaul palette, geometry from design turn 5 */
:root {
  --ink: #16211A;
  --paper: #F4F6F1;
  --green: #1F6B45;
  --green-soft: #DEEDE3;
  --ochre: #B0761C;
  --body: #4C5B50;
  --body-soft: #5C6B60;
  --sage: #7B8A7F;
  --sage-light: #9AA79D;
  --mint: #8FB7A0;
  --hairline: rgba(22, 33, 26, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1440px; margin: 0 auto; }

/* Header */
header { box-shadow: inset 0 -1px 0 var(--hairline); }
.nav {
  height: 84px; padding: 0 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand svg { width: 40px; height: 40px; border-radius: 11px; }
.brand span { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--body); }
.nav-links a.lang { font-weight: 700; color: var(--green); }
.nav-links a:hover { color: var(--green); }

/* Hero */
.hero {
  padding: 88px 72px 76px;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 26px; }
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage);
}
h1 {
  font-size: clamp(38px, 4.5vw, 64px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.03;
}
.hero-sub { font-size: 21px; line-height: 1.5; color: var(--body); max-width: 520px; }
.cta-row { display: flex; align-items: center; gap: 20px; padding-top: 10px; flex-wrap: wrap; }
.badge img { height: 60px; width: auto; }
.price { display: flex; flex-direction: column; gap: 3px; }
.price b { font-size: 17px; font-weight: 700; }
.price span { font-size: 14px; font-weight: 500; color: var(--sage); }
.hero-phone { display: flex; justify-content: center; }
.bezel {
  width: 340px; padding: 11px; border-radius: 52px; background: var(--ink);
  box-shadow: 0 40px 70px -30px rgba(22, 33, 26, 0.55);
}
.bezel img { border-radius: 41px; }

/* Features */
.features {
  padding: 0 72px 96px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.card {
  background: #fff; border-radius: 24px; padding: 38px 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.card .glyph {
  width: 40px; height: 40px; border-radius: 12px; background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
}
.card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
.card p { font-size: 16px; line-height: 1.55; color: var(--body-soft); }

/* Screenshot band */
.band-outer { padding: 0 72px 100px; }
.band {
  background: #fff; border-radius: 28px; padding: 56px 56px 0; overflow: hidden;
  display: flex; flex-direction: column; gap: 44px;
}
.band-head { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.band-head .kicker { font-size: 11px; }
.band-head h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.025em; }
.shots { display: flex; gap: 26px; justify-content: center; align-items: flex-end; }
.shots img { width: 236px; border-radius: 26px 26px 0 0; box-shadow: 0 -14px 40px -18px rgba(22, 33, 26, 0.35); }

/* Why Leuga */
.why {
  background: var(--ink); padding: 80px 72px;
  display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center;
}
.why-copy { display: flex; flex-direction: column; gap: 20px; max-width: 640px; }
.why .kicker { color: var(--mint); font-size: 11px; }
.why p.lead { font-size: 26px; font-weight: 600; line-height: 1.45; color: var(--paper); }
.why p.tail { font-size: 19px; font-weight: 600; color: var(--mint); }
.why img { width: 150px; border-radius: 33px; }

/* Footer */
footer { padding: 56px 72px 64px; display: flex; flex-direction: column; gap: 22px; }
.foot-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-id { display: flex; flex-direction: column; gap: 8px; }
.foot-id b { font-size: 16px; font-weight: 700; }
.foot-id p { font-size: 15px; line-height: 1.6; color: var(--body-soft); }
.foot-id a { color: var(--green); font-weight: 600; }
.foot-links { display: flex; gap: 28px; align-items: center; }
.foot-links a { font-size: 15px; font-weight: 600; color: var(--body); }
.foot-links a:hover { color: var(--green); }
.rule { height: 1px; background: rgba(22, 33, 26, 0.10); }
.copyright { font-size: 14px; font-weight: 500; color: var(--sage); }

/* Text pages (privacy / support) */
.page { max-width: 720px; margin: 0 auto; padding: 72px 24px 96px; }
.page .kicker { margin-bottom: 14px; }
.page h1 { font-size: 40px; margin-bottom: 8px; }
.page .updated { font-size: 14px; color: var(--sage); margin-bottom: 40px; }
.page p { font-size: 17px; line-height: 1.65; color: var(--body); margin-bottom: 22px; }
.page h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.page a { color: var(--green); font-weight: 600; }

/* Mobile — artboard 5b */
@media (max-width: 900px) {
  .nav { height: 68px; padding: 0 24px; }
  .nav-links { gap: 20px; }
  .hero { grid-template-columns: 1fr; padding: 56px 24px 48px; gap: 44px; }
  .hero-sub { font-size: 18px; }
  .features { grid-template-columns: 1fr; padding: 0 24px 64px; gap: 16px; }
  .card { padding: 30px 26px; }
  .band-outer { padding: 0 24px 64px; }
  .band { padding: 40px 24px 0; gap: 32px; }
  .band-head h2 { font-size: 24px; }
  .shots { gap: 14px; overflow-x: auto; justify-content: flex-start; padding-bottom: 0; }
  .shots img { width: 200px; flex-shrink: 0; }
  .why { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .why img { width: 110px; border-radius: 24px; }
  .why p.lead { font-size: 21px; }
  footer { padding: 44px 24px 52px; }
  .bezel { width: 300px; }
}
