:root {
  color-scheme: dark;
  --ink: #f5f4ef;
  --muted: #aaa99f;
  --bg: #0c0e0d;
  --panel: #151816;
  --line: rgba(255,255,255,.10);
  --green: #9bd06f;
  --green-deep: #5f9f45;
  --amber: #e4b866;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(95,159,69,.17), transparent 28rem),
    radial-gradient(circle at 90% 80%, rgba(228,184,102,.10), transparent 26rem),
    var(--bg);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; border-radius: 6px; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 760; letter-spacing: -.03em; }
.brand-mark { width: 38px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.04); color: var(--green); font: 700 18px/1 Georgia, serif; }
.language-nav { display: flex; flex-wrap: wrap; gap: 6px; }
.language-nav a { padding: 7px 10px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 700; border-radius: 999px; }
.language-nav a:hover, .language-nav a[aria-current="page"] { color: var(--ink); background: rgba(255,255,255,.08); }
.hero { min-height: calc(100vh - 98px); display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(44px, 8vw, 100px); padding: 70px 0 110px; }
.eyebrow { margin: 0 0 18px; color: var(--green); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
h1 { margin: 0; max-width: 760px; font: 500 clamp(48px, 8vw, 92px)/.95 Georgia, "Times New Roman", serif; letter-spacing: -.055em; }
.lead { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 20px; border: 1px solid var(--green); border-radius: 999px; background: var(--green); color: #10140e; text-decoration: none; font-weight: 800; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: #b0df88; }
.text-link { color: var(--muted); text-decoration: none; font-weight: 700; }
.text-link:hover { color: var(--ink); }
.product-card { position: relative; overflow: hidden; min-height: 520px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(30,35,31,.96), rgba(15,17,16,.96)); box-shadow: var(--shadow); }
.product-card::before, .product-card::after { content: ""; position: absolute; border: 1px solid rgba(155,208,111,.28); border-radius: 50%; }
.product-card::before { width: 430px; height: 220px; left: -110px; top: 170px; transform: rotate(-22deg); }
.product-card::after { width: 360px; height: 160px; right: -160px; top: 50px; transform: rotate(28deg); }
.pin { position: absolute; width: 24px; height: 24px; border: 7px solid var(--green); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); filter: drop-shadow(0 4px 8px #000); }
.pin::after { content: ""; position: absolute; inset: 1px; background: var(--panel); border-radius: 50%; }
.pin-one { left: 24%; top: 36%; }
.pin-two { right: 24%; bottom: 25%; border-color: var(--amber); }
.product-meta { position: absolute; inset: auto 34px 34px; z-index: 1; }
.product-meta strong { display: block; font: 500 42px/1 Georgia, serif; }
.product-meta span { display: block; margin-top: 12px; color: var(--muted); }
.gateway { min-height: 100vh; display: grid; place-items: center; padding: 40px 0; }
.gateway-card { width: min(650px, 100%); padding: clamp(28px, 6vw, 56px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(21,24,22,.92); box-shadow: var(--shadow); }
.gateway-card h1 { font-size: clamp(42px, 8vw, 68px); }
.gateway-card .lead { margin-bottom: 34px; }
.lang-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.lang-btn { display: flex; justify-content: space-between; gap: 20px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); text-decoration: none; font-weight: 750; transition: border .2s, transform .2s, background .2s; }
.lang-btn:hover { transform: translateY(-2px); border-color: rgba(155,208,111,.7); background: rgba(155,208,111,.07); }
.lang-btn:last-child:nth-child(odd) { grid-column: 1 / -1; }
.footer { padding: 25px 0 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  .language-nav { justify-content: flex-end; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding: 55px 0 80px; }
  .product-card { min-height: 390px; }
}
@media (max-width: 480px) {
  .shell { width: min(100% - 28px, 1120px); }
  .site-header { display: block; }
  .language-nav { justify-content: flex-start; margin-top: 18px; }
  .lang-grid { grid-template-columns: 1fr; }
  .lang-btn:last-child:nth-child(odd) { grid-column: auto; }
}
.brand{gap:14px}.brand-mark{position:relative;flex:0 0 44px;width:44px;height:44px;aspect-ratio:auto;overflow:hidden;border-color:rgba(155,208,111,.28);border-radius:14px;background:linear-gradient(145deg,rgba(155,208,111,.13),rgba(255,255,255,.025));color:transparent;font-size:0}.brand-mark::after{content:"W";position:absolute;inset:0;display:grid;place-items:center;color:var(--green);font:italic 700 23px/1 Georgia,serif}.brand>span:last-child{font:600 20px/1.1 Georgia,"Times New Roman",serif;letter-spacing:-.025em}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
