@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600&display=swap');

/* ========== HERO ========== */
:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --hero-green: #37d67a;
  --hero-red: #ff4d57;
  --color-bg-deep: #02040a;
  --color-bg-black: #000000;
  --surface-border: rgba(255, 255, 255, 0.12);
  --surface-line: rgba(255, 255, 255, 0.03);
  --text-muted-72: rgba(225, 236, 255, 0.72);
  --text-muted-74: rgba(225, 236, 255, 0.74);
  --hero-border: var(--surface-border);
  --hero-surface: rgba(12, 18, 31, 0.72);
}

.hero {
    position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3.5rem 1rem 4rem;
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  align-items: center;
}

@keyframes heroParticlesDrift {
  from {
    transform: translate3d(-10px, 0, 0);
  }
  to {
    transform: translate3d(10px, -12px, 0);
  }
}

@keyframes heroGridIn {
  from {
    background-size: 0 0, 0 0;
    opacity: 0;
  }
  to {
    background-size: 120px 120px, 120px 120px;
    opacity: 0.35;
  }
}

@keyframes heroGridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 40px, 40px 0;
  }
}

@keyframes heroCandlesDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: -40% 0, 40% 0;
  }
}

@keyframes heroSweep {
  from {
    transform: translateX(-40%);
    background: radial-gradient(ellipse 90% 40% at 0% 50%, rgba(255, 77, 87, 0.0), transparent 55%);
  }
  50% {
    transform: translateX(20%);
    background: radial-gradient(ellipse 90% 40% at 50% 50%, rgba(255, 77, 87, 0.28), transparent 60%);
  }
  to {
    transform: translateX(80%);
    background: radial-gradient(ellipse 90% 40% at 100% 50%, rgba(55, 214, 122, 0.32), transparent 60%);
  }
}

/* Full-page background */
.page-bg {
  inset: 0;
  background:
    radial-gradient(130% 180% at 12% 0%, rgba(255, 77, 87, 0.42), transparent 60%),
    radial-gradient(130% 180% at 88% 100%, rgba(55, 214, 122, 0.36), transparent 60%),
    radial-gradient(220% 260% at 50% 10%, rgba(72, 149, 239, 0.3), transparent 70%),
    radial-gradient(200% 260% at 50% 120%, var(--color-bg-deep), var(--color-bg-black));
  background-color: var(--color-bg-deep);
  pointer-events: none;
}

.page-bg {
  position: fixed;
  z-index: -1;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: -40%;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.32) 0, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.22) 0, transparent 55%),
    radial-gradient(circle at 30% 85%, rgba(255, 255, 255, 0.18) 0, transparent 55%);
  opacity: 0.06;
  mix-blend-mode: screen;
  filter: blur(1px);
  animation: heroParticlesDrift 38s linear infinite alternate;
  pointer-events: none;
}

.page-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--surface-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--surface-line) 1px, transparent 1px);
  background-size: 0 0;
  opacity: 0.35;
  mask-image: radial-gradient(circle at 50% 30%, black 0, transparent 65%);
  pointer-events: none;
  animation: heroGridIn 1.6s ease-out forwards, heroGridDrift 32s linear infinite;
}

.page-bg__candles {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(55, 214, 122, 0.0) 0,
      rgba(55, 214, 122, 0.0) 94px,
      rgba(55, 214, 122, 0.26) 95px,
      rgba(55, 214, 122, 0.0) 98px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 77, 87, 0.0) 0,
      rgba(255, 77, 87, 0.0) 88px,
      rgba(255, 77, 87, 0.25) 89px,
      rgba(255, 77, 87, 0.0) 92px
    );
  background-size: 220% 100%;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroCandlesDrift 26s linear infinite;
}

.page-bg__sweep {
  position: absolute;
  inset: 10% -40% -20%;
  background: radial-gradient(ellipse 90% 40% at 0% 50%, rgba(255, 77, 87, 0.0), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroSweep 18s linear infinite;
  opacity: 0.22;
}

/* Fireflies: floating glow dots */
.page-bg__fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.firefly {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 8px 2px rgba(255, 255, 255, 0.5),
    0 0 16px 4px rgba(74, 242, 142, 0.25);
  opacity: 0;
  animation: fireflyFloat 12s ease-in-out infinite;
}

.firefly:nth-child(1)  { left: 8%;  top: 18%; animation-delay: 0s;   animation-duration: 14s; }
.firefly:nth-child(2)  { left: 22%; top: 45%; animation-delay: 1.5s; animation-duration: 11s; }
.firefly:nth-child(3)  { left: 45%; top: 12%; animation-delay: 3s;   animation-duration: 16s; }
.firefly:nth-child(4)  { left: 68%; top: 62%; animation-delay: 0.5s; animation-duration: 13s; }
.firefly:nth-child(5)  { left: 85%; top: 28%; animation-delay: 2.5s; animation-duration: 10s; }
.firefly:nth-child(6)  { left: 15%; top: 72%; animation-delay: 4s;   animation-duration: 15s; }
.firefly:nth-child(7)  { left: 55%; top: 38%; animation-delay: 1s;   animation-duration: 12s; }
.firefly:nth-child(8)  { left: 78%; top: 8%;  animation-delay: 2s;   animation-duration: 17s; }
.firefly:nth-child(9)  { left: 32%; top: 55%; animation-delay: 3.5s; animation-duration: 9s;  }
.firefly:nth-child(10) { left: 92%; top: 48%; animation-delay: 0.8s; animation-duration: 14s; }
.firefly:nth-child(11) { left: 5%;  top: 35%; animation-delay: 2.2s; animation-duration: 11s; }
.firefly:nth-child(12) { left: 62%; top: 78%; animation-delay: 4.2s; animation-duration: 13s; }
.firefly:nth-child(13) { left: 38%; top: 22%; animation-delay: 1.2s; animation-duration: 15s; }
.firefly:nth-child(14) { left: 88%; top: 65%; animation-delay: 3.2s; animation-duration: 10s; }
.firefly:nth-child(15) { left: 18%; top: 88%; animation-delay: 0.3s; animation-duration: 12s; }

@keyframes fireflyFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  20%      { transform: translate(15px, -25px) scale(1.1); opacity: 0.9; }
  40%      { transform: translate(-8px, -45px) scale(0.95); opacity: 0.6; }
  60%      { transform: translate(20px, -30px) scale(1.05); opacity: 0.85; }
  80%      { transform: translate(-5px, -15px) scale(1); opacity: 0.5; }
}

/* Same vignette as hero, full page — avoids visible "split" between hero and rest */
.page-bg__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 20, 0.9) 0%, rgba(7, 11, 20, 0.7) 32%, rgba(7, 11, 20, 0.24) 55%, transparent 74%),
    radial-gradient(ellipse 60% 50% at 15% 45%, rgba(255, 77, 87, 0.34), transparent 48%),
    radial-gradient(ellipse 60% 50% at 85% 45%, rgba(55, 214, 122, 0.34), transparent 48%),
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent, rgba(7, 11, 20, 0.7) 72%),
    linear-gradient(180deg, rgba(7, 11, 20, 0.72), rgba(7, 11, 20, 0.18) 22%, rgba(7, 11, 20, 0.5));
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__row {
  min-height: 48vh;
}

/* Laptops/tablets landscape: reduce dead space before How it works */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero {
    min-height: 42vh;
    padding-bottom: 1.6rem;
  }

  .hero__row {
    min-height: auto;
  }

  .flow-cards {
    padding-top: 2.15rem;
  }
}

/* Mid desktops (where the gap was still visible) */
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .hero {
    min-height: 44vh;
    padding-bottom: 1.9rem;
  }

  .hero__row {
    min-height: auto;
  }

  .flow-cards {
    padding-top: 2.35rem;
  }
}

@media (min-width: 1400px) {
  .hero {
    min-height: 48vh;
    padding-top: 4.375rem;
    padding-bottom: 3rem;
  }
  .hero__row {
    min-height: 40vh;
  }
}

/* 27" and large desktops: slightly tighter but still with breathing room */
@media (min-width: 1600px) {
  .hero {
    min-height: 42vh;
    padding-bottom: 2.75rem;
  }
  .hero__row {
    min-height: auto;
  }
  .flow-cards {
    padding-top: 3.5rem;
  }
}

/* Hero text block */
.hero__content {
  max-width: 820px;
}

.hero__content.text-center .hero__desc {
  max-width: 560px;
}

