:root {
  --text-main: #111;
  --text-muted: #666;
  --border-color: #eee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

/* HEADER */
.navbar {
  border-bottom: 1px solid var(--border-color);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1350px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 60px;
}

/* NAV */
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin-left: 40px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a,
.nav-links span {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* DROPDOWN ICON */
.arrow {
  font-size: 12px;
  transition: 0.3s;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 270px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 12px 18px;
  display: block;
  transition: 0.2s;
}

.dropdown-menu a:hover {
  background: #f6f6f6;
  padding-left: 22px;
}

.dropdown-menu strong {
  font-size: 14px;
}

.dropdown-menu p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 25%;
}

.btn-contact {
  border: 1.5px solid #111;
  padding: 8px 18px;
  border-radius: 22px;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  text-decoration: none;
  align-content: center;
  color: #000;
  text-align: center;
}
a {
  text-decoration: none;
}

.btn-contact:hover {
  background: #111;
  color: #fff;
}

.link-signin {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  text-align: center;
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  background: #f6f6f6;
}

/* MOBILE BUTTON */
.mobile-toggle {
  display: none;
  margin-left: auto;
  cursor: pointer;
  border: none;
  background: none;
  width: 30px;
  height: 24px;
  position: relative;
}

/* HAMBURGER */
.bar {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #111;
  left: 0;
  transition: 0.3s ease;
}

.bar:nth-child(1) {
  top: 0;
}
.bar:nth-child(2) {
  top: 10px;
}
.bar:nth-child(3) {
  bottom: 0;
}

/* ANIMATION */
.mobile-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  display: none;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 992px) {
  /* BODY LOCK WHEN MENU OPEN */
  body.menu-open {
    overflow: hidden;
  }
  .logo img {
    height: 50px;
  }

  /* MOBILE MENU PANEL */
  .nav-content {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 300px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px;
    transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    border-left: 1px solid #f1f1f1;
  }

  .nav-content.active {
    right: 0;
  }

  /* CLOSE BUTTON */
  .close-btn {
    display: block;
    top: 18px;
    right: 18px;
    font-size: 20px;
    background: #f5f5f5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    transition: 0.2s;
  }

  .close-btn:hover {
    background: #111;
    color: #fff;
  }

  /* NAV LINKS */
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  /* EACH ITEM */
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
  }

  /* LINK STYLE */
  .nav-links a,
  .nav-links span {
    /* width: 100%; */
    padding: 14px 0;
    font-size: 16px;
    justify-content: space-between;
  }

  /* DROPDOWN */
  .dropdown-menu {
    display: none;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 10px 10px;
  }

  /* DROPDOWN ACTIVE */
  .dropdown.active .dropdown-menu {
    display: block;
    /* animation: fadeSlide 0.3s ease; */
  }

  @keyframes fadeSlide {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* DROPDOWN ITEMS */
  .dropdown-menu a {
    padding: 10px 0;
    font-size: 14px;
  }

  /* ARROW ROTATE */
  .dropdown.active .arrow {
    transform: rotate(180deg);
  }

  /* ACTION AREA */
  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 25px;
    gap: 12px;
  }

  /* BUTTON STYLE */
  .btn-contact {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
  }

  /* SIGN IN */
  .link-signin {
    text-align: center;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: #f6f6f6;
  }
  .mobile-toggle {
    display: block;
  }
}
:root {
  --canvas: #f8fafc;
  --onyx: #0f172a;
  --accent-gold: #f59e0b;
  --soft-blur: rgba(245, 158, 11, 0.15);
}

.hero-minimal {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../img/herobg.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Atmospheric Background */
.light-blur {
  position: absolute;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--soft-blur) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  z-index: 0;
}

.light-blur-2 {
  position: absolute;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  bottom: -10%;
  left: -5%;
  z-index: 0;
}

.main-container {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
}

