/*inject image to hero banner*/
.hero-tokenization{
	background: 
  radial-gradient(rgba(0, 138, 68, 0.5), rgba(0, 0,0, 1)),
  url('../images/tokenization/banner.webp') center/cover no-repeat;
}


/* SECTION 2 STYLES (LIGHT THEME) */
.who-we-support-section {
  background-color: #f8fafc;
  padding: 80px 24px;
  color: #0f172a;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}



/* Grid Layout */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.support-card:hover {
  border-color: #059669;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(5, 150, 105, 0.12);
}

.support-card img{
	display:block;
	margin:auto;
	width:100%;
	max-width:100px;
	margin-bottom:20px;
}


/* Responsive tweaks */
@media (max-width: 992px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.75rem;
  }
}







/* Section 3: Tokenization Journey */
.journey-section {
	padding: 80px 0;
	color: #f0f6fc;
	position: relative;
	background: 
	radial-gradient(rgba(0, 138, 68, 0.2), rgba(0, 0,0, 1)),
	url('../images/tokenization/section-hero1.webp') center/cover no-repeat;	
}

.journey-container { 
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 24px;

}

.journey-header {
  text-align: center;
  margin-bottom: 24px;
}



.scroll-hint {
  display: block;
	margin:auto;
	max-width: 1270px;
	text-align: right;
  gap: 8px;
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  user-select: none;
}

/* Outer Wrapper for Relative Positioning of Buttons */
.journey-flow-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Horizontal Track (Stretch items to guarantee equal height) */
.journey-flow-track {
  display: flex;
  align-items: stretch; /* Forces equal height across all cards */
  gap: 16px;
  overflow-x: auto;
  padding: 24px 8px;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
  
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.journey-flow-track::-webkit-scrollbar {
  display: none;
}

.journey-flow-track:active {
  cursor: grabbing;
}

/* Navigation Arrow Buttons */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-green-lighter);
  border: 1px solid #30363d;
  color: #0d1117;
  font-size: 1.8rem;
  padding:0px 0px 4px 0px;
  line-height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.nav-arrow:hover {
  background-color: #161b22;
  color: var(--color-green-lighter);
  border-color: var(--color-green-lighter);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.nav-arrow-left { left: -20px; }
.nav-arrow-right { right: -20px; }

/* Individual Cards (Equal Height via Flex Column) */
.flow-card {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto; /* Adapts to highest card in the row */
  background: rgba(0,0,0, 0.7);
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
  pointer-events: none;
}

.flow-card.highlight {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, #161b22 0%, rgba(16, 185, 129, 0.05) 100%);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-height: 36px; /* Prevents badge shrinking */
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #30363d;
  color: #10b981;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  align-self: flex-start;
}

.step-badge.active {
  background-color: var(--color-green-lighter);
  color: #0d1117;
  border-color: #10b981;
}

.flow-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.flow-card p {
  font-size: 0.875rem;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}

/* Vertical Centering for Flow Dividers */
.flow-arrow-divider { 
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  opacity: 1;
  user-select: none;
}

@media (max-width: 768px) {
  .nav-arrow-left { left: -20px; }
  .nav-arrow-right { right: -20px; }
}













/* Section 4 - Role */
.role-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
}

.role-container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 24px;
}

.role-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}


/* 3-Column Grid */
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Light Card Styling */
.role-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: #059669;
  background-color: #ffffff;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.08);
}

/* SVG Icon Badge */
.role-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.role-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.role-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .role-grid {
    grid-template-columns: 1fr;
  }
  
  .role-header h2 {
    font-size: 1.8rem;
  }
}











/* Section 5 - Who This Is For */
.target-section {
	padding: 80px 0;
	color: #f0f6fc;
	border-bottom: 1px solid #30363d;
	position: relative;
	background: 
	radial-gradient(rgba(0, 138, 68, 0.5), rgba(0, 0,0, 1)),
	url('../images/tokenization/section-hero2.webp') center/cover no-repeat;		
}

.target-container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 24px;
	
}

.target-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

/* 3-Column Responsive Grid */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Dark Theme Card Styling */
.target-card {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	z-index: 2;
}

.target-card:hover {
  transform: translateY(-4px);
  border-color: #10b981;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Icon Badge Styling */
.target-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.target-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.target-card p {
  font-size: 0.9rem;
  color: #8b949e;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .target-grid {
    grid-template-columns: 1fr;
  }
  
  .target-header h2 {
    font-size: 1.8rem;
  }
}













/* Section 6: Responsible Tokenization */
.responsible-section {
  padding: 80px 0;
  background-color: #0d1117;
  color: #f0f6fc;
  border-bottom: 1px solid #30363d;
}

.responsible-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.responsible-header {
  text-align: center;
  margin-bottom: 40px;
}


/* Regulatory Disclaimer Box */
.responsible-card {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-left: 4px solid #10b981;
  border-radius: 0 12px 12px 0;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
}

.responsible-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  flex-shrink: 0;
}

.responsible-content .highlight-text {
  font-size: 1.1rem;
  color: #f0f6fc; 
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
	margin-top:0;
}

.responsible-content .disclaimer-text {
  font-size: 0.925rem;
  color: #8b949e;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Layout */
@media (max-width: 868px) {
  .responsible-card {
    flex-direction: column;
    padding: 24px;
  }
}