/* ============ Artisan — Soft UI / Neumorphism ============ */

:root {
  --brand: #80C030;
  --brand-ink: #4F7A1A;
  --brand-soft: rgba(128, 192, 48, 0.14);

  --bg: #EAEDE6;
  --surface: #EFF2EC;
  --text: #1F2421;
  --text-muted: #5B6660;
  --border: #D8DCD2;

  /* neumorphic shadows */
  --sh-dark: rgba(40, 50, 35, 0.16);
  --sh-light: rgba(255, 255, 255, 0.85);
  --soft: 6px 6px 14px var(--sh-dark), -6px -6px 14px var(--sh-light);
  --soft-sm: 4px 4px 9px var(--sh-dark), -4px -4px 9px var(--sh-light);
  --inset: inset 3px 3px 7px var(--sh-dark), inset -3px -3px 7px var(--sh-light);

  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 240ms;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

[data-theme="dark"] {
  --brand: #80C030;
  --brand-ink: #A8D85B;
  --brand-soft: rgba(128, 192, 48, 0.16);

  --bg: #23272B;
  --surface: #272C30;
  --text: #E8ECE6;
  --text-muted: #A7B0AA;
  --border: #353B3F;

  --sh-dark: rgba(0, 0, 0, 0.45);
  --sh-light: rgba(255, 255, 255, 0.045);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-ink); text-decoration: none; }
h1, h2, h3 { line-height: 1.2; margin: 0; font-weight: 700; letter-spacing: -0.01em; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--surface); color: var(--text); padding: 10px 16px;
  border-radius: var(--radius-sm); box-shadow: var(--soft);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--brand-ink);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- soft surfaces ---------- */