/* Pill Badge */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--onyx);
  margin-bottom: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pulse-icon {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

/* Typography */
.hero-minimal h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

.text-reveal {
  background: linear-gradient(to right, #7da4ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.btn-black {
  background: var(--onyx);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-black:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-link {
  /* display: flex; */
  align-items: center;
  gap: 4px;
  background: transparent;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid var(--onyx);
  color: #0d0d0e;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Trust Section */
.trust-footer {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.divider {
  width: 1px;
  height: 14px;
  background: #e2e8f0;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@media (max-width: 600px) {
  .action-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-black {
    width: 100%;
  }
  .btn-link {
    width: 100%;
  }
}
:root {
  --bg: #050505; /* Dark mode looks more premium for crypto */
  --card-bg: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --accent: #ffd700;
  --glass: blur(12px) saturate(180%);
}

.section-container {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Inter", system-ui, sans-serif;
  position: relative;
}

/* --- Improved Bento Grid --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; /* Base height unit */
  gap: 24px;
}

.bento-card {
  background: var(--card-bg);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border: 1px solid var(--primary-blue);
  border-radius: 22px;
  padding: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Layout Variations */
.large {
  grid-column: span 2;
  grid-row: span 2;
}
.tall {
  grid-row: span 2;
}
.wide {
  grid-column: span 2;
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

/* Soft Glow Effect */
.bento-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(255, 215, 0, 0.08) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-card:hover::after {
  opacity: 1;
}

/* --- Typography & Content --- */
.asset-symbol {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  width: fit-content;
  color: var(--accent);
  margin-bottom: 20px;
}

.asset-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.asset-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
}

.card-footer {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
  transition: 0.3s;
}

.bento-card:hover .card-footer {
  opacity: 1;
  color: var(--accent);
}

/* --- Modern Trust Bar --- */
.trust-bar {
  margin-top: 40px;
  background: linear-gradient(90deg, #111, #1a1a1a);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trust-bar p {
  color: #fff;
  font-size: 14px;
  margin: 0 0 40px 0;
}

.btn-reports-alt {
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Responsiveness */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .large,
  .tall,
  .wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}
:root {
  --bg-dark: #000000;
  --bg-glow: radial-gradient(circle at 15% 50%, #111 0%, #000 100%);
  --accent-gold: #fbbf24;
  --text-dim: #9ca3af;
  --border-subtle: rgba(255, 255, 255, 0.05);
}

.feature-section {
  min-height: 700px;
  background: linear-gradient(180deg, rgb(33 30 126), #000, rgb(0 24 94 / 80%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", system-ui, sans-serif;
  overflow: hidden;
  position: relative;
}

.feature-container {
  max-width: 1300px;
  width: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Strong, balanced split */
  gap: 0; /* Let the sides define the visual break */
  align-items: center;
}

/* --- Left Side: Content --- */
.content-side {
  padding-right: 80px;
  z-index: 2;
}

.feature-pill {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  display: inline-block;
  border: 1px solid var(--border-subtle);
}

.content-side h2 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0.95;
  background: linear-gradient(to bottom right, #81ff70, #50db93);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* color: #000; */
  margin-bottom: 28px;
  letter-spacing: -0.05em;
}

.content-side p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 48px;
  max-width: 500px;
}

.btn-primary {
  padding: 18px 40px;
  background: var(--accent-gold);
  color: #000;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* --- Right Side: The Visual Monolith --- */
.visual-side {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* Vertical Status Column (The Monolith) */
.status-monolith {
  width: 90%;
  height: 520px;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.5),
    rgba(0, 0, 0, 0.8)
  );
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8);
}

/* The Core Metric */
.uptime-block {
  text-align: center;
  position: relative;
  z-index: 2;
}

.uptime-value {
  font-size: 140px; /* Massive impact */
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -10px;
}

.uptime-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

/* Integrated System Rows */
.monolith-rows {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.m-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 13px;
  color: #fff;
}

.m-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.status-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.indicator {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

@media (max-width: 1024px) {
  .feature-container {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    text-align: center;
  }
  .content-side {
    padding-right: 0;
    margin-bottom: 60px;
  }
  .content-side h2 {
    font-size: 3rem;
  }
  .visual-side {
    justify-content: center;
    height: 450px;
  }
  .status-monolith {
    height: 100%;
    width: 100%;
    padding: 40px;
  }
  .uptime-value {
    font-size: 100px;
  }
}
:root {
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --brand-blue: #0066ff;
  --soft-gray: #f4f7fa;
  --soft-purple: #f5f3ff;
}

.simple-section {
  padding: 80px 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  position: relative;
}

.simple-row {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 100px auto;
  gap: 80px;
}

.simple-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE BOX */
.simple-image {
  flex: 1;
}

.image-bg-accent {
  background-color: var(--soft-gray); /* Soft background frame */
  padding: 40px;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.image-bg-accent.variant {
  background-color: var(--soft-purple);
}

.simple-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* CONTENT BOX */
.simple-content {
  flex: 1;
}

.simple-content h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.simple-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* SIMPLE LINK */
.simple-link {
  text-decoration: none;
  color: var(--brand-blue);
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(0, 102, 255, 0.05);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.simple-link:hover {
  background: rgba(0, 102, 255, 0.15);
  padding-right: 25px;
}

/* HOVER EFFECT */
.simple-row:hover .image-bg-accent {
  transform: translateY(-5px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 850px) {
  .simple-row,
  .simple-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }

  .simple-content h2 {
    font-size: 1.8rem;
  }
}
:root {
  --clr-bg: #ffffff;
  --clr-surface: #f9fafb;
  --clr-text-main: #111827;
  --clr-text-muted: #6b7280;
  --clr-primary: #4fff8a; /* Lime green from the original design */
  --clr-border: #e5e7eb;
}

.solutions {
  padding: 80px 24px;
  background-color: var(--clr-bg);
  font-family: "Inter", sans-serif;
}

.solutions__header {
  text-align: center;
  margin-bottom: 64px;
}

.solutions__tag {
  color: var(--clr-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.solutions__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--clr-text-main);
  margin-top: 16px;
  letter-spacing: -1px;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- The Solution Card --- */
.solution-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.solution-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transform: translateY(-8px);
}

.solution-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.solution-card__title span {
  color: var(--clr-primary);
}

.solution-card__desc {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.solution-card__visual {
  height: 180px;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-card__visual img {
  max-height: 100%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

/* --- Features List --- */
.solution-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-item__icon {
  width: 24px;
  height: 24px;
  background: var(--clr-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-primary);
  font-weight: 900;
}

.feature-item__label {
  font-weight: 700;
  font-size: 15px;
  display: block;
}

.feature-item__text {
  font-size: 14px;
  color: var(--clr-text-muted);
}

/* --- Button --- */
.solution-card__btn {
  margin-top: auto;
  background: var(--clr-text-main);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.2s;
}

.solution-card__btn:hover {
  opacity: 0.9;
}
:root {
  --primary-blue: #0052ff; /* Coinbase Blue */
  --surface-dark: #0a0b0d;
  --border-color: rgba(255, 255, 255, 0.1);
}

.cta-container {
  background: linear-gradient(180deg, rgb(33 30 126), #000, rgb(0 24 94 / 80%));
  padding: 120px 20px;
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  /* background: var(--surface-dark); */
  padding: 80px;
  border: 1px solid var(--border-color);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

/* Decorative grid pattern in background */
.cta-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 0
  );
  background-size: 30px 30px;
  pointer-events: none;
}

/* --- TEXT SIDE --- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 100px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.dot {
  width: 8px;
  height: 8px;
  background: #10b981; /* Green dot */
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.cta-text h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.highlight {
  color: var(--primary-blue);
}

.cta-text p {
  color: #8899a6;
  font-size: 1.2rem;
  max-width: 500px;
  line-height: 1.5;
}

/* --- ACTION CARD --- */
.action-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-main {
  background: var(--primary-blue);
  color: #fff;
  text-decoration: none;
  padding: 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-main:hover {
  background: #0045d9;
  transform: scale(1.02);
}

.btn-sub {
  color: #000;
  text-decoration: none;
  padding: 18px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: 0.3s;
}

.btn-sub:hover {
  background: #f8fafc;
}

.small-print {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 10px;
}

/* --- MOBILE --- */
@media (max-width: 1024px) {
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 60px 30px;
    text-align: center;
  }

  .cta-text p {
    margin: 0 auto 40px;
  }

  .status-pill {
    justify-content: center;
  }
}
:root {
  --footer-bg: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-color: #f3f4f6;
  --accent: #ffd700;
}

.site-footer {
  background-color: var(--footer-bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
  color: var(--text-main);
}

.container1 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: block;
}

/* --- Top Section: Logo & Columns --- */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* Logo Area */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 43%;
  width: 35%;
  display: block;
}

.brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 240px;
  margin: 0 0 40px 0;
}

/* Link Columns */
.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #000;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* --- Bottom Section: Copyright & Legal --- */
.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .solutions__grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --ink: #020617;
  --slate: #64748b;
  --accent: #4fff8a;
  --soft-border: #e2e8f0;
}

.minimal-hero {
  padding: 30px 20px 0 20px;
  background: #ffffff;
  text-align: center;
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

/* --- Trust Badge --- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 8px 20px;
  background: #f8fafc;
  border: 1px solid var(--soft-border);
  border-radius: 100px;
  margin-bottom: 40px;
}

.logo-stack {
  display: flex;
  gap: 12px;
  font-weight: 900;
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
}

.badge-line {
  width: 1px;
  height: 14px;
  background: #cbd5e1;
}

.trust-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
}

/* --- Typography --- */
h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(to bottom right, #81ff70, #50db93);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.2rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

/* --- Action Buttons --- */
.cta-stack {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary {
  background: var(--ink);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--soft-border);
  transition: 0.3s;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
}
.btn-secondary:hover {
  background: #f8fafc;
}

/* --- Image Presentation --- */
.hero-image-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--soft-border);
  border-bottom: none;
  border-radius: 40px 40px 0 0;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.image-inner {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.05);
}

.image-inner img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.02);
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
  .cta-stack {
    flex-direction: column;
  }
  .trust-badge {
    display: none;
  } /* Hide complex badge on small screens */
  h1 {
    letter-spacing: -1px;
  }
}

:root {
  --text-main: #0f172a;
  --text-muted: #64748b;
  --accent: #4fff8a;
  --border-light: #f1f5f9;
}

.solutions-section {
  padding: 120px 0;
  background-color: #ffffff;
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
}

.solutions-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.solutions-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

/* --- Left Column --- */
.solutions-left {
  position: sticky;
  top: 100px;
}

.accent-bar {
  width: 40px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 24px;
  border-radius: 2px;
}

.solutions-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #000;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.solutions-title span {
  color: var(--accent);
}

.solutions-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.solutions-link {
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: 0.3s;
}

.solutions-link:hover {
  color: var(--accent);
}

/* --- Right Column (The Cards) --- */
.solutions-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}

.solution-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border-color: #e2e8f0;
}

.icon-box {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Color variations for icons */
.icon-box.blue {
  background: #eff6ff;
}
.icon-box.indigo {
  background: #eef2ff;
}
.icon-box.green {
  background: #f0fdf4;
}

.solution-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.solution-info p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Responsive Logic --- */
@media (max-width: 1024px) {
  .solutions-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .solutions-left {
    position: static;
    text-align: center;
  }
  .accent-bar {
    margin: 0 auto 24px auto;
  }
  .solution-item {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .solution-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

:root {
  --bg-black: #050505;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --neon-gold: #4fff8a;
  --neon-glow: rgba(230, 187, 14, 0.3);
}

.glass-spotlight {
  background-color: var(--bg-black);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
}

/* Ambient Background Glow */
.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--neon-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header Styling */
.spotlight-header {
  text-align: center;
  margin-bottom: 80px;
}
.badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--neon-gold);
  font-weight: 700;
}
.title {
  font-size: 56px;
  font-weight: 800;
  margin-top: 20px;
  line-height: 1.1;
  letter-spacing: -2px;
}
.glow-text {
  color: var(--neon-gold);
  text-shadow: 0 0 30px var(--neon-glow);
}

/* Grid Layout */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 25px;
}

/* Base Glass Card */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--neon-gold);
  transform: scale(1.02);
}

/* Main Highlighted Card */
.main-feature {
  grid-row: span 2;
  display: flex;
  align-items: center;
}
.full-width {
  grid-column: span 2;
}

/* Icon Boxes */
.icon-box-neon {
  width: 64px;
  height: 64px;
  background: #111;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-gold);
  margin-bottom: 30px;
  box-shadow: inset 0 0 15px rgba(230, 187, 14, 0.1);
  border: 1px solid var(--glass-border);
}

.icon-box-neon.small {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 20px;
}

/* Content Styling */
h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
p {
  color: #888;
  line-height: 1.6;
  font-size: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.feature-list li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #bbb;
  display: flex;
  gap: 10px;
}
.feature-list span {
  color: var(--neon-gold);
  font-weight: bold;
}

.flex-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Responsive */
@media (max-width: 900px) {
  .glass-grid {
    grid-template-columns: 1fr;
  }
  .main-feature,
  .full-width {
    grid-column: span 1;
    grid-row: span 1;
  }
  .title {
    font-size: 40px;
  }
}
:root {
  --primary-blue: #4fff8a;
  --dark-text: #1e293b;
  --light-text: #64748b;
  --bg-soft: #ffffff;
  --accent-tint: #f0f7ff;
}

.split-showcase {
  padding: 100px 0;
  background-color: var(--bg-soft);
  font-family: "Inter", system-ui, sans-serif;
  overflow: hidden;
}

.split-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 24px;
}

.split-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* Content Styling */
.split-column {
  flex: 1;
}

.split-label {
  display: inline-block;
  color: var(--primary-blue);
  background: var(--accent-tint);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.split-title {
  font-size: 42px;
  line-height: 1.1;
  color: var(--dark-text);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.split-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--light-text);
  margin-bottom: 30px;
}

/* List Styling */
.split-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.split-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--dark-text);
}

