/* Ostinova — minimal site, wood/amber theme mirroring the app tokens. */
:root {
  --ink: #181410;
  --ink2: #13100c;
  --panel: #211c16;
  --card: #262019;
  --line: #352d23;
  --active: #e8a33d;
  --amber-soft: #f0c074;
  --root: #5fb0a6;
  --text: #efe7d8;
  --text2: #cabfac;
  --muted: #9b9183;
  --faint: #766c5e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink2) 100%);
  color: var(--text);
  font-family: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 720px; margin: 0 auto; padding: 32px 20px 64px; }

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.2px;
  font-size: 20px;
}
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--active);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; letter-spacing: -0.4px; line-height: 1.12; }
h1 { font-size: clamp(32px, 6vw, 44px); margin: 0 0 12px; }
h2 { font-size: 22px; margin: 36px 0 10px; color: var(--amber-soft); }
.lead { font-size: 18px; color: var(--text2); margin: 0 0 28px; }

a { color: var(--active); text-decoration: none; }
a:hover { text-decoration: underline; }

.muted { color: var(--muted); }
.faint { color: var(--faint); font-size: 13px; }

.features { display: grid; gap: 14px; margin: 28px 0; padding: 0; list-style: none; }
.features li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.features li b { color: var(--text); }

.pill {
  display: inline-block;
  font-family: "Spline Sans Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--root);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 18px;
}

.langbar { display: flex; gap: 8px; }
.langbar button {
  font: inherit; font-size: 13px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  cursor: pointer;
}
.langbar button.active { color: var(--ink); background: var(--active); border-color: var(--active); }

.policy h2 { font-size: 19px; }
.policy p, .policy li { color: var(--text2); }
.policy { margin-top: 8px; }

footer.site {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: space-between;
}

[data-lang] { display: none; }
[data-lang].show { display: block; }