.hero__tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hero-green);
  border: 1px solid rgba(55, 214, 122, 0.25);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  background: rgba(55, 214, 122, 0.06);
  animation: heroTagIn 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroTagIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-size: clamp(2.6rem, 5.8vw, 4.3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  animation: heroFadeUp 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title--highlight {
  color: #4af28e;
  font-weight: 700;
  text-shadow:
    0 0 12px rgba(74, 242, 142, 0.6),
    0 0 32px rgba(74, 242, 142, 0.4);
}

.hero__desc {
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  animation: heroFadeUp 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__desc-strong {
  font-weight: 600;
  color: inherit;
  white-space: nowrap;
  position: relative;
}

.hero__desc-strong--api {
  text-decoration-color: rgba(74, 242, 142, 0.6);
}

.hero__desc-strong--mt {
  text-decoration-color: rgba(0, 212, 255, 0.6);
}

.hero__desc-strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05em;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
  opacity: 0.85;
}

@media (min-width: 1400px) {
  .hero__title {
    font-size: 4.8rem;
  }

  .hero__desc {
    font-size: 1.25rem;
  }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: heroFadeUp 0.7s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.hero__cta:focus-visible {
  outline: 2px solid var(--hero-green);
  outline-offset: 3px;
}

.hero__cta--primary {
  font-family: "Figtree", sans-serif;
  padding: 1.2rem 2.65rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.15;
  border-radius: 14px;
  background: linear-gradient(160deg, #ff5a63 0%, #ff4d57 50%, #e93a46 100%);
  color: #fff !important;
  box-shadow:
    0 4px 15px rgba(255, 77, 87, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.hero__cta--primary:hover {
  background: linear-gradient(160deg, #ff4d57 0%, #f4434e 50%, #db3340 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(255, 77, 87, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

@media (max-width: 1199.98px) {
  .hero__cta--primary {
    padding: 1.05rem 2.2rem;
    font-size: 1.02rem;
  }
}

.hero__cta--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 77, 87, 0.4);
}

.hero__cta--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.hero__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.hero__cta--secondary:active {
  transform: translateY(0);
}

/* ========== FLOW CARDS (separate section below hero) ========== */
.flow-cards {
  padding: 4.5rem 0 4rem;
  background: transparent;
  position: relative;
}

.flow-cards__inner {
  position: relative;
  z-index: 1;
}

.flow-cards__heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  text-align: center;
}

.flow-cards__roadmap-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 2.15rem;
}

.flow-cards__roadmap-sub {
  margin: 0;
  color: rgba(220, 232, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.3;
}

.flow-cards__roadmap-sub-highlight {
  background: linear-gradient(90deg, #ff4d57 0%, #ff6f95 45%, #ff4d57 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 77, 87, 0.28), 0 0 34px rgba(255, 77, 87, 0.18);
  font-weight: 800;
}

.flow-cards__roadmap-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 149, 255, 0.35);
  background: rgba(125, 149, 255, 0.1);
  color: rgba(219, 229, 255, 0.92);
  text-decoration: none;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.flow-cards__roadmap-link:hover {
  color: #fff;
  background: rgba(125, 149, 255, 0.18);
  border-color: rgba(125, 149, 255, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .flow-cards__roadmap-row {
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .flow-cards__roadmap-sub {
    text-align: center;
  }
}

/* Tighten header vertical empty space without resizing logo */
.landing-header {
  padding-top: 0.46rem;
  padding-bottom: 0.46rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(6, 12, 26, 0.72) 0%, rgba(8, 16, 32, 0.72) 100%) !important;
  backdrop-filter: blur(8px);
  font-family: "Figtree", sans-serif;
}

.landing-header__container {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  gap: 1.35rem;
}

.landing-header__logo {
  height: 34px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transform-origin: left center;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.landing-header .navbar-brand:hover .landing-header__logo {
  transform: scale(1.045);
  filter: drop-shadow(0 0 10px rgba(74, 242, 142, 0.24)) drop-shadow(0 0 16px rgba(69, 173, 255, 0.18));
}

.landing-header__menu {
  gap: 0.9rem;
}

.landing-header__menu .nav-link {
  color: rgba(225, 236, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.45rem 0.35rem;
  border-radius: 8px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.landing-header__menu .nav-link:hover {
  color: rgba(248, 252, 255, 0.9);
  text-shadow: 0 0 8px rgba(69, 173, 255, 0.12);
}

.landing-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

@media (max-width: 1399.98px) {
  .landing-header__menu {
    gap: 0.62rem;
  }

  .landing-header__menu .nav-link {
    font-size: 0.9rem;
    padding-left: 0.28rem;
    padding-right: 0.28rem;
  }

  .landing-header__actions {
    gap: 0.45rem;
  }
}

.landing-header__btn {
  border-radius: 10px;
  font-weight: 500;
  padding: 0.44rem 0.75rem;
}

.landing-header__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(233, 242, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
}

.landing-header__btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.landing-header__btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(238, 244, 255, 0.9);
  background: transparent;
}

.landing-header__btn--outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.landing-header__btn--login {
  border: 1px solid rgba(138, 169, 212, 0.26);
  background: linear-gradient(180deg, rgba(22, 32, 54, 0.72) 0%, rgba(12, 20, 37, 0.76) 100%);
  color: rgba(230, 239, 252, 0.93);
  font-weight: 600;
  letter-spacing: 0.005em;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 18px rgba(0, 0, 0, 0.28);
  transition: all 0.22s ease;
}

.landing-header__btn--login:hover {
  color: #ffffff;
  border-color: rgba(176, 203, 238, 0.4);
  background: linear-gradient(180deg, rgba(28, 40, 66, 0.84) 0%, rgba(14, 24, 42, 0.86) 100%);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 10px 20px rgba(0, 0, 0, 0.32);
}

.landing-header__btn--cta {
  border: 1px solid rgba(130, 198, 255, 0.36);
  color: rgba(223, 243, 255, 0.95);
  background: linear-gradient(180deg, rgba(62, 130, 191, 0.32) 0%, rgba(28, 82, 132, 0.3) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 8px 18px rgba(14, 52, 86, 0.28);
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  font-weight: 600;
  transition: all 0.22s ease;
}

.landing-header__btn--cta:hover {
  color: #fff;
  border-color: rgba(160, 216, 255, 0.55);
  background: linear-gradient(180deg, rgba(79, 154, 222, 0.42) 0%, rgba(34, 102, 164, 0.4) 100%);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 10px 20px rgba(20, 70, 115, 0.34);
}

/* Same glassy weight as Join Telegram (.btn--cta), rose/red tint */
.landing-header__btn--logout {
  border: 1px solid rgba(230, 150, 165, 0.38);
  color: rgba(255, 236, 238, 0.94);
  background: linear-gradient(180deg, rgba(200, 95, 110, 0.3) 0%, rgba(150, 55, 72, 0.28) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 8px 18px rgba(90, 28, 40, 0.22);
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  font-weight: 600;
  transition: all 0.22s ease;
}

.landing-header__btn--logout:hover {
  color: #fff;
  border-color: rgba(240, 175, 188, 0.48);
  background: linear-gradient(180deg, rgba(215, 110, 125, 0.38) 0%, rgba(170, 65, 82, 0.36) 100%);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 10px 20px rgba(100, 32, 45, 0.28);
}

@media (max-width: 1199.98px) {
  .landing-header__menu {
    margin-top: 0.45rem;
    margin-bottom: 0.45rem;
    gap: 0;
  }

  .landing-header__menu .nav-link {
    display: block;
    width: 100%;
    padding: 0.54rem 0;
  }

  .landing-header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .landing-header__actions .landing-header__btn {
    width: 100%;
  }
}


.flow-cards__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.flow-card {
  flex: 1 1 0;
  min-width: 260px;
  max-width: 340px;
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(18, 28, 48, 0.95) 0%, rgba(10, 18, 32, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--surface-line) inset;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.flow-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.flow-card--center {
  background: linear-gradient(165deg, rgba(14, 32, 58, 0.98) 0%, rgba(8, 22, 42, 0.99) 100%);
  border-color: rgba(55, 214, 122, 0.35);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(55, 214, 122, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.flow-card--center:hover {
  border-color: rgba(55, 214, 122, 0.5);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(55, 214, 122, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* Row: favicon/icon + title, no box around icon */
.flow-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.flow-card__head .flow-card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.flow-card__head .flow-card__title {
  margin-bottom: 0;
}

.flow-card__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, rgba(30, 50, 85, 0.9) 0%, rgba(12, 24, 48, 0.95) 100%);
  border: 1px solid var(--surface-border);
  color: rgba(226, 239, 255, 0.95);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

/* Mismo tamaño para todos los iconos en head (favicon + rayo): 36px */
.flow-card__head .flow-card__icon i {
  font-size: 1.5rem;
  line-height: 1;
    display: block;
}

/* Favicon: sin recuadro (sin fondo/borde) */
.flow-card__icon--favicon {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.flow-card__icon--favicon img {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  object-fit: contain;
  display: block;
}

.flow-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 0.6rem;
}

.flow-card__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(218, 229, 255, 0.82);
  margin-bottom: 0.85rem;
}

.flow-card__highlight {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.flow-card--center .flow-card__highlight {
  color: #7ef0b0;
  text-shadow: 0 0 16px rgba(126, 240, 176, 0.35);
}

.flow-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(214, 229, 255, 0.88);
}

.flow-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.flow-card__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(116, 208, 255, 0.9);
  box-shadow: 0 0 10px rgba(116, 208, 255, 0.6);
  flex-shrink: 0;
}

.flow-card--center .flow-card__list li::before {
  background: rgba(55, 214, 122, 0.95);
  box-shadow: 0 0 10px rgba(55, 214, 122, 0.6);
}

.flow-cards__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  color: rgba(126, 200, 255, 0.85);
}

.flow-cards__arrow i {
  font-size: 2rem;
  text-shadow: 0 0 20px rgba(126, 200, 255, 0.7);
}

.flow-cards__row--paths {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}

.flow-cards__graph {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left center right";
  align-items: center;
  justify-items: center;
  gap: 2.25rem;
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.flow-cards__side--left {
  grid-area: left;
  justify-self: end;
}

.flow-cards__side--right {
  grid-area: right;
  justify-self: start;
}

.flow-cards__right-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.flow-cards__center {
  grid-area: center;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}

.flow-cards__arrow--h {
  align-self: center;
  min-width: 44px;
}

.flow-cards__outputs {
  position: relative;
  min-width: 320px;
  max-width: 560px;
  flex: 1 1 0;
}

.flow-cards__outputs::before {
  display: none;
}

.flow-cards__curves {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.flow-card--tv,
.flow-card--router,
.flow-card--output {
  position: relative;
  z-index: 1;
}

.flow-cards__output-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  position: relative;
}

.flow-cards__output-row + .flow-cards__output-row {
  margin-top: 1.25rem;
}

.flow-cards__branch-arrow {
  position: absolute;
  left: 0.9rem;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(116, 208, 255, 0.9);
}

.flow-cards__output-row--api .flow-cards__branch-arrow {
  top: 12px;
}

.flow-cards__output-row--mt .flow-cards__branch-arrow {
  top: 12px;
  color: rgba(255, 77, 87, 0.92);
  border-color: rgba(255, 77, 87, 0.18);
}

.flow-cards__branch-arrow i {
  font-size: 1.7rem;
  transform: rotate(90deg);
  text-shadow: 0 0 18px rgba(116, 208, 255, 0.55);
}

.flow-card--router {
  flex: 1 1 0;
  min-width: 340px;
  max-width: 405px;
  padding: 2rem 1.5rem;
  position: relative;
}

.flow-card--router::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(55, 214, 122, 0.25) inset,
    0 0 55px rgba(55, 214, 122, 0.12),
    0 0 90px rgba(0, 212, 255, 0.06);
  opacity: 0.9;
}

.flow-card--output {
  min-width: 260px;
  max-width: 320px;
}

.flow-card--output-api .flow-card__list li::before {
  background: rgba(116, 208, 255, 0.95);
  box-shadow: 0 0 10px rgba(116, 208, 255, 0.6);
}

.flow-card--output-mt .flow-card__list li::before {
  background: rgba(255, 77, 87, 0.92);
  box-shadow: 0 0 10px rgba(255, 77, 87, 0.55);
}

.flow-cards__marquee {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Integrations value section */
.integrations {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  scroll-margin-top: 92px;
}

.integrations__top {
  text-align: center;
  margin-bottom: 1rem;
}

.integrations__title {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.97);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.integrations__sub {
  margin: 0;
  color: rgba(225, 236, 255, 0.64);
  font-size: 0.92rem;
}

.integrations__tabs {
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem 0 1.2rem;
}

.integrations__tabs .nav-link {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(225, 236, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
}

.integrations__tabs .nav-link.active {
  background: rgba(74, 242, 142, 0.14);
  border-color: rgba(74, 242, 142, 0.35);
  color: rgba(74, 242, 142, 0.98);
}

.integrations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.integrations__card {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(165deg, rgba(18, 28, 48, 0.68), rgba(10, 18, 32, 0.90));
  border-radius: 12px;
  padding: 0.65rem 0.72rem;
  min-height: 132px;
  display: flex;
  flex-direction: column;
}

.integrations__card-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

.integrations__logo {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex: 0 0 18px;
  background: rgba(255, 255, 255, 0.9);
}

.integrations__card h4 {
  margin: 0;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  line-height: 1.2;
}

.integrations__card p {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  color: rgba(225, 236, 255, 0.60);
}

.integrations__markets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.45rem;
}

.integrations__markets span,
.integrations__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.14rem 0.38rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(215, 232, 255, 0.78);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.integrations__card a {
  margin-top: auto;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0, 212, 255, 0.94);
  text-decoration: none;
}

.integrations__card a:hover {
  color: rgba(74, 242, 142, 0.95);
  text-decoration: underline;
}

.integrations__table-wrap {
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  overflow: auto;
  background: rgba(14, 22, 38, 0.72);
}

.integrations__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.integrations__table th,
.integrations__table td {
  padding: 0.62rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(225, 236, 255, 0.84);
  white-space: nowrap;
}

.integrations__table th {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.7rem;
  color: rgba(197, 214, 242, 0.88);
  background: var(--surface-line);
}

.integrations__table td:first-child {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 650;
}

.integrations__table td:last-child a {
  font-size: 0.72rem;
  color: rgba(74, 242, 142, 0.95);
  text-decoration: none;
  font-weight: 700;
}

.integrations__table td:last-child a:hover {
  text-decoration: underline;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.14rem 0.42rem;
  border-radius: 6px;
  margin-right: 0.24rem;
  font-size: 0.66rem;
  font-weight: 650;
}

.badge-spot { background: rgba(74, 242, 142, 0.16); color: rgba(96, 255, 160, 0.95); }
.badge-margin { background: rgba(255, 184, 77, 0.16); color: rgba(255, 202, 121, 0.95); }
.badge-futures { background: rgba(154, 125, 255, 0.20); color: rgba(194, 174, 255, 0.95); }
.badge-forex { background: rgba(115, 157, 255, 0.22); color: rgba(168, 196, 255, 0.96); }
.badge-crypto { background: rgba(255, 99, 132, 0.18); color: rgba(255, 153, 176, 0.96); }
.badge-stocks { background: rgba(59, 195, 255, 0.18); color: rgba(145, 226, 255, 0.98); }
.badge-alert { background: rgba(115, 157, 255, 0.2); color: rgba(173, 200, 255, 0.96); }
.badge-alert2 { background: rgba(255, 120, 180, 0.19); color: rgba(255, 178, 210, 0.96); }

.integrations__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.4rem;
}

.mt-pill {
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(17, 27, 46, 0.78), rgba(10, 16, 30, 0.92));
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.56rem 0.62rem;
  text-decoration: none;
}

.mt-pill span {
  color: rgba(241, 246, 255, 0.95);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.1;
}

.mt-pill em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.62rem;
  color: rgba(116, 225, 255, 0.95);
  border: 1px solid rgba(116, 225, 255, 0.30);
  border-radius: 999px;
  padding: 0.08rem 0.38rem;
}

.mt-pill:hover {
  border-color: rgba(116, 225, 255, 0.4);
  transform: translateY(-1px);
}

.integrations__list-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.integration-pill {
  position: relative;
  border: 1px solid rgba(110, 170, 255, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(110, 170, 255, 0.08) 0%, rgba(110, 170, 255, 0) 40%),
    linear-gradient(180deg, rgba(15, 24, 41, 0.90), rgba(8, 14, 26, 0.96));
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.56rem 0.62rem 0.56rem 0.72rem;
  min-height: 44px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.integration-pill::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(74, 242, 142, 0.95), rgba(0, 212, 255, 0.9));
}

.integration-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.integration-pill .integrations__logo {
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 16px rgba(0, 212, 255, 0.18);
}

.integration-pill span {
  color: rgba(241, 246, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.integration-pill:hover {
  border-color: rgba(116, 225, 255, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

/* Direct API: green accent (TradingView-like) */
#int-direct-api .integration-pill {
  border-color: rgba(74, 242, 142, 0.28);
  background:
    linear-gradient(135deg, rgba(74, 242, 142, 0.10) 0%, rgba(74, 242, 142, 0) 42%),
    linear-gradient(180deg, rgba(15, 24, 41, 0.90), rgba(8, 14, 26, 0.96));
}

#int-direct-api .integration-pill::before {
  background: rgba(74, 242, 142, 0.95);
}

#int-direct-api .integration-pill .integrations__logo {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 16px rgba(74, 242, 142, 0.24);
}

#int-direct-api .integration-pill:hover {
  border-color: rgba(74, 242, 142, 0.5);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32), 0 0 18px rgba(74, 242, 142, 0.16);
}

/* MT Integration: green accent (same family as Direct API) */
#int-mt .integration-pill {
  border-color: rgba(74, 242, 142, 0.28);
  background:
    linear-gradient(135deg, rgba(74, 242, 142, 0.10) 0%, rgba(74, 242, 142, 0) 42%),
    linear-gradient(180deg, rgba(15, 24, 41, 0.90), rgba(8, 14, 26, 0.96));
}

#int-mt .integration-pill::before {
  background: rgba(74, 242, 142, 0.95);
}

#int-mt .integration-pill .integrations__logo {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 16px rgba(74, 242, 142, 0.24);
}

#int-mt .integration-pill:hover {
  border-color: rgba(74, 242, 142, 0.5);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32), 0 0 18px rgba(74, 242, 142, 0.16);
}