.split-list span {
  color: var(--primary-blue);
  font-weight: 900;
}

.split-cta {
  display: inline-block;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.split-cta:hover {
  border-bottom-color: var(--primary-blue);
  padding-left: 5px;
}

/* Image Styling with "Stack" Effect */
.image-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-backdrop {
  position: absolute;
  width: 110%;
  height: 80%;
  background: var(--accent-tint);
  border-radius: 40px;
  transform: rotate(-3deg);
  z-index: 1;
}

.main-image {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 24px;
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); */
  transition: transform 0.5s ease;
}

.image-stack:hover .main-image {
  transform: scale(1.02) translateY(-10px);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
  .split-row {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .split-list li {
    justify-content: center;
  }

  .image-backdrop {
    width: 100%;
    transform: rotate(0deg);
  }
}
:root {
  --neon-green: #00ffa3;
  --dark-bg1: #0a0a0c;
  --text-dim: #94a3b8;
}

/* Section */
.payment-hero {
  background: linear-gradient(180deg, rgb(33 30 126), #000, rgb(0 24 94 / 80%));
  color: #ffffff;
  padding: 80px 5%;
  font-family: "Inter", system-ui, sans-serif;
}

.payment-hero__container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.payment-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}

.payment-hero__title--gradient {
  background: linear-gradient(90deg, var(--neon-green), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.payment-hero__description {
  font-size: 1.2rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

/* BUTTONS */
.payment-hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap; /* FIX */
}

.payment-hero__btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}

.payment-hero__btn--primary {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 10px 20px -10px rgba(0, 255, 163, 0.5);
}

.payment-hero__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* VISUAL */
.payment-hero__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.payment-hero__visual-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 163, 0.15) 0%,
    transparent 70%
  );
  z-index: 0;
}

