/* ===== Section shared ===== */
.section {
  padding: 90px 0;
}
.section-head {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 54px;
}
.section-head h2 {
  font-size: 50px;
  font-weight: 700;
  color: #101727;
  line-height: 1.3;
  margin-bottom: 22px;
}
.section-head p {
  font-size: 22px;
  color: var(--c-text-dim);
  line-height: 1.4;
}
.section-head .fs-18 {
  font-size: 18px;
}
.section-head.light h2 {
  color: #fff;
}
.section-head.light p {
  color: #aab4c5;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 600px;
  background: var(--c-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 0% 35%,
      rgba(230, 145, 50, 0.55) 0%,
      rgba(230, 145, 50, 0) 38%
    ),
    radial-gradient(
      circle at 100% 90%,
      rgba(230, 120, 40, 0.35) 0%,
      rgba(230, 120, 40, 0) 40%
    ),
    var(--c-dark);
  z-index: 0;
}
.hero-swiper {
  position: relative;
  z-index: 1;
  height: 600px;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 600px;
  padding-top: var(--header-h);
}
.hero-copy {
  max-width: 650px;
  color: #fff;
  flex: 1;
  min-width: 0;
}
.hero-visual {
  flex: 0 0 auto;
  width: min(44%, 500px);
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy h1 {
  font-size: 55px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 26px;
}
.hero-copy h1 .amber {
  color: var(--c-amber);
}
.hero-copy .hero-sub {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 16px;
  max-width: 650px;
}
.hero-copy .hero-desc,
.hero-copy p {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 34px;
  max-width: 580px;
}

.glass-card {
  position: absolute;
  inset: 30px;
  border-radius: 28px;
  background: radial-gradient(
    circle at 40% 35%,
    rgba(255, 220, 180, 0.65),
    rgba(230, 150, 70, 0.25) 45%,
    rgba(20, 26, 40, 0.1) 75%
  );
  filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shape-1 {
  width: 26px;
  height: 26px;
  top: 18px;
  right: 60px;
  border-radius: 6px;
  transform: rotate(25deg);
  border-color: rgba(120, 170, 220, 0.6);
}
.shape-2 {
  width: 16px;
  height: 16px;
  bottom: 70px;
  right: -10px;
  border-radius: 4px;
  background: rgba(216, 122, 34, 0.5);
  border: none;
  transform: rotate(20deg);
}
.shape-3 {
  width: 10px;
  height: 10px;
  top: 120px;
  right: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
}

.hero-swiper .hero-pagination,
.hero-swiper .hero-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: auto;
  left: auto;
  right: calc((100% - 1200px) / 2);
  bottom: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  /* width: auto; */
}
.hero-pagination .swiper-pagination-bullet {
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  opacity: 1;
  margin: 0 !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: width 0.24s ease, background 0.24s ease, opacity 0.24s ease, box-shadow 0.24s ease;
}
.hero-pagination .swiper-pagination-bullet-active {
  width: 22px;
  background: #ff8a1f;
  opacity: 1;
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.65);
}

/* ===== Features ===== */
.features {
  background: #fff;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  background: var(--c-cream);
  border-radius: 16px;
  padding: 30px 28px 26px;
  min-height: 250px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card.dark,
.feature-card:hover {
  background: var(--c-dark);
  color: #fff;
  box-shadow: 0 22px 42px rgba(16, 23, 39, 0.2);
  transform: translateY(-8px);
}
.fc-head img{
  width: 58px;
  height: 58px;
}
.fc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.fc-head h3 {
  font-size: 36px;
  font-weight: 700;
  color: #101727;
}
.feature-card.dark .fc-head h3,
.feature-card:hover .fc-head h3 {
  color: #fff;
}
.fc-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #FFEBCD;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fc-icon img {
  width: 28px;
}
.feature-card.dark .fc-icon {
  background: rgba(232, 154, 60, 0.25);
  color: var(--c-amber);
}
.feature-b{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
.feature-b .line{
  width: 50px;
  transition: filter 0.2s ease;
}
.feature-b .icon{
  width: 128px;
}
.feature-card p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--c-text-dim);
  max-width: 88%;
  height: 170px;
}
.feature-card.dark p,
.feature-card:hover p {
  color: #aeb8c8;
}

