.icon>img {
    height: 5rem;
}

.icon-card-body {
    background-color: var(--ma-theme-900);
    color: var(--ma-light-color);
    padding: 2rem;
    border-radius: .5rem;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
    height: calc(100% - 2.5rem);
    margin-top: -2.5rem;
    padding-top: 4rem;

    border-style: solid;
    border-width: 2px;
    border-color: var(--ma-theme-900);

    transition: box-shadow .25s ease-in-out,
        backgroud-color .25s ease-in,
        border-color .25 ease-in;


}

.icon-card:hover .icon-card-body {
    border-style: solid;
    border-width: 2px;
    border-color: var(--ma-theme-500);
    background-color: var(--ma-theme-850);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
        rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.icon-card:hover {
    transform: scale(1.03) translateY(-2%);
}

.icon-card {
    transition: transform .25s ease-in-out;
    height: 100%;
}


.icon-card-header {
    display: flex;
    justify-content: space-evenly;
    filter: drop-shadow(2px 6px 6px rgba(0, 0, 0, 0.7));
}
.industry-card {
    background: rgba(255,255,255,0.75);
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9, #6366f1);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .industry-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  }
  .industry-card:hover::before {
    opacity: 1;
  }
  .industry-card h5 {
    font-weight: 600;
    margin-bottom: .5rem;
    color: #0a0f1c;
  }
  .industry-card p {
    color: #374151;
    font-size: .95rem;
    margin-bottom: 0;
  }
  .industry-icon {
    font-size: 2.5rem;
    color: var(--mnemo-primary);
    text-shadow: 0 0 12px rgba(56,189,248,0.6);
    transition: transform 0.3s ease;
  }
  .industry-card:hover .industry-icon {
    transform: scale(1.15);
  }

  .roadmap-card {
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    color: #f1f5f9;
  }
  .roadmap-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9, #6366f1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .roadmap-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  }
  .roadmap-card:hover::before {
    opacity: 1;
  }
  .roadmap-icon {
    font-size: 2.5rem;
    color: #38bdf8;
    text-shadow: 0 0 12px rgba(56,189,248,0.6);
    transition: transform 0.3s ease;
  }
  .roadmap-card:hover .roadmap-icon {
    transform: scale(1.15);
  }
  .roadmap-card h5 {
    margin-bottom: .5rem;
    font-weight: 600;
    color: #fff;
  }
  .roadmap-card p {
    color: #cbd5e1;
    font-size: .95rem;
  }
  .impact-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.impact-card h3 {
  font-size: 2rem;
  font-weight: bold;
}
.legacy-card {
    background: rgba(40, 40, 50, 0.8);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  }
  .future-card {
    background: rgba(30, 40, 55, 0.85);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 25px rgba(0,200,255,0.25);
    border: 1px solid rgba(0,200,255,0.2);
  }