/* Keep architecture diagram in one row on desktop */
@media (min-width: 992px) {
  .flow-cards__row {
    flex-wrap: nowrap;
    gap: 0.9rem;
  }

  .flow-card {
    min-width: 0;
    max-width: 300px;
  }

  .flow-cards__arrow {
    min-width: 20px;
  }

  .flow-cards__arrow i {
    font-size: 1.6rem;
  }
}

@media (max-width: 1399.98px) {
  .integrations__list-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .integrations__list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .integrations__list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .integrations__list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .flow-cards {
    padding: 1.5rem 1rem 2.5rem;
  }

  .flow-cards__row {
    flex-direction: column;
    align-items: center;
  }

  .flow-card {
    max-width: 100%;
  }

  .flow-cards__arrow {
    flex-direction: row;
    min-width: auto;
  }

  .flow-cards__arrow i {
    transform: rotate(90deg);
  }

  .flow-cards__graph {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "left"
      "right";
    gap: 1.1rem;
  }

  .flow-cards__center {
    flex-direction: column;
    gap: 0.75rem;
  }

  .flow-cards__side--left,
  .flow-cards__side--right {
    justify-self: center;
    width: 100%;
  }

  .flow-cards__row--paths {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .flow-cards__arrow--h {
    align-self: auto;
  }

  .flow-cards__outputs {
    padding-left: 0;
    min-width: 0;
    width: 100%;
    max-width: 520px;
  }

  .flow-cards__outputs::before {
    display: none;
  }

  .flow-cards__output-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .flow-cards__branch-arrow {
    position: static;
    width: 44px;
    height: 44px;
    margin-bottom: -0.2rem;
  }

  .flow-cards__output-row--api .flow-cards__branch-arrow,
  .flow-cards__output-row--mt .flow-cards__branch-arrow {
    top: auto;
    left: auto;
  }

  .flow-card--router {
    min-width: 0;
    max-width: 100%;
  }

  .flow-card--output {
    max-width: 100%;
    min-width: 0;
  }

  .flow-cards__curves {
    display: none;
  }

  .flow-cards__marquee {
    margin-top: 3rem;
    padding-top: 2.5rem;
  }

  .integrations__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ========== STRATEGY BUILDER ========== */
.strategy-builder {
  padding: 4.5rem clamp(1rem, 4vw, 2.5rem) 5rem;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.strategy-builder__bg {
  display: none;
}

.strategy-builder .container {
  max-width: 1500px;
  /* Aire lateral en todos los breakpoints (la sección es full-bleed) */
  padding-left: clamp(1.35rem, 4.8vw, 3rem);
  padding-right: clamp(1.35rem, 4.8vw, 3rem);
}

@media (max-width: 1199.98px) {
  .strategy-builder .container {
    padding-left: clamp(1.35rem, 5.5vw, 2.75rem);
    padding-right: clamp(1.35rem, 5.5vw, 2.75rem);
  }
}

@media (min-width: 1400px) {
  .strategy-builder .container {
    max-width: min(1680px, 94vw);
  }
  .strategy-builder__grid {
    max-width: none;
  }
}

@media (min-width: 1920px) {
  .strategy-builder .container {
    max-width: min(1820px, 96vw);
  }
}

@media (min-width: 2400px) {
  .strategy-builder .container {
    max-width: min(2200px, 92vw);
  }
}

.strategy-builder__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.strategy-builder__content {
    text-align: left;
  }

.strategy-builder__video {
  position: relative;
  width: 100%;
}

.strategy-builder__video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.strategy-builder__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    display: block;
}

.strategy-builder__badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4af28e;
  border: 1px solid rgba(55, 214, 122, 0.3);
  border-radius: 100px;
  margin-bottom: 1.25rem;
  background: rgba(55, 214, 122, 0.08);
}

.strategy-builder__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.strategy-builder__title--highlight {
  color: var(--hero-red);
  text-shadow: 0 0 24px rgba(255, 77, 87, 0.4);
}

.strategy-builder__desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
}

