:root {
  --navy-bg: #050a12;
  --orange: #f25b1c;
  --text-muted: #a1a7b3;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--navy-bg);
}

.hero-container {
  padding: 100px 5%;
  color: #ffffff;
  display: flex;
  justify-content: center;
}

.hero-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left Content */
.hero-content {
  flex: 1;
}

.growth-tag {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  background: rgba(242, 91, 28, 0.1);
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 32px 0;
}

.highlight {
  color: var(--orange);
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 48px;
}

.cta-group {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 18px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn-orange {
  background-color: var(--orange);
  color: white;
}

.btn-white {
  background-color: white;
  color: var(--navy-bg);
}

/* Right Visuals */
.hero-visual {
  flex: 1.2;
  position: relative;
}

.dashboard-wrapper {
  position: relative;
}

.main-dashboard {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.live-transactions {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: #d1d5db; /* Light gray from image */
  padding: 20px 24px;
  border-radius: 12px;
  color: #111827;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index:9999;
}

.live-transactions .label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #4b5563;
  display: block;
  margin-bottom: 8px;
}

.amount-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-group {
    justify-content: center;
  }
  
  .live-transactions {
    left: 20px;
  }
}



:root {
  --navy: #0b1d33;
  --orange: #f25b1c;
  --text-main: #111827;
  --text-muted: #6b7280;
}

.platforms-section {
  padding: 80px 24px;
  display: flex;
  justify-content: center;
   background-color: #ffffff;
}

.container {
  max-width: 1100px;
  width: 100%;
}

/* Header Styles */
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.5;
}

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

.span-2 {
  grid-column: span 2;
}

/* Base Card Styles */
.card {
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 320px;
  box-sizing: border-box;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Dark Card (Navy) */
.dark-card {
  background-color: var(--navy);
  color: #ffffff;
}

.dark-card p { color: #94a3b8; }

/* White Card */
.white-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.white-card p { color: var(--text-muted); }

/* Orange Card */
.orange-card {
  background-color: var(--orange);
  color: #ffffff;
}

/* Specific Elements */
.icon {
  font-size: 24px;
  margin-bottom: 24px;
}

.orange-text { color: var(--orange); }
.orange-title { color: var(--orange); }

.card-content {
  width: 55%;
  position: relative;
  z-index: 2;
}

/* Image Positioning */
.card-image {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40%;
  height: 75%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive Logic */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .span-2 {
    grid-column: span 1;
  }
  .card-content {
    width: 100%;
  }
  .card-image {
    display: none; /* Simplifies layout for mobile devices */
  }
}


:root {
  --bg-dark: #050a12;
  --orange: #f25b1c;
  --text-main: #ffffff;
  --text-muted: #a1a7b3;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.ecosystem-section {
  background-color: #19203b;
  color: var(--text-main);
  padding: 100px 20px;
  text-align: center;
}

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

/* Header & Underline */
.section-header {
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.underline {
  width: 40px;
  height: 4px;
  background-color: var(--orange);
  margin: 0 auto;
  border-radius: 2px;
}

/* Three Column Grid */
.capabilities-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.capability-item {
  flex: 1;
}

/* Icons */
.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(242, 91, 28, 0.1); /* Subtle orange glow */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 91, 28, 0.2);
}

/* Typography */
.capability-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.capability-item p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

/* Checklist items */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Custom Checkmark Icon */
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

/* Responsive Logic */
@media (max-width: 900px) {
  .capabilities-grid {
    flex-direction: column;
    gap: 60px;
  }
}


:root {
  --navy-dark: #0a111a;
  --navy-card: #0d1a29;
  --orange-accent: #f25b1c;
  --text-muted: #6b7280;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
}

.blueprint-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 1200px;
  width: 100%;
}

/* Header Styles */
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 60px;
  line-height: 1.5;
}

/* Flex Grid Layout */
.blueprint-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.blueprint-card {
  background-color: var(--navy-card);
  padding: 40px 30px;
  border-radius: 12px;
  flex: 1; /* Makes cards equal width */
  min-width: 250px; /* Prevents cards from getting too thin */
  color: #ffffff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

/* Specific styling for the first card underline seen in image */
.blueprint-card:first-child {
  border-bottom: 4px solid #4f46e5; 
}

/* Step Number styling */
.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange-accent);
  opacity: 0.6; /* Matches the muted look in the screenshot */
  margin-bottom: 20px;
}

.blueprint-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.blueprint-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8; /* Muted light blue/gray for readability on dark background */
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .blueprint-grid {
    flex-direction: column;
  }
}


:root {
  --navy: #050a12;
  --orange-gradient: linear-gradient(135deg, #f25b1c 0%, #ff9e67 100%);
  --text-muted: #8e9aaf;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
}

/* Tech Stack Styles */
.tech-stack {
  background-color: var(--navy);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.tech-stack h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 50px;
}

.logo-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-card {
  background: white;
  color: black;
  border-radius: 12px;
  width: 160px;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  height: 35px;
  margin-bottom: 15px;
  object-fit: contain;
}

.logo-card span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* CTA Card Styles */
.cta-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.cta-card {
  background: var(--orange-gradient);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  color: white;
  max-width: 1000px;
  width: 100%;
}

.cta-card h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-card p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: #f25b1c;
}

.btn-dark {
  background: #0b1d33;
  color: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .cta-card h1 { font-size: 2.2rem; }
  .logo-card { width: 40%; }
}