/* CARD */
.checkout-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 24px;
  width: 100%;
  max-width: 380px;
}

.checkout-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
}

.checkout-card__option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  flex: 1;
  margin: 5px;
  cursor: pointer;
}

.checkout-card__option--selected {
  border-color: var(--neon-green);
  background: rgba(0, 255, 163, 0.05);
}

.checkout-card__submit {
  width: 100%;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS */
/* ========================= */

/* Large tablets */
@media (max-width: 992px) {
  .payment-hero {
    padding: 60px 5%;
  }

  .payment-hero__container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .payment-hero__title {
    font-size: 2.8rem;
  }

  .payment-hero__actions {
    justify-content: center;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .payment-hero__title {
    font-size: 2.3rem;
  }

  .payment-hero__description {
    font-size: 1rem;
  }

  .payment-hero__btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .checkout-card {
    padding: 24px;
  }

  .checkout-card__price {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .payment-hero {
    padding: 50px 20px;
  }

  .payment-hero__title {
    font-size: 1.8rem;
  }

  .payment-hero__description {
    font-size: 0.95rem;
  }

  .payment-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .payment-hero__btn {
    width: 100%;
    justify-content: center;
  }

  .checkout-card {
    padding: 20px;
    border-radius: 16px;
  }

  .checkout-card__price {
    font-size: 1.8rem;
  }
}
:root {
  --color-primary: #1a1a1a;
  --color-secondary: #6b7280;
  --bg-gradient: radial-gradient(circle at top left, #f1fcf1, #ffffff, #e6f7e9);
}

.payout-module {
  /* padding: 40px 5%; */
  font-family: "Inter", system-ui, sans-serif;
  max-width: 1350px;
  margin: 0px auto;
  padding: 0 24px;
}

/* Header Styles */
.payout-header {
  text-align: center;
  margin-bottom: 80px;
}

.payout-upper-tag {
  font-size: 0.85rem;
  color: var(--color-secondary);
  text-transform: capitalize;
  margin-bottom: 8px;
}

.payout-main-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-primary);
  font-weight: 600;
}

/* Row & Layout */
.payout-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 50px;
}

/* Flex-direction magic for alternating rows */
.payout-row--flipped {
  flex-direction: row-reverse;
}

.payout-content {
  flex: 1;
}

.payout-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Visual Frame (The green gradient box) */
.payout-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  background: var(--bg-gradient);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payout-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Typography elements */
.payout-category {
  display: block;
  font-size: 0.8rem;
  color: var(--color-secondary);
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
  margin-bottom: 24px;
  width: 100%;
}

.payout-sub-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
  color: var(--color-primary);
}

.payout-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

/* FULL RESPONSIVENESS */

@media (max-width: 992px) {
  .payout-row,
  .payout-row--flipped {
    flex-direction: column; /* Stacks vertically on tablet/mobile */
    text-align: left;
    gap: 30px;
  }

  .payout-visual {
    width: 100%;
    order: -1; /* Graphic always moves to top of text on mobile */
  }

  .payout-frame {
    max-width: 100%;
    height: 320px; /* Shorter height for mobile screens */
  }
}

@media (max-width: 480px) {
  .payout-module {
    padding: 40px 20px;
  }

  .payout-main-heading {
    font-size: 1.8rem;
  }
}
:root {
  --text-main: #111827;
  --text-muted: #4b5563;
  --border-light: #e5e7eb;
}

.benefits-module {
  max-width: 1350px;
  margin: 80px auto;
  padding: 0 24px;
  font-family: "Inter", system-ui, sans-serif;
}

.benefits-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-main);
  margin-bottom: 80px;
  font-weight: 500;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefits-card {
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

.benefits-icon-box {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}

.benefits-icon {
  width: 100%;
  height: auto;
  /* Optional: filter to make icons look green if using black SVGs */
  /* filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(114deg) brightness(118%) contrast(119%); */
}

.benefits-subtitle {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 16px;
  font-weight: 600;
}

.benefits-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* RESPONSIVENESS */

/* Tablet: 2 columns */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .benefits-module {
    margin: 60px auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 60px; /* More space between stacked items */
  }

  .benefits-title {
    margin-bottom: 60px;
  }
}
/* Clean Light Mode Variables */
:root {
  --text-primary: #111827;
  /* Deep gray/black */
  --text-secondary: #4b5563;
  /* Subtle gray */
  --accent-light: #f3f4f6;
  /* Very faint background for badge */
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
}