.strategy-builder__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
    text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.strategy-builder__highlights li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.strategy-builder__highlights li:last-child {
  border-bottom: none;
}

.strategy-builder__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 77, 87, 0.85);
  box-shadow: 0 0 10px rgba(255, 77, 87, 0.45);
}

.strategy-builder__highlights strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.strategy-builder__footer {
  padding-top: 0.25rem;
  display: flex;
  justify-content: flex-start;
}

.strategy-builder__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.strategy-builder__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
    text-decoration: none;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.strategy-builder__cta--primary {
  background: linear-gradient(160deg, #00b833 0%, #00d94a 50%, #00c23a 100%);
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(0, 163, 44, 0.4);
}

.strategy-builder__cta--primary:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 163, 44, 0.5);
}

.strategy-builder__cta--secondary {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.strategy-builder__cta--secondary:hover {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.strategy-builder__cta--secondary img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 991.98px) {
  .strategy-builder__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .strategy-builder__content {
    text-align: center;
  }

  .strategy-builder__highlights {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .strategy-builder__footer {
    justify-content: center;
  }
}

@media (max-width: 899.98px) {
  .strategy-builder {
    padding: 3.2rem clamp(1rem, 5vw, 1.75rem) 4rem;
  }

  .strategy-builder .container {
    padding-left: clamp(1.25rem, 6.5vw, 2.25rem);
    padding-right: clamp(1.25rem, 6.5vw, 2.25rem);
  }

  .strategy-builder__grid {
    gap: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .strategy-builder {
    padding: 3rem clamp(0.85rem, 4.5vw, 1.35rem) 4rem;
  }

  .strategy-builder .container {
    padding-left: clamp(1.15rem, 5.5vw, 1.85rem);
    padding-right: clamp(1.15rem, 5.5vw, 1.85rem);
  }

  .strategy-builder__highlights {
    margin-bottom: 2rem;
  }

  .strategy-builder__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ========== LIVE STATS ========== */
.live-stats {
  padding: 4.5rem 0 4rem;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  overflow: hidden;
}

.live-stats::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -70px;
  height: 140px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, rgba(74, 242, 142, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at 65% 55%, rgba(0, 212, 255, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 7, 18, 0) 0%, rgba(3, 7, 18, 0.4) 70%, transparent 100%);
  filter: blur(0.2px);
}

.live-stats__bg {
  position: absolute;
  inset: 0;
  background: #030712;
  pointer-events: none;
  z-index: 0;
}

/* Transición suave al final de Live Stats hacia el mismo fondo (#030712) de Trusted by Traders */
.live-stats__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(3, 7, 18, 0.3) 60%,
    transparent 100%
  );
  pointer-events: none;
}

.live-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(74, 242, 142, 0.18) 1px, transparent 2px);
  background-size: 34px 34px, 22px 22px;
  background-position: 0 0, 11px 11px;
  mix-blend-mode: overlay;
}

.live-stats__bg-glow {
  position: absolute;
  width: 80%;
  max-width: 600px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}

.live-stats__bg-glow--t {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(74, 242, 142, 0.15) 0%, transparent 70%);
}

.live-stats__bg-glow--b {
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

.live-stats__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.live-stats__header {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.live-stats.is-visible .live-stats__header {
  opacity: 1;
  transform: translateY(0);
}

.live-stats__header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.live-stats__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4af28e;
  box-shadow: 0 0 14px rgba(74, 242, 142, 0.9), 0 0 28px rgba(74, 242, 142, 0.3);
  animation: liveStatsPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes liveStatsPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 14px rgba(74, 242, 142, 0.9), 0 0 28px rgba(74, 242, 142, 0.3); }
  50% { opacity: 0.8; transform: scale(1.15); box-shadow: 0 0 22px rgba(74, 242, 142, 0.7), 0 0 40px rgba(74, 242, 142, 0.2); }
}

.live-stats__heading {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.live-stats__live-badge {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(74, 242, 142, 0.9);
  letter-spacing: 0.02em;
}

.live-stats__hero-metric {
  margin: 0 0 0.25rem 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.live-stats__hero-value {
  color: #4af28e;
  text-shadow: 0 0 40px rgba(74, 242, 142, 0.4);
}

.live-stats__hero-unit {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.live-stats__hero-caption {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* Chart */
.live-stats__chart-wrap {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.live-stats.is-visible .live-stats__chart-wrap {
  opacity: 1;
  transform: translateY(0);
}

.live-stats__chart-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.75rem 0;
}

.live-stats__chart-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(18, 28, 48, 0.35) 0%, rgba(10, 18, 32, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1rem 0.75rem 0.75rem;
  box-sizing: border-box;
  box-shadow:
    0 0 0 1px rgba(74, 242, 142, 0.05) inset,
    0 22px 60px -25px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 212, 255, 0.02),
    0 0 50px rgba(74, 242, 142, 0.06);
}

.live-stats__chart {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-height: 270px;
}

.live-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.live-stats__card {
  padding: 1.5rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(18, 28, 48, 0.45) 0%, rgba(10, 18, 32, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(14px);
}

.live-stats__card:nth-child(1) { transition-delay: 0.15s; }
.live-stats__card:nth-child(2) { transition-delay: 0.25s; }
.live-stats__card:nth-child(3) { transition-delay: 0.35s; }
.live-stats__card:nth-child(4) { transition-delay: 0.45s; }

.live-stats.is-visible .live-stats__card {
  opacity: 1;
  transform: translateY(0);
}

.live-stats__card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.live-stats__card--highlight {
  border-color: rgba(74, 242, 142, 0.2);
  background: linear-gradient(165deg, rgba(18, 38, 32, 0.4) 0%, rgba(10, 28, 24, 0.7) 100%);
  box-shadow: 0 0 0 1px rgba(74, 242, 142, 0.08) inset;
}

.live-stats__card--highlight:hover {
  border-color: rgba(74, 242, 142, 0.3);
  box-shadow: 0 0 24px -4px rgba(74, 242, 142, 0.12), 0 12px 36px -8px rgba(0, 0, 0, 0.35);
}

.live-stats__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.live-stats__card-icon i {
  display: block;
  line-height: 1;
}

.live-stats__card:hover .live-stats__card-icon {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.live-stats__card--highlight .live-stats__card-icon {
  background: rgba(74, 242, 142, 0.12);
  color: #4af28e;
}

.live-stats__card--highlight .live-stats__value {
  color: #4af28e;
  text-shadow: 0 0 35px rgba(74, 242, 142, 0.35), 0 0 18px rgba(74, 242, 142, 0.18);
}

.live-stats__value {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.live-stats__num {
  font-variant-numeric: tabular-nums;
}

.live-stats__suffix,
.live-stats__unit {
  font-size: 0.82em;
  color: inherit;
  opacity: 0.9;
  vertical-align: baseline;
}

.live-stats__suffix {
  margin-left: 0.12em;
}

.live-stats__lt {
  margin-right: 0.12em;
  color: inherit;
  opacity: 0.95;
  font-weight: 900;
}

.live-stats__value--ms .live-stats__num {
  font-variant-numeric: tabular-nums;
}

.live-stats__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.live-stats__sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.35;
}

/* Execution split: single segmented bar */
.live-stats__card--split {
  text-align: center;
}

.live-stats__card--split .live-stats__label--split {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.live-stats__split-bar {
  display: flex;
  width: 100%;
  height: 2.5rem;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.live-stats__split-seg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
  white-space: nowrap;
  overflow: hidden;
}

.live-stats.is-visible .live-stats__split-seg--api {
  width: 60%;
}

.live-stats.is-visible .live-stats__split-seg--mt {
  width: 40%;
}

.live-stats__split-seg--api {
  background: linear-gradient(90deg, rgba(72, 149, 239, 0.5), rgba(72, 149, 239, 0.35));
  border-right: 1px solid rgba(72, 149, 239, 0.4);
}

.live-stats__split-seg--mt {
  background: linear-gradient(90deg, rgba(255, 77, 87, 0.45), rgba(255, 77, 87, 0.3));
}

.live-stats__split-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.live-stats__split-legend-item--api::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(72, 149, 239, 0.9);
  margin-right: 0.4rem;
  vertical-align: middle;
}

.live-stats__split-legend-item--mt::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 77, 87, 0.9);
  margin-right: 0.4rem;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .live-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }

  .live-stats__card--split {
    grid-column: span 1;
  }
}

@media (min-width: 992px) {
  .live-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  .live-stats {
    padding: 3.5rem 0 3.35rem;
  }

  .live-stats__grid {
    grid-template-columns: 1fr;
  }

  .live-stats__header-top {
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* Hero logos marquee */
.hero__logos-marquee {
  margin-top: 2.25rem;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hero__logos-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  align-items: center;
  width: max-content;
  min-height: 44px;
  animation: heroLogosScroll 56s linear infinite;
  will-change: transform;
}

.hero__logo-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(226, 239, 255, 0.9);
  border: 1px solid rgba(226, 239, 255, 0.22);
  background: radial-gradient(circle at 30% 0%, rgba(226, 239, 255, 0.24), rgba(8, 16, 32, 0.82));
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  min-width: 2.75rem;
}

/* Tooltip: show exchange name above favicon on hover/focus (above so it's not clipped by marquee overflow) */
.hero__logo-pill[data-label]::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(-0.35rem);
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(10, 18, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero__logo-pill[data-label]:hover::after,
.hero__logo-pill[data-label]:focus-within::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-0.5rem);
}

.hero__logo-img {
  height: 18px;
  width: auto;
  min-width: 18px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.7));
}

@keyframes heroLogosScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .hero__logos-marquee {
    margin-top: 1.5rem;
  }

  .hero__logo-pill {
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
  }

  .hero__logo-img {
    height: 16px;
  }
}

@media (max-width: 991.98px) {
  .flow-cards__marquee {
    margin-top: 2.4rem;
    padding-top: 1.9rem;
  }

  .flow-cards__marquee .hero__logos-track {
    gap: 0.9rem;
    animation-duration: 68s;
  }
}

