/* =======================================================================
   ROOT VARIABLES
   ======================================================================= */
   :root {
    --bg: #000814;
    --bg-alt: #001122;
    --bg-elevated: #001829;
    --bg-highlight: #00223b;
  
    --primary: #53f8ff;
    --primary-soft: rgba(83, 248, 255, 0.2);
  
    --text-main: #f1f5f9;
    --text-muted: #8b9bb0;
    --text-faint: #5f7289;
  
    --border-subtle: rgba(255, 255, 255, 0.08);
  
    --radius: 16px;
    --radius-lg: 22px;
  
    --transition: 0.22s ease;
  
    --shadow-soft: 0 10px 36px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 16px 34px rgba(0, 0, 0, 0.42);
  }
  
  /* =======================================================================
     GLOBAL RESET & BASE STYLES
     ======================================================================= */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* =======================================================================
     LAYOUT WRAPPERS
     ======================================================================= */
  .wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* =======================================================================
     NAVIGATION
     ======================================================================= */
  .header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    background: rgba(0, 12, 26, 0.7);
    z-index: 999;
    border-bottom: 1px solid var(--border-subtle);
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  
  .logo img {
    width: 42px;
    height: 42px;
  }
  
  .brand-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.25;
  }
  
  .brand-text span:first-child {
    font-weight: 600;
    color: var(--primary);
  }
  
  .nav-center {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    gap: 24px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
  }
  
  .nav-links a:hover,
  .nav-links a.nav-current {
    color: var(--primary);
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .flag-toggle {
    display: flex;
    gap: 6px;
  }
  
  .flag {
    width: 24px;
    height: 17px;
    cursor: pointer;
    opacity: 0.45;
    transition: var(--transition);
  }
  
  .flag.active,
  .flag:hover {
    opacity: 1;
  }
  
  /* Mobile nav toggle */
  .nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    color: var(--text-main);
    border: none;
    cursor: pointer;
  }
  
  /* Mobile nav */
  @media (max-width: 860px) {
    .nav-links {
      position: absolute;
      top: 72px;
      right: 0;
      background: #000c1a;
      width: 100%;
      flex-direction: column;
      padding: 16px 20px;
      gap: 16px;
      display: none;
      border-bottom: 1px solid var(--border-subtle);
    }
    .nav-toggle {
      display: block;
    }
  }
  
  /* =======================================================================
     BUTTONS
     ======================================================================= */
  .btn {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
  }
  
  .btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(83, 248, 255, 0.35);
  }
  
  .btn-primary:hover {
    filter: brightness(1.15);
  }
  
  .btn-ghost {
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
  }
  
  .btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .btn-subtle {
    background: var(--primary-soft);
    border: 1px solid transparent;
    color: var(--primary);
  }
  
  .btn-subtle:hover {
    background: rgba(83, 248, 255, 0.3);
  }
  
  /* =======================================================================
     HERO SECTION
     ======================================================================= */
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .hero-eyebrow {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
  }
  
  .hero-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 18px;
    max-width: 600px;
  }
  
  .hero-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }
  
  .hero-badge {
    padding: 8px 14px;
    border-radius: var(--radius);
    background: #00101e;
    border: 1px solid var(--border-subtle);
    font-size: 14px;
  }
  
  .hero-cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
  }
  
  .hero-disclaimer {
    font-size: 12px;
    color: var(--text-faint);
    margin-top: 10px;
  }
  
  .coin-wrapper {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    animation: floatCoin 6s ease-in-out infinite;
  }
  
  @keyframes floatCoin {
    0% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
    100% { transform: translateY(0); }
  }
  
  @media (max-width: 900px) {
    .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .coin-wrapper {
      margin: 0 auto;
    }
  }
  
  /* =======================================================================
     SECTIONS
     ======================================================================= */
  .section {
    padding: 70px 0;
  }
  
  .section-alt {
    background: var(--bg-alt);
  }
  
  .section-header {
    margin-bottom: 22px;
  }
  
  .section-kicker {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
  }
  
  .section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
  }
  
  /* =======================================================================
     FEATURE GRID
     ======================================================================= */
  .grid-3 {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, 1fr);
  }
  
  @media (max-width: 900px) {
    .grid-3 {
      grid-template-columns: 1fr;
    }
  }
  
  .feature-card {
    padding: 20px;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
  }
  
  .feature-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .feature-body {
    color: var(--text-muted);
  }
  
  /* =======================================================================
     UNIQUE SECTION (banner + text)
     ======================================================================= */
  .unique-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .unique-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-muted);
  }
  
  .unique-banner img {
    border-radius: var(--radius);
    width: 100%;
    box-shadow: var(--shadow-card);
  }
  
  @media (max-width: 900px) {
    .unique-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* =======================================================================
     BLOCKDAG SECTION
     ======================================================================= */
  .dag-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 34px;
  }
  
  .dag-visual {
    background: var(--bg-elevated);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
  }
  
  .dag-visual-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  
  .dag-visual-tag {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 12px;
  }
  
  .dag-canvas {
    width: 100%;
    height: 320px;
    background: #000;
    border-radius: var(--radius);
  }
  
  .stat-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    padding: 16px;
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
  }
  
  .stat-value {
    font-size: 22px;
    font-weight: 600;
    margin-top: 4px;
  }
  
  .dag-status {
    margin-top: 12px;
    font-size: 14px;
  }
  
  @media (max-width: 900px) {
    .dag-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* =======================================================================
     WIZARD PAGE (Kom i gang)
     ======================================================================= */
  .wizard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 28px;
    align-items: flex-start;
  }
  
  .wizard-main {
    background: var(--bg-elevated);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    padding: 18px 18px 16px;
  }
  
  .wizard-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .info-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid var(--border-subtle);
  }
  
  .info-card-muted {
    background: #00111f;
    border-color: #002030;
  }
  
  .info-list {
    margin-top: 8px;
    padding-left: 16px;
    font-size: 14px;
    color: var(--text-muted);
  }
  
  .wizard-progress {
    margin-bottom: 14px;
  }
  
  .wizard-progress-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    overflow: hidden;
  }
  
  .wizard-progress-fill {
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, var(--primary), #7df5ff);
    border-radius: 999px;
    transition: width 0.25s ease;
  }
  
  .wizard-step {
    display: none;
  }
  
  .wizard-step.active {
    display: block;
  }
  
  .wizard-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .wizard-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
  }
  
  .form-field {
    margin-bottom: 14px;
  }
  
  input[type="email"],
  select {
    width: 100%;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    padding: 8px 12px;
    background: #020617;
    color: var(--text-main);
    font-size: 14px;
  }
  
  .option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }
  
  .option-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #00101c;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    font-size: 13px;
  }
  
  .option-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
  }
  
  .option-card {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
  }
  
  .option-title {
    font-weight: 600;
  }
  
  .option-body {
    font-size: 13px;
    color: var(--text-muted);
  }
  
  .wizard-summary {
    background: #020617;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    padding: 12px;
    font-size: 13px;
    white-space: pre-wrap;
    max-height: 240px;
    overflow-y: auto;
  }
  
  .wizard-actions {
    display: flex;
    gap: 10px;
    margin: 12px 0;
  }
  
  .wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
  }
  
  .wizard-small {
    font-size: 12px;
    color: var(--text-muted);
  }
  
  @media (max-width: 960px) {
    .wizard-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* =======================================================================
     FOOTER
     ======================================================================= */
  .footer {
    padding: 40px 0;
    margin-top: auto;
    background: #000;
    border-top: 1px solid var(--border-subtle);
  }
  
  .footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .footer-text {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 600px;
  }
  
  .footer-links a {
    color: var(--primary);
    text-decoration: none;
    margin-left: 14px;
    font-size: 14px;
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: #fff;
  }
  
  /* END OF FILE */
  