/* Borgsjø / Media Control — landing (utkast, gjenbrukte visuals) */
:root {
  --bg: #0b0c0e;
  --bg-elevated: #14161a;
  --bg-card: #1a1d23;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f2f3f5;
  --muted: #a8b0bc;
  --accent: #c8102e;
  --accent-hover: #e01838;
  --accent-soft: rgba(200, 16, 46, 0.14);
  --mc: #c44db8;
  --mc-soft: rgba(196, 77, 184, 0.16);
  --steel: #8b939e;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --max: 1100px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

.draft-banner {
  background: #2a1a10;
  color: #f0c9a0;
  text-align: center;
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid rgba(240, 201, 160, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(11, 12, 14, 0.82);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo img { height: 40px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav a:hover { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.22); }

.hero {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(196, 77, 184, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(200, 16, 46, 0.12), transparent 50%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 0.7rem 0.3rem 0.3rem;
  border-radius: 999px;
  background: var(--mc-soft);
  color: #efb6e8;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 700;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-note {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--steel);
}

.hero-shot {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #0a0c12;
}
.hero-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-shot figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
  color: var(--steel);
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

section { padding: 3.75rem 0; }
.section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.section-head h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.problem {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
}
.card .num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}
.card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.feature {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-shot {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0c12;
  border-bottom: 1px solid var(--border);
}
.feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.feature-body { padding: 1.1rem 1.2rem 1.25rem; }
.feature-body h3 { margin: 0 0 0.35rem; font-size: 1.02rem; }
.feature-body p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.arena-band {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.arena-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}
.arena-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.arena-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.arena-photo figcaption {
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  color: var(--steel);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.arena-copy h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.arena-copy p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
.gallery figcaption {
  padding: 0.55rem 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.products-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1rem;
}
.product {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  padding: 1.5rem;
  background: var(--bg-elevated);
}
.product.primary {
  background: linear-gradient(165deg, #1c1422 0%, #16181d 55%, #14161a 100%);
  border-color: rgba(196, 77, 184, 0.35);
}
.product-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.product-head img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.product .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #efb6e8;
  margin-bottom: 0.35rem;
}
.product .tag.soon { color: var(--steel); }
.product h3 { margin: 0; font-size: 1.3rem; }
.product p {
  margin: 0 0 1rem;
  color: var(--muted);
}
.product ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.product li {
  color: #d5dae2;
  font-size: 0.94rem;
  padding-left: 1.15rem;
  position: relative;
}
.product li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--mc);
}
.product.soon li::before { background: var(--steel); }

.cta { padding: 4rem 0; }
.cta-box {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(196, 77, 184, 0.18), transparent 50%),
    var(--bg-elevated);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
}
.cta-box h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}
.cta-box p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: flex-end; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  color: var(--steel);
  font-size: 0.88rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-brand img { height: 28px; width: auto; opacity: 0.9; }

@media (max-width: 900px) {
  .nav .hide-sm { display: none; }
  .hero-grid,
  .problem-grid,
  .features-grid,
  .arena-layout,
  .gallery,
  .products-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .cta-actions { justify-content: flex-start; }
}
