
  :root {
    --bg: #05070b;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --accent: #3b82f6;
    --accent2: #22c55e;
    --border: #1f2937;
    --card: #111827;
  }

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

  body {
    background: radial-gradient(circle at top, #111827 0, #020617 50%, #000 100%);
    color: var(--text);
    font-family: system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }

  header {
    position: sticky;
    top: 0;
    background: rgba(10,15,24,0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(31,41,55,0.7);
    z-index: 100;
  }

  .nav {
    max-width: 1120px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo img { width: 32px; height: 32px; }

  .logo-text-main {
    font-size: 1.00rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
  }

  .logo-text-sub {
    font-size: 0.49rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--muted);
    margin-top: -4px;
  }

  nav a {
    margin-left: 28px;
    color: var(--muted);
    font-size: 0.9rem;
  }
  nav a:hover { color: #e5e7eb; }

  /* HERO SECTION */
  .hero {
    max-width: 1120px;
    margin: auto;
    padding: 90px 20px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }

  h1 {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .highlight {
    background: linear-gradient(135deg, #3b82f6, #22c55e);
    -webkit-background-clip: text;
    color: transparent;
  }


  .subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 28px;
  }

  .btn-primary {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border: none;
    padding: 12px 30px;
    border-radius: 999px;
    color: white;
    cursor: pointer;
    font-size: 0.95rem;
    margin-right: 14px;
    box-shadow: 0 8px 30px rgba(37,99,235,0.4);
  }

  .graphic-box {
    width: 100%;
    height: 350px;
    background: #0d1320;
    border-radius: 28px;
    border: 1px solid #1f2937;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  }

  /* Soft glow in background */
  .graphic-box::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59,130,246,0.45), transparent 70%);
    top: -80px;
    left: -60px;
    filter: blur(40px);
  }

  .graphic-box::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(34,197,94,0.45), transparent 70%);
    bottom: -60px;
    right: -40px;
    filter: blur(40px);
  }

  /* SVG GRID */
  .hero-svg {
    position: absolute;
    inset: 0;
    opacity: 0.22;
  }

  /* FLOATING NODES */
  .node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg,#3b82f6,#06b6d4);
    border-radius: 50%;
    box-shadow: 0 0 12px #3b82f6;
    animation: float 6s infinite ease-in-out alternate;
  }

  .node2 {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg,#22c55e,#2dd4bf);
    box-shadow: 0 0 10px #22c55e;
    animation: float2 7s infinite ease-in-out alternate;
  }

  @keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(-22px); }
  }
  @keyframes float2 {
    from { transform: translateY(0px); }
    to { transform: translateY(26px); }
  }

  /* TWO CARDS SECTION */
  .section {
    max-width: 1120px;
    margin: auto;
    padding: 60px 20px;
  }

  h2 { font-size: 2rem; margin-bottom: 20px; }

  .twocols {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 280px;
    background: #111827;
    border: 1px solid #1f2937;
    padding: 28px;
    border-radius: 18px;
  }

  footer {
    text-align: center;
    padding: 28px;
    color: var(--muted);
    border-top: 1px solid #1f2937;
    margin-top: 60px;
    background: #06080d;
  }

  /* --- UPDATED RESULT BOX STYLES --- */
  .result-box {
    background: rgba(13, 19, 32, 0.8);
    backdrop-filter: blur(12px); /* Glass effect */
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 0; /* Padding flyttet til inner-container */
    position: relative;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
  }

  /* Scanning animation line */
  .scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 15px var(--accent);
    animation: scan 4s infinite linear;
    z-index: 10;
    opacity: 0.6;
  }

  @keyframes scan {
    0% { transform: translateY(-10px); }
    100% { transform: translateY(400px); }
  }

  /* Header Section */
  .rb-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.02);
  }

  .rb-title {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
  }

  .status-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 99px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    font-weight: 600;
  }

  /* Content Area */
  .rb-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Data Rows */
  .data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
  }

  .data-label {
    font-size: 0.9rem;
    color: #9ca3af;
  }

  .data-value {
    font-family: 'SF Mono', 'Roboto Mono', monospace; /* Teknisk font */
    font-size: 0.95rem;
    color: #e5e7eb;
  }

  /* Utilization Bar (Visualisering av krefter) */
  .util-bar-bg {
    width: 100%;
    height: 6px;
    background: #1f2937;
    border-radius: 3px;
    margin-top: 6px;
    overflow: hidden;
  }

  .util-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 3px;
    position: relative;
  }

  /* Legger til en liten "glød" på tuppen av baren */
  .util-bar-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
    opacity: 0.6;
    box-shadow: 0 0 10px #fff;
  }

  /* Grid for Compliance icons */
  .compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
  }

  .comp-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
  }

  .comp-item.active {
    border-color: rgba(34, 197, 94, 0.3);
    color: #e5e7eb;
  }

  .check { color: var(--accent2); }

  /* Footer info */
  .rb-footer {
    margin-top: auto;
    padding: 15px 24px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.75rem;
    color: #6b7280;
    font-family: monospace;
    display: flex;
    justify-content: space-between;
  }

  /* HIDE mobile menu by default */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0a0f18;
  padding: 20px;
  border-top: 1px solid #1f2937;
}

.mobile-menu a {
  color: var(--text);
  padding: 12px 0;
  font-size: 1.1rem;
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text);
}

/* MOBILE BREAKPOINT */
@media (max-width: 780px) {
  .nav-links {
    display: none; /* Hide desktop menu */
  }

  .hamburger {
    display: block; /* Show mobile hamburger */
  }

  .hero {
    grid-template-columns: 1fr; /* Stack vertically */
    text-align: left;
  }

  .graphic-box {
    margin-top: 30px;
  }

  h1 {
    font-size: 2.2rem;
  }
}

p { color:#9ca3af; max-width:760px; }
