:root {
  --bg: #0a0c10;
  --bg-2: #11141a;
  --bg-3: #171b23;
  --line: #21262f;
  --line-2: #2f3641;
  --text: #f4f6f9;
  --text-2: #98a2b1;
  --text-3: #646d7c;
  --accent: #4d9dff;
  --accent-2: #2a7ce0;
  --ok: #35d399;
  --nej: #ff6b6b;
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-weight: 600; line-height: 1.12; letter-spacing: -0.03em; }
h1 { font-size: clamp(36px, 5.6vw, 60px); }
h2 { font-size: clamp(26px, 3.6vw, 38px); }
h3 { font-size: 19px; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.kicker {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 12px;
}
.sub { color: var(--text-2); margin: 12px 0 0; max-width: 54ch; }

.btn {
  display: inline-block; padding: 12px 24px; border-radius: var(--radius);
  border: 1px solid var(--line-2); font-size: 15px; font-weight: 500;
  transition: background .15s, border-color .15s, transform .1s;
}
.btn:hover { background: var(--bg-3); border-color: var(--text-3); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #04101f; font-weight: 600; }
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn-ghost { border-color: transparent; color: var(--text-2); }
.btn-ghost:hover { color: var(--text); background: var(--bg-3); }

.topbar {
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20;
  background: rgba(10,12,16,.82); backdrop-filter: blur(12px);
}
.topbar-in { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo { font-weight: 600; font-size: 17px; letter-spacing: -0.03em; }
.topbar nav { display: flex; gap: 30px; font-size: 14.5px; color: var(--text-2); }
.topbar nav a { transition: color .15s; }
.topbar nav a:hover { color: var(--text); }

.hero { position: relative; padding: 88px 0 96px; border-bottom: 1px solid var(--line); overflow: hidden; }
.glow {
  position: absolute; top: 12%; right: -6%; width: 780px; height: 560px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(77,157,255,.20), rgba(77,157,255,.05) 55%, transparent 78%);
}
.hero-in {
  position: relative; display: grid; grid-template-columns: 1fr 1.02fr;
  gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500;
  color: var(--text-2); background: var(--bg-2); border: 1px solid var(--line);
  padding: 6px 14px 6px 11px; border-radius: 100px; margin-bottom: 22px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(53,211,153,.16); }
.hero h1 { margin-bottom: 20px; }
.hero .lede { color: var(--text-2); font-size: 18px; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 40px; }

.hero-facts { display: flex; flex-wrap: wrap; gap: 34px; list-style: none; }
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-size: 16px; font-weight: 600; }
.hero-facts span { font-size: 13px; color: var(--text-3); }

.hero-img img { filter: drop-shadow(0 26px 60px rgba(0,0,0,.65)); }

.picker { padding: 84px 0; border-bottom: 1px solid var(--line); }
.picker-box {
  margin-top: 28px; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 16px; padding: 26px; max-width: 660px;
}
.picker-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.picker-grid label { display: flex; flex-direction: column; gap: 8px; }
.picker-grid span { font-size: 13px; font-weight: 500; color: var(--text-2); }

select {
  background: var(--bg-3); color: var(--text); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 12px 13px; font-size: 15px; font-family: inherit;
  appearance: none; cursor: pointer; transition: border-color .15s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%2398a2b1' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 11px;
}
select:hover:not(:disabled) { border-color: var(--text-3); }
select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
select:disabled { opacity: .4; cursor: not-allowed; }

.resultat { margin-top: 20px; padding: 18px 20px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--bg-3); }
.resultat.ja { border-color: rgba(53,211,153,.35); background: rgba(53,211,153,.06); }
.resultat.nej { border-color: rgba(255,107,107,.35); background: rgba(255,107,107,.05); }
.resultat h3 { margin-bottom: 5px; font-size: 16.5px; }
.resultat p { color: var(--text-2); font-size: 14.5px; }
.resultat .btn { margin-top: 15px; padding: 9px 18px; font-size: 14px; }

.produkter { padding: 84px 0; border-bottom: 1px solid var(--line); }
.spec { color: var(--text-3); font-size: 13.5px; margin-top: 5px; }
.pris { font-size: 38px; font-weight: 600; letter-spacing: -0.04em; margin-bottom: 22px; }
.pris span { font-size: 16px; color: var(--text-2); font-weight: 400; letter-spacing: 0; }

