/* thelo.store / thelostore.com — shop door complete bar */
:root {
  --bg: #0a0b0f;
  --bg2: #12151e;
  --card: #12151e;
  --fg: #eef0f6;
  --mut: #9096a8;
  --line: #252a38;
  --acc: #7c9cff;
  --acc-ink: #0a1020;
  --gold: #e7c66e;
  --gold-ink: #1a1408;
  --bad: #f0a0a0;
  --ok: #8fd4a8;
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --wide: 960px;
}
*, *::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.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--acc); text-underline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 11, 15, 0.92);
  backdrop-filter: blur(12px);
  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 small {
  display: block; font-weight: 500; font-size: 11px;
  color: var(--mut); letter-spacing: 0.04em;
}
.nav-links { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 0.88rem; }
.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(--gold); color: var(--gold-ink) !important;
  padding: 7px 13px; border-radius: 999px; font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(58vh, 520px);
  display: grid; align-items: end;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--bg2) center/cover no-repeat;
  filter: brightness(0.5) saturate(0.95);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 15%, var(--bg) 96%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--wide);
  margin: 0 auto; width: 100%;
  padding: 44px 18px 32px;
}
.badge {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acc); font-weight: 700; margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(1.9rem, 5.5vw, 2.85rem);
  line-height: 1.1; letter-spacing: -0.03em;
  font-weight: 750; margin: 0; max-width: 14ch;
}
.hero .lead {
  margin: 14px 0 0;
  color: var(--mut); font-size: 1.05rem; max-width: 42ch;
}
.btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.btn {
  display: inline-block; padding: 12px 18px; border-radius: 12px;
  text-decoration: none; font-weight: 750; font-size: 0.96rem;
  border: 1px solid var(--line); color: var(--fg);
  background: transparent; cursor: pointer; font-family: inherit;
}
.btn.main { background: var(--acc); color: var(--acc-ink); border-color: var(--acc); }
.btn.gold { background: var(--gold); color: var(--gold-ink); border-color: var(--gold); }
.btn.ghost { background: transparent; color: var(--acc); }
.btn:disabled { opacity: 0.55; cursor: wait; }

main.wrap {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 10px 18px 48px;
  display: grid; gap: 14px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
}
.card h2 {
  margin: 0 0 8px;
  font-size: 1.2rem; letter-spacing: -0.02em;
}
.kicker {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acc); font-weight: 700; margin-bottom: 8px;
}
.hint { color: var(--mut); margin: 0 0 12px; max-width: 56ch; }
.list { margin: 0; padding-left: 1.15rem; color: var(--mut); }
.list li { margin: 6px 0; }
.price-line { margin: 10px 0 4px; font-size: 1.05rem; }
.price-line strong { color: var(--fg); }
.grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

label {
  display: block; font-size: 0.88rem; font-weight: 650;
  margin: 12px 0 6px;
}
input, textarea {
  width: 100%;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}
input:focus, textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--acc) 50%, transparent);
  border-color: var(--acc);
}
textarea { min-height: 120px; resize: vertical; }
.msg { margin-top: 12px; font-size: 0.95rem; color: var(--mut); }
.msg.ok { color: var(--ok); }
.msg.err { color: var(--bad); }

footer.site {
  border-top: 1px solid var(--line);
  padding: 26px 18px 40px;
  color: var(--mut); font-size: 0.9rem;
}
.f-inner {
  max-width: var(--wide); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between;
}
footer.site a { color: var(--acc); text-decoration: none; }
footer.site .small { width: 100%; font-size: 0.82rem; margin-top: 6px; }

@media (max-width: 520px) {
  .hero h1 { max-width: 100%; }
}
