:root{
  --bg:#0b0f14;
  --panel:#0f1622;
  --panel2:#0c121c;
  --text:#e8eef7;
  --muted:#9aa4b2;
  --line:#1b2636;
  --accent:#00e5ff;
  --accent2:#7c4dff;
  --ok:#38d67a;
  --warn:#ffcc66;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(0,229,255,.12), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(124,77,255,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit}
.container{width:min(1100px, 92vw); margin:0 auto}

/* ---------- Accessibility ---------- */
.skip-link{
  position:absolute; left:-9999px; top:auto;
}
.skip-link:focus{
  left:16px; top:16px; z-index:999;
  background:#111a28;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:10px;
}

/* ---------- Header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.72);
  border-bottom:1px solid rgba(27,38,54,.7);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
}

/* HEADER LOGO (ikon) */
.logo-img{
  height:36px;
  width:auto;
  display:block;
  border-radius:12px;
  box-shadow:var(--shadow);
}

.brand-title{font-weight:800; letter-spacing:.4px}
.brand-sub{font-size:12px; color:var(--muted)}

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:10px;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  border-color:rgba(27,38,54,.9);
  background:rgba(15,22,34,.55);
}
.nav a.active{
  color:var(--text);
  border-color:rgba(0,229,255,.25);
  background:rgba(0,229,255,.06);
}

/* ---------- Sections ---------- */
.section{padding:52px 0}
.section.alt{
  background:rgba(15,22,34,.35);
  border-top:1px solid rgba(27,38,54,.6);
  border-bottom:1px solid rgba(27,38,54,.6);
}

h1,h2,h3{margin:0 0 12px}
h1{font-size:clamp(26px,3.2vw,44px)}
h2{font-size:clamp(20px,2.2vw,30px)}
.lead{font-size:clamp(16px,1.4vw,18px); color:var(--muted)}
.muted{color:var(--muted)}
.fineprint{font-size:13px; color:var(--muted)}

/* ---------- Hero ---------- */
.hero{padding:54px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:start;
}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
}

/* HERO LOGO (stort) */
.hero-logo{
  max-width:260px;
  width:100%;
  height:auto;
  margin-bottom:18px;
  opacity:.95;
}

/* ---------- Cards ---------- */
.card{
  background:linear-gradient(180deg, rgba(15,22,34,.92), rgba(12,18,28,.92));
  border:1px solid rgba(27,38,54,.85);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.callout{
  border-left:3px solid rgba(0,229,255,.55);
  background:rgba(0,229,255,.05);
  padding:12px;
  border-radius:12px;
}
.feature-note{
  margin-top:14px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(27,38,54,.9);
  background:rgba(15,22,34,.45);
}
.callout-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.callout-grid .callout{
  margin-top:0 !important;
}
@media (max-width:900px){
  .callout-grid{grid-template-columns:1fr}
}

/* ---------- Grids ---------- */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width:900px){
  .grid-3{grid-template-columns:1fr}
}

/* PRICING GRID (FIXET) */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:14px;
  margin-top:14px;
}

@media (max-width:900px){
  .pricing-grid{grid-template-columns:1fr}
}
.price-card{height:100%}
.plan-badge{
  display:inline-flex;
  align-items:center;
  padding:4px 9px;
  border-radius:999px;
  border:1px solid rgba(0,229,255,.28);
  background:rgba(0,229,255,.10);
  color:var(--text);
  font-size:12px;
  font-weight:800;
  margin-bottom:10px;
}
.plan-badge-hot{
  border-color:rgba(56,214,122,.38);
  background:rgba(56,214,122,.16);
}
.price-card.featured{
  border-color:rgba(56,214,122,.42);
  background:linear-gradient(180deg, rgba(56,214,122,.10), rgba(15,22,34,.92));
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(27,38,54,.9);
  text-decoration:none;
  font-weight:700;
}
.btn.primary{
  border-color:rgba(0,229,255,.35);
  background:linear-gradient(135deg, rgba(0,229,255,.22), rgba(124,77,255,.18));
}
.btn.primary:hover{filter:brightness(1.06)}
.btn.ghost{
  background:rgba(15,22,34,.45);
}
.btn.ghost:hover{background:rgba(15,22,34,.7)}

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 10px;
}
.quick-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:-2px 0 2px;
}
.quick-link{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(27,38,54,.9);
  background:rgba(15,22,34,.55);
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}
.quick-link:hover{
  color:var(--text);
  border-color:rgba(0,229,255,.35);
  background:rgba(0,229,255,.08);
}