.feature-card:hover .feature-b .line {
  filter: brightness(0) invert(1);
}
.fc-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 40px;
  margin-top: 28px;
}
.fc-bars i {
  width: 6px;
  background: var(--c-amber-2);
  border-radius: 2px;
}
.fc-bars i:nth-child(1) { height: 60%; }
.fc-bars i:nth-child(2) { height: 100%; }
.fc-bars i:nth-child(3) { height: 45%; }
.fc-bars i:nth-child(4) { height: 80%; }
.fc-bars i:nth-child(5) { height: 30%; }

/* 3D-ish decorative shapes built with CSS */
.fc-3d {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 70px;
  height: 60px;
}
.fc-3d-layers {
  background: repeating-linear-gradient(
    180deg,
    #ef7d4a 0,
    #ef7d4a 10px,
    #fbc7a8 10px,
    #fbc7a8 14px
  );
  border-radius: 8px;
  transform: skewX(-12deg);
  opacity: 0.95;
}
.fc-3d-torus {
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #ff7a36 0 22px, transparent 23px),
    conic-gradient(from 0deg, #ff7a36, #d9531a, #ff7a36);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 16px, #000 17px);
  mask: radial-gradient(circle at 50% 50%, transparent 16px, #000 17px);
}
.fc-3d-cubes {
  background: linear-gradient(135deg, #ff7a36, #d9531a);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

/* ===== Audience ===== */
.audience {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.audience::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 520px;
  height: 360px;
  background: radial-gradient(circle, rgba(232, 154, 60, 0.18), transparent 70%);
  z-index: 0;
}
.audience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 140px;
  margin: 0 auto;
}
.aud-item {
  display: flex;
  flex-direction: column;
}
.aud-icon {
  height: 56px;
  width: 56px;
  transform: translateX(-5px);
  margin-bottom: 15px;
}

.aud-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #101727;
  margin-bottom: 12px;
}
.aud-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text-dim);
}

/* ===== Builders (dark) ===== */
.builders {
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
.builders::before {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(90, 70, 160, 0.25), transparent 60%);
}
.builders-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  justify-content: space-between;
  z-index: 1;
}
.builders-copy {
  flex: 1;
  max-width: 520px;
}
.eyebrow {
  display: inline-block;
  color: var(--c-amber);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}
.builders-copy h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 30px;
}
.builders-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 25px;
  align-items: flex-start;
}
.bl-icon {
  width: 20px;
  display: block;
  transform: translateY(4px);

}
.builders-list p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
}
.builders-list strong {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.code-box {
  flex: 0 0 575px;
  width: 575px;
}
.code-tabs {
  display: flex;
  gap: 4px;
  background: #232a3d;
  padding: 6px 8px;
}
.code-tab {
  padding: 8px 16px;
  font-size: 13px;
  color: #9aa6b8;
  border-radius: 6px;
}
.code-tab.active {
  background: #1a2030;
  color: #fff;
}
.code-body {
  position: relative;
  padding: 8px 6px 16px;
  
}
.code-banner{
  width: 575px;
}
.code-pane {
  display: none;
  margin: 0;
  background: transparent !important;
  font-size: 13px;
  line-height: 1.7;
  max-height: 320px;
  overflow: auto;
}
.code-pane.active {
  display: block;
}
.code-pane code {
  background: transparent !important;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}
.code-copy {
  position: absolute;
  top: 12px;
  right: 16px;
  color: #6b7688;
  font-size: 16px;
}
.code-copy:hover {
  color: #fff;
}

.stats-bar {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  background: #2A3140;
  border-radius: 20px;
  padding: 30px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: left;
  padding-left: 40px;
}
.stat strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.stat span {
  font-size: 14px;
  color: #fff;
}

/* ===== Exchanges ===== */
.exchanges {
  background: #fff;
}
.exchange-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 0 auto;
}
.exchange {
  width: 190px;
  margin-bottom: 15px;
}
.exchange img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ===== Insights ===== */
.insights {
  background: #fff;
}
.insights-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.insights-swiper {
  flex: 1;
  overflow: hidden;
}
.ins-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  overflow: hidden;
}
.ins-thumb {
  height: 190px;
  background-size: cover;
  background-position: center;
}
.ins-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ins-body {
  padding: 18px 20px 22px;
}
.ins-body h3 {
  font-size: 16px;
  color: #000;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ins-body time {
  font-size: 14px;
  color: var(--c-text-dim);
}
.ins-nav {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--c-amber);
  color: var(--c-amber-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.ins-nav svg {
  width: 26px;
  height: 26px;
}
.ins-nav:hover {
  background: var(--amber-grad);
  color: #fff;
  border-color: transparent;
}
.ins-nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}