.api-split {
  padding: 120px 5%;
  background-color: #ffffff;
  color: var(--text-primary);
  font-family: var(--font-main);
}

.api-split__container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  /* Airy gap */
  align-items: flex-start;
  /* Precise alignment at top */
}

/* 1. The Heading (Left) */
.api-split__heading-wrapper {
  flex: 1;
  position: sticky;
  top: 40px;
  /* Slight offset if page scrolls */
}

.api-split__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  /* Dynamic resizing */
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

/* 2. The Content (Right) */
.api-split__content-wrapper {
  flex: 1;
  padding-top: 8px;
  /* Micro-alignment with the top of the large title text */
}

/* Modern Pill Badge */
.api-split__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--accent-light);
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.api-split__badge svg {
  color: #6b7280;
  /* Subtle icon color */
}

.api-split__description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 40px;
  margin-top: 0;
  font-weight: 400;
}

/* Refined Button with Icon */
.api-split__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1px solid var(--text-primary);
  border-radius: 8px;
  /* Slightly squarer for tech aesthetic */
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.api-split__btn svg {
  transition: transform 0.25s ease;
}

/* Hover States */
.api-split__btn:hover {
  background-color: var(--text-primary);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.api-split__btn:hover svg {
  transform: translateY(2px);
  /* Subtle animation on the download icon */
}

/* =========================================
   RESPONSIVENESS
========================================= */

/* Tablet (reduce gap) */
@media (max-width: 1024px) {
  .api-split {
    padding: 100px 5%;
  }

  .api-split__container {
    gap: 50px;
  }
}

/* Mobile (Stack vertically) */
@media (max-width: 768px) {
  .api-split {
    padding: 70px 24px;
  }

  .api-split__container {
    flex-direction: column;
    /* Main change */
    gap: 40px;
  }

  /* Unstick heading for mobile */
  .api-split__heading-wrapper {
    position: static;
  }

  .api-split__title {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .api-split__content-wrapper {
    padding-top: 0;
    /* Remove micro-alignment */
  }

  .api-split__description {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }

  /* Make button full width on small mobile */
  @media (max-width: 480px) {
    .api-split__btn {
      width: 100%;
      justify-content: center;
    }
  }
}
:root {
  --cta-dark: #111827;
  --cta-green-light: #e6f9ed;
}

.cta-banner {
  padding: 100px 20px;
  margin: 60px 5%;
  border-radius: 24px;
  /* This creates a soft green radial background. 
       For the exact speed-line effect, you would use a background-image. */
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    var(--cta-green-light) 100%
  );
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Optional: Adding a subtle "speed line" effect using CSS pseudo-elements */
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-radial-gradient(
    circle at center,
    transparent 0,
    transparent 100px,
    rgb(52 210 119 / 10%) 101px,
    transparent 105px
  );
  opacity: 0.5;
  pointer-events: none;
}

.cta-banner__container {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.cta-banner__tagline {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.cta-banner__title {
  /* Scales from 2rem on mobile to 3.5rem on desktop */
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cta-dark);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 32px;
}

.cta-banner__button {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--cta-dark);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.cta-banner__button:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

/* RESPONSIVENESS */

@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 24px;
    margin: 40px 20px;
  }

  .cta-banner__title br {
    display: none; /* Allows text to flow naturally on small screens */
  }
}
:root {
  --text-dark: #111827;
  --text-muted: #4b5563;
  --border-color: #e5e7eb;
}

.trust-module {
  max-width: 1350px;
  margin: 50px auto;
  /* padding: 0 5%; */
  font-family: "Inter", system-ui, sans-serif;
}

/* Header styling */
.trust-header {
  text-align: center;
  margin-bottom: 80px;
}

.trust-main-title {
  font-size: clamp(2rem, 5vw, 3rem); /* Fluid size for mobile/desktop */
  color: var(--text-dark);
  line-height: 1.1;
  font-weight: 500;
}

/* Grid layout */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.trust-item {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.trust-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}

.trust-icon img {
  width: 100%;
  height: auto;
}

.trust-sub-heading {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.trust-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* RESPONSIVENESS */

/* Tablet View */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Mobile View */
@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-main-title {
    font-size: 2.2rem;
  }

  .trust-main-title br {
    display: none; /* Allows text to flow on small screens */
  }
  .trust-module {
    padding: 0 5%;
  }
}
.faq-section {
  padding: 100px 5%;
  display: flex;
  justify-content: center;
}

.faq-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* Left */
.faq-left {
  flex: 1;
}

.faq-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-desc {
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 420px;
}

/* Right */
.faq-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

/* Icon */
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--text-gray);
  opacity: 0;
}

/* Active */
.faq-item.active .faq-answer {
  opacity: 1;
  margin-top: 12px;
}

.faq-item.active .faq-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 500px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-title {
    font-size: 1.8rem;
  }
}
:root {
  --brand-blue: #0070ba;
  --brand-light-blue: #c0d9ff;
}

.banner-promo {
  position: relative;
  padding: 120px 20px;
  margin: 40px 5%;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Inter", sans-serif;

  /* The Background: Deep blue base with a bright "focal orb" in the center */
  background-color: var(--brand-light-blue);
  background:
    radial-gradient(circle at center, #ffffff 0%, transparent 60%),
    linear-gradient(180deg, #f0f7ff 0%, #00a537 100%);
}

.banner-promo__container {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

/* Badges */
.banner-promo__badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.badge--dark {
  background: #000;
  color: #fff;
}

/* Typography */
.banner-promo__title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -1px;
}

.banner-promo__info {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.info-icon {
  color: var(--brand-blue);
  font-size: 0.8rem;
}

/* Actions */
.banner-promo__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s;
}

.btn--filled {
  background: #1a1a1a;
  color: white;
}

.btn--white {
  background: white;
  color: #1a1a1a;
  border: 1px solid #ddd;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .banner-promo {
    padding: 80px 20px;
  }

  .banner-promo__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }
}
/* SECTION */
.money-section {
  padding: 80px 5%;
  text-align: center;
}

