:root {
  /* Farver */
  --bg: #000;
  --panel: #0b0f14;
  --text: #eef3f7;
  --muted: #aeb8c2;
  --accent: #49aeb1;
  --border: rgba(255, 255, 255, 0.10);
  
  /* System */
  --radius-card: 18px;
  --radius-btn: 14px;
  --transition: 0.15s ease;
}

/* Reset & Base */
* { box-sizing: border-box; }

html, body { 
  height: 100%; 
  margin: 0; 
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(73,174,177,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 90%, rgba(73,174,177,.10), transparent 55%),
    var(--bg);
  color: var(--text);
  display: grid;
  place-items: center; /* Centrerer kortet både vertikalt og horisontalt */
  padding: 24px;
  line-height: 1.5;
}

/* Card */
.card {
  width: min(520px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}
.card {
  padding-bottom: 5px;
}


/* Header */
.header {
  margin-bottom: 24px;
}

.brand-badge {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin-left: -35px; /* Bevarer dit oprindelige offset */
  margin-bottom: 12px;
}

.role {
  margin: 0;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .2px;
}

.company {
  margin: 4px 0 0;
  font-size: 1rem;
  color: var(--text);
  opacity: .85;
}

/* Actions Grid */
.actions {
  display: grid;
  gap: 12px;
}

.btn {
  display: flex;
  flex-direction: column; /* Giver bedre læsbarhed på mobilen */
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 14px 18px;
  font-size: 15px;
  transition: 
    transform 0.1s ease, 
    border-color var(--transition), 
    background var(--transition);
  word-break: break-all;
}

.btn span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
  margin-bottom: 2px;
}

.btn:hover, .btn:focus-visible {
  outline: none;
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
  border-color: var(--accent);
}

.btn.primary {
  background: rgba(73,174,177,.15);
  border-color: rgba(73,174,177,.4);
}

.btn.secondary {
  color: var(--muted);
}

/* Footer */
.footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.footer small {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover { transform: none; }
}

/* footer */
.footer {
  margin-top: 15px;
  padding-top: 0px;
  color: var(--muted);
  opacity: 0.9;
  display: flex;
  justify-content: center;
  font-size: 10px;
}