
.hero-shell {
  position: relative;
  border-radius: 34px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 34px;
}

@media (max-width: 720px) {
  .hero-inner {
    padding: 22px;
  }
}


.uob-card {
  width: 100%;
  max-width: 520px;
  min-height: 220px;
  justify-self: end;

  position: relative;
  display: flex;               
  align-items: center;
  gap: 20px;                    

  border-radius: 28px;
  border: 1px solid transparent;
  padding: 28px;
  overflow: hidden;

  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.uob-card:hover {
  transform: translateY(-8px);
}


@media (max-width: 900px) {
  .uob-card {
    max-width: 100%;
    min-height: 280px;
    justify-self: stretch;
  }
}


.project-layout {
  display: grid;
  grid-template-columns: 1fr;          
  gap: 32px;
  margin-top: 32px;
}


.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 900px;                  
  margin: 0 auto;
}

.accordion-item {
  width: 100%;
  border-radius: 28px;
  border: 1px solid transparent;
  background:
    rgba(6,6,21,.40) padding-box, 
    linear-gradient(135deg, rgba(124,58,237,.75), rgba(168,85,247,.55), rgba(34,211,238,.45)) border-box; /* Brighter border */
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.accordion-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 100px rgba(0,0,0,.60);
}

.accordion-header {
  padding: 22px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,.22);
  transition: background 0.25s var(--ease);
}

.accordion-header:hover {
  background: rgba(255,255,255,.08);
}

.accordion-header h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600;
}

.accordion-icon {
  color: var(--muted);
  transition: transform 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
}

.accordion-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5px;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.accordion-item.open .accordion-content {
  max-height: 4000px; 
  padding: 32px;
}

.accordion-content p {
  line-height: 1.5;
}


.accordion-item.open {
  background:
    rgba(6,6,21,.50) padding-box, 
    linear-gradient(135deg, rgba(124,58,237,.90), rgba(168,85,247,.65), rgba(34,211,238,.50)) border-box; /* Brighter border */
}


.media {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  overflow: hidden;
  margin: 20px 0;
}

.media img {
  width: 100%;
  height: auto;
  display: block;
}

.block {
  margin-bottom: 32px;
}

.block h2 {
  font-size: clamp(24px, 3vw, 34px);
}