/* HEADING */
.money-title {
  font-size: 40px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 60px;
}

/* GRID */
.money-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1350px;
  margin: auto;
}

/* CARD */
.money-card {
  text-align: left;
  position: relative;
  padding-top: 30px;
}

/* TOP LINE */
.money-card::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  position: absolute;
  top: 0;
  left: 0;
}

/* ICON */
.money-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

/* TITLE */
.money-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 10px;
}

/* TEXT */
.money-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .money-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .money-title {
    font-size: 28px;
  }
}
/* SECTION */
.pro-section {
  padding: 25px 5%;
}

/* ROW */
.pro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1350px;
  margin: auto;
  margin-bottom: 100px;
}

/* REVERSE */
.pro-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.pro-content {
  flex: 1;
}

.pro-content h2 {
  font-size: 34px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.pro-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* SUB HEAD */
.pro-sub {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 20px;
}

/* BUTTON */
.pro-btn {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--accent), #017327);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  transition: 0.3s ease;
}

.pro-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* IMAGE SIDE */
.pro-image-box {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

/* GLOW BACKGROUND */
.pro-image-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgb(79 255 138 / 45%), transparent);
  border-radius: 50%;
  z-index: 0;
}

/* IMAGE */
.pro-image-box img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  transition: 0.4s ease;
}

/* FLOAT EFFECT */
.pro-image-box img:hover {
  transform: translateY(-10px) scale(1.03);
}