@media (max-width: 899.98px) {
  .flow-cards__marquee {
    margin-top: 1.8rem;
    padding-top: 1.2rem;
    min-height: 52px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
  }

  .flow-cards__marquee .hero__logos-track {
    animation: none;
    gap: 0.7rem;
    padding: 0.35rem max(0.75rem, env(safe-area-inset-right, 0px)) 0.5rem
      max(0.75rem, env(safe-area-inset-left, 0px));
    min-height: 48px;
    align-items: center;
  }

  .flow-cards__marquee .hero__logo-pill {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border-color: rgba(226, 239, 255, 0.18);
  }
}

@media (max-width: 767.98px) {
  .flow-cards__marquee .hero__logos-track {
    gap: 0.62rem;
  }

  .flow-cards__marquee .hero__logo-pill {
    padding: 0.26rem 0.56rem;
  }

  .integrations {
    margin-top: 2rem;
    padding-top: 1.2rem;
  }

  .integrations__tabs {
    gap: 0.4rem;
  }

  .integrations__tabs .nav-link {
    font-size: 0.72rem;
    padding: 0.35rem 0.72rem;
  }

  .integrations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .integrations__grid {
    grid-template-columns: 1fr;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero__logo-pill[data-label]::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logos-track {
    animation: none;
  }
}

/* Hero flow (Bootstrap-based diagram) */
.hero-flow {
  position: relative;
}

.hero-flow__card {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 26, 52, 0.78), rgba(8, 18, 37, 0.82));
  border: 1px solid var(--surface-border);
  border-radius: 22px;
  padding: 22px 18px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.hero-flow__card--center {
  border-color: rgba(55, 214, 122, 0.18);
  box-shadow:
    0 0 0 1px var(--surface-line) inset,
    0 18px 60px rgba(0, 0, 0, 0.32),
    0 0 44px rgba(55, 214, 122, 0.10),
    0 0 40px rgba(255, 77, 87, 0.08);
}

.hero-flow__glow {
  position: absolute;
  inset: auto 10% -1px 10%;
  height: 1px;
  box-shadow: 0 0 35px 10px rgba(55, 214, 122, 0.22);
  opacity: 0.9;
}

.hero-flow__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(20, 42, 82, 0.9), rgba(8, 20, 42, 0.9));
  border: 1px solid var(--surface-border);
  margin-bottom: 14px;
  color: rgba(220, 232, 255, 0.9);
  font-size: 1.35rem;
}

.hero-flow__icon--center {
  margin-inline: auto;
  width: 62px;
  height: 62px;
}

.hero-flow__logo {
  width: 44px;
  height: auto;
  display: block;
}

.hero-flow__title {
  font-size: 1.15rem;
  font-weight: 750;
  margin-bottom: 8px;
  color: #fff;
}

.hero-flow__text {
  color: rgba(221, 232, 255, 0.74);
  line-height: 1.55;
  font-size: 0.92rem;
  margin-bottom: 0;
}