/* ===== CTA banner ===== */
.cta-banner {
  background: var(--amber-grad);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 140px;
}
.cta-inner h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

/* ===== Homepage motion polish ===== */
@keyframes heroGradientDrift {
  0%, 100% {
    transform: scale(1);
    filter: hue-rotate(0deg);
  }
  50% {
    transform: scale(1.08);
    filter: hue-rotate(-8deg);
  }
}

@keyframes orbitFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--shape-rotate, 0deg));
  }
  50% {
    transform: translate3d(var(--shape-x, 14px), var(--shape-y, -18px), 0) rotate(calc(var(--shape-rotate, 0deg) + 18deg));
  }
}

@keyframes cardIconPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.04);
  }
}

.hero-bg {
  transform-origin: center;
  animation: heroGradientDrift 12s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 70% 42%, #000 0 34%, transparent 70%);
  pointer-events: none;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .btn {
  animation: liftIn 0.8s ease both;
}

.hero-copy p {
  animation-delay: 0.12s;
}

.hero-copy .btn {
  animation-delay: 0.24s;
}

.glass-card {
  animation: floatGlow 6.5s ease-in-out infinite;
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.12),
    0 34px 90px rgba(232, 154, 60, 0.22);
}



.shape-1 {
  --shape-rotate: 25deg;
  --shape-x: -12px;
  --shape-y: 16px;
}

.shape-2 {
  --shape-rotate: 20deg;
  --shape-x: 18px;
  --shape-y: -14px;
  animation-delay: 0.4s;
}

.shape-3 {
  --shape-x: -18px;
  --shape-y: -20px;
  animation-delay: 0.8s;
}

.feature-card::before,
.ins-card::before,
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 8%, rgba(255, 255, 255, 0.38) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-100%);
  pointer-events: none;
}

.feature-card:hover::before,
.ins-card:hover::before,
.stats-bar:hover::before {
  opacity: 1;
  animation: shimmerSweep 0.9s ease;
}

.feature-card:hover .fc-icon,
.feature-card:hover .feature-b .icon {
  animation: cardIconPulse 1.6s ease-in-out infinite;
}

.aud-item {
  padding: 18px;
  border-radius: 18px;
  transition: background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.aud-item:hover {
  background: rgba(255, 248, 238, 0.86);
  box-shadow: 0 18px 36px rgba(16, 23, 39, 0.08);
  transform: translateY(-6px);
}

.aud-item:hover .aud-icon,
.builders-list li:hover .bl-icon {
  filter: drop-shadow(0 10px 14px rgba(232, 154, 60, 0.35));
  transform: translateY(-2px) scale(1.08);
}

.aud-icon,
.bl-icon {
  transition: transform 0.24s ease, filter 0.24s ease;
}

.builders-list li {
  padding: 12px;
  border-radius: 14px;
  transition: background 0.24s ease, transform 0.24s ease;
}

.builders-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(8px);
}

.code-banner {
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.22));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.code-box:hover .code-banner {
  filter: drop-shadow(0 36px 70px rgba(232, 154, 60, 0.2));
  transform: translateY(-8px) rotateX(2deg);
}

.stats-bar {
  overflow: hidden;
}





.ins-card {
  position: relative;
  transition: box-shadow 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.ins-card:hover {
  border-color: rgba(232, 154, 60, 0.45);
  transform: translateY(-8px);
}

.ins-thumb img {
  transition: transform 0.42s ease;
}

.ins-card:hover .ins-thumb img {
  transform: scale(1.08);
}

.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: -80% auto -80% -20%;
  width: 42%;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(18deg);
  animation: shimmerSweep 5s ease-in-out infinite;
}

