/* VDkraft — grundstilar
   Mörk, varm och återhållsam. Mässing som enda accent, så den betyder något
   där den används. */

:root {
  --ink:        #0E0D0B;
  --ink-2:      #15130F;
  --ink-3:      #1D1A15;
  --paper:      #F4F0E9;
  --muted:      #A8A093;
  --muted-dim:  #7C7365;
  --brass:      #C9963A;
  --brass-lite: #E3BC72;
  --line:       rgba(244, 240, 233, 0.10);
  --line-soft:  rgba(244, 240, 233, 0.06);

  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --page: 1120px;
  --gutter: clamp(20px, 5vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}

/* ---------- logotyp ---------- */
/* Märket är en bock som också läser som ett V. Bocken för att uppdraget är
   utfört, V:et för VD. Glappet i vinkeln gör att den inte förväxlas med
   varje annan bock. */
.mark { display: block; flex: none; }
.mark .short { stroke: var(--paper); }
.mark .long  { stroke: var(--brass); }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo .soft { color: var(--muted); font-weight: 400; }

/* ---------- topprad ---------- */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 13, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.top .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
}
.nav {
  display: flex;
  gap: 28px;
  margin-inline-start: auto;
  font-size: 15px;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color .18s ease;
}
.nav a:hover { color: var(--paper); }

@media (max-width: 760px) {
  .nav { display: none; }
  .top .wrap { justify-content: space-between; }
}

/* ---------- knappar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-primary {
  background: var(--brass);
  color: #17120A;
}
.btn-primary:hover { background: var(--brass-lite); }
.btn-ghost {
  border-color: var(--line);
  color: var(--paper);
}
.btn-ghost:hover { border-color: rgba(244,240,233,.28); background: rgba(244,240,233,.04); }
.btn:active { transform: translateY(1px); }

.btn-sm { padding: 9px 17px; font-size: 14.5px; }

/* ---------- hjälte ---------- */
.hero {
  padding: clamp(72px, 12vw, 140px) 0 clamp(64px, 9vw, 108px);
  position: relative;
  overflow: hidden;
}
/* Ett svagt mässingssken uppe till höger, så ytan inte är helt platt. */
.hero::before {
  content: "";
  position: absolute;
  top: -340px; right: -200px;
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(201,150,58,.13), transparent 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.hero h1 {
  font-size: clamp(50px, 10vw, 104px);
  margin: 22px 0 0;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-lite);
}
.lead {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--muted);
  max-width: 52ch;
  margin-top: 26px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}
.fineprint {
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted-dim);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .01em;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
  flex: none;
}

/* ---------- sektioner ---------- */
section { scroll-margin-top: 88px; }

.band {
  padding: clamp(64px, 9vw, 112px) 0;
  border-top: 1px solid var(--line-soft);
}
.band-raised { background: var(--ink-2); }

.section-head { max-width: 58ch; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head h2 {
  font-size: clamp(32px, 5vw, 46px);
  margin-top: 16px;
}
.section-head p { color: var(--muted); margin-top: 16px; font-size: 18px; }

/* ---------- förmågor ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
}
.cell {
  background: var(--ink);
  padding: 34px 30px 36px;
}
.band-raised .cell { background: var(--ink-2); }
.cell h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.cell p { color: var(--muted); font-size: 15.5px; line-height: 1.62; }
.cell .num {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  color: var(--brass);
  letter-spacing: .08em;
  margin-bottom: 20px;
}

/* ---------- steg ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(28px, 4vw, 52px);
}
.step { border-top: 2px solid var(--brass); padding-top: 22px; }
.step h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 9px;
}
.step p { color: var(--muted); font-size: 15.5px; }
.step .num {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--brass);
  display: block;
  margin-bottom: 14px;
}

/* ---------- förtroende ---------- */
.claims { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.claims li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-soft);
}
.claims li:first-child { border-top: 1px solid var(--line-soft); }
.claims svg { margin-top: 3px; }
.claims strong { font-weight: 600; display: block; margin-bottom: 3px; }
.claims span { color: var(--muted); font-size: 15.5px; }

/* ---------- avslut ---------- */
.closer { text-align: center; }
.closer h2 { font-size: clamp(34px, 6vw, 56px); }
.closer p { color: var(--muted); margin: 20px auto 0; max-width: 46ch; }
.closer .cta-row { justify-content: center; }

/* ---------- sidfot ---------- */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 48px 0 60px;
  font-size: 14.5px;
  color: var(--muted-dim);
}
.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 24px; margin-inline-start: auto; }
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- textsidor (policy, villkor) ---------- */
.doc { padding: clamp(52px, 8vw, 92px) 0 clamp(64px, 9vw, 100px); }
.doc .wrap { max-width: 740px; }
.doc h1 { font-size: clamp(36px, 6vw, 52px); }
.doc .updated { color: var(--muted-dim); font-size: 14.5px; margin-top: 18px; }
.doc h2 {
  font-size: 23px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.doc p, .doc li { color: var(--muted); font-size: 16.5px; }
.doc p { margin-top: 16px; }
.doc ul { margin: 16px 0 0; padding-inline-start: 22px; }
.doc li { margin-top: 9px; }
.doc strong { color: var(--paper); font-weight: 600; }
.doc a { color: var(--brass-lite); text-underline-offset: 3px; }

.note {
  border: 1px dashed rgba(201,150,58,.45);
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 26px;
  background: rgba(201,150,58,.05);
}
.note p { margin: 0; color: var(--brass-lite); font-size: 15px; }

:focus-visible {
  outline: 2px solid var(--brass-lite);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: var(--gutter);
  top: 12px;
  z-index: 60;
  background: var(--brass);
  color: #17120A;
  padding: 10px 18px;
  border-radius: 999px;
}