.hero-flow__pill {
  padding: 10px 10px;
  text-align: center;
  border-radius: 14px;
  background: rgba(10, 24, 48, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(214, 231, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 650;
}

.hero-flow__arrow {
  align-self: center;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 300;
  color: rgba(82, 176, 255, 0.92);
  text-shadow: 0 0 18px rgba(82, 176, 255, 0.55);
}

.hero-flow__card--output {
  padding: 18px 18px;
}

.hero-flow__out-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-flow__out-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: rgba(214, 231, 255, 0.9);
  background: linear-gradient(180deg, rgba(20, 42, 82, 0.9), rgba(8, 20, 42, 0.9));
  border: 1px solid var(--surface-border);
}

.hero-flow__out-title {
  font-size: 1.05rem;
  font-weight: 750;
  color: #fff;
}

.hero-flow__out-text {
  color: rgba(214, 229, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-flow__mobile {
  color: rgba(225, 236, 255, 0.78);
  font-weight: 650;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 0.95rem;
}

.hero-flow__mobile span {
  color: rgba(82, 176, 255, 0.95);
  text-shadow: 0 0 14px rgba(88, 178, 255, 0.5);
}

/* Hero responsive */
@media (max-width: 1199.98px) {
  .hero__diagram {
    transform: scale(0.92);
    transform-origin: center top;
  }
}

@media (max-width: 991.98px) {
  .hero__row {
    min-height: auto;
  }

  .hero__content {
    text-align: center;
  }

  .hero__content .hero__ctas {
    justify-content: center;
  }

  .hero__diagram {
    min-height: 540px;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .hero__title {
    font-size: 1.85rem;
  }

  .hero__desc {
    font-size: 0.95rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
  }

  .hero__cta--primary {
    padding: 0.98rem 1.35rem;
    font-size: 1rem;
    border-radius: 12px;
  }

  .hero__diagram {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hero__diagram-svg,
  .hero__badge {
    display: none;
  }

  .hero__node,
  .hero__node--tv,
  .hero__node--hub,
  .hero__node--api,
  .hero__node--mt,
  .hero__node--ex,
  .hero__node--br {
    position: static;
    width: 100%;
    height: auto;
    min-height: 70px;
    font-size: 1rem;
  }

  .hero__node--hub {
    font-size: 1.4rem;
  }

  .hero__hub-logo,
  .hero__mt-logo,
  .hero__node-sublabel {
    display: none;
  }

  .hero__logos {
    display: none;
  }
}

/* Background framing: keep the diagram on the right like reference */
@media (min-width: 992px) {
  .hero__schema-col {
    display: flex;
    justify-content: flex-end;
  }
}

@media (min-width: 1400px) {
  .hero__schema-img {
    max-width: 900px;
  }
}

@media (max-width: 991.98px) {
  .hero__schema-img {
    max-width: 520px;
    margin-right: 0;
    opacity: 0.9;
  }
}

/* Hero Footer */
.hero-footer {
  padding: 1.5rem 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
}

.hero-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.hero-footer__link:hover {
  color: #00a32c;
}

/* Hero: full-width breakout, no top/side padding */
.main_section:has(> .hero:first-child) {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

/* Landing (hero first): usar todo el ancho — evita columna estrecha 8/12 desde 600px */
@media (min-width: 600px) {
  .main_section:has(> .hero:first-child) {
    grid-column: 1 / -1;
  }
}

/* ========== LAYOUT ========== */
body {
  margin: 0;
  font-family: var(--font-sans);
  overflow-x: hidden;
  background: var(--color-bg-deep);
  min-height: 100vh;
}

.content {
  display: grid;
  grid-template-columns: 12fr;
  grid-template-rows: 1fr;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
}

.main_section {
      grid-column: 1;
      grid-row: 1;
  background: transparent;
      color: rgb(0, 0, 0);
  padding: 0;
}

/* ========== UTILITIES ========== */
.green-text { color: rgb(47, 135, 0); }
.yellow-text { color: rgb(255, 187, 59); }
.blur_img { opacity: 0.5; }

.above_img {
  float: left;
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 1000;
}

.banner-img {
      display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 100%;
}

.left-menu { display: none; }

/* ========== RESPONSIVE ========== */
@media (min-width: 600px) {
  .content {
    grid-template-columns: 2fr 8fr 2fr;
  }

  .main_section {
    grid-column: 2;
  }

  .sidebar {
    grid-column: 1;
    grid-row: 1;
    background: rgb(222, 222, 222);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
    padding: 30px 0 1px 0;
  }

  .left-menu { display: block; }
  ul.left-menu { list-style-type: none; }
  .sub-menu { display: none; }

  .nav-group {
      color: black;
      font-weight: bold;
    margin: 10px 0 5px 0;
      cursor: pointer;
      font-size: 16px;
    }
  
  .nav-item {
      color: black;
      font-size: 13px;
    margin: 2px 0 0 0;
    }
  
  .nav-item a:hover {
      color: orange;
      font-weight: bold;
  }
}

/* ========== TRUSTPILOT REVIEWS ========== */
.trustpilot-reviews {
  padding: 5.25rem 0 4.75rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #030712 0%,
    #030712 34%,
    rgba(3, 7, 18, 0.94) 52%,
    rgba(3, 7, 18, 0.78) 68%,
    rgba(3, 7, 18, 0.52) 82%,
    rgba(3, 7, 18, 0.22) 93%,
    transparent 100%
  );
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.trustpilot-reviews::before {
  display: none;
}

/* Refuerzo suave del degradado en el borde inferior */
.trustpilot-reviews::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to top,
    transparent 0%,
    rgba(3, 7, 18, 0.10) 46%,
    rgba(3, 7, 18, 0.20) 100%
  );
}

.trustpilot-reviews__top {
  position: relative;
  z-index: 1;
}

.trustpilot-reviews .container {
  max-width: min(1500px, 94vw);
}

.trustpilot-reviews__eyebrow {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.trustpilot-reviews__title {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 750;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.trustpilot-reviews__sub {
  color: var(--text-muted-72);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.98rem;
}

/* Trust Block (focal, sin cards de testimonios) */
.trustpilot-trustblock {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(165deg, rgba(18, 28, 48, 0.65) 0%, rgba(10, 18, 32, 0.93) 100%);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(55, 214, 122, 0.06) inset,
    0 0 80px rgba(55, 214, 122, 0.08);
  padding: 1.6rem 1.55rem 1.25rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.trustpilot-trustblock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -110px;
  transform: translateX(-50%);
  width: min(560px, 92vw);
  height: 250px;
  background: radial-gradient(
    circle at 50% 52%,
    rgba(55, 214, 122, 0.18) 0%,
    rgba(0, 212, 255, 0.10) 38%,
    transparent 70%
  );
  filter: blur(1.8px);
  pointer-events: none;
}

.trustpilot-trustblock__inner {
  position: relative;
  z-index: 1;
}

.trustpilot-trustblock__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.trustpilot-trustblock__logo-mark {
  color: #00b67a;
  text-shadow: 0 0 26px rgba(0, 182, 122, 0.45);
  font-size: 1.12rem;
  line-height: 1;
}

.trustpilot-trustblock__logo-text {
  font-size: 1.02rem;
}

.trustpilot-trustblock__rating {
  margin-top: 0.85rem;
}

.trustpilot-trustblock__stars {
  color: #00b67a;
  text-shadow: 0 0 24px rgba(0, 182, 122, 0.25);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.trustpilot-trustblock__score {
  margin-top: 0.22rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
}

.trustpilot-trustblock__score-value {
  font-size: 2.65rem;
  font-weight: 920;
  letter-spacing: -0.05em;
  color: #fff;
  text-shadow: 0 0 46px rgba(0, 182, 122, 0.26);
}

.trustpilot-trustblock__score-outof {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  font-size: 1.25rem;
}

.trustpilot-trustblock__meta {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  color: rgba(225, 236, 255, 0.68);
  font-weight: 650;
  font-size: 0.95rem;
}

.trustpilot-trustblock__meta-dot {
  opacity: 0.6;
  font-weight: 800;
  color: rgba(225, 236, 255, 0.55);
}

.trustpilot-trustblock__claimed {
  color: #37d67a;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(55, 214, 122, 0.5);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(55, 214, 122, 0.12);
  border: 1px solid rgba(55, 214, 122, 0.35);
  box-shadow: 0 0 18px rgba(55, 214, 122, 0.15);
}

.trustpilot-trustblock__actions {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trustpilot-trustblock__cta {
  background: linear-gradient(180deg, rgba(40, 211, 126, 1) 0%, rgba(26, 182, 104, 1) 100%);
  border: 1px solid rgba(90, 242, 167, 0.42);
  color: #081520 !important;
  font-weight: 900;
  padding: 0.9rem 1.15rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 rgba(0, 182, 122, 0);
}

.trustpilot-trustblock__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(40, 211, 126, 0.28);
}

.trustpilot-trustblock__seeall {
  color: var(--text-muted-72);
  text-decoration: none;
  font-weight: 750;
}

.trustpilot-trustblock__seeall:hover {
  color: rgba(225, 236, 255, 0.95);
  text-decoration: underline;
}

.trustpilot-trustblock__disclaimer {
  margin-top: 0.65rem;
  color: rgba(225, 236, 255, 0.46);
  font-size: 0.86rem;
}

.trustpilot-simplebullets {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.95rem;
  justify-content: flex-start;
}

.trustpilot-simplebullet {
  --tp-accent: rgba(74, 242, 142, 0.95);
  --tp-accent-soft: rgba(74, 242, 142, 0.16);
  --tp-accent-border: rgba(74, 242, 142, 0.22);

  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  border: 1px solid var(--tp-accent-border);
  background: var(--surface-line);
  color: rgba(225, 236, 255, 0.78);
  font-weight: 720;
  font-size: 0.92rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 26px var(--tp-accent-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease,
    background 0.18s ease;
}

.trustpilot-simplebullet__icon {
  color: var(--tp-accent);
  text-shadow: 0 0 20px var(--tp-accent-soft);
  font-size: 1.0rem;
  line-height: 1;
}

.trustpilot-simplebullet:hover {
  transform: translateY(-2px);
  border-color: var(--tp-accent-border);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.35),
    0 0 38px var(--tp-accent-soft);
  background: rgba(255, 255, 255, 0.04);
}

.trustpilot-simplebullet--speed {
  --tp-accent: rgba(0, 212, 255, 0.95);
  --tp-accent-soft: rgba(0, 212, 255, 0.18);
  --tp-accent-border: rgba(0, 212, 255, 0.28);
  background: linear-gradient(165deg, rgba(0, 212, 255, 0.10) 0%, var(--surface-line) 100%);
}

.trustpilot-simplebullet--support {
  --tp-accent: rgba(74, 242, 142, 0.95);
  --tp-accent-soft: rgba(74, 242, 142, 0.16);
  --tp-accent-border: rgba(74, 242, 142, 0.25);
  background: linear-gradient(165deg, rgba(74, 242, 142, 0.10) 0%, var(--surface-line) 100%);
}

.trustpilot-simplebullet--reliable {
  --tp-accent: rgba(164, 109, 255, 0.95);
  --tp-accent-soft: rgba(164, 109, 255, 0.16);
  --tp-accent-border: rgba(164, 109, 255, 0.26);
  background: linear-gradient(165deg, rgba(164, 109, 255, 0.10) 0%, var(--surface-line) 100%);
}

.trustpilot-platforms {
  margin-top: 0.95rem;
  text-align: center;
}

.trustpilot-platforms__label {
  color: rgba(225, 236, 255, 0.58);
  font-weight: 750;
  font-size: 0.85rem;
  margin-bottom: 0.55rem;
}

.trustpilot-platforms__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trustpilot-platform {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted-72);
  font-weight: 680;
  font-size: 0.86rem;
}

.trustpilot-summary {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(165deg, rgba(18, 28, 48, 0.55) 0%, rgba(10, 18, 32, 0.85) 100%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(55, 214, 122, 0.06) inset,
    0 0 70px rgba(55, 214, 122, 0.06);
  padding: 1.65rem 1.65rem;
  position: relative;
  z-index: 1;
}

.trustpilot-summary--compact {
  padding: 1.25rem 1.25rem;
  max-width: 520px;
  margin-left: auto;
}

.trustpilot-badges {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trustpilot-badge {
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(225, 236, 255, 0.78);
  font-weight: 650;
  font-size: 0.86rem;
  box-shadow: 0 0 0 rgba(0, 182, 122, 0);
}

.trustpilot-summary__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}

.trustpilot-summary__logo-mark {
  color: #00b67a;
  text-shadow: 0 0 24px rgba(0, 182, 122, 0.35);
  font-size: 1.05rem;
}

.trustpilot-summary__score {
  margin-top: 0.95rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.trustpilot-summary__score-value {
  font-size: 2.35rem;
  font-weight: 850;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 0 38px rgba(0, 182, 122, 0.22);
}

.trustpilot-summary__score-outof {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.trustpilot-summary__meta {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  color: rgba(225, 236, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
}

.trustpilot-summary__dot {
  opacity: 0.7;
}

.trustpilot-summary__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trustpilot-summary__cta {
  background: linear-gradient(180deg, rgba(40, 211, 126, 1) 0%, rgba(26, 182, 104, 1) 100%);
  border: 1px solid rgba(90, 242, 167, 0.42);
  color: #081520 !important;
  font-weight: 800;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 rgba(0, 182, 122, 0);
}

.trustpilot-summary__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(40, 211, 126, 0.28);
}

.trustpilot-summary__seeall {
  color: rgba(225, 236, 255, 0.7);
  text-decoration: none;
  font-weight: 650;
}

.trustpilot-summary__seeall:hover {
  color: rgba(225, 236, 255, 0.92);
  text-decoration: underline;
}

.trustpilot-summary__disclaimer {
  margin-top: 0.6rem;
  color: rgba(225, 236, 255, 0.48);
  font-size: 0.85rem;
}

.trustpilot-reviews__cards {
  position: relative;
  z-index: 1;
  z-index: 1;
}

.trustpilot-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(165deg, rgba(18, 28, 48, 0.5) 0%, rgba(10, 18, 32, 0.82) 100%);
  padding: 1.65rem 1.35rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.trustpilot-card:hover {
  transform: translateY(-3px);
  border-color: rgba(55, 214, 122, 0.22);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.trustpilot-card--featured {
  border-color: rgba(55, 214, 122, 0.22);
  box-shadow:
    0 0 0 1px rgba(55, 214, 122, 0.10) inset,
    0 25px 70px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(55, 214, 122, 0.10);
}

.trustpilot-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.trustpilot-card__stars {
  display: inline-flex;
  gap: 0.18rem;
}

.trustpilot-star {
  color: #00b67a;
  text-shadow: 0 0 20px rgba(0, 182, 122, 0.28);
  font-size: 1.05rem;
}

.trustpilot-card__micro {
  font-size: 0.78rem;
  color: rgba(225, 236, 255, 0.55);
  font-weight: 650;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.trustpilot-card__reviewer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trustpilot-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(225, 236, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.trustpilot-card__who {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.trustpilot-card__name {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.93);
}

.trustpilot-card__date {
  color: rgba(225, 236, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 600;
}

.trustpilot-card__headline {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.trustpilot-card__body {
  margin-top: 0.55rem;
  color: rgba(225, 236, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0;
  flex: 1;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .trustpilot-trustblock {
    padding: 1.65rem 1.15rem 1.25rem;
  }

  .trustpilot-trustblock__score-value {
    font-size: 2.6rem;
  }

  .trustpilot-summary--compact {
    margin-left: 0;
  }

  .trustpilot-summary__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trustpilot-card {
    min-height: 0;
  }
}

/* ========== SUPPORT / RESOURCES ========== */
.support-resources {
  padding: 5.2rem 0 4.2rem;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  background: transparent;
}

/* Solo degradado inferior; sin oscurecimiento arriba */
.support-resources::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 40%, rgba(255, 77, 87, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(255, 77, 87, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.support-resources::after {
  display: none;
}

.support-resources > .container {
  position: relative;
  z-index: 1;
}

.support-resources__eyebrow {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff4d57;
  margin-bottom: 1rem;
}

.support-resources__title {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.support-resources__sub {
  color: var(--text-muted-74);
  line-height: 1.75;
  margin-bottom: 0;
  font-weight: 650;
  font-size: 1rem;
}

.support-resources__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-resources__card {
  --accent: rgba(255, 77, 87, 0.95);
  padding: 1.05rem 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  color: inherit;
}

a.support-resources__card:hover,
a.support-resources__card:focus {
  text-decoration: none;
  color: inherit;
}

.support-resources__card-left {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.support-resources__card-icon {
  font-size: 1.35rem;
  color: var(--accent);
  text-shadow: 0 0 22px rgba(255, 77, 87, 0.28);
  margin-top: 0.12rem;
}

.support-resources__card-title {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.support-resources__card-text {
  color: var(--text-muted-72);
  line-height: 1.55;
  font-weight: 650;
  font-size: 0.98rem;
}

.support-resources__card-chevron {
  color: rgba(225, 236, 255, 0.58);
  margin-top: 0.25rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.support-resources__card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 77, 87, 0.28);
  background: var(--surface-line);
  box-shadow: 0 25px 95px rgba(0, 0, 0, 0.36);
}

.support-resources__card:hover .support-resources__card-chevron {
  color: rgba(255, 255, 255, 0.86);
  transform: translateX(2px);
}

.support-resources__card--docs,
.support-resources__card--video,
.support-resources__card--ai {
  --accent: rgba(255, 77, 87, 0.95);
}

@media (max-width: 991.98px) {
  .support-resources {
    padding: 4.25rem 0 3.4rem;
  }

  .support-resources__cards {
    margin-top: 1.1rem;
  }

  .support-resources__sub {
    font-size: 0.98rem;
  }

  .support-resources__card {
    padding: 1rem 1rem;
    border-radius: 16px;
  }

  .support-resources__card-text {
    font-size: 0.94rem;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-resources__card {
    transition: none;
  }
}

/* ========== PRICING (single plan) ========== */
.pricing {
  padding: 5rem 0 7.3rem;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.pricing__header {
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 1;
}

.pricing__eyebrow {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.95rem;
}

.pricing__title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.9rem;
}

.pricing__sub {
  color: var(--text-muted-74);
  line-height: 1.7;
  font-size: 1.02rem;
  margin: 0 auto;
  max-width: 760px;
}

.pricing__card-wrap {
  display: flex;
  justify-content: center;
}

.pricing__card {
  width: 100%;
  max-width: 860px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(165deg, rgba(18, 28, 48, 0.60) 0%, rgba(10, 18, 32, 0.92) 100%);
  box-shadow:
    0 35px 120px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(55, 214, 122, 0.06) inset;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 2.25rem 2rem 1.85rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(10px);
}

.pricing__card:hover {
  transform: translateY(-3px);
  border-color: rgba(55, 214, 122, 0.22);
  box-shadow:
    0 45px 150px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(55, 214, 122, 0.08) inset;
}

.pricing__card-glow {
  position: absolute;
  left: 50%;
  top: -140px;
  transform: translateX(-50%);
  width: min(820px, 96vw);
  height: 360px;
  background: radial-gradient(
    circle at 50% 52%,
    rgba(0, 212, 255, 0.22) 0%,
    rgba(55, 214, 122, 0.14) 30%,
    transparent 70%
  );
  filter: blur(2px);
  pointer-events: none;
}

.pricing__badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.pricing__badge {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.10) inset,
    0 18px 70px rgba(0, 212, 255, 0.10);
}

.pricing__plan-name {
  text-align: center;
  font-weight: 920;
  letter-spacing: -0.02em;
  font-size: 2.15rem;
  color: transparent;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.95) 0%, rgba(74, 242, 142, 0.95) 55%, rgba(255, 255, 255, 0.92) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 28px rgba(0, 212, 255, 0.10);
  margin-bottom: 1.05rem;
  position: relative;
  z-index: 1;
}

.pricing__oneplan {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: -0.55rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: none;
  opacity: 0.95;
}

.pricing__price-row {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
}

.pricing__price-value {
  font-size: 3.45rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  color: #fff;
}

.pricing__price-unit {
  color: rgba(225, 236, 255, 0.62);
  font-weight: 800;
  font-size: 1rem;
}

.pricing__trial {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 0.3rem;
  color: rgba(225, 236, 255, 0.54);
  font-weight: 650;
  font-size: 0.9rem;
}

/* AI Support hero feature (diferenciador principal) */
.pricing__ai-hero {
  margin-top: 0.55rem;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.55rem 0.9rem 0.5rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 45px rgba(0, 212, 255, 0.09);
}

.pricing__ai-title {
  font-size: 1.05rem;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.01em;
  text-shadow: 0 0 24px rgba(0, 212, 255, 0.16);
}

.pricing__ai-sub {
  margin-top: 0.28rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--text-muted-72);
  font-weight: 700;
}

.pricing__value-anchor {
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(225, 236, 255, 0.55);
  font-size: 0.92rem;
  font-weight: 650;
}

.pricing__value-anchor strong {
  color: rgba(225, 236, 255, 0.78);
  font-weight: 900;
  text-shadow: 0 0 24px rgba(0, 212, 255, 0.14);
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(225, 236, 255, 0.78);
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1.45;
}

.pricing__feature-icon {
  margin-top: 0.1rem;
  font-size: 0.98em;
  color: rgba(74, 242, 142, 0.95);
  text-shadow: 0 0 18px rgba(74, 242, 142, 0.18);
  flex: 0 0 auto;
}

.pricing__feature-icon--ai {
  color: rgba(0, 212, 255, 0.95);
  text-shadow: 0 0 22px rgba(0, 212, 255, 0.22);
}

.pricing__included {
  margin-top: 1.6rem;
  padding-top: 1.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
  text-align: center;
}

.pricing__included-title {
  text-align: center;
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 20px rgba(74, 242, 142, 0.2);
}

.pricing__included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.55rem 0.95rem;
}

.pricing__included-list li {
  color: rgba(240, 255, 250, 0.88);
  font-weight: 760;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.33rem;
  padding: 0.27rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 214, 122, 0.18);
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    0 0 0 1px rgba(55, 214, 122, 0.06) inset,
    0 0 14px rgba(74, 242, 142, 0.05);
  text-shadow: none;
  min-height: 25px;
  width: 100%;
  text-align: center;
}

.pricing__included-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(74, 242, 142, 0.95);
  box-shadow: 0 0 7px rgba(74, 242, 142, 0.22);
  flex: 0 0 auto;
}

.pricing__included-text {
  margin-top: 0.75rem;
  color: rgba(225, 236, 255, 0.55);
  font-weight: 650;
  text-align: center;
}

/* Payment methods row (trust signal, low visual weight) */
.pricing__payments {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
  color: rgba(225, 236, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
}

.pricing__payments-label {
  color: rgba(225, 236, 255, 0.58);
  font-weight: 700;
}

.pricing__pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: rgba(225, 236, 255, 0.78);
  font-weight: 860;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  opacity: 0.78;
}

.pricing__payments-micro {
  margin-top: 1.7rem;
  text-align: center;
  color: rgba(225, 236, 255, 0.26);
  font-size: 0.72rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.pricing__payments-micro::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.22);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.10);
}

.pricing__pay-favicon {
  display: inline-block;
  margin-right: 0.4rem;
  transform: translateY(-0.5px);
  opacity: 0.82;
}

.pricing__cta-row {
  margin-top: 1.65rem;
  margin-bottom: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.pricing__cta-primary {
  background: linear-gradient(160deg, #00b833 0%, #00d94a 50%, #00c23a 100%);
  border: 1px solid var(--surface-border);
  color: #ffffff !important;
  font-weight: 950;
  padding: 1rem 1.7rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.10) inset,
    0 25px 85px rgba(0, 163, 44, 0.22),
    0 0 45px rgba(0, 212, 255, 0.10);
}

@media (max-width: 1199.98px) {
  .pricing__cta-primary {
    padding: 0.88rem 1.3rem;
    font-size: 0.88rem;
  }
}

.pricing__cta-primary > * {
  position: relative;
  z-index: 1;
}

.pricing__cta-primary::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(
    90deg,
    rgba(0, 212, 255, 0) 0%,
    rgba(0, 212, 255, 0.35) 35%,
    rgba(74, 242, 142, 0.35) 55%,
    rgba(0, 212, 255, 0) 100%
  );
  transform: translateX(-70%);
  opacity: 0.9;
  pointer-events: none;
  animation: pricingTradingShimmer 2.25s linear infinite;
}

.pricing__cta-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0px,
      rgba(255, 255, 255, 0) 10px,
      rgba(0, 212, 255, 0.16) 11px,
      rgba(255, 255, 255, 0) 16px
    );
  opacity: 0.35;
  transform: translateY(-45%);
  pointer-events: none;
  animation: pricingTradingScan 3.2s ease-in-out infinite;
}

.pricing__cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  filter: saturate(1.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 30px 105px rgba(0, 163, 44, 0.30),
    0 0 65px rgba(0, 212, 255, 0.18);
}

@keyframes pricingTradingShimmer {
  0% {
    transform: translateX(-70%);
  }
  55% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(110%);
  }
}

@keyframes pricingTradingScan {
  0% {
    transform: translateY(-55%);
  }
  55% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(55%);
  }
}

.pricing__cta-secondary {
  color: rgba(225, 236, 255, 0.70);
  text-decoration: none;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pricing__cta-secondary:hover {
  color: rgba(225, 236, 255, 0.95);
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .pricing {
    padding: 3.75rem 0 5.5rem;
  }

  .pricing__card {
    padding: 1.65rem 1.2rem 1.45rem;
  }

  .pricing__features {
    grid-template-columns: 1fr;
  }

  .pricing__included-list {
    grid-template-columns: 1fr;
  }

  .pricing__cta-row {
    gap: 0.9rem;
  }

  .pricing__cta-primary {
    width: 100%;
    padding: 0.8rem 0.7rem;
    font-size: 0.73rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing__cta-primary::before,
  .pricing__cta-primary::after {
    animation: none;
  }
}

/* ========== ROADMAP ========== */
.roadmap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4.2rem 0 3.9rem;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.roadmap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 460px at 20% 12%, rgba(39, 170, 255, 0.14), transparent 62%),
    radial-gradient(860px 420px at 82% 10%, rgba(127, 92, 255, 0.13), transparent 60%),
    linear-gradient(180deg, rgba(5, 10, 20, 0.62), rgba(5, 10, 20, 0.1));
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.roadmap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0) 0%, rgba(3, 7, 18, 0.46) 16%, rgba(3, 7, 18, 0.46) 84%, rgba(3, 7, 18, 0) 100%);
}

.roadmap > .container {
  position: relative;
  z-index: 1;
}

.roadmap__header {
  max-width: 820px;
  margin: 0 auto 2.2rem;
}

.roadmap__eyebrow {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(166, 194, 255, 0.88);
  margin-bottom: 0.9rem;
}

.roadmap__title {
  font-size: clamp(1.72rem, 3vw, 2.35rem);
  font-weight: 860;
  letter-spacing: -0.02em;
  color: rgba(252, 255, 255, 0.98);
  margin-bottom: 0.75rem;
}

.roadmap__sub {
  margin: 0 auto;
  color: rgba(214, 226, 255, 0.72);
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.65;
}

.roadmap__lane {
  --lane-accent-rgb: 83, 170, 255;
  --lane-accent-text: #9dcaff;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(var(--lane-accent-rgb), 0.22);
  background:
    linear-gradient(165deg, rgba(10, 18, 36, 0.86) 0%, rgba(8, 14, 28, 0.95) 100%),
    radial-gradient(120% 80% at 20% 0%, rgba(var(--lane-accent-rgb), 0.08), transparent 60%);
  box-shadow: 0 18px 42px rgba(4, 8, 18, 0.46), inset 0 1px 0 var(--surface-line);
  padding: 1rem;
}

.roadmap__lane-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.95rem;
}

.roadmap__lane-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 820;
  color: var(--lane-accent-text);
}

.roadmap__lane-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(var(--lane-accent-rgb), 0.98);
  background: rgba(var(--lane-accent-rgb), 0.12);
  border: 1px solid rgba(var(--lane-accent-rgb), 0.3);
}

.roadmap__items {
  display: grid;
  gap: 0.75rem;
}

.roadmap-card {
  border-radius: 16px;
  border: 1px solid rgba(var(--lane-accent-rgb), 0.2);
  background:
    linear-gradient(165deg, rgba(18, 27, 46, 0.84) 0%, rgba(9, 15, 28, 0.92) 100%),
    radial-gradient(100% 90% at 0% 0%, rgba(var(--lane-accent-rgb), 0.06), transparent 62%);
  box-shadow: inset 0 1px 0 var(--surface-line);
  padding: 0.84rem 0.84rem 0.8rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.roadmap-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--lane-accent-rgb), 0.4);
  box-shadow: 0 14px 34px rgba(12, 20, 42, 0.46), 0 0 22px rgba(var(--lane-accent-rgb), 0.2);
}

.roadmap-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.58rem;
}