.produkt-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 32px; max-width: 760px;
  background: var(--bg-2); border: 1px solid rgba(77,157,255,.4); border-radius: 16px; overflow: hidden;
}
.panel-vanster { padding: 32px; background: linear-gradient(180deg, rgba(77,157,255,.06), transparent 60%); }
.panel-namn { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.panel-vanster .spec { margin: 6px 0 20px; }
.panel-vanster .pris { font-size: 42px; margin-bottom: 6px; }
.pris-not { font-size: 13px; color: var(--text-3); margin-bottom: 22px; }
.panel-vanster .btn { width: 100%; text-align: center; }
.panel-hoger { list-style: none; padding: 32px; border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.panel-hoger li { padding: 8px 0 8px 26px; position: relative; font-size: 14.5px; color: var(--text-2); }
.panel-hoger li::before {
  content: ""; position: absolute; left: 3px; top: 16px; width: 10px; height: 5px;
  border-left: 1.5px solid var(--ok); border-bottom: 1.5px solid var(--ok); transform: rotate(-45deg);
}


.visning { padding: 84px 0; border-bottom: 1px solid var(--line); }
.bild-stor {
  margin-top: 32px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-2);
}
.bild-stor img { width: 100%; }
.bild-liten { margin-top: 20px; max-width: 560px; }
.bild-liten img {
  width: 100%; border-radius: 12px; border: 1px solid var(--line); background: var(--bg-2);
}
.bild-liten figcaption { margin-top: 12px; font-size: 13.5px; color: var(--text-3); line-height: 1.6; }

.lada { padding: 84px 0; border-bottom: 1px solid var(--line); }
.bild-lada {
  margin-top: 32px; background: #fff; border-radius: 16px; padding: 14px;
  border: 1px solid var(--line-2);
}
.bild-lada img { width: 100%; }
.lada-lista {
  list-style: none; counter-reset: d; margin-top: 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 16px;
}
.lada-lista li {
  counter-increment: d; position: relative; padding-left: 24px;
  font-size: 14px; color: var(--text-2);
}
.lada-lista li::before {
  content: counter(d); position: absolute; left: 0; top: 1px;
  width: 17px; height: 17px; border-radius: 50%; background: var(--bg-3);
  border: 1px solid var(--line-2); color: var(--text-3);
  font-size: 10px; line-height: 15px; text-align: center; font-weight: 500;
}

.matt { padding: 84px 0; border-bottom: 1px solid var(--line); }
.matt-in { display: grid; grid-template-columns: 1fr .82fr; gap: 60px; align-items: center; }
.matt-lista { display: flex; gap: 40px; margin-top: 28px; }
.matt-lista dt { font-size: 13px; color: var(--text-3); margin-bottom: 4px; }
.matt-lista dd { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.matt-svg { width: 100%; max-width: 380px; justify-self: center; }
.matt-svg .box { fill: var(--bg-2); stroke: var(--line-2); stroke-width: 1.5; }
.matt-svg .screen { fill: #05070b; stroke: var(--line-2); stroke-width: 1; }
.matt-svg .knob { fill: var(--bg-3); stroke: var(--line-2); stroke-width: 1; }
.matt-svg .dim { stroke: var(--text-3); stroke-width: 1; fill: none; }
.matt-svg .dim-t { fill: var(--text-2); font-size: 11px; font-family: inherit; }

.passform { padding: 84px 0; }
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; margin-top: 34px; }
.col { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
h3.ok { color: var(--ok); margin-bottom: 6px; }
h3.nej { color: var(--nej); margin-bottom: 6px; }
.lista { list-style: none; }
.lista li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 500;
}
.lista li:last-child { border-bottom: 0; }
.lista span { font-size: 13px; color: var(--text-3); font-weight: 400; text-align: right; }
.nejlista li { color: var(--text-2); font-weight: 400; }
.varning {
  margin-top: 22px; padding: 15px 17px; background: rgba(255,107,107,.06);
  border: 1px solid rgba(255,107,107,.22); border-radius: 12px;
  font-size: 13.5px; color: var(--text-2); line-height: 1.6;
}
.varning strong { color: var(--text); font-weight: 500; }
.varning a { color: var(--accent); }

.footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-in { display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: flex-start; }
.small { font-size: 13.5px; color: var(--text-3); }
.footer .logo { margin-bottom: 5px; }
.footer nav { display: flex; flex-direction: column; gap: 9px; text-align: right; }
.footer nav a { transition: color .15s; }
.footer nav a:hover { color: var(--text); }

.doc { padding: 60px 0 40px; max-width: 700px; }
.doc h1 { font-size: 34px; margin-bottom: 10px; }
.doc h2 { font-size: 20px; margin: 34px 0 10px; }
.doc p, .doc li { color: var(--text-2); margin-bottom: 12px; }
.doc ul { padding-left: 20px; }
.doc .todo {
  background: rgba(255,107,107,.07); border: 1px solid rgba(255,107,107,.28);
  border-radius: 12px; padding: 15px 17px; color: var(--nej); font-size: 14px; margin-bottom: 30px;
}
.doc a { color: var(--accent); }
.back { display: inline-block; margin-bottom: 26px; color: var(--text-2); font-size: 14px; }
.back:hover { color: var(--text); }

@media (max-width: 900px) {
  .hero-in, .matt-in, .produkt-panel { grid-template-columns: 1fr; gap: 44px; }
  .produkt-panel { gap: 0; }
  .panel-hoger { border-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .hero { padding: 60px 0 68px; }
  .hero-img { order: -1; max-width: 480px; }
  .glow { right: -30%; top: 0; }
  .matt-svg { max-width: 320px; justify-self: start; }
}
@media (max-width: 700px) {
  .lada-lista { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .topbar nav { display: none; }
  .footer nav { text-align: left; }
  .hero-facts { gap: 22px; }
  .matt-lista { gap: 26px; }
}