/* SPECIAL CARD */
.pro-card {
  background: linear-gradient(135deg, var(--accent), #94ffb8);
  padding: 50px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

/* GRID LINES EFFECT */
.pro-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgb(255 255 255 / 31%) 1px, #00000014 1px),
    linear-gradient(90deg, rgb(255 255 255 / 30%) 1px, #0000004d 1px);
  background-size: 40px 40px;
  top: 0;
  left: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pro-row {
    flex-direction: column;
    text-align: center;
  }

  .pro-row.reverse {
    flex-direction: column;
  }

  .pro-content h2 {
    font-size: 26px;
  }
}
:root {
  --brand-gold: #00ffa3;
  --brand-gold-glow: rgba(230, 185, 6, 0.3);
  --deep-navy: #080c14;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --text-dim: #94a3b8;
}

.future-finance {
  position: relative;
  padding: 140px 20px;
  background: linear-gradient(180deg, rgb(33 30 126), #000, rgb(0 24 94 / 80%));
  font-family: "Inter", sans-serif;
  overflow: hidden;
  color: #ffffff;
}

/* Glow */
.glow-overlay {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgb(79 255 138 / 19%) 0%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: 1;
}

/* Layout */
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 10;
}

/* Text */
.status-badge-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.status-badge {
  color: var(--brand-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: var(--brand-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-gold);
  animation: pulse 2s infinite;
}

.main-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 30px;
  color: #fff;
}

.text-gradient {
  background: linear-gradient(90deg, var(--brand-gold), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.summary {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
  margin: 0 0 40px 0;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* FIX */
}

.action-btn {
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.action-btn.primary {
  background: var(--brand-gold);
  color: var(--deep-navy);
}

.action-btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Card */
.glass-card {
  position: relative;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 32px;
}

.card-inner {
  /* background: rgba(15, 23, 42, 0.6); */
  backdrop-filter: blur(20px);
  border-radius: 31px;
  padding: 20px;
  position: relative;
}

.card-inner img {
  width: 100%;
  border-radius: 20px;
  filter: saturate(1.2);
}

/* Floating Cards */
.floating-stat {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.secondary-stat {
  top: 40px;
  right: -30px;
  bottom: unset;
  left: unset;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-gold);
  color: var(--deep-navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.stat-info span {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: block;
}

.stat-info strong {
  font-size: 1.3rem;
  color: #fff;
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* Laptop */
@media (max-width: 1200px) {
  .main-title {
    font-size: 3.2rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .future-finance {
    padding: 100px 20px;
  }

  .content-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .status-badge-container,
  .btn-group {
    justify-content: center;
  }

  .summary {
    margin-left: auto;
    margin-right: auto;
  }

  .floating-stat {
    position: relative;
    left: 0;
    right: 0;
    margin: 15px auto;
    width: fit-content;
  }

  .main-title {
    font-size: 2.6rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.2rem;
  }

  .summary {
    font-size: 1rem;
  }

  .action-btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .glass-card {
    border-radius: 20px;
  }

  .card-inner {
    padding: 15px;
  }

  .floating-stat {
    flex-direction: row;
    padding: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .future-finance {
    padding: 70px 15px;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .summary {
    font-size: 0.95rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .action-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .floating-stat {
    flex-direction: column;
    text-align: center;
  }

  .stat-icon {
    margin: 0 auto;
  }
}
:root {
  --gold-primary: #4cc472;
  --dark-bg: #ffffff; /* Match previous section */
  --card-bg: rgba(255, 255, 255, 0.03);
  --border-light: rgba(255, 255, 255, 0.1);
  --text-main: #000;
  --text-muted: #94a3b8;
}

.benefits-section {
  padding: 60px 20px;
  background-color: var(--dark-bg);
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  position: relative;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.benefits-header {
  text-align: center;
  margin-bottom: 80px;
}

.eyebrow {
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.benefits-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.gold-text {
  background: linear-gradient(135deg, #00862d 0%, #88f5ad 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Styling */
.benefit-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgb(152 206 170);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(6, 230, 73, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Internal Glow Effect on Hover */
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(62, 230, 6, 0.1),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.benefit-card:hover .card-glow {
  opacity: 1;
}

/* Icon Styling */
.benefit-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(51, 230, 6, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid rgba(84, 230, 6, 0.2);
}

.benefit-icon-wrapper img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 4px 8px rgba(111, 230, 6, 0.3));
}

/* Text Content */
.benefit-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.benefit-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-title {
    font-size: 2.2rem;
  }

  .benefit-card {
    padding: 30px;
  }
}
:root {
  --gold-main: #4fff8a;
  --onyx-black: #05070a;
  --onyx-gray: #0f1115;
  --text-gray: #94a3b8;
}

.gxp-onyx-hero {
  background: linear-gradient(180deg, rgb(33 30 126), #000, rgb(0 24 94 / 80%));
  min-height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  padding: 100px 5%;
}

/* Background Ambient Glow */
.gxp-onyx-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(230, 185, 6, 0.05) 0%,
    transparent 70%
  );
  top: -10%;
  right: -5%;
  z-index: 1;
}

.gxp-onyx-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
  align-items: center;
}

/* Status Pill */
.gxp-status-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.gxp-pulse-ring {
  width: 8px;
  height: 8px;
  background: var(--gold-main);
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 10px var(--gold-main);
}

.gxp-pill-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gray);
}

/* Typography */
.gxp-onyx-h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -0.03em;
  color: #fff;
}

.gxp-gold-text {
  color: var(--gold-main);
  background: linear-gradient(135deg, #fff 30%, var(--gold-main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gxp-onyx-p {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 40px 0;
}

/* Actions & Metrics */
.gxp-onyx-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.gxp-btn-gold {
  background: var(--gold-main);
  color: var(--onyx-black);
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.gxp-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.gxp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.gxp-onyx-metrics {
  display: flex;
  align-items: center;
  gap: 30px;
}

.gxp-metric strong {
  display: block;
  font-size: 1.5rem;
  color: #fff;
}
.gxp-metric span {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.gxp-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Visual Column */
.gxp-image-canvas {
  /* background: linear-gradient(
    135deg,
    rgba(230, 185, 6, 0.2) 0%,
    transparent 100%
  ); */
  padding: 1px;
  border-radius: 24px;
}

.gxp-canvas-inner {
  /* background: var(--onyx-gray); */
  border-radius: 23px;
  padding: 15px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.gxp-main-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .gxp-onyx-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .gxp-onyx-p,
  .gxp-onyx-actions,
  .gxp-onyx-metrics {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .gxp-onyx-h1 {
    font-size: 2.8rem;
  }
}
:root {
  --gxp-gold: #5ee476;
  --gxp-navy: #0f172a;
  --gxp-slate: #64748b;
  --gxp-bg: #fcfdfe;
}

.gxp-mission-core {
  padding: 120px 20px;
  background-color: var(--gxp-bg);
  font-family: "Inter", sans-serif;
}

.gxp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gxp-mission-header {
  text-align: center;
  margin-bottom: 100px;
}

.gxp-badge-alt {
  background: rgba(230, 185, 6, 0.1);
  color: var(--gxp-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.gxp-h2 {
  font-size: 3.2rem;
  color: var(--gxp-navy);
  margin: 20px 0;
  font-weight: 800;
}

.gxp-accent {
  color: var(--gxp-gold);
}

.gxp-strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.gxp-strategy-step {
  position: relative;
  z-index: 2;
}

.gxp-step-bg-num {
  position: absolute;
  top: -60px;
  left: 20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.03);
  z-index: -1;
}

.gxp-step-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: 0.4s ease;
  height: 100%;
}

.gxp-indicator-dot {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  border-radius: 50%;
  margin-bottom: 25px;
}

/* Active State */
.gxp-strategy-step.is-current .gxp-step-card {
  border-color: var(--gxp-gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(230, 185, 6, 0.1);
}

.gxp-strategy-step.is-current .gxp-indicator-dot {
  background: var(--gxp-gold);
  box-shadow: 0 0 0 6px rgba(230, 185, 6, 0.1);
}

.gxp-h3 {
  font-size: 1.4rem;
  color: var(--gxp-navy);
  margin-bottom: 15px;
}

.gxp-p {
  color: var(--gxp-slate);
  line-height: 1.7;
}

.gxp-status-tag {
  display: block;
  margin-top: 20px;
  color: var(--gxp-gold);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
  .gxp-strategy-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .gxp-h2 {
    font-size: 2.5rem;
  }
}
:root {
  --gxp-gold: #4fff8a;
  --gxp-dark: #050505;
  --gxp-gray: #8a8a8a;
}

.gxp-eclipse-portal {
  background: linear-gradient(180deg, rgb(33 30 126), #000, rgb(0 24 94 / 80%));
  padding: clamp(80px, 10vw, 160px) 5%;
  font-family: "Inter", sans-serif;
  color: #fff;
  overflow: hidden;
}

.gxp-eclipse-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 100px);
}

/* ================= VISUAL ================= */
.gxp-visual-wing {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gxp-eclipse-ring {
  position: relative;
  width: clamp(200px, 30vw, 320px);
  height: clamp(200px, 30vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gxp-core-asset {
  width: clamp(70px, 10vw, 100px);
  height: clamp(70px, 10vw, 100px);
  z-index: 10;
  filter: drop-shadow(0 0 30px rgba(230, 185, 6, 0.4));
}

.gxp-core-asset img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Orbit Rings */
.gxp-orbit-1,
.gxp-orbit-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gxp-orbit-1 {
  width: 100%;
  height: 100%;
  border-top: 1px solid var(--gxp-gold);
  animation: rotate 8s linear infinite;
}

.gxp-orbit-2 {
  width: 70%;
  height: 70%;
  border-bottom: 1px solid var(--gxp-gold);
  animation: rotate 12s linear infinite reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Status */
.gxp-live-status {
  margin-top: 25px;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gxp-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.gxp-pulse {
  width: 6px;
  height: 6px;
  background: var(--gxp-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gxp-gold);
}

/* ================= CONTENT ================= */
.gxp-content-wing {
  flex: 1;
}

.gxp-display-h2 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.gxp-display-p {
  color: var(--gxp-gray);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 30px;
}

/* Buttons */
.gxp-action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gxp-btn-glass {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 28px;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  white-space: nowrap;
}

.gxp-btn-glass:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
}

.gxp-caption {
  font-size: 0.75rem;
  color: #555;
  text-transform: uppercase;
  font-weight: 700;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .gxp-eclipse-container {
    flex-direction: column;
    text-align: center;
  }

  .gxp-display-p {
    margin-left: auto;
    margin-right: auto;
  }

  .gxp-action-row {
    justify-content: center;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .gxp-eclipse-portal {
    padding: 70px 20px;
  }

  .gxp-eclipse-ring {
    width: 200px;
    height: 200px;
  }

  .gxp-display-h2 {
    font-size: 2rem;
  }

  .gxp-display-p {
    font-size: 0.95rem;
  }

  .gxp-btn-glass {
    width: 100%;
    justify-content: center;
  }

  .gxp-action-row {
    flex-direction: column;
    width: 100%;
  }
}
:root {
  --gxp-gold: #4fff8a;
  --gxp-dark: #0f172a;
  --gxp-border-light: #f1f5f9;
  --gxp-slate-500: #64748b;
  --gxp-white: #ffffff;
}

.gxp-ledger-section {
  background-color: #ffffff;
  padding: clamp(70px, 10vw, 120px) 5%;
  font-family: "Inter", sans-serif;
  color: var(--gxp-dark);
}

/* Layout */
.gxp-ledger-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

/* Content */
.gxp-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: clamp(0.7rem, 1vw, 0.75rem);
  font-weight: 700;
  color: #22c55e;
  border: 1px solid #f1f5f9;
  margin-bottom: 20px;
}

.gxp-chip-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.gxp-ledger-h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}

.gxp-text-gold {
  color: var(--gxp-gold);
}

.gxp-ledger-p {
  color: var(--gxp-slate-500);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Buttons */
.gxp-ledger-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.gxp-btn-dark,
.gxp-btn-ghost {
  padding: clamp(12px, 1.5vw, 14px) clamp(20px, 3vw, 28px);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  white-space: nowrap;
  text-align: center;
}

.gxp-btn-dark {
  background: var(--gxp-dark);
  color: #fff;
}

.gxp-btn-ghost {
  border: 1px solid #e2e8f0;
  color: var(--gxp-dark);
}

.gxp-btn-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

/* Partner */
.gxp-partner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
}

.gxp-partner-label {
  font-size: clamp(0.7rem, 1vw, 0.75rem);
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
}

.gxp-partner-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gxp-logo-text {
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 800;
  color: #cbd5e1;
}

.gxp-v-sep {
  width: 1px;
  height: 15px;
  background: #e2e8f0;
}

/* Card */
.gxp-ledger-visual {
  position: relative;
}

.gxp-ledger-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.05);
}

.gxp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.gxp-token-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gxp-token-info img {
  width: clamp(28px, 4vw, 36px);
  height: clamp(28px, 4vw, 36px);
}

.gxp-status-tag {
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
}

.gxp-ledger-value {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 10px 0;
}

.gxp-card-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.gxp-f-item span {
  font-size: 0.75rem;
  color: #94a3b8;
}

.gxp-f-item strong {
  font-size: 1rem;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .gxp-ledger-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gxp-ledger-actions,
  .gxp-partner-row {
    justify-content: center;
  }

  .gxp-ledger-p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .gxp-ledger-section {
    padding: 60px 15px;
  }

  .gxp-ledger-actions {
    flex-direction: column;
    width: 100%;
  }

  .gxp-btn-dark,
  .gxp-btn-ghost {
    width: 100%;
  }

  .gxp-card-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Ultra Small */
@media (max-width: 380px) {
  .gxp-ledger-h2 {
    font-size: 1.6rem;
  }
}
:root {
  --bg-color: #0a0a0a;
  --card-bg: rgb(255 255 255 / 0%);
  /* --text-main: #ffffff; */
  --pos-color: #6bce5a;
  --neg-color: #ff4a4a;
  --speed: 30s; /* Adjust speed here */
}

.ticker-container {
  background-color: var(--bg-color);
  overflow: hidden;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #ffff;
}

/* Individual Item Card */
.ticker-item {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}

.ticker-item span {
  color: var(--pos-color);
  font-weight: bold;
}
.ticker-item span.neg {
  color: var(--neg-color);
}

.ticker-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content; /* 🔥 important */
  gap: 15px;
}

/* Smooth continuous animation */
.ltr .ticker-track {
  animation: scroll-left var(--speed) linear infinite;
}

.rtl .ticker-track {
  animation: scroll-right var(--speed) linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
/* Floating Coin */
.gxp-floating-coin {
  position: absolute;
  left: 0px; /* adjust position */
  top: 0%;
  /* transform: translateY(-50%); */
  z-index: 1;
  pointer-events: none;
}

.gxp-floating-coin1 {
  position: absolute;
  right: 0px; /* adjust position */
  bottom: 0%;
  /* transform: translateY(-50%); */
  z-index: 1;
  pointer-events: none;
}

.gxp-floating-coin2 {
  position: absolute;
  left: 0px; /* adjust position */
  top: 350%;
  /* transform: translateY(-50%); */
  z-index: 1;
  pointer-events: none;
}

.gxp-floating-coin img {
  width: clamp(100px, 18vw, 100px);
  animation:
    coinMove 6s ease-in-out infinite,
    rotateCoin 12s linear infinite;
}

.gxp-floating-coin2 img {
  width: clamp(100px, 18vw, 100px);
  animation:
    coinMove 6s ease-in-out infinite,
    floatCoin 6s linear infinite;
}

@keyframes coinMove {
  0% {
    transform: translateY(0) rotateY(0deg);
  }
  50% {
    transform: translateY(-20px) rotateY(180deg);
  }
  100% {
    transform: translateY(0) rotateY(360deg);
  }
}

/* Floating up-down */
@keyframes floatCoin {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Smooth rotation */
@keyframes rotateCoin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@media (max-width: 768px) {
  .gxp-floating-coin {
    left: -30px;
  }

  .gxp-floating-coin img {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .gxp-floating-coin {
    display: none; /* optional for small screens */
  }
}
.gxp-floating-coin1 img {
  width: clamp(100px, 18vw, 100px);
  animation:
    coinMove 6s ease-in-out infinite,
    floatCoin 7s linear infinite;
}