/* DISABLED */
.is-disabled{
  opacity:.55;
  pointer-events:none;
  filter:grayscale(.2);
}
.w100{width:100%}

/* ---------- Pills ---------- */
.meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(27,38,54,.9);
  background:rgba(15,22,34,.55);
  font-size:13px;
  color:var(--muted);
}
.pill strong{color:var(--text)}

/* ---------- Small UI helpers ---------- */
.hr{
  height:1px;
  background:rgba(27,38,54,.7);
  margin:16px 0;
}

.badge{
  display:inline-block;
  font-size:12px;
  color:var(--text);
  background: rgba(0,229,255,.10);
  border:1px solid rgba(0,229,255,.22);
  padding:4px 8px;
  border-radius:999px;
  margin-bottom:10px;
}

/* Key/Value rows (Dato / Commit) */
.kv{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:6px 0;
  color:var(--muted);
}
.kv span{font-size:13px}
.kv strong{color:var(--text)}

/* ---------- Footer ---------- */
.site-footer{
  border-top:1px solid rgba(27,38,54,.7);
  padding:18px 0;
  background:rgba(11,15,20,.72);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links a{
  text-decoration:none;
  color:var(--muted);
}
.footer-links a:hover{color:var(--text)}

.release-meta{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:10px;
}

/* ---------- Releases ---------- */
.releases-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 420px));
  gap:18px;
  align-items:start;
}

main{
  min-height:calc(100vh - 160px);
}

/* --- Section headers (hvis du bruger section__header/title/lead) --- */
.section__header{max-width:760px; margin:0 0 26px}
.section__title{
  font-size:clamp(20px,2.2vw,30px);
  letter-spacing:-0.02em;
}
.section__lead{
  margin:0;
  font-size:clamp(16px,1.4vw,18px);
  color:var(--muted);
  line-height:1.65;
}

/* --- Hero (ny HTML bruger hero__*) --- */
.hero__inner{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:start;
}
@media (max-width:900px){
  .hero__inner{grid-template-columns:1fr}
}

.hero__logo{
  max-width:360px;
  width:100%;
  height:auto;
  margin:0 0 18px 0;
  opacity:.95;
}

.hero__title{
  font-size:clamp(26px,3.2vw,44px);
  letter-spacing:-0.03em;
  line-height:1.1;
  margin:0 0 12px 0;
}

.hero__subtitle{
  margin:0 0 14px 0;
  font-size:clamp(16px,1.4vw,18px);
  color:var(--muted);
  line-height:1.7;
  max-width:62ch;
}

.hero__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 10px;
}