.roadmap-card__icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--lane-accent-rgb), 0.96);
  background: rgba(var(--lane-accent-rgb), 0.17);
  border: 1px solid rgba(var(--lane-accent-rgb), 0.28);
}

.roadmap-card__icon i {
  display: block;
  line-height: 1;
  font-size: 0.93rem;
}

.roadmap-card__title {
  margin: 0;
  color: rgba(248, 251, 255, 0.97);
  font-size: 0.99rem;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.roadmap-card__text {
  margin: 0;
  color: rgba(206, 219, 245, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.roadmap__lane--progress {
  --lane-accent-rgb: 74, 242, 142;
  --lane-accent-text: #94f5bc;
}

.roadmap__lane--planned {
  --lane-accent-rgb: 121, 149, 255;
  --lane-accent-text: #bfcfff;
}

.roadmap__lane--future {
  --lane-accent-rgb: 255, 95, 107;
  --lane-accent-text: #ffb1b7;
}

@media (max-width: 991.98px) {
  .roadmap {
    padding: 3.6rem 0 3.2rem;
  }

  .roadmap__header {
    margin-bottom: 1.7rem;
  }

  .roadmap__lane {
    padding: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-card {
    transition: none;
  }
}

/* ========== SECURITY & FAQ (BOTTOM) ========== */
.security-reliability,
.site-faq {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.security-reliability {
  padding: 2.85rem 0 3.65rem;
  background: #030712;
  border-top: 0;
  overflow: hidden;
}

.security-reliability::before {
  display: none;
}

.site-faq {
  padding: 2.5rem 0 4.1rem;
  background: transparent;
}

.site-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 40%, rgba(255, 77, 87, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(255, 77, 87, 0.04) 0%, transparent 50%);
}

.security-reliability .container,
.site-faq .container {
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.security-reliability__header,
.site-faq__header {
  margin-bottom: 2rem;
}

.security-reliability__eyebrow,
.site-faq__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.security-reliability__eyebrow {
  color: rgba(74, 242, 142, 0.95);
}

.site-faq__eyebrow {
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff4d57;
  border: 1px solid rgba(255, 77, 87, 0.35);
  border-radius: 100px;
  background: rgba(255, 77, 87, 0.10);
  box-shadow: 0 0 0 1px rgba(255, 77, 87, 0.08) inset;
}

.security-reliability__title,
.site-faq__title {
  font-size: clamp(1.55rem, 2.9vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.22;
  margin-bottom: 0.75rem;
}

.security-reliability__sub {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(225, 236, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.security-reliability__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.security-reliability__card {
  background: linear-gradient(165deg, rgba(15, 25, 44, 0.86) 0%, rgba(9, 17, 33, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.15rem 1.15rem 1.05rem;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.security-reliability__card:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 242, 142, 0.22);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.24);
}

.security-reliability__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  color: rgba(74, 242, 142, 0.95);
  background: rgba(74, 242, 142, 0.12);
  border: 1px solid rgba(74, 242, 142, 0.22);
  box-shadow: inset 0 0 0 1px rgba(74, 242, 142, 0.04);
  line-height: 1;
  flex: 0 0 2rem;
}

.security-reliability__icon i {
  display: block;
  line-height: 1;
  font-size: 0.95rem;
}

.security-reliability__card-title {
  font-size: 1.03rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.97);
  margin: 0 0 0.45rem 0;
}

.security-reliability__card-text {
  margin: 0;
  color: rgba(225, 236, 255, 0.68);
  font-size: 0.93rem;
  line-height: 1.55;
}

.site-faq__accordion {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

.site-faq__item {
  background: linear-gradient(165deg, rgba(14, 24, 42, 0.88) 0%, rgba(8, 15, 30, 0.93) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  overflow: hidden;
}

.site-faq__button {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 650;
  font-size: 0.98rem;
  border: 0 !important;
  box-shadow: none !important;
  padding: 1rem 1.15rem;
}

.site-faq__button.collapsed {
  color: rgba(225, 236, 255, 0.86) !important;
}

.site-faq__button::after {
  filter: brightness(0) saturate(100%) invert(74%) sepia(78%) saturate(732%) hue-rotate(106deg) brightness(100%) contrast(95%);
  opacity: 0.85;
}

.site-faq__body {
  color: var(--text-muted-72);
  font-size: 0.94rem;
  line-height: 1.6;
  padding: 0 1.15rem 1rem 1.15rem;
}

@media (max-width: 991.98px) {
  .security-reliability {
    padding: 2.35rem 0 3.1rem;
  }

  .site-faq {
    padding: 2rem 0 3.2rem;
  }

  .security-reliability__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .security-reliability__title,
  .site-faq__title {
    font-size: clamp(1.4rem, 4.6vw, 1.9rem);
  }

  .site-faq__accordion {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .support-resources {
    padding: 3.2rem 0 2.8rem;
  }

  .support-resources__title {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
    margin-bottom: 0.75rem;
  }

  .support-resources__card {
    padding: 0.95rem 0.9rem;
    gap: 0.75rem;
  }

  .support-resources__card-left {
    width: 100%;
    gap: 0.75rem;
  }

  .support-resources__card-title {
    font-size: 0.98rem;
    margin-bottom: 0.25rem;
  }

  .support-resources__card-text {
    font-size: 0.9rem;
  }

  .support-resources__card-chevron {
    display: none;
  }

  .security-reliability__header,
  .site-faq__header {
    margin-bottom: 1.4rem;
  }

  .security-reliability {
    padding: 2.1rem 0 2.85rem;
  }

  .security-reliability__card {
    padding: 1rem 0.95rem 0.95rem;
  }

  .security-reliability__card-title {
    font-size: 0.98rem;
  }

  .security-reliability__card-text {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .site-faq {
    padding: 1.8rem 0 2.75rem;
  }

  .site-faq__button {
    font-size: 0.93rem;
    padding: 0.9rem 1rem;
  }

  .site-faq__body {
    font-size: 0.9rem;
    padding: 0 1rem 0.9rem 1rem;
  }
}

@media (max-width: 575.98px) {
  .support-resources__eyebrow,
  .security-reliability__eyebrow,
  .site-faq__eyebrow {
    letter-spacing: 0.14em;
  }

  .support-resources__sub,
  .security-reliability__sub {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .site-faq__button {
    font-size: 0.9rem;
    padding: 0.8rem 0.9rem;
  }

  .site-faq__body {
    font-size: 0.87rem;
    line-height: 1.55;
    padding: 0 0.9rem 0.85rem 0.9rem;
  }
}

/* Very small screens: the logos marquee can break layout. Hide it to keep page usable. */
@media (max-width: 600px) {
  .flow-cards__marquee {
    display: none;
  }
}

/* ========== SITE FOOTER ========== */
.site-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3.2rem 0 1.35rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #030712;
}

.site-footer .container {
  position: relative;
}

.site-footer__top {
  gap: 2.5rem 0;
}

.site-footer__top.row {
  --bs-gutter-x: 3rem;
}

.site-footer__col-brand {
  padding-bottom: 0.25rem;
}

.site-footer__brand {
  max-width: 280px;
}

.site-footer__logo {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  margin-bottom: 0.5rem;
  display: block;
}

.site-footer__tagline-mini {
  color: rgba(225, 236, 255, 0.38);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}

.site-footer__links-wrap {
  display: flex;
  align-items: flex-start;
}

.site-footer__links-wrap .row {
  width: 100%;
  --bs-gutter-x: 2.5rem;
}

.site-footer__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.3;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__list a {
  color: rgba(225, 236, 255, 0.58);
  font-weight: 400;
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.site-footer__list a:hover {
  color: rgba(225, 236, 255, 0.9);
  box-shadow: 0 1px 0 0 currentColor;
}

.site-footer__risk {
  margin-top: 0.65rem;
  font-size: 0.68rem;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 140, 135, 0.78);
  list-style: none;
  margin-left: 0;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__copyright {
  color: rgba(225, 236, 255, 0.4);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 991.98px) {
  .site-footer__top.row {
    --bs-gutter-x: 1.5rem;
  }

  .site-footer__links-wrap {
    margin-top: 0.75rem;
  }

  .site-footer__links-wrap .row {
    --bs-gutter-x: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 2.6rem 0 1rem;
  }

  .site-footer__brand {
    max-width: 100%;
  }

  .site-footer__links-wrap .row {
    gap: 1.75rem 0;
  }

  .site-footer__links-wrap .col-6 {
    padding-bottom: 0.25rem;
  }

  .site-footer__bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
  }
}

