
  :root {
    --green:        #3CB85C;
    --green-light:  #6DD68A;
    --green-dim:    #1C7038;
    --green-dark:   #0D2B16;
    --black:        #060E08;
    --dark:         #0B180F;
    --surface:      #101E14;
    --surface-2:    #162419;
    --border:       rgba(60,184,92,0.16);
    --border-s:     rgba(60,184,92,0.30);
    --text:         #EDF5EF;
    --text-muted:   #7A9A82;
    --text-dim:     #3A5A42;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* Canvas particles */
  #bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
  }

  /* Navigation */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
    border-bottom: 1px solid transparent;
  }
  nav.scrolled {
    background: rgba(6,14,8,0.94);
    backdrop-filter: blur(18px);
    border-color: var(--border);
  }

  

  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--green);
  }
  .nav-cta {
    border: 1px solid var(--green) !important;
    color: var(--green) !important;
    padding: 8px 22px;
    transition: background 0.3s, color 0.3s !important;
  }
  .nav-cta:hover {
    background: var(--green) !important;
    color: var(--black) !important;
  }

  /* Hero section */
  .hero {
    position: relative;
    z-index: 1;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5vw;
    margin-top: 76px;
    background: linear-gradient(115deg, rgba(6,14,8,0.92), rgba(6,14,8,0.85)), url('/img/Digital-Mining.jpg');
    background-size: cover;
    background-position: center;
  }
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--green);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }
  .hero p {
    font-size: 1rem;
    color: var(--text-muted);
  }

  /* Sections */
  section {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
  }
  .section-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
  }
  .section-light {
    background: var(--surface);
  }
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
  }
  .section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .section-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--green);
  }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
  }
  h2 em {
    font-style: italic;
    color: var(--green);
  }
  .section-subhead {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* Mining method cards (with image upload) */
  .mining-methods {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 2rem 0;
  }
  .method-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .method-card:hover {
    border-color: var(--green-dim);
  }
  .method-image {
    position: relative;
    min-height: 300px;
    background: var(--surface-2);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }
  .method-image .default-icon {
    font-size: 4rem;
    color: var(--green-dim);
    opacity: 0.5;
  }
  .image-upload-btn {
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--green);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  .image-upload-btn:hover {
    background: var(--green);
    color: var(--black);
  }
  .image-reset-btn {
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,80,80,0.5);
    color: #ff8080;
    padding: 8px 16px;
    border-radius: 30px;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    display: none;
    margin-top: 0.5rem;
  }
  .image-reset-btn.visible {
    display: inline-block;
  }
  .method-content {
    padding: 2rem;
  }
  .method-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--green);
  }
  .method-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  .method-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .method-tag {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-dim);
  }
  .method-card:hover .method-tag {
    border-color: var(--green-dim);
    color: var(--green);
  }

  /* Existing industries grid (other sectors) */
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .industry-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2rem;
    transition: all 0.3s;
  }
  .industry-card:hover {
    border-color: var(--green-dim);
    transform: translateY(-4px);
  }
  .industry-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: var(--surface-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
  }
  .industry-icon i {
    font-size: 2rem;
    color: var(--green);
  }
  .industry-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }
  .industry-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  .industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .industry-tag {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-dim);
  }
  .industry-card:hover .industry-tag {
    border-color: var(--green-dim);
    color: var(--green);
  }

  /* Strategic value block */
  .strategic-value {
    background: var(--surface-2);
    border-left: 4px solid var(--green);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
  }

  /* CTA banner */
  .cta-banner {
    background: var(--green-dark);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border);
  }
  .btn-primary {
    background: var(--green);
    color: var(--black);
    border: none;
    padding: 12px 32px;
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border-radius: 40px;
    transition: background 0.3s, transform 0.2s;
    margin-top: 1rem;
  }
  .btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
  }

 

  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu { display: block; }
    .method-card { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
  }
  .mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--green);
  }
  @media (max-width: 768px) {
    .mobile-menu { display: block; }
    .nav-links {
      flex-direction: column;
      background: var(--dark);
      position: absolute;
      top: 76px;
      left: 0;
      width: 100%;
      padding: 1.5rem;
      border-bottom: 1px solid var(--border);
      display: none;
    }
    .nav-links.active { display: flex; }
  }
.method-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 20px;
}

.method-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}