/* Brug dine eksisterende pills-look til highlights */
.hero__highlights{
  margin:12px 0 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero__highlights li{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(27,38,54,.9);
  background:rgba(15,22,34,.55);
  font-size:13px;
  color:var(--muted);
}

/* Hero card (genbruger card-look men med lidt ekstra polish) */
.hero__card{
  background:linear-gradient(180deg, rgba(15,22,34,.92), rgba(12,18,28,.92));
  border:1px solid rgba(27,38,54,.85);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.hero__cardRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

/* Du har allerede .badge — men vi sikrer den er pæn her også */
.hero__card .badge{margin-bottom:0}

.hero__mock{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(27,38,54,.9);
  background:rgba(11,15,20,.35);
}

.hero__mockTop{
  display:flex;
  gap:8px;
  padding:10px 12px;
  border-bottom:1px solid rgba(27,38,54,.7);
  background:rgba(15,22,34,.55);
}

.dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(232,238,247,.18);
}

.hero__mockBody{padding:12px}

.hero__mockLine{
  height:10px;
  border-radius:999px;
  background:rgba(232,238,247,.10);
  margin:10px 0;
}
.hero__mockGap{height:10px}

.w-80{width:80%}
.w-70{width:70%}
.w-65{width:65%}
.w-60{width:60%}
.w-50{width:50%}

.hero__cardNote{
  margin:12px 0 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

/* --- Steps (How it works) --- */
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width:900px){
  .steps{grid-template-columns:1fr}
}

.step{
  background:linear-gradient(180deg, rgba(15,22,34,.92), rgba(12,18,28,.92));
  border:1px solid rgba(27,38,54,.85);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.step__icon{font-size:20px; margin-bottom:8px}
.step__title{margin:0 0 8px}
.step__text{margin:0; color:var(--muted); line-height:1.65}

#install .steps{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
  counter-reset:install-step;
}
#install .steps li{
  position:relative;
  padding:10px 12px 10px 42px;
  border-radius:12px;
  border:1px solid rgba(27,38,54,.9);
  background:rgba(15,22,34,.45);
}
#install .steps li::before{
  counter-increment:install-step;
  content:counter(install-step);
  position:absolute;
  left:12px;
  top:10px;
  width:20px;
  height:20px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:800;
  color:var(--text);
  background:rgba(0,229,255,.15);
  border:1px solid rgba(0,229,255,.35);
}

/* --- Pill row (ny HTML) --- */
.pillRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
/* Du har allerede .pill, så vi bruger bare den */

/* --- Trust grid (ny HTML) --- */
.trustGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width:900px){
  .trustGrid{grid-template-columns:1fr}
}

.trustItem{
  background:linear-gradient(180deg, rgba(15,22,34,.92), rgba(12,18,28,.92));
  border:1px solid rgba(27,38,54,.85);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.trustItem__icon{font-size:20px; margin-bottom:8px}
.trustItem__title{margin:0 0 8px}
.trustItem__text{margin:0; color:var(--muted); line-height:1.65}

/* --- Audience (ny HTML) --- */
.audience{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:start;
}
@media (max-width:900px){
  .audience{grid-template-columns:1fr}
}

.audience__list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
}

.audience__item{
  background:linear-gradient(180deg, rgba(15,22,34,.92), rgba(12,18,28,.92));
  border:1px solid rgba(27,38,54,.85);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  color:var(--text);
}

.audience__note{
  background:linear-gradient(180deg, rgba(15,22,34,.92), rgba(12,18,28,.92));
  border:1px solid rgba(27,38,54,.85);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.audience__logoIcon{
  width:48px;
  height:48px;
  border-radius:14px;
  box-shadow:var(--shadow);
}

.audience__text{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

/* --- CTA section (ny HTML) --- */
.section--cta{padding:52px 0}

.cta{
  background:linear-gradient(135deg, rgba(0,229,255,.10), rgba(124,77,255,.08));
  border:1px solid rgba(0,229,255,.18);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.cta__content{max-width:62ch}
.cta__title{margin:0 0 8px}
.cta__text{margin:0; color:var(--muted); line-height:1.65}

.cta__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Genbrug din fineprint klasse */
.cta__fineprint{
  width:100%;
  margin:10px 0 0 0;
  font-size:13px;
  color:var(--muted);
}

/* --- OPTIONAL: Hvis du vil bruge btn--primary/btn--ghost fra min HTML --- */
.btn--primary{ /* map til din .btn.primary */
  border-color:rgba(0,229,255,.35);
  background:linear-gradient(135deg, rgba(0,229,255,.22), rgba(124,77,255,.18));
}
.btn--ghost{ /* map til din .btn.ghost */
  background:rgba(15,22,34,.45);
}
.btn--ghost:hover{background:rgba(15,22,34,.7)}

.auth-wrap{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap:24px;
  width:100%;
  max-width: 1100px;
  margin: 14px auto 0;
}
@media (max-width:900px){
  .auth-wrap{ grid-template-columns:1fr; }
}
