/* ===========================
   Skrabeloddet.dk – Global CSS
   Clean, neutral, “analysis/guide” look
   =========================== */

:root{
  --bg: #0b1220;
  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted-2: rgba(255,255,255,.58);

  --brand: #ffb000;
  --brand-2: #4aa3ff;
  --good: #35d07f;
  --warn: #ffcc66;

  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --shadow-soft: 0 8px 20px rgba(0,0,0,.22);

  --radius: 16px;
  --radius-lg: 22px;

  --container: 1120px;
  --gap: 18px;
  --gap-lg: 26px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

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

html { scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(74,163,255,.22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(255,176,0,.18), transparent 60%),
    radial-gradient(800px 500px at 50% 90%, rgba(53,208,127,.12), transparent 60%),
    linear-gradient(180deg, #070b14 0%, #0b1220 40%, #060a12 100%);
  line-height: 1.55;
}

img{ max-width:100%; height:auto; display:block; }

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

section{ padding: 56px 0; }
section + section{ border-top: 1px solid rgba(255,255,255,.06); }

h1,h2,h3{
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
h1{ font-size: clamp(28px, 3.2vw, 44px); }
h2{ font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 18px; }
h3{ font-size: clamp(16px, 1.4vw, 18px); color: rgba(255,255,255,.90); }

p{ margin: 0 0 14px; color: var(--muted); }
strong{ color: rgba(255,255,255,.95); font-weight: 650; }

.muted{ color: var(--muted-2); font-size: .95rem; }

/* Layout helpers */
.grid{ display: grid; gap: var(--gap); }
.grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

@media (max-width: 960px){
  section{ padding: 44px 0; }
  .grid--4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px){
  .grid--2, .grid--4{ grid-template-columns: 1fr; }
}

/* Cards / Surfaces */
.card,
.hub-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  backdrop-filter: blur(10px);
}
.hub-card{ position: relative; overflow: hidden; }
.hub-card::before{
  content:"";
  position:absolute;
  inset: -1px;
  background:
    radial-gradient(420px 220px at 20% 10%, rgba(74,163,255,.18), transparent 55%),
    radial-gradient(420px 220px at 90% 0%, rgba(255,176,0,.14), transparent 55%);
  opacity:.75;
  pointer-events:none;
}
.hub-card > *{ position: relative; }

.hub-card h3 a{ display:inline-flex; align-items:center; gap: 10px; }
.hub-card h3 a::after{
  content:"→";
  font-size: 1.05em;
  opacity:.75;
  transform: translateY(-1px);
}
.hub-card p{ margin-bottom: 12px; }

.hub-links{
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
}
.hub-links li{ margin: 6px 0; }
.hub-links a{
  color: rgba(255,255,255,.88);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.22);
}
.hub-links a:hover{ border-bottom-color: rgba(255,255,255,.45); }

/* Hero */
#hero{ padding-top: 64px; }
.hero__header{
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero__header::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(680px 360px at 15% 10%, rgba(74,163,255,.24), transparent 58%),
    radial-gradient(680px 360px at 90% 0%, rgba(255,176,0,.18), transparent 60%);
  pointer-events:none;
}
.hero__header > *{ position: relative; }

.hero__lead{
  font-size: 1.05rem;
  max-width: 78ch;
  color: rgba(255,255,255,.78);
}
.hero__trust{
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 14px;
}

/* Pill links */
.pill-links{
  list-style:none;
  padding:0;
  margin: 18px 0 6px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.pill-links a{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.90);
  font-weight: 600;
  font-size: .95rem;
  text-decoration:none;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.pill-links a:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.07);
  text-decoration:none;
}

/* Checklists / bullets */
.checklist{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.checklist li{
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,.80);
}
.checklist li::before{
  content:"";
  width: 16px;
  height: 16px;
  position:absolute;
  left:0;
  top: 3px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, rgba(53,208,127,.95), rgba(53,208,127,.35));
  box-shadow: 0 0 0 3px rgba(53,208,127,.12);
}

.bullets{ margin: 0; padding-left: 18px; color: rgba(255,255,255,.78); }
.bullets li{ margin: 7px 0; }

/* Key metrics (dl) */
.key-metrics{ margin: 0; display: grid; gap: 10px; }
.key-metrics > div{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}
.key-metrics dt{ font-weight: 700; color: rgba(255,255,255,.90); }
.key-metrics dd{ margin: 0; color: rgba(255,255,255,.74); }
@media (max-width: 680px){
  .key-metrics > div{ grid-template-columns: 1fr; }
}

/* Note box */
.note{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,176,0,.28);
  background: linear-gradient(180deg, rgba(255,176,0,.12), rgba(255,176,0,.06));
}
.note p{ margin:0; color: rgba(255,255,255,.82); }

/* Buttons */
.cta-row{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,176,0,.95), rgba(255,176,0,.78));
  color: #151515;
  font-weight: 750;
  text-decoration:none;
  box-shadow: 0 10px 24px rgba(255,176,0,.18);
  transition: transform .12s ease, filter .12s ease;
}
.button:hover{ transform: translateY(-1px); filter: brightness(1.03); text-decoration:none; }
.button--secondary{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  box-shadow: none;
}
.button--secondary:hover{ background: rgba(255,255,255,.08); }

/* FAQ */
.faq{ display:grid; gap: 10px; }
.faq details{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.faq summary{
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 720;
  color: rgba(255,255,255,.90);
  list-style:none;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"+";
  font-size: 1.25rem;
  color: rgba(255,255,255,.70);
  line-height: 1;
}
.faq details[open] summary::after{ content:"–"; }
.faq details > p{
  padding: 0 16px 16px;
  margin: 0;
  color: rgba(255,255,255,.76);
}

/* Accessibility / Focus */
:focus-visible{
  outline: 3px solid rgba(74,163,255,.45);
  outline-offset: 3px;
  border-radius: 10px;
}
