/* SpinozAI public face v5 */
:root {
  --bg: #08090c;
  --bg2: #101218;
  --card: #12141c;
  --fg: #f2f0ea;
  --mut: #9a968c;
  --line: #262830;
  --acc: #c4b5fd;
  --gold: #e7c27d;
  --ok: #6ee7b7;
  --bad: #f0a0a0;
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 40rem;
  --wide: 1040px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--acc); text-underline-offset: 3px; }
a:hover { color: #ddd6fe; }
img { max-width: 100%; height: auto; display: block; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 9, 12, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 12px 18px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--fg); font-weight: 800;
}
.brand img {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--line); object-fit: cover;
}
.brand span { color: var(--acc); }
.nav-links { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 0.86rem; }
.nav-links a { color: var(--mut); text-decoration: none; font-weight: 600; }
.nav-links a:hover { color: var(--fg); }
.nav-links a.cta {
  background: var(--ok); color: #06281c !important;
  padding: 6px 12px; border-radius: 999px; font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(56vh, 500px);
  display: grid; align-items: end;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #101218 center/cover no-repeat;
  filter: brightness(0.55) saturate(0.9);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, var(--bg) 96%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--wide);
  margin: 0 auto; width: 100%;
  padding: 48px 18px 36px;
}
.badge {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--acc); margin-bottom: 12px;
}
h1 {
  font-size: clamp(2rem, 6vw, 2.7rem);
  line-height: 1.1; letter-spacing: -0.03em;
  margin: 0 0 14px; font-weight: 800;
}
.lead { color: #c9c4b8; font-size: 1.06rem; max-width: 36rem; margin: 0 0 22px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 28px 18px 72px; }
h2 { font-size: 1.2rem; margin: 0 0 10px; letter-spacing: -0.02em; }

.pol-line {
  font-size: 0.85rem; color: var(--mut);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; background: #0c0e14; margin: 0 0 16px;
}
.pol-line a { color: var(--acc); text-decoration: none; }
.pol-line strong { color: var(--ok); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem 1.35rem;
  margin: 0 0 1rem;
}
.card .num {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 8px;
}
.price {
  font-size: 1.75rem; font-weight: 800; color: var(--ok); margin: 0 0 .75rem;
}
.price.gold { color: var(--gold); }
.price span { font-size: 1rem; font-weight: 500; color: var(--mut); }
.list { margin: 0 0 1rem; padding-left: 1.15rem; color: var(--mut); }
.list li { margin: .3rem 0; }
.note { font-size: 0.88rem; color: var(--mut); margin: 0 0 0.5rem; }

.btns { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 4px; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 800;
  border-radius: 12px; padding: 13px 18px; font-size: 0.95rem;
  border: 1px solid transparent; text-align: center; cursor: pointer;
}
.btn.main { background: var(--ok); color: #06281c; }
.btn.gold { background: var(--gold); color: #1a1408; }
.btn.ghost { border-color: var(--line); color: var(--fg); background: transparent; }
button.btn { border: 0; font: inherit; }
button.btn:disabled { opacity: 0.6; cursor: default; }

label {
  display: block; font-size: 0.78rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--mut); font-weight: 700; margin: 0.85rem 0 0.35rem;
}
input, select, textarea {
  width: 100%; background: #0a0c12; border: 1px solid var(--line); border-radius: 11px;
  color: var(--fg); padding: 0.75rem 0.85rem; font: inherit;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--acc); outline-offset: 1px; }
textarea { min-height: 5.5rem; resize: vertical; }
.msg { margin-top: 0.85rem; font-size: 0.95rem; color: var(--mut); }
.msg.ok { color: var(--ok); }
.msg.err { color: var(--bad); }

footer.site {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 28px 18px 48px;
  border-top: 1px solid var(--line);
  color: var(--mut); font-size: 0.8rem;
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  justify-content: space-between;
}
footer.site a { color: var(--mut); text-decoration: none; }
footer.site a:hover { color: var(--acc); }

@media (max-width: 520px) {
  .nav-links a:not(.cta) { display: none; }
}
