/* ====== Understory-inspirert tema ====== */
:root {
    --us-neon: #f1f97e;
    --us-dark: #050816;
    --us-dark-soft: #111827;
    --us-pill-bg: rgba(35, 39, 31, 0.9);
    --us-text: #f9fafb;
    --us-muted: #9ca3af;
    --us-border-soft: rgba(148, 163, 184, 0.45);
  }
  
  /* Reset-ish */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
  }
  
  body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    color: var(--us-text);
    background: radial-gradient(circle at 20% 0, #1f2933 0, var(--us-dark) 40%, #000 100%);
    display: flex;
    flex-direction: column;
  }
  
  /* ====== Header ====== */
  
  header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem min(5vw, 3.5rem);
    background: linear-gradient(to bottom,
      rgba(5, 8, 22, 0.95),
      rgba(5, 8, 22, 0.55),
      transparent
    );
    backdrop-filter: blur(18px);
  }
  
  .brand h1 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 0.28em;
    font-weight: 800;
    color: var(--us-neon);
  }
  
  .header-actions {
    display: flex;
    gap: 0.75rem;
  }
  
  /* ====== Knapper – Understory-stil pill buttons ====== */
  
  button {
    font-family: inherit;
    font-size: 0.9rem;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition:
      background-color 0.15s ease,
      color 0.15s ease,
      transform 0.12s ease,
      box-shadow 0.12s ease;
    white-space: nowrap;
  }
  
  button:focus-visible {
    outline: 2px solid var(--us-neon);
    outline-offset: 2px;
  }
  
  .primary-btn {
    background: var(--us-neon);
    color: #111827;
    font-weight: 600;
    box-shadow: 0 14px 35px rgba(241, 249, 126, 0.2);
  }
  
  .primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(241, 249, 126, 0.28);
  }
  
  .ghost-btn {
    background: var(--us-pill-bg);
    color: var(--us-text);
    border: 1px solid var(--us-border-soft);
  }
  
  .ghost-btn:hover {
    background: rgba(55, 65, 81, 0.9);
    transform: translateY(-1px);
  }
  
  /* ====== Hero bakgrunn / overlay ====== */
  
  .dark-area {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(5, 8, 22, 1)),
      radial-gradient(circle at 20% 0, rgba(241, 249, 126, 0.16), transparent 50%);
  }
  
  /* Hvis du har et bakgrunnsbilde, kan du legge det på body eller en egen .hero-bg */
  /* f.eks:
  body {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.35), #020617),
      url("/images/your-hero.jpg") center/cover no-repeat fixed;
  }
  */
  
  /* ====== Main hero-seksjon ====== */
  
  .home-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-inline: min(8vw, 5rem);
    padding-top: 6rem; /* offset for fixed header */
    padding-bottom: 4rem;
    position: relative;
  }
  
  .hero-text {
    max-width: 36rem;
  }
  
  .hero-text h2 {
    margin: 0 0 0.75rem 0;
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    line-height: 1.05;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--us-neon);
  }
  
  .hero-text p {
    margin: 0;
    margin-top: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--us-muted);
  }
  
  .hero-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  /* ====== Responsivitet ====== */
  
  @media (max-width: 768px) {
    header {
      padding-inline: 1.2rem;
    }
  
    .brand h1 {
      font-size: 1.1rem;
      letter-spacing: 0.22em;
    }
  
    .header-actions {
      gap: 0.5rem;
    }
  
    .home-container {
      align-items: flex-start;
      padding-top: 7rem;
    }
  
    .hero-text h2 {
      font-size: clamp(2.1rem, 8vw, 2.6rem);
    }
  
    .hero-text p {
      font-size: 0.95rem;
    }
  
    button {
      padding-inline: 1.1rem;
    }
  }