/* Mörkt tema — bakgrund, glas, knappar, inputs. */

.bg {
  position: fixed; inset: 0; z-index: -2;
  background-image: url("/brand/backgrounds/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.65) 100%),
    linear-gradient(to bottom, rgba(15,17,20,0.15) 0%, rgba(15,17,20,0.0) 25%, rgba(15,17,20,0.45) 100%);
}

/* Standard-glas (kort, formulär) */
.glass {
  background: var(--qubint-white-06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--qubint-white-12);
  border-radius: var(--qubint-radius-card);
  box-shadow: var(--qubint-shadow-glass);
}
.glass-strong {
  background: var(--qubint-white-09);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--qubint-radius-card);
  box-shadow: var(--qubint-shadow-glass-strong);
}

/* Primär CTA-pill */
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  background: var(--qubint-accent);
  color: var(--qubint-bg);
  transition: background 0.18s ease, transform 0.18s ease;
}
.btn-pill:hover  { background: var(--qubint-accent-hover); }
.btn-pill:active { background: var(--qubint-accent-active); transform: translateY(1px); }

.btn-ghost {
  background: var(--qubint-white-06);
  border: 1px solid var(--qubint-white-15);
  color: var(--qubint-white-88);
}
.btn-ghost:hover { background: var(--qubint-white-09); }

/* Inputs på mörkt tema */
.input-dark {
  width: 100%;
  padding: 0.7rem 0.95rem;
  background: var(--qubint-white-06);
  border: 1px solid var(--qubint-white-15);
  border-radius: 8px;
  color: #fff;
  font: inherit;
  transition: border-color 0.18s, background 0.18s;
}
.input-dark::placeholder { color: var(--qubint-placeholder); }
.input-dark:focus {
  outline: none;
  border-color: var(--qubint-accent);
  background: var(--qubint-white-09);
}

/* Ikon-bubbla per BRAND.md sektion 6 */
.icon-bubble {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--qubint-accent-tint);
  border: 1px solid var(--qubint-accent-border);
  color: var(--qubint-accent-light);
}
.icon-bubble svg { width: 22px; height: 22px; stroke: currentColor; }
