:root {
  --ink: #1D2032;
  --navy: #2A2D42;
  --navy-deep: #15172a;
  --paper: #FAF9F7;
  --paper-warm: #F4F2EE;
  --muted: #7E8094;
  --hair: #E2E1DD;
  --chip: #EEEDE9;
  --clay: #C07A50;
  --orange: #E0824A;
  --orange-bright: #F0934F;
  --shadow: 0 18px 50px -20px rgba(29, 32, 50, 0.35);
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(224, 130, 74, 0.8);
}
.btn--primary:hover { background: var(--orange-bright); box-shadow: 0 14px 30px -10px rgba(224, 130, 74, 0.9); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hair); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: rgba(255,255,255,0.08); color: var(--paper); border-color: rgba(255,255,255,0.22); }
.btn--light:hover { background: rgba(255,255,255,0.16); }

/* ---------- wordmark ---------- */
.wordmark { display: inline-flex; align-items: center; gap: 10px; }
.wordmark__text {
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 1.05rem;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 247, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair);
  transition: box-shadow .2s ease;
}
.nav.is-scrolled { box-shadow: 0 10px 30px -18px rgba(29,32,50,0.4); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 14px; }

/* ---------- language switch ---------- */
.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}
.lang-switch a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 5px 11px;
  border-radius: 999px;
  line-height: 1;
  transition: color .15s, background .15s;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.is-active { background: var(--ink); color: var(--paper); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(224,130,74,0.18), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(62,111,217,0.10), transparent 55%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: var(--paper);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 96px 0 110px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-bright);
  background: rgba(224,130,74,0.12);
  border: 1px solid rgba(224,130,74,0.3);
  padding: 7px 14px;
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 22px 0 18px;
  font-weight: 700;
}
.hero h1 .accent { color: var(--orange-bright); }
.hero__lead {
  font-size: 1.18rem;
  color: rgba(250,249,247,0.78);
  max-width: 30ch;
  margin-bottom: 30px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stats .num { font-size: 1.7rem; font-weight: 700; }
.hero__stats .lbl { font-size: 0.82rem; color: rgba(250,249,247,0.6); }

/* hero art */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}
.hero__art .glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(224,130,74,0.35), transparent 65%);
  filter: blur(10px);
}
.hero__peak {
  position: relative;
  width: min(360px, 80%);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
}

/* ---------- sections ---------- */
.section { padding: 92px 0; }
.section--warm { background: var(--paper-warm); }
.section__head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section__head .kicker {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--clay);
}
.section__head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
  line-height: 1.1;
}
.section__head p { color: var(--muted); font-size: 1.08rem; }

/* feature grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 30px 28px;
  transition: transform .18s ease, box-shadow .25s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange), var(--clay));
  color: #fff;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.18rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* products */
.products { display: grid; gap: 22px; }
.product {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 26px 28px;
  transition: border-color .2s, box-shadow .25s, transform .18s;
}
.product:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-3px); }
.product__badge {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.5rem; color: #fff;
}
.product__body h3 { font-size: 1.25rem; display: flex; align-items: center; gap: 10px; }
.product__body p { color: var(--muted); margin-top: 4px; max-width: 60ch; }
.tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 6px;
  background: var(--chip); color: var(--muted);
}
.tag--live { background: rgba(74,153,96,0.14); color: #3a7a4c; }
.product__link { color: var(--clay); font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.product__link:hover { text-decoration: underline; }

/* values / about split */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 18px; }
.about p { color: var(--muted); font-size: 1.05rem; margin-bottom: 16px; }
.about__list { list-style: none; display: grid; gap: 14px; margin-top: 8px; }
.about__list li { display: flex; gap: 12px; align-items: flex-start; }
.about__list .dot {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(224,130,74,0.15); color: var(--clay);
  display: grid; place-items: center; font-size: 0.7rem; margin-top: 2px;
}
.about__panel {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border-radius: 22px;
  padding: 40px;
  color: var(--paper);
  box-shadow: var(--shadow);
}
.about__panel .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.about__panel .stat .num { font-size: 2.2rem; font-weight: 700; color: var(--orange-bright); }
.about__panel .stat .lbl { color: rgba(250,249,247,0.65); font-size: 0.9rem; }
.about__panel hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 28px 0; }
.about__panel blockquote { font-size: 1.1rem; line-height: 1.5; }
.about__panel cite { display: block; margin-top: 14px; font-style: normal; color: rgba(250,249,247,0.6); font-size: 0.9rem; }

/* CTA band */
.cta {
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(224,130,74,0.22), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: var(--paper);
  text-align: center;
  border-radius: 26px;
  padding: 64px 32px;
  box-shadow: var(--shadow);
}
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.02em; margin-bottom: 14px; }
.cta p { color: rgba(250,249,247,0.75); max-width: 48ch; margin: 0 auto 28px; font-size: 1.1rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* footer */
.footer { background: var(--navy-deep); color: rgba(250,249,247,0.7); padding: 60px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { margin-top: 16px; max-width: 32ch; font-size: 0.95rem; color: rgba(250,249,247,0.55); }
.footer h4 { color: var(--paper); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: rgba(250,249,247,0.6); font-size: 0.92rem; transition: color .15s; }
.footer ul a:hover { color: var(--orange-bright); }
.footer__bar {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: rgba(250,249,247,0.45);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; padding: 70px 0 80px; }
  .hero__grid_wrapper {padding: 0 24px}
  .hero__art { order: -1; min-height: 200px; }
  .hero__peak { width: 200px; }
  .grid-3 { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav__links { display: none; }
}
@media (max-width: 620px) {
  .product { grid-template-columns: 52px 1fr; }
  .product__link { grid-column: 2; }
  .product__badge { width: 52px; height: 52px; font-size: 1.2rem; }
  .hero__stats { gap: 26px; flex-wrap: wrap; }
  .footer__top { grid-template-columns: 1fr; }
}
