*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue-deep: #0a1628;
    --blue-mid: #0d2244;
    --blue-police: #003087;
    --blue-bright: #0057c8;
    --blue-light: #1a6fe0;
    --accent: #e8c84a;
    --accent-dim: #c9aa2e;
    --white: #f4f6fa;
    --gray: #8a9ab5;
    --gray-dim: #4a5a72;
    --red: #d63d2f;
  }

  html { scroll-behavior: smooth; }

  body {
    background-color: var(--blue-deep);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6vw;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,48,135,0.45) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,87,200,0.15) 0%, transparent 60%),
      linear-gradient(170deg, #0a1628 0%, #0d1e3a 100%);
    z-index: 0;
  }

  .scanner {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
    animation: scan 4s ease-in-out infinite;
    opacity: 0.6;
    z-index: 1;
  }
  @keyframes scan {
    0%   { top: 0%;   opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { top: 100%; opacity: 0; }
  }

  .flash-left, .flash-right {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: flashL 3s ease-in-out infinite;
    z-index: 0;
  }
  .flash-left  { background: var(--blue-bright); top: -100px; left: -100px; }
  .flash-right { background: var(--red); top: -100px; right: -50px; animation-name: flashR; animation-delay: 1.5s; }
  @keyframes flashL { 0%,100% { opacity: 0.05; } 50% { opacity: 0.2; } }
  @keyframes flashR { 0%,100% { opacity: 0.05; } 50% { opacity: 0.18; } }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,87,200,0.18);
    border: 1px solid rgba(0,87,200,0.4);
    border-radius: 3px;
    padding: 6px 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.6s 0.2s forwards;
  }
  .badge-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.4s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

  h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(64px, 13vw, 130px);
    line-height: 0.9;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0;
    animation: fadeUp 0.7s 0.35s forwards;
  }
  h1 .line1 { display: block; color: var(--white); }
  h1 .line2 { display: block; color: var(--accent); }

  .hero-sub {
    font-size: clamp(15px, 2vw, 19px);
    color: var(--gray);
    max-width: 560px;
    line-height: 1.65;
    margin-top: 22px;
    margin-bottom: 38px;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
  }

  .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s 0.65s forwards;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue-bright);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gray);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 3px;
    border: 1px solid var(--gray-dim);
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
    cursor: pointer;
  }
  .btn-secondary:hover { border-color: var(--gray); color: var(--white); transform: translateY(-2px); }

  .hero-stats {
    position: absolute;
    bottom: 48px;
    right: 6vw;
    display: flex;
    gap: 36px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.7s 0.85s forwards;
  }
  .stat-item { text-align: right; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--white);
    line-height: 1;
  }
  .stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
  }
  .stat-divider {
    width: 1px;
    background: var(--gray-dim);
    align-self: stretch;
    opacity: 0.4;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .ticker-wrap {
    background: var(--blue-police);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
  }
  .ticker-label {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    padding: 0 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 3;
    white-space: nowrap;
  }
  .ticker-track {
    display: flex;
    animation: ticker 28s linear infinite;
    padding-left: 140px;
  }
  .ticker-item {
    white-space: nowrap;
    padding: 0 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .ticker-item::before {
    content: '●';
    color: var(--accent);
    font-size: 6px;
  }
  @keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  section { position: relative; z-index: 1; }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: var(--blue-light);
    opacity: 0.5;
  }

  .about {
    padding: 100px 6vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: linear-gradient(180deg, var(--blue-deep) 0%, #0b1a30 100%);
  }

  .about-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.0;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .about-text h2 em { font-style: normal; color: var(--accent); }
  .about-text p {
    color: var(--gray);
    line-height: 1.75;
    font-size: 16px;
    margin-bottom: 16px;
  }
  .about-text p strong { color: var(--white); font-weight: 500; }

  .about-visual {
    position: relative;
  }
  .feed-mockup {
    background: rgba(13,34,68,0.7);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    overflow: hidden;
    backdrop-filter: blur(8px);
  }
  .feed-header {
    background: rgba(0,48,135,0.5);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .feed-logo {
    width: 36px; height: 36px;
    background: var(--blue-police);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 9px;
    letter-spacing: 0.05em;
    color: var(--white);
  }
  .feed-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; }
  .feed-handle { font-size: 12px; color: var(--gray); }

  .feed-post {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    animation: postFade 0.4s ease;
  }
  .feed-post:last-child { border-bottom: none; }
  @keyframes postFade { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: none; } }

  .post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .post-type {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 2px;
  }
  .type-trafikuheld { background: rgba(214,61,47,0.2); color: #ff7b6e; border: 1px solid rgba(214,61,47,0.3); }
  .type-efterlysning { background: rgba(232,200,74,0.15); color: var(--accent); border: 1px solid rgba(232,200,74,0.25); }
  .type-hændelse { background: rgba(0,87,200,0.2); color: #6fa8ff; border: 1px solid rgba(0,87,200,0.3); }

  .post-time { font-size: 11px; color: var(--gray-dim); margin-left: auto; }
  .post-text { font-size: 13px; color: rgba(244,246,250,0.8); line-height: 1.55; }
  .post-source { font-size: 11px; color: var(--blue-light); margin-top: 6px; }

  .how {
    padding: 100px 6vw;
    background: var(--blue-mid);
  }

  .how-header { margin-bottom: 60px; }
  .how-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 54px);
    text-transform: uppercase;
    line-height: 1;
  }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .step {
    background: rgba(10,22,40,0.6);
    padding: 40px 32px;
    position: relative;
    transition: background 0.2s;
  }
  .step:hover { background: rgba(0,87,200,0.12); }
  .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 72px;
    line-height: 1;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 20px;
    right: 24px;
  }
  .step-icon {
    width: 48px; height: 48px;
    background: rgba(0,87,200,0.2);
    border: 1px solid rgba(0,87,200,0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }
  .step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
  }
  .step p { font-size: 14px; color: var(--gray); line-height: 1.65; }

  .features {
    padding: 100px 6vw;
    background: linear-gradient(180deg, #0b1a30 0%, var(--blue-deep) 100%);
  }
  .features-header { margin-bottom: 60px; }
  .features-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 54px);
    text-transform: uppercase;
    line-height: 1;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .feature-card {
    background: rgba(13,34,68,0.5);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 32px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .feature-card:hover { border-color: rgba(0,87,200,0.4); transform: translateY(-3px); }
  .feature-icon { font-size: 28px; margin-bottom: 16px; }
  .feature-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  }
  .feature-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

  .follow-cta {
    padding: 100px 6vw;
    background: var(--blue-police);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .follow-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0,87,200,0.3) 0%, transparent 70%);
  }
  .follow-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
  .follow-cta h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 7vw, 76px);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 20px;
  }
  .follow-cta h2 span { color: var(--accent); }
  .follow-cta p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.6; margin-bottom: 36px; }

  footer {
    background: rgba(5,12,24,0.95);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .footer-brand span { color: var(--accent); }
  .footer-info { font-size: 13px; color: var(--gray-dim); }
  .footer-info a { color: var(--blue-light); text-decoration: none; }
  .footer-info a:hover { text-decoration: underline; }
  .footer-disclaimer {
    width: 100%;
    font-size: 12px;
    color: var(--gray-dim);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 20px;
    margin-top: 4px;
    opacity: 0.7;
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6vw;
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--white);
  }
  .nav-brand span { color: var(--accent); }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gray);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--blue-bright);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 3px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--blue-light) !important; color: var(--white) !important; }

  .hero { padding-top: 80px; }

  @media (max-width: 860px) {
    .about { grid-template-columns: 1fr; gap: 50px; }
    .how-steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-stats { position: static; flex-wrap: wrap; margin-top: 50px; }
    .nav-links { display: none; }
    footer { flex-direction: column; align-items: flex-start; }
  }