.soft { box-shadow: var(--soft); background: var(--surface); border-radius: var(--radius); }
.soft-inset { box-shadow: var(--inset); background: var(--surface); border-radius: var(--radius-sm); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 26px; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; border-radius: 999px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn-primary { background: var(--brand); color: #14210a; box-shadow: var(--soft-sm); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); box-shadow: var(--inset); }
.btn-soft { background: var(--surface); color: var(--text); box-shadow: var(--soft-sm); }
.btn-soft:hover { transform: translateY(-2px); color: var(--brand-ink); }
.btn-soft:active { transform: translateY(0); box-shadow: var(--inset); }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; min-width: 46px; border: none; cursor: pointer;
  color: var(--text); background: var(--surface); border-radius: 50%;
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.icon-btn.soft { box-shadow: var(--soft-sm); }
.icon-btn:hover { color: var(--brand-ink); transform: translateY(-1px); }
.icon-btn:active { box-shadow: var(--inset); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 16px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 150px; height: auto; }
.nav-desktop { display: none; gap: 6px; margin-left: auto; }
.nav-desktop a {
  color: var(--text); font-weight: 500; font-size: .95rem;
  padding: 8px 14px; border-radius: 999px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-desktop a:hover { color: var(--brand-ink); background: var(--brand-soft); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-desktop + .header-actions { margin-left: 0; }

.lang-toggle { display: inline-flex; padding: 4px; border-radius: 999px; }
.lang-btn {
  border: none; background: transparent; cursor: pointer; font-family: inherit;
  font-weight: 600; font-size: .85rem; color: var(--text-muted);
  min-width: 40px; height: 38px; border-radius: 999px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.lang-btn.is-active { color: #14210a; background: var(--brand); box-shadow: var(--soft-sm); }

.ico-moon { display: none; }
[data-theme="dark"] .ico-sun { display: none; }
[data-theme="dark"] .ico-moon { display: block; }

.menu-btn { display: inline-flex; }
.nav-mobile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 24px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  color: var(--text); font-weight: 500; padding: 12px 14px; border-radius: var(--radius-sm);
  min-height: 44px; display: flex; align-items: center;
}
.nav-mobile a:hover { background: var(--brand-soft); color: var(--brand-ink); }

/* ---------- hero ---------- */
.hero { padding: 56px 0 40px; }
.hero-grid { display: grid; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 600; color: var(--brand-ink); letter-spacing: .02em;
  margin-bottom: 22px;
}
.hero-title { font-size: clamp(2.4rem, 7vw, 4rem); }
.hero-role {
  font-size: clamp(1.05rem, 3vw, 1.45rem); font-weight: 600;
  color: var(--brand-ink); margin: 8px 0 18px;
}
.hero-lead { font-size: 1.08rem; color: var(--text-muted); max-width: 56ch; margin: 0 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual { display: flex; justify-content: center; }
.hero-badge {
  display: grid; place-items: center; width: 230px; height: 230px; border-radius: 32px;
}
.hero-badge img { width: 150px; }

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: color-mix(in srgb, var(--bg) 70%, var(--surface)); }
.kicker {
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700;
  color: var(--brand-ink); margin: 0 0 10px;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.section-lead { color: var(--text-muted); max-width: 60ch; margin: 0 0 32px; font-size: 1.05rem; }

/* about */
.about-grid { display: grid; gap: 32px; margin-top: 26px; }
.about-text p { color: var(--text-muted); font-size: 1.06rem; margin: 0 0 16px; max-width: 62ch; }
.stat-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat { padding: 22px; text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 700; color: var(--brand-ink); }
.stat-label { font-size: .9rem; color: var(--text-muted); }

/* cards grid */
.cards-grid { display: grid; gap: 22px; margin-top: 28px; grid-template-columns: 1fr; }
.card { padding: 28px; }
.card-ico {
  width: 54px; height: 54px; display: grid; place-items: center;
  color: var(--brand-ink); margin-bottom: 18px;
}
.card-title { font-size: 1.18rem; margin-bottom: 12px; }
.card-text { color: var(--text-muted); margin: 0; font-size: 1rem; }
.tag-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list li {
  font-size: .85rem; font-weight: 500; color: var(--text);
  padding: 6px 13px; border-radius: 999px; background: var(--brand-soft);
}

/* domains */
.domain-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.domain { padding: 24px 26px; display: flex; align-items: center; min-height: 80px; }
.domain h3 { font-size: 1.1rem; }
.domain::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand); margin-right: 16px; flex: none;
  box-shadow: 0 0 0 4px var(--brand-soft);
}

/* coming soon */
.coming-soon { margin-top: 28px; padding: 56px 28px; text-align: center; }
.cs-pulse {
  width: 86px; height: 86px; margin: 0 auto 24px; border-radius: 50%;
  display: grid; place-items: center; color: var(--brand-ink);
  background: var(--brand-soft); box-shadow: var(--inset);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.06); opacity: 1; }
}
.cs-title { font-size: 1.6rem; color: var(--brand-ink); margin-bottom: 10px; }
.cs-text { color: var(--text-muted); max-width: 44ch; margin: 0 auto; }

/* contact */
.contact-grid { margin-top: 28px; }
.contact-card { padding: 34px; max-width: 640px; }
.contact-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-ico { width: 46px; height: 46px; min-width: 46px; display: grid; place-items: center; color: var(--brand-ink); }
.contact-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* footer */
.site-footer { border-top: 1px solid var(--border); padding: 48px 0 28px; background: var(--surface); }
.footer-inner { display: flex; flex-direction: column; gap: 28px; }
.footer-tag { color: var(--text-muted); margin: 14px 0 0; max-width: 40ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 4px; }
.footer-nav a { color: var(--text); padding: 8px 12px; border-radius: 999px; font-weight: 500; }
.footer-nav a:hover { color: var(--brand-ink); background: var(--brand-soft); }
.footer-legal { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--border); }
.footer-legal p { color: var(--text-muted); font-size: .88rem; margin: 0; }

/* ---------- legal / privacy ---------- */
.legal-back { display: inline-block; margin-bottom: 20px; font-weight: 600; color: var(--brand-ink); }
.legal-back:hover { text-decoration: underline; }
.legal { max-width: 72ch; padding: 34px; }
.legal > *:first-child { margin-top: 0; }
.legal h2 { font-size: 1.25rem; color: var(--text); margin: 30px 0 12px; }
.legal p { color: var(--text-muted); margin: 0 0 14px; }
.legal ul { color: var(--text-muted); margin: 0 0 14px; padding-left: 22px; }
.legal li { margin: 0 0 8px; }
.legal a { color: var(--brand-ink); }
.legal a:hover { text-decoration: underline; }
.legal .legal-updated { font-size: .88rem; color: var(--text-muted); margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--border); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (min-width: 700px) {
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
@media (min-width: 1000px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .nav-mobile { display: none !important; }
  .hero { padding: 90px 0 70px; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
  .about-grid { grid-template-columns: 1.3fr 1fr; align-items: center; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .domain-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-badge { width: 290px; height: 290px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
