/* ==========================================================================
   FinFunder public theme — CoinOrbit visual language
   Tokens taken from the live CoinOrbit demo (colors, type, motion).
   Original CSS; fp-* prefix. Do not load CoinOrbit theme files.
   Fonts are self-hosted via fonts/fonts.css.
   ========================================================================== */

:root {
  --fp-ff-heading: "Tomorrow", sans-serif;
  --fp-ff-body: "Urbanist", sans-serif;

  --fp-white: #ffffff;
  --fp-black: #030303;
  --fp-black-alt: #0a0a12;
  --fp-card: rgba(255, 255, 255, 0.04);

  --fp-primary: #6c73ff;
  --fp-primary-dark: #3840f7;
  --fp-primary-glow: rgba(101, 84, 255, 0.6);
  --fp-primary-dim: rgba(108, 115, 255, 0.16);

  --fp-heading: #b7d3ff;
  --fp-text: rgba(255, 255, 255, 0.7);
  --fp-muted: rgba(255, 255, 255, 0.45);
  --fp-border: rgba(255, 255, 255, 0.12);

  --fp-yellow: #ffa336;
  --fp-success: #35d79c;
  --fp-danger: #d14249;
  --fp-green: #80ed99;
  --fp-warning: #ffa336;

  --fp-risk-low: #35d79c;
  --fp-risk-medium: #ffa336;
  --fp-risk-high: #d14249;

  --fp-gradient: linear-gradient(95.42deg, rgb(108, 115, 255) 0%, rgb(56, 64, 247) 100%);
  --fp-rainbow: linear-gradient(90deg, #5bfcc4 0%, #f593e4 50%, #71a4f0 100%);
  --fp-subtitle-border: linear-gradient(180deg, rgba(255, 255, 255, 0) 47%, rgb(245, 147, 228) 75%, rgb(113, 164, 240) 100%);
  --fp-section-py: 110px;
  --fp-radius-btn: 8px;
  --fp-radius-card: 16px;
  --fp-fab-size: 46px;
  --fp-fab-gap: 12px;
  --fp-fab-right: 24px;
  --fp-fab-bottom: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--fp-ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--fp-text);
  background-color: var(--fp-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fp-ff-heading);
  color: var(--fp-heading);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 12px;
}
a { color: var(--fp-primary); text-decoration: none; transition: color .25s; }
a:hover { color: var(--fp-white); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 12px; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 575px) { .container { padding: 0 16px; } }

.fp-section { padding: var(--fp-section-py) 0; }
.fp-section-sm { padding: 70px 0; }

/* Section titles */
.fp-section-label {
  position: relative;
  display: inline-block;
  border-radius: 100px;
  padding: 6px 24px;
  margin-bottom: 15px;
  font-family: var(--fp-ff-heading);
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #dadada;
  z-index: 1;
}
.fp-section-label::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: var(--fp-subtitle-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.fp-section-title {
  font-size: 42px;
  color: var(--fp-heading);
  font-weight: 700;
  margin-bottom: 0;
}
.fp-section-title span { color: var(--fp-white); }
.fp-section-desc { color: var(--fp-text); max-width: 580px; line-height: 1.7; }
.fp-section-header { text-align: center; margin-bottom: 60px; }
.fp-section-header .fp-section-desc { margin: 16px auto 0; }
@media (max-width: 991px) { .fp-section-title { font-size: 32px; } }
@media (max-width: 575px) { .fp-section-title { font-size: 26px; } .fp-section { padding: 70px 0; } }

/* Scroll fade-in (replaces WOW.js) */
.wow {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity .7s ease, transform .7s ease;
}
.wow.fadeInLeft { transform: translate3d(-24px, 0, 0); }
.wow.fadeInRight { transform: translate3d(24px, 0, 0); }
.wow.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .wow { opacity: 1; transform: none; transition: none; }
}

/* Buttons */
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 24px;
  border-radius: var(--fp-radius-btn);
  font-family: var(--fp-ff-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--fp-white);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .4s ease-in-out;
  white-space: nowrap;
}
.fp-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.fp-btn:hover { color: var(--fp-white); transform: translate3d(0, -2px, 0); }
.fp-btn-gradient {
  background: var(--fp-gradient);
  box-shadow: -6px 6px 25px 0 rgba(101, 84, 255, 0.6);
}
.fp-btn-gradient:hover { color: var(--fp-white); }
.fp-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 10px;
}
.fp-btn-ghost:hover { border-color: var(--fp-primary); color: var(--fp-white); }
.fp-btn-sm { height: 44px; padding: 0 22px; }
.fp-btn-sm svg { width: 16px; height: 16px; }
.fp-btn-primary { background: var(--fp-gradient); box-shadow: -6px 6px 25px 0 rgba(101, 84, 255, 0.6); color: var(--fp-white); }
.fp-btn-outline { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.08); color: var(--fp-white); }

/* Header */
.fp-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(149, 149, 149, 0.15);
}
.fp-header.scrolled {
  position: fixed;
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 4px rgba(7, 37, 68, 0.1);
  border-bottom: 0;
  animation: fp-sticky .3s;
}
@keyframes fp-sticky {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.fp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  min-height: 80px;
  gap: 24px;
}
@media (max-width: 1199px) { .fp-header__inner { padding: 0 30px; } }
@media (max-width: 991px) { .fp-header__inner { padding: 12px 30px; } }
@media (max-width: 575px) { .fp-header__inner { padding: 12px 15px; } }

.fp-header__left { display: flex; align-items: center; column-gap: 40px; }
.fp-header__logo { display: flex; align-items: center; gap: 10px; color: var(--fp-white); font-family: var(--fp-ff-heading); font-weight: 800; font-size: 20px; }
.fp-header__logo img { height: 30px; width: auto; }
@media (max-width: 575px) { .fp-header__logo img { height: 24px; } }
.fp-header__logo .logo-accent { color: var(--fp-primary); }

.fp-nav { display: flex; align-items: center; gap: 4px; }
.fp-nav > li > a {
  font-size: 15px;
  font-weight: 500;
  color: var(--fp-text);
  padding: 10px 12px;
  display: block;
}
.fp-nav > li > a:hover,
.fp-nav > li.active > a { color: var(--fp-white); }

.fp-header__actions { display: flex; align-items: center; gap: 12px; }

.fp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.fp-hamburger span { display: block; width: 22px; height: 2px; background: var(--fp-white); border-radius: 2px; }

.fp-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}
.fp-offcanvas.open { pointer-events: auto; }
.fp-offcanvas__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity .3s;
}
.fp-offcanvas.open .fp-offcanvas__overlay { opacity: 1; }
.fp-offcanvas__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: var(--fp-black);
  border-left: 1px solid var(--fp-border);
  padding: 28px 24px;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
}
.fp-offcanvas.open .fp-offcanvas__panel { transform: translateX(0); }
.fp-offcanvas__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.fp-offcanvas__close {
  width: 36px; height: 36px;
  border: 1px solid var(--fp-border);
  border-radius: 8px;
  background: transparent;
  color: var(--fp-white);
  cursor: pointer;
}
.fp-offcanvas__nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--fp-border);
  color: var(--fp-text);
  font-family: var(--fp-ff-heading);
  font-size: 16px;
  font-weight: 600;
}
.fp-offcanvas__nav a:hover { color: var(--fp-white); }
.fp-offcanvas__btns { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

@media (max-width: 991px) {
  .fp-nav, .fp-header__actions .fp-btn { display: none; }
  .fp-hamburger { display: flex; }
}

/* Hero */
.fp-hero {
  position: relative;
  padding: 160px 0 105px;
  overflow: hidden;
  z-index: 11;
}
@media (max-width: 991px) { .fp-hero { padding: 140px 0 80px; } }
@media (max-width: 767px) { .fp-hero { padding: 115px 0 0; } }

@media (min-width: 1440px) {
  .fp-hero > .container { max-width: 1600px; }
}

.fp-hero__content { position: relative; z-index: 2; max-width: 720px; }
.fp-hero__title {
  font-size: 68px;
  line-height: 1.2;
  color: var(--fp-white);
  margin-bottom: 27px;
  font-weight: 700;
}
.fp-hero__title .accent {
  background: var(--fp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1399px) { .fp-hero__title { font-size: 54px; } }
@media (max-width: 1199px) { .fp-hero__title { font-size: 48px; } }
@media (max-width: 991px) { .fp-hero__title { font-size: 36px; } }
@media (max-width: 575px) { .fp-hero__title { font-size: 26px; } }

.fp-hero__desc {
  font-size: 16px;
  max-width: 720px;
  margin-bottom: 35px;
  color: var(--fp-text);
}
.fp-hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.fp-hero__thumb {
  position: absolute;
  right: 0; top: 0;
  width: 45%;
  height: 100%;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
}
.fp-hero__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: bottom left; }
.fp-hero__thumb-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(108, 115, 255, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(91, 252, 196, 0.18) 0%, transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(3, 3, 3, 0.4) 100%);
}
.fp-hero__thumb-fallback::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  right: 8%; top: 18%;
  border: 1px solid rgba(108, 115, 255, 0.25);
  border-radius: 50%;
  animation: fp-orbit 18s linear infinite;
}
.fp-hero__thumb-fallback::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  right: 14%; top: 28%;
  border: 1px dashed rgba(245, 147, 228, 0.35);
  border-radius: 50%;
  animation: fp-orbit 12s linear infinite reverse;
}
@keyframes fp-orbit { to { transform: rotate(360deg); } }

.fp-hero__glow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.fp-hero__glow img {
  max-width: none;
  width: auto;
  height: auto;
}
.fp-hero__noise {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
}
.fp-hero__noise img {
  width: 100%;
  max-width: none;
  height: auto;
}
.fp-hero__shapes { pointer-events: none; }
.fp-hero__shape--one {
  position: absolute;
  top: 110px;
  left: 160px;
  z-index: -1;
  width: 154px;
  animation: fp-banner-shape 2s linear infinite alternate;
}
.fp-hero__shape--two {
  position: absolute;
  bottom: 85px;
  left: 53px;
  z-index: -1;
  animation: fp-banner-shape-2 3s linear infinite alternate;
}
.fp-hero__shape--three {
  position: absolute;
  right: 40%;
  top: 85px;
  z-index: 0;
  animation: fp-banner-shape 4s linear infinite alternate;
}
.fp-hero__shape--four {
  position: absolute;
  right: 110px;
  bottom: 104px;
  z-index: -1;
  animation: fp-banner-shape-3 2.5s linear infinite alternate;
}
@keyframes fp-banner-shape {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes fp-banner-shape-2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}
@keyframes fp-banner-shape-3 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fp-hero__shape--two { left: 0; width: 80px; }
}
@media (max-width: 767px) {
  .fp-hero > .container { position: relative; z-index: 2; }
  .fp-hero__shapes { display: none; }
  .fp-hero__desc { margin-bottom: 24px; }
  .fp-hero__actions { position: relative; z-index: 3; }
  .fp-hero__thumb {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: -64px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .fp-hero__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      #030303 0%,
      rgba(3, 3, 3, 0.88) 16%,
      rgba(3, 3, 3, 0.28) 42%,
      rgba(3, 3, 3, 0.06) 62%,
      rgba(3, 3, 3, 0) 78%
    );
    pointer-events: none;
  }
  .fp-hero__thumb img,
  .fp-hero__img { object-position: 22% 30%; }
}
@media (max-width: 575px) {
  .fp-hero__thumb { height: 340px; margin-top: -48px; }
}

/* Trust / counter */
.fp-counter { padding-bottom: 80px; margin-top: -12px; position: relative; z-index: 12; }
.fp-counter__main {
  background: linear-gradient(90.13deg, #0d1732 3.26%, #0c2530 61.13%);
  clip-path: polygon(6% 3%, 7% 0%, 99% 0%, 99.6% 6%, 94% 97%, 94% 100%, 1% 100%, 0.4% 94%, 6% 3%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 575px) {
  .fp-counter__main { clip-path: none; border-radius: 16px; }
}
.fp-counter__line {
  width: 25%;
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.fp-counter__line--top { top: 0; }
.fp-counter__line--bottom { bottom: 0; }
.fp-counter__line::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--fp-rainbow);
}
.fp-counter__line--top::before { animation: fp-move-left 35s linear infinite; }
.fp-counter__line--bottom::before { animation: fp-move-right 35s linear infinite; }
@keyframes fp-move-left { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@keyframes fp-move-right { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

.fp-counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 45px 80px;
  row-gap: 30px;
}
@media (max-width: 1199px) { .fp-counter__grid { padding: 35px 40px; } }
@media (max-width: 991px) { .fp-counter__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .fp-counter__grid { grid-template-columns: 1fr; padding: 35px 24px; } }

.fp-counter__item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  column-gap: 16px;
  position: relative;
  padding: 8px 12px;
}
.fp-counter__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(129deg, rgb(91, 252, 196) 0%, rgb(245, 147, 228) 50%, rgb(113, 164, 240) 100%);
  opacity: .2;
}
@media (max-width: 991px) {
  .fp-counter__item:nth-child(2)::after { display: none; }
}
@media (max-width: 480px) { .fp-counter__item::after { display: none; } }

.fp-counter__icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--fp-primary-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--fp-primary);
  font-size: 22px;
  overflow: hidden;
}
.fp-counter__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.fp-counter__icon i { line-height: 1; }
.fp-counter__icon img { width: 40px; height: 40px; object-fit: contain; }
.fp-counter__label { font-size: 14px; color: var(--fp-text); margin-bottom: 4px; }
.fp-counter__num {
  font-family: var(--fp-ff-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--fp-white);
  line-height: 1.1;
}

/* How it works */
.fp-how-it-works { position: relative; overflow: hidden; }
.fp-how-it-works__grid-bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.fp-how-it-works__grid-bg img { width: 100%; max-width: none; height: auto; }
.fp-how-it-works__line {
  position: absolute;
  right: -25px;
  top: -25%;
  z-index: 0;
  pointer-events: none;
}
.fp-how-it-works .container { position: relative; z-index: 1; }
.fp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
@media (max-width: 991px) { .fp-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .fp-steps { grid-template-columns: 1fr; } }

.fp-step { position: relative; }
.fp-steps .fp-step:nth-child(odd) { margin-top: 60px; }
.fp-steps .fp-step:nth-child(even) { margin-top: 30px; }
@media (max-width: 575px) {
  .fp-steps .fp-step:nth-child(odd),
  .fp-steps .fp-step:nth-child(even) { margin-top: 0; }
}
.fp-step:not(:last-child)::before {
  content: "";
  position: absolute;
  background-image: url("../img/how-it-works/left-up-arrow.png");
  background-repeat: no-repeat;
  background-position: right center;
  bottom: -18px;
  width: 222px;
  height: 31px;
  right: -40px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 991px) {
  .fp-step:nth-child(2n)::before { display: none; }
}
@media (max-width: 575px) {
  .fp-step:not(:last-child)::before { display: none; }
}

.fp-step__inner {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fp-step__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(90deg, rgba(91, 252, 196, 0.2) 0%, rgba(245, 147, 228, 0.2) 50%, rgba(113, 164, 240, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}
.fp-step__inner::after {
  content: "";
  position: absolute;
  width: 98px; height: 98px;
  left: 62px; top: -36px;
  background: var(--fp-rainbow);
  border-radius: 50%;
  opacity: .4;
  filter: blur(20.5px);
  pointer-events: none;
}
.fp-steps .fp-step:nth-child(even) .fp-step__inner::after {
  left: auto; right: 0;
}
.fp-step__icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--fp-primary);
  position: relative;
  z-index: 1;
}
.fp-step__icon img { width: 60px; height: 60px; object-fit: contain; }
.fp-step__title { font-size: 20px; color: var(--fp-white); margin-bottom: 8px; position: relative; z-index: 1; }
.fp-step__desc { font-size: 14px; color: var(--fp-text); position: relative; z-index: 1; margin: 0; }

/* Explainer / why-choose chrome */
.fp-why {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: 75% auto;
  background-repeat: no-repeat;
}
.fp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.fp-why__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 40px 56px;
  align-items: center;
  margin-bottom: 40px;
}
.fp-why__lead .fp-section-title { margin-bottom: 16px; }
.fp-why__lead .fp-section-desc {
  max-width: none;
  margin-top: 0;
}
.fp-why__links { margin-top: 12px !important; }
.fp-why__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.fp-why__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.fp-why-card {
  padding: 28px;
  border: 1px solid var(--fp-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 991px) {
  .fp-why-grid { grid-template-columns: 1fr 1fr; }
  .fp-why__intro,
  .fp-why__cards { grid-template-columns: 1fr; }
}
@media (max-width: 575px) { .fp-why-grid { grid-template-columns: 1fr; } }

.fp-why-item { padding: 30px; position: relative; }
.fp-why-item:nth-child(even):not(.fp-why-item--media)::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(95.42deg, rgb(3, 3, 3) 0.5%, rgba(189, 124, 240, 0.5) 50%, rgb(3, 3, 3) 100%);
}
.fp-why-item--media { padding: 0; display: flex; align-items: center; }
.fp-why-item__icon {
  width: 60px; height: 60px;
  border-radius: 12px;
  background: var(--fp-gradient);
  background: linear-gradient(95.42deg, rgba(108, 115, 255, 0.16) 0%, rgba(56, 64, 247, 0.16) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--fp-primary);
  margin-bottom: 15px;
  transition: transform .3s;
  overflow: hidden;
}
.fp-why-item:hover .fp-why-item__icon { transform: translateY(-5px); }
.fp-why-item__icon img { width: 40px; height: 40px; object-fit: contain; }
.fp-why-item__icon svg { width: 26px; height: 26px; display: block; }
.fp-why-item__icon i { line-height: 1; }
.fp-why-item__title { font-size: 20px; color: var(--fp-white); margin-bottom: 12px; }
.fp-why-item__desc { font-size: 14px; color: var(--fp-text); margin: 0; }

.fp-why-thumb {
  width: 100%;
  background: none;
  overflow: visible;
}
.fp-why-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.fp-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fp-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--fp-border);
}
.fp-flow__step:last-child { border-bottom: none; }
.fp-flow__num {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--fp-primary-dim);
  color: var(--fp-primary);
  font-family: var(--fp-ff-heading);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.fp-flow__text strong { color: var(--fp-white); font-size: 14px; display: block; margin-bottom: 2px; }
.fp-flow__text span { color: var(--fp-muted); font-size: 12px; }

/* Plan cards */
.fp-plans__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1199px) { .fp-plans__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .fp-plans__grid { grid-template-columns: 1fr; } }

.fp-plan-card {
  border-radius: 13.48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  position: relative;
  backdrop-filter: blur(4.3px);
  transition: .3s;
  display: flex;
  flex-direction: column;
  z-index: 2;
  background: rgba(255, 255, 255, 0.04);
  min-height: 520px;
  height: 100%;
}
.fp-plan-card:hover {
  background: var(--fp-black);
  box-shadow: -6px 6px 25px 0 rgba(101, 84, 255, 0.2);
}
.fp-plan-card:hover .fp-plan-card__name {
  background: var(--fp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fp-plan-card--featured:not(.fp-plan-card--locked) {
  border-color: rgba(108, 115, 255, 0.45);
  background: rgba(108, 115, 255, 0.06);
}

.fp-plan-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.fp-plan-card__head::before {
  content: "";
  position: absolute;
  height: 1px; width: 100%;
  bottom: 0; left: 0;
  background: linear-gradient(95.42deg, rgba(189, 124, 240, 0.5) 50%, rgb(3, 3, 3) 100%);
}
.fp-plan-card__name {
  color: var(--fp-heading);
  font-family: var(--fp-ff-heading);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.fp-plan-card__apy {
  background: rgba(53, 215, 156, 0.1);
  border-radius: 360px;
  padding: 6px 12px;
  color: #35d79c;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.fp-plan-card__risk--high + .fp-plan-card__apy,
.fp-plan-card__apy--warn {
  color: var(--fp-yellow);
  background: rgba(255, 163, 54, 0.1);
}

.fp-plan-card__specs {
  display: flex;
  flex-direction: column;
  margin: 0 0 8px;
  flex: 1;
}
.fp-plan-card__spec {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 12px;
  min-height: 38px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fp-plan-card__spec:first-child { padding-top: 0; }
.fp-plan-card__spec dt {
  margin: 0;
  color: var(--fp-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
}
.fp-plan-card__spec dd {
  margin: 0;
  color: var(--fp-white);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}
.fp-plan-card__note {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--fp-muted);
  letter-spacing: .02em;
}
.fp-plan-card__meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 8px; flex: 1; }
.fp-plan-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 34px;
  font-size: 14px;
}
.fp-plan-card__meta-key { color: var(--fp-text); display: flex; align-items: center; gap: 6px; }
.fp-plan-card__meta-key i { color: var(--fp-success); font-size: 12px; }
.fp-plan-card__meta-val { color: var(--fp-white); font-weight: 600; }

.fp-plan-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 16px; }
.fp-tag {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--fp-ff-heading);
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--fp-primary-dim);
  border: 1px solid rgba(108, 115, 255, 0.3);
  color: #c5c8ff;
}
.fp-plan-card__cta { margin-top: auto; padding-top: 28px; }
.fp-plan-card__disclaimer {
  font-size: 12px;
  color: var(--fp-muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
  line-height: 1.5;
}

.fp-plan-card__risk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fp-plan-card__risk-dot { width: 6px; height: 6px; border-radius: 50%; }
.fp-plan-card__risk--low { color: var(--fp-risk-low); }
.fp-plan-card__risk--medium { color: var(--fp-risk-medium); }
.fp-plan-card__risk--high { color: var(--fp-risk-high); }
.fp-plan-card__risk--low .fp-plan-card__risk-dot { background: var(--fp-risk-low); }
.fp-plan-card__risk--medium .fp-plan-card__risk-dot { background: var(--fp-risk-medium); }
.fp-plan-card__risk--high .fp-plan-card__risk-dot { background: var(--fp-risk-high); }

/* Live activity tables */
.fp-activity {
  position: relative;
  overflow-x: clip;
  isolation: isolate;
}
.fp-activity__glow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.fp-activity__line {
  position: absolute;
  top: -38%;
  left: 0;
  z-index: 0;
  width: 100%;
  pointer-events: none;
}
.fp-activity__glow img { max-width: none; width: auto; }
.fp-activity__line img { width: 100%; max-width: none; height: auto; }
.fp-activity .container { position: relative; z-index: 1; }
.fp-activity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 991px) { .fp-activity__grid { grid-template-columns: 1fr; } }

.fp-table-box {
  background: var(--fp-black);
  padding: 25px 30px 10px;
  border-radius: 30px;
  border: 1px solid var(--fp-heading);
  box-shadow: -6px 6px 25px 0 rgba(101, 84, 255, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 575px) {
  .fp-table-box { padding: 25px 20px 10px; }
}
.fp-table-box__head {
  margin-bottom: 0;
}
.fp-table-box__head h4 {
  font-size: 20px;
  color: var(--fp-heading);
  margin: 0;
  position: relative;
  padding-bottom: 12px;
}
.fp-table-box__head h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 63%;
  background: var(--fp-gradient);
}
.fp-table-box__scroll.is-scroll {
  max-height: 370px;
  overflow: hidden;
  padding-right: 2px;
}
.fp-table-box__scroll.is-auto .fp-table-box__marquee {
  animation: fp-table-marquee var(--fp-marquee, 26s) linear infinite;
}
.fp-table-box__scroll.is-auto:hover .fp-table-box__marquee {
  animation-play-state: paused;
}
@keyframes fp-table-marquee {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .fp-table-box__scroll.is-auto .fp-table-box__marquee { animation: none; }
  .fp-table-box__scroll.is-scroll { overflow-y: auto; }
}
.fp-table { width: 100%; border-collapse: collapse; }
.fp-table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}
.fp-table td:last-child { text-align: right; }
.fp-table__row { display: flex; align-items: center; gap: 12px; }
.fp-table__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--fp-primary-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--fp-primary);
}
.fp-table__title { font-size: 14px; color: var(--fp-white); font-weight: 600; margin: 0 0 4px; }
.fp-table__meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--fp-muted); }
.fp-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 20px;
}
.fp-badge--success { color: var(--fp-success); background: rgba(53, 215, 156, 0.12); }
.fp-badge--warning { color: var(--fp-yellow); background: rgba(255, 163, 54, 0.12); }
.fp-badge--muted { color: var(--fp-muted); background: rgba(255,255,255,.06); }
.fp-table__amt { color: var(--fp-yellow); font-size: 12px; font-weight: 600; }
.fp-table__total { color: var(--fp-heading); font-size: 14px; font-weight: 600; margin: 4px 0 0; }
.fp-table__empty { color: var(--fp-muted); font-size: 13px; margin: 12px 0 20px; }

.fp-performance__disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-card);
  padding: 24px;
  margin-top: 28px;
}
.fp-performance__disclaimer-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--fp-warning);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}

/* Profit / risk cards reuse why-choose */
.fp-profit__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.fp-profit__grid .fp-why-item::before { display: none; }
.fp-profit__grid .fp-why-item { padding: 28px 24px; }
.fp-risk__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 767px) {
  .fp-profit__grid, .fp-risk__grid { grid-template-columns: 1fr; }
}

.fp-notice {
  margin-top: 32px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fp-border);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 13px;
  line-height: 1.7;
}
.fp-notice i { color: var(--fp-primary); margin-top: 2px; }

/* Transparency */
.fp-transparency {
  position: relative;
  z-index: 1;
  isolation: isolate;
  background-color: var(--fp-black);
}
.fp-transparency .container { position: relative; z-index: 1; }
.fp-transparency__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 767px) { .fp-transparency__grid { grid-template-columns: 1fr; } }

.fp-checklist { display: flex; flex-direction: column; gap: 16px; }
.fp-checklist__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fp-border);
  border-radius: 12px;
}
.fp-checklist__check {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--fp-primary-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--fp-primary);
}
.fp-checklist__title { font-size: 14px; font-weight: 700; color: var(--fp-white); margin-bottom: 4px; }
.fp-checklist__desc { font-size: 13px; color: var(--fp-text); margin: 0; }

.fp-source-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-card);
  padding: 36px 32px;
}
.fp-source-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--fp-border);
  border-radius: 8px;
  margin-top: 12px;
}
.fp-source-mark {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
}

.fp-transparency__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fp-settle-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-card);
  padding: 32px 32px 28px;
  position: relative;
  overflow: hidden;
}
.fp-settle-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 115, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.fp-settle-card__lede {
  font-size: 13px;
  color: var(--fp-text);
  margin: 4px 0 22px;
  max-width: 36em;
  position: relative;
  z-index: 1;
}
.fp-settle {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.fp-settle::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: linear-gradient(180deg, rgba(108, 115, 255, 0.55), rgba(183, 211, 255, 0.08));
}
.fp-settle__step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.fp-settle__step + .fp-settle__step { margin-top: 18px; }
.fp-settle__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fp-ff-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fp-heading);
  background: linear-gradient(160deg, rgba(108, 115, 255, 0.28) 0%, rgba(10, 10, 18, 0.95) 100%);
  border: 1px solid rgba(183, 211, 255, 0.28);
  box-shadow: 0 0 0 6px rgba(3, 3, 3, 0.85);
  position: relative;
  z-index: 1;
}
.fp-settle__body {
  min-width: 0;
  padding-top: 2px;
}
.fp-settle__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 12px;
  margin-bottom: 6px;
}
.fp-settle__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fp-white);
  margin: 0;
}
.fp-settle__time {
  font-family: var(--fp-ff-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fp-primary);
  white-space: nowrap;
}
.fp-settle__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fp-text);
  margin: 0;
}
@media (max-width: 575px) {
  .fp-settle-card { padding: 24px 20px 20px; }
  .fp-settle__time { white-space: normal; }
}

/* FAQ */
.fp-faq {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.fp-faq__glow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
}
.fp-faq__glow img {
  max-width: none;
  width: 130%;
  height: auto;
}
.fp-faq .container { position: relative; z-index: 1; }
.fp-faq__header {
  text-align: left;
  margin-bottom: 40px;
}
.fp-faq__header .fp-section-desc { margin-left: 0; }
.fp-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  align-items: start;
}
@media (max-width: 991px) {
  .fp-faq__layout { grid-template-columns: 1fr; }
  .fp-faq__grid { grid-template-columns: 1fr; }
}

.fp-faq__intro .fp-section-label,
.fp-faq__intro .fp-section-title { position: relative; z-index: 2; }

.fp-faq__list { margin-inline-start: 0; }

.fp-faq__thumb {
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-60%);
  width: 46%;
  z-index: 0;
  pointer-events: none;
}
.fp-faq__thumb img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}
@media (max-width: 991px) {
  .fp-faq__thumb {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 420px;
    margin: 8px auto 0;
    z-index: 1;
  }
}

.fp-faq__item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
}
.fp-faq__item.open {
  border-color: transparent;
}
.fp-faq__item.open::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95.42deg, rgba(108, 115, 255, 0.2) 0%, rgba(56, 64, 247, 0.2) 100%);
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
}
.fp-faq__item.open::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: var(--fp-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}
.fp-faq__question {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px 16px 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--fp-text);
  position: relative;
  z-index: 1;
  user-select: none;
}
.fp-faq__item.open .fp-faq__question { color: var(--fp-white); }
.fp-faq__qicon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 144px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background: var(--fp-primary-dim);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fp-primary);
  margin-inline-end: 8px;
}
.fp-faq__qtext { flex: 1; min-width: 0; }
.fp-faq__toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--fp-text);
}
.fp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  position: relative;
  z-index: 1;
}
.fp-faq__item.open .fp-faq__answer { max-height: 640px; }
.fp-faq__answer-inner {
  padding: 0 30px 30px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--fp-text);
}
.fp-faq__more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* CTA */
.fp-cta-section { padding-bottom: 80px; }
.fp-cta {
  background: linear-gradient(90.37deg, rgb(19, 19, 19) 0%, rgb(19, 20, 47) 49.43%, rgb(19, 19, 19) 100%);
  padding: 80px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 991px) { .fp-cta { padding: 40px; } }
@media (max-width: 575px) { .fp-cta { padding: 24px; } }
.fp-cta__bg {
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background: radial-gradient(ellipse at 20% 50%, rgba(108, 115, 255, 0.5), transparent 60%);
}
.fp-cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.fp-cta__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) { .fp-cta__row { grid-template-columns: 1fr; } }
.fp-cta__title { font-size: 36px; color: var(--fp-heading); margin: 0; }
.fp-cta__desc { margin: 12px 0 0; color: var(--fp-text); line-height: 1.7; max-width: 640px; }
@media (max-width: 575px) { .fp-cta__title { font-size: 24px; } }
.fp-cta__actions { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 991px) { .fp-cta__actions { flex-direction: row; flex-wrap: wrap; } }

/* Legal */
.fp-legal { padding: 0 0 40px; }
.fp-legal__body {
  border: 1px solid var(--fp-border);
  border-radius: 16px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: var(--fp-muted);
  line-height: 1.7;
}
.fp-legal__heading {
  color: var(--fp-warning);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-legal strong { color: var(--fp-white); }

/* Payment strip — dual-row infinite marquee */
.fp-pay {
  padding: 20px 0 80px;
  position: relative;
  overflow: hidden;
}
.fp-pay__glow {
  position: absolute;
  left: 0;
  top: -145%;
  z-index: 0;
  pointer-events: none;
}
.fp-pay__glow img { max-width: none; width: auto; }
.fp-pay .container { position: relative; z-index: 1; }
.fp-pay__header {
  margin-bottom: 28px;
}
.fp-pay__marquee {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.fp-pay__row {
  overflow: hidden;
  width: 100%;
}
.fp-pay__row--right {
  margin-left: -72px;
}
.fp-pay__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: fp-pay-marquee 42s linear infinite;
}
.fp-pay__group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}
.fp-pay__row--right .fp-pay__track {
  animation-name: fp-pay-marquee-reverse;
  animation-duration: 48s;
}
.fp-pay:hover .fp-pay__track {
  animation-play-state: paused;
}
.fp-pay__item {
  flex: 0 0 auto;
  min-width: 188px;
  height: 53px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(186.47deg, rgba(56, 64, 247, 0.4) 0%, rgba(56, 64, 247, 0.2) 0.01%, rgba(56, 64, 247, 0) 100%);
  backdrop-filter: blur(100px);
  color: var(--fp-white);
}
.fp-pay__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.fp-pay__item img {
  height: 25px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.fp-pay__item i {
  font-size: 16px;
  color: var(--fp-heading);
}
.fp-pay__name {
  font-family: var(--fp-ff-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fp-white);
  white-space: nowrap;
}
@keyframes fp-pay-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fp-pay-marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (max-width: 575px) {
  .fp-pay { padding: 32px 0 40px; }
  .fp-pay__marquee { row-gap: 16px; }
  .fp-pay__row--right { margin-left: -40px; }
  .fp-pay__track { animation-duration: 28s; }
  .fp-pay__row--right .fp-pay__track { animation-duration: 32s; }
  .fp-pay__group { gap: 16px; padding-right: 16px; }
  .fp-pay__item { min-width: 150px; padding: 0 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .fp-pay__track,
  .fp-pay__row--right .fp-pay__track {
    animation: none;
    transform: none;
  }
  .fp-pay__marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .fp-pay__row { overflow-x: auto; }
}

/* Footer */
.fp-footer {
  position: relative;
  padding: 70px 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.fp-footer::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(91, 252, 196, 0.18), transparent 70%);
  pointer-events: none;
}
.fp-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 40px 48px;
  align-items: start;
  position: relative;
}
.fp-footer__nav { display: contents; }
.fp-footer__brand,
.fp-footer__col { min-width: 0; }
.fp-footer__col-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fp-white);
  margin: 0 0 16px;
}
.fp-footer__links { display: flex; flex-direction: column; gap: 10px; }
.fp-footer__links a { font-size: 14px; color: var(--fp-muted); }
.fp-footer__links a:hover { color: var(--fp-white); }

.fp-footer__logo { margin-bottom: 16px; display: flex; align-items: center; gap: 8px; color: var(--fp-white); font-family: var(--fp-ff-heading); font-weight: 800; font-size: 18px; text-decoration: none; }
.fp-footer__logo img { height: 30px; width: auto; }
.fp-footer__desc { font-size: 14px; color: var(--fp-text); line-height: 1.7; margin: 0; max-width: 360px; }
.fp-footer__risk { font-size: 12px; color: var(--fp-muted); line-height: 1.6; margin: 12px 0 0; max-width: 360px; }
.fp-footer__social-label {
  margin: 22px 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fp-muted);
}
.fp-footer__social { display: flex; flex-wrap: wrap; gap: 10px; }
.fp-footer__social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fp-white);
  font-size: 15px;
  transition: border-color .25s, background .25s, color .25s;
}
.fp-footer__social-link i,
.fp-footer__social-link .bi {
  font-size: 16px;
  line-height: 1;
}
.fp-footer__social-link:hover {
  border-color: rgba(108, 115, 255, 0.5);
  background: rgba(108, 115, 255, 0.12);
  color: var(--fp-white);
}
.fp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 12px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fp-muted);
}
@media (max-width: 991px) {
  .fp-footer { padding-top: 48px; }
  .fp-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fp-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .fp-footer__col-title { margin-bottom: 12px; font-size: 12px; }
  .fp-footer__links { gap: 8px; }
  .fp-footer__links a { font-size: 13px; line-height: 1.4; }
  .fp-footer__desc,
  .fp-footer__risk { max-width: none; }
  .fp-footer__bottom {
    flex-direction: column;
    gap: 6px;
    margin-top: 28px;
    padding: 16px 0 8px;
  }
}
@media (max-width: 399px) {
  .fp-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
}

/* Plan detail */
.fp-plan-detail { padding: 130px 0 40px; }
.fp-breadcrumb {
  font-size: 13px;
  color: var(--fp-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-breadcrumb a { color: var(--fp-muted); }
.fp-breadcrumb a:hover { color: var(--fp-white); }
.fp-detail__header {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--fp-border);
}
@media (max-width: 767px) { .fp-detail__header { flex-direction: column; } }
.fp-detail__title { font-size: 42px; color: var(--fp-white); margin-bottom: 8px; }
.fp-detail__code { font-size: 14px; color: var(--fp-muted); }
.fp-detail__apy-box {
  background: rgba(53, 215, 156, 0.08);
  border: 1px solid rgba(53, 215, 156, 0.25);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  min-width: 240px;
}
.fp-detail__apy-num { display: block; font-family: var(--fp-ff-heading); font-size: 32px; font-weight: 800; color: var(--fp-success); }
.fp-detail__apy-label { display: block; font-size: 12px; color: var(--fp-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
.fp-detail__apy-note { display: block; font-size: 11px; color: var(--fp-muted); margin-top: 8px; }
.fp-detail__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
}
@media (max-width: 991px) { .fp-detail__grid { grid-template-columns: 1fr; } }
.fp-detail__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fp-border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}
.fp-detail__card-title {
  font-size: 18px;
  color: var(--fp-white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-detail__card-title i { color: var(--fp-primary); }
.fp-detail__info-grid { display: flex; flex-direction: column; gap: 0; }
.fp-detail__info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--fp-border);
  font-size: 14px;
}
.fp-detail__info-row:last-child { border-bottom: none; }
.fp-detail__info-key { color: var(--fp-muted); }
.fp-detail__info-val { color: var(--fp-white); font-weight: 600; text-align: right; }
.fp-asset-list { display: flex; flex-wrap: wrap; gap: 8px; }
.fp-asset-chip {
  border: 1px solid var(--fp-border);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(0,0,0,.2);
}
.fp-asset-chip__symbol { color: var(--fp-white); font-weight: 700; font-size: 13px; }
.fp-asset-chip__weight { color: var(--fp-muted); font-size: 11px; margin-left: 6px; }
.fp-detail__invest-cta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(108, 115, 255, 0.4);
  border-radius: 16px;
  padding: 28px;
}
.fp-text-warning { color: var(--fp-warning); }
.fp-text-danger { color: var(--fp-danger); }
.fp-text-success { color: var(--fp-success); }

/* Back to top */
.fp-backtop {
  position: fixed;
  right: var(--fp-fab-right);
  bottom: var(--fp-fab-bottom);
  width: var(--fp-fab-size); height: var(--fp-fab-size);
  border-radius: 50%;
  border: 1px solid var(--fp-border);
  background: rgba(25, 32, 49, 0.9);
  color: var(--fp-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 50;
}
.fp-backtop.show { opacity: 1; pointer-events: auto; }
.fp-backtop:hover { transform: translateY(-3px); border-color: var(--fp-primary); }

/* Flash */
.fp-flash { position: fixed; bottom: 24px; right: 24px; z-index: 99999; max-width: 360px; width: 100%; }
.fp-flash__msg {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--fp-white);
  background: #12121c;
  border: 1px solid var(--fp-border);
  margin-bottom: 10px;
}
.fp-flash__msg--success { border-color: rgba(53, 215, 156, .35); }
.fp-flash__msg--error { border-color: rgba(209, 66, 73, .35); }
.fp-flash__msg--success i { color: var(--fp-success); }
.fp-flash__msg--error i { color: var(--fp-danger); }

/* Preloader */
.fp-preloader {
  position: fixed;
  inset: 0;
  background: var(--fp-black);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s;
}
.fp-preloader.hide { opacity: 0; pointer-events: none; }
.fp-spinner {
  width: 42px; height: 42px;
  border: 3px solid rgba(108, 115, 255, 0.2);
  border-top-color: var(--fp-primary);
  border-radius: 50%;
  animation: fp-spin .8s linear infinite;
}
@keyframes fp-spin { to { transform: rotate(360deg); } }

/* Catalog page hero */
.fp-page-hero { padding: 130px 0 12px; }
.fp-page-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--fp-white);
  margin: 12px 0 16px;
}
.fp-page-hero__desc {
  max-width: 640px;
  color: var(--fp-text);
  font-size: 16px;
  line-height: 1.7;
}
.fp-page-hero + .fp-plans { padding-top: 28px; }
.fp-page-hero + .fp-section { padding-top: 36px; }

/* Auth pages — CoinOrbit split + shared fields */
.fp-auth-body {
  min-height: 100vh;
  background: var(--fp-black);
}
.fp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.fp-split__form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
  background: var(--fp-black);
}
.fp-split__form-inner { width: 100%; max-width: 440px; }
.fp-split__form-title {
  font-size: 36px;
  color: var(--fp-white);
  margin-bottom: 28px;
}
.fp-split__form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.fp-split__form-row .fp-auth-check { margin: 0; }
.fp-split__welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(108, 115, 255, 0.45), transparent 42%),
    radial-gradient(circle at 78% 70%, rgba(245, 147, 228, 0.22), transparent 40%),
    radial-gradient(circle at 50% 0%, rgba(56, 64, 247, 0.35), transparent 50%),
    linear-gradient(160deg, #12142a 0%, #07070f 55%, #030303 100%);
}
.fp-split__welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 3, 3, 0.35) 100%);
  pointer-events: none;
}
.fp-split__welcome-inner { position: relative; z-index: 1; max-width: 420px; }
.fp-split__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--fp-white);
  font-family: var(--fp-ff-heading);
  font-weight: 800;
  font-size: 28px;
}
.fp-split__logo img { height: 40px; width: auto; margin: 0 auto; }
.fp-split__logo--narrow {
  display: block;
  text-align: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.fp-split__welcome-title {
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--fp-white);
  margin-bottom: 12px;
  white-space: nowrap;
}
.fp-split__welcome-lead {
  font-size: 16px;
  color: var(--fp-text);
  margin-bottom: 28px;
}
.fp-auth-req { color: var(--fp-danger); }

.fp-auth {
  position: relative;
  padding: 36px 24px 56px;
}
.fp-auth__glow {
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 280px;
  background: radial-gradient(ellipse at 50% 0%, rgba(108, 115, 255, 0.22), transparent 70%);
  pointer-events: none;
}
.fp-auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fp-border);
  border-radius: 16px;
  padding: 32px 28px 28px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.fp-auth-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: var(--fp-gradient);
}
.fp-auth-card--center { margin: 0 auto; }
.fp-auth-card__title {
  font-size: 26px;
  color: var(--fp-white);
  margin-bottom: 8px;
}
.fp-auth-card__sub {
  font-size: 14px;
  color: var(--fp-muted);
  margin-bottom: 22px;
  line-height: 1.55;
}
.fp-auth--narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 48px;
}
.fp-auth-field { margin-bottom: 18px; }
.fp-auth-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}
.fp-auth-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.fp-auth-label-row .fp-auth-label { margin-bottom: 0; }
.fp-auth-link { color: var(--fp-primary); font-size: 13px; font-weight: 600; }
.fp-auth-link:hover { color: var(--fp-white); }
.fp-auth-input-wrap { position: relative; }
.fp-auth-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  z-index: 1;
  pointer-events: none;
}
.fp-auth-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--fp-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--fp-white);
  font-family: var(--fp-ff-body);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.fp-auth-input-wrap .fp-auth-input { padding-left: 40px; }
.fp-auth-input:focus {
  outline: none;
  border-color: var(--fp-primary);
  box-shadow: 0 0 0 3px rgba(108, 115, 255, 0.18);
}
.fp-auth-input--error { border-color: var(--fp-danger); }
.fp-auth-input::placeholder { color: rgba(255, 255, 255, 0.28); }
.fp-auth-input[readonly] { color: var(--fp-muted); background: rgba(255, 255, 255, 0.03); }
.fp-auth-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #0a0a12 inset;
  -webkit-text-fill-color: #fff;
}
.fp-auth-input--code {
  text-align: center;
  font-family: var(--fp-ff-heading);
  font-size: 24px;
  letter-spacing: 0.28em;
  font-weight: 700;
}
.fp-auth-password { position: relative; }
.fp-auth-password .fp-auth-input { padding-right: 44px; }
.fp-auth-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  padding: 4px;
}
.fp-auth-toggle:hover { color: var(--fp-white); }
.fp-auth-error { font-size: 12px; color: #f87171; margin: 6px 0 0; }
.fp-auth-error--block { margin-bottom: 10px; }
.fp-auth-hint { font-size: 12px; color: var(--fp-muted); margin: 6px 0 0; }
.fp-auth-pw-hint { font-size: 12px; font-weight: 600; margin: 6px 0 0; }
.fp-auth-pw-hint[data-level="weak"] { color: #f87171; }
.fp-auth-pw-hint[data-level="medium"] { color: var(--fp-warning); }
.fp-auth-pw-hint[data-level="strong"] { color: var(--fp-success); }
.fp-auth-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fp-muted);
  cursor: pointer;
  user-select: none;
  margin: 4px 0 20px;
}
.fp-auth-check .fp-auth-link { pointer-events: auto; }
.fp-auth-check-input { position: absolute; opacity: 0; width: 0; height: 0; }
.fp-auth-check-box {
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  flex-shrink: 0;
}
.fp-auth-check-input:checked + .fp-auth-check-box {
  background: var(--fp-primary);
  border-color: var(--fp-primary);
}
.fp-auth-check-input:checked + .fp-auth-check-box::after {
  content: "";
  display: block;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(5px, 1px);
}
.fp-auth-submit { width: 100%; height: 50px; }
.fp-auth-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: var(--fp-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fp-auth-or::before,
.fp-auth-or::after { content: ""; flex: 1; height: 1px; background: var(--fp-border); }
.fp-auth-social {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.fp-auth-social--top { margin-bottom: 4px; }
.fp-auth-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border: 1px solid var(--fp-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--fp-white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.fp-auth-social-btn:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--fp-primary); color: var(--fp-white); }
.fp-auth-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--fp-muted);
  margin: 20px 0 0;
}
.fp-auth-footnote a { color: var(--fp-primary); font-weight: 600; }
.fp-auth-footnote a:hover { color: var(--fp-white); }
.fp-auth-legal-note { font-size: 12px; color: var(--fp-muted); line-height: 1.55; margin: 4px 0 16px; }
.fp-auth-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fp-auth-name-row .fp-auth-field { margin-bottom: 0; }
.fp-auth-name-row { margin-bottom: 18px; }
.fp-auth-referral {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(108, 115, 255, 0.12);
  border: 1px solid rgba(108, 115, 255, 0.3);
  color: var(--fp-heading);
  font-size: 13px;
  margin-bottom: 16px;
}
.fp-auth-why {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--fp-border);
  border-radius: 12px;
  padding: 18px 16px;
}
.fp-auth-why__title { font-size: 16px; color: var(--fp-white); margin-bottom: 12px; }
.fp-auth-why__list { display: flex; flex-direction: column; gap: 12px; }
.fp-auth-why__list li { display: flex; gap: 12px; align-items: flex-start; }
.fp-auth-why__icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--fp-primary-dim);
  color: var(--fp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}
.fp-auth-why__list strong { display: block; font-size: 14px; color: var(--fp-white); margin-bottom: 2px; }
.fp-auth-why__list span { font-size: 13px; color: var(--fp-muted); line-height: 1.45; }
.fp-auth-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 13px;
}
.fp-auth-alert--success {
  background: rgba(53, 215, 156, 0.1);
  border: 1px solid rgba(53, 215, 156, 0.3);
  color: var(--fp-success);
}
.fp-auth-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fp-gradient);
  color: #fff;
  font-size: 22px;
}
.fp-auth-hints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  color: var(--fp-muted);
  font-size: 13px;
}
.fp-auth-hints i { color: var(--fp-primary); margin-right: 6px; }
.fp-auth-logout { margin-top: 12px; }

@media (max-width: 991px) {
  .fp-split { grid-template-columns: 1fr; }
  .fp-split__welcome {
    min-height: 320px;
    order: -1;
    padding: 40px 24px;
  }
  .fp-split__form { padding: 32px 20px 48px; }
  .fp-auth-card { max-width: none; }
  .fp-auth-name-row { grid-template-columns: 1fr; }
}

/* Contact */
.fp-contact { padding-top: 40px; }
.fp-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}
.fp-contact__grid--form-only {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) { .fp-contact__grid { grid-template-columns: 1fr; } }
.fp-contact__panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--fp-border);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.fp-contact__map {
  position: relative;
  min-height: 380px;
  flex: 1 1 auto;
  background: #101018;
}
.fp-contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) saturate(0.85) contrast(1.05);
}
.fp-contact__map-fade {
  position: absolute;
  inset: auto 0 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(8, 8, 14, 0) 0%, rgba(8, 8, 14, 0.88) 100%);
  pointer-events: none;
}
.fp-contact__panel-body {
  position: relative;
  z-index: 1;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fp-contact__kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fp-primary);
  font-weight: 600;
}
.fp-contact__info-lead {
  margin: 0;
  color: var(--fp-muted);
  font-size: 15px;
  line-height: 1.65;
}
.fp-contact__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0 0;
  border-top: 1px solid var(--fp-border);
}
.fp-contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--fp-primary-dim);
  color: var(--fp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-contact__label {
  font-size: 11px;
  color: var(--fp-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.fp-contact__value {
  color: var(--fp-white);
  font-size: 16px;
  line-height: 1.5;
}
.fp-contact__value a { color: var(--fp-heading); }
.fp-contact__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fp-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fp-contact__form h3 { font-size: 22px; color: var(--fp-white); margin-bottom: 8px; }
.fp-contact__form-lead { color: var(--fp-muted); margin-bottom: 22px; }
.fp-contact__form .fp-auth-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.fp-contact__message {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.fp-contact textarea.fp-auth-input {
  flex: 1 1 auto;
  min-height: 240px;
  height: auto;
  padding: 12px 14px;
  resize: vertical;
}

@media (min-width: 992px) {
  body.fp-page-contact .fp-page-hero {
    padding: 108px 0 8px;
  }
  body.fp-page-contact .fp-page-hero__title {
    font-size: clamp(28px, 3.4vw, 38px);
    margin: 6px 0 8px;
  }
  body.fp-page-contact .fp-page-hero__desc { margin-bottom: 0; }
  body.fp-page-contact .fp-page-hero + .fp-section { padding-top: 16px; }
  body.fp-page-contact .fp-contact {
    padding: 16px 0 48px;
  }
  body.fp-page-contact .fp-contact__grid {
    height: calc(100dvh - 300px);
    max-height: 620px;
    min-height: 420px;
  }
  body.fp-page-contact .fp-contact__map { min-height: 0; }
  body.fp-page-contact .fp-contact__panel-body { padding: 16px 20px 18px; gap: 12px; }
  body.fp-page-contact .fp-contact__form { padding: 24px; }
  body.fp-page-contact .fp-contact__message { min-height: 88px; }
  body.fp-page-contact textarea.fp-auth-input { min-height: 88px; }
}

.fp-skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 10000;
  background: var(--fp-primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
}
.fp-skip:focus { left: 8px; color: #fff; }

.fp-breadcrumb { flex-wrap: wrap; row-gap: 6px; }
.fp-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: bottom left; }

.fp-plan-card__more,
.fp-plan-related-links {
  margin-top: 12px;
  font-size: 13px;
  color: var(--fp-muted);
  text-align: center;
}
.fp-plan-related-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.fp-insights { position: relative; overflow: hidden; }
.fp-insights .container { position: relative; z-index: 1; }
.fp-insights__shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(89.78deg, rgb(3, 3, 3) 57.65%, rgb(15, 49, 65) 100%);
  height: 90px;
  width: 514px;
}
.fp-insights__shape--one {
  transform: rotate(26deg) scale(-1, 1);
  top: 22%;
  left: -70px;
}
.fp-insights__shape--two {
  transform: rotate(140deg) scale(-1, 1);
  top: 27%;
  right: -100px;
}
@media (max-width: 991px) {
  .fp-insights__shape { height: 70px; width: 234px; }
  .fp-insights__shape--one { top: 10%; right: -120px; left: auto; transform: rotate(140deg) scale(-1, 1); }
  .fp-insights__shape--two { top: 10%; left: -100px; right: auto; }
}

.fp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fp-blog-grid--related {
  display: flex;
  flex-direction: column;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
@media (max-width: 991px) { .fp-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .fp-blog-grid { grid-template-columns: 1fr; } }

.fp-blog-card {
  background: var(--fp-card);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-card);
  overflow: hidden;
}
.fp-blog-card__media { display: block; aspect-ratio: 16 / 10; background: #12121c; overflow: hidden; }
.fp-blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fp-blog-card__placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a28, #0a0a12); }
.fp-blog-card__body { padding: 20px; }
.fp-blog-card__cat { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--fp-primary); }
.fp-blog-card__title { font-size: 20px; margin: 8px 0 10px; }
.fp-blog-card__title a { color: var(--fp-heading); }
.fp-blog-card__excerpt { color: var(--fp-muted); font-size: 15px; }
.fp-blog-card__date { font-size: 13px; color: var(--fp-muted); }
.fp-blog-empty { text-align: center; color: var(--fp-muted); padding: 40px 0; }
.fp-blog-pager { margin-top: 40px; }

.fp-article { padding: 112px 0 80px; }
.fp-article__wrap { max-width: 1160px; }
.fp-article .fp-breadcrumb [aria-current="page"] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fp-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.fp-article__layout--with-related {
  grid-template-columns: minmax(0, 1fr) 260px;
}
.fp-article__main { min-width: 0; }
.fp-article__header { margin: 0 0 24px; }
.fp-article__kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 4px 10px;
  border: 1px solid var(--fp-border);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fp-primary);
}
.fp-article__title {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--fp-white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.fp-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  color: var(--fp-muted);
  font-size: 13px;
  margin: 0;
}
.fp-article__meta time + span::before {
  content: "·";
  margin-right: 14px;
  color: var(--fp-border);
}
.fp-article__dek {
  max-width: 42em;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fp-text);
  margin: 16px 0 0;
}
.fp-article__cover {
  width: 100%;
  max-width: 100%;
  margin: 0 0 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fp-article__cover img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
}
.fp-article__body {
  color: var(--fp-text);
  font-size: 17px;
  line-height: 1.8;
}
.fp-article__body > :first-child { margin-top: 0; }
.fp-article__body h2, .fp-article__body h3 { color: var(--fp-heading); margin: 32px 0 12px; }
.fp-article__body h2 { font-size: clamp(22px, 2.4vw, 28px); }
.fp-article__body h3 { font-size: clamp(18px, 2vw, 22px); }
.fp-article__body p { margin-bottom: 16px; }
.fp-article__body img,
.fp-article__body iframe,
.fp-article__body video {
  max-width: 100%;
  height: auto;
}
.fp-article__body img {
  border-radius: 10px;
  margin: 8px 0 20px;
}
.fp-article__body iframe { width: 100%; min-height: 360px; }
.fp-article__body ul,
.fp-article__body ol {
  margin: 0 0 16px;
  padding-left: 1.4em;
}
.fp-article__body ul { list-style: disc; }
.fp-article__body ol { list-style: decimal; }
.fp-article__body li { margin: 0 0 8px; }
.fp-article__body li ul { list-style: circle; margin: 8px 0; }
.fp-article__body li ol { list-style: lower-alpha; margin: 8px 0; }
.fp-article__body blockquote {
  margin: 0 0 20px;
  padding: 4px 0 4px 16px;
  border-left: 2px solid var(--fp-primary);
  color: var(--fp-heading);
}
.fp-article__body table {
  display: table;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
}
.fp-article__body th,
.fp-article__body td {
  border: 1px solid var(--fp-border);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.fp-article__body th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--fp-heading);
  font-weight: 600;
}
.fp-article__body tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.fp-article__body pre { overflow-x: auto; background: #12121c; padding: 16px; border-radius: 8px; }
.fp-article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; }
.fp-article__tags li { border: 1px solid var(--fp-border); border-radius: 99px; padding: 4px 12px; font-size: 13px; color: var(--fp-muted); }
.fp-article__share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--fp-border);
}
.fp-article__share-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fp-muted);
}
.fp-article__share-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fp-share-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fp-border);
  border-radius: 50%;
  background: var(--fp-card);
  color: var(--fp-heading);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.fp-share-btn:hover,
.fp-share-btn:focus-visible {
  border-color: var(--fp-primary);
  color: var(--fp-primary);
  background: var(--fp-primary-dim);
}
.fp-share-btn.is-copied {
  border-color: var(--fp-primary);
  color: var(--fp-primary);
  background: var(--fp-primary-dim);
}
.fp-share-btn .fp-share-x {
  display: block;
  width: 14px;
  height: 14px;
}
.fp-article__cta {
  margin: 36px 0 0;
  padding: 22px 24px;
  border: 1px solid var(--fp-border);
  border-radius: 14px;
  background: var(--fp-card);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.fp-article__cta-copy .fp-article__cta-label {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fp-muted);
}
.fp-article__cta-copy .fp-article__cta-text {
  margin: 0;
  color: var(--fp-text);
  font-size: 15px;
}
.fp-article__sidebar {
  position: sticky;
  top: 108px;
  min-width: 0;
}
.fp-article__sidebar .fp-blog-grid,
.fp-article__sidebar .fp-blog-grid--related {
  display: flex;
  flex-direction: column;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
}
.fp-article__sidebar .fp-blog-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.fp-article__sidebar .fp-blog-card__media {
  display: none;
}
.fp-article__sidebar .fp-blog-card__body {
  padding: 0;
}
.fp-article__sidebar .fp-blog-card__title {
  font-size: 15px;
  margin: 0;
  overflow-wrap: anywhere;
}
.fp-article__related {
  padding: 20px;
  border: 1px solid var(--fp-border);
  border-radius: 14px;
  background: var(--fp-card);
  min-width: 0;
  width: 100%;
}
.fp-article__related > h2 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fp-muted);
  line-height: 1.3;
}
.fp-related-list {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}
.fp-related-item {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 12px 0;
  border-top: 1px solid var(--fp-border);
  color: inherit;
  box-sizing: border-box;
}
.fp-related-item:first-child {
  padding-top: 0;
  border-top: 0;
}
.fp-related-item:hover { color: inherit; }
.fp-related-item__title {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--fp-heading);
  overflow-wrap: anywhere;
  word-break: normal;
}
.fp-related-item:hover .fp-related-item__title { color: var(--fp-white); }
.fp-related-item time {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--fp-muted);
}
@media (max-width: 991px) {
  .fp-article__layout--with-related { grid-template-columns: 1fr; gap: 40px; }
  .fp-article__sidebar { position: static; }
}
@media (max-width: 575px) {
  .fp-article__cover img { max-height: 200px; }
}

.fp-preloader { display: none !important; }

/* Cookie consent — CoinOrbit caches-privacy / cookiealert */
.fp-cookie {
  display: none;
  flex-direction: column;
  row-gap: 12px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 111;
  width: 90%;
  max-width: 960px;
  padding: 12px 24px;
  background: #060608;
  border-radius: 10px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 0 1px 0 rgba(96, 96, 96, 0.1), 0 12px 24px -6px rgba(96, 96, 96, 0.15);
}
.fp-cookie.is-visible { display: flex; }
.fp-cookie::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(95.42deg, rgb(189, 124, 240) 0%, rgb(128, 44, 196) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.fp-cookie__content,
.fp-cookie__actions { position: relative; z-index: 1; }
.fp-cookie__title {
  font-family: var(--fp-ff-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--fp-white);
  margin: 0 0 8px;
}
.fp-cookie__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fp-text);
  margin: 0;
}
.fp-cookie__desc a { color: var(--fp-primary); }
.fp-cookie__desc a:hover { color: var(--fp-white); }
.fp-cookie__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.fp-cookie__actions .fp-btn { flex: 0 0 auto; }
@media (max-width: 575px) {
  .fp-cookie { padding: 12px 16px; }
  .fp-cookie__title { font-size: 18px; }
  .fp-cookie__actions { width: 100%; }
  .fp-cookie__actions .fp-btn { font-size: 12px; }
}

/* Font Awesome 6.0.0-alpha2 is missing later FA6 names and some subset glyphs. */
.fa-arrows-left-right:before { content: "\f337"; } /* arrows-alt-h */
.fa-shield-halved:before { content: "\f3ed"; } /* shield-alt */
.fa-vault:before { content: "\f81d"; } /* sack-dollar */
.fa-arrow-up-right-from-square:before { content: "\f570"; } /* file-invoice */
.fa-building-columns:before { content: "\f19c"; } /* university */

/* Referral marketing */
.fp-referral__steps {
  margin-bottom: 48px;
  grid-template-columns: repeat(3, 1fr);
}
.fp-referral__steps .fp-step:nth-child(odd),
.fp-referral__steps .fp-step:nth-child(even) { margin-top: 0; }
@media (max-width: 991px) {
  .fp-referral__steps { grid-template-columns: 1fr; }
  .fp-referral__steps .fp-step:not(:last-child)::before { display: none; }
}

.fp-fission {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 48px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: radial-gradient(120% 80% at 10% 0%, rgba(108,115,255,.12), transparent 55%), rgba(255,255,255,.02);
}
@media (max-width: 899px) {
  .fp-fission { grid-template-columns: 1fr; padding: 22px 16px; }
}
.fp-fission__tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 8px 4px;
}
.fp-fission__you {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fp-fission__tag {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fp-muted);
  font-weight: 700;
}
.fp-fission__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}
.fp-fission__node--you {
  width: 74px;
  height: 74px;
  background: var(--fp-gradient);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 0 32px var(--fp-primary-glow);
}
.fp-fission__node--l1 {
  width: 46px;
  height: 46px;
  background: var(--fp-primary-dim);
  border: 1px solid rgba(108,115,255,.5);
  color: #c5c8ff;
  font-size: 12px;
}
.fp-fission__node--l2 {
  width: 16px;
  height: 16px;
  background: rgba(53, 215, 156, .22);
  border: 1px solid rgba(53, 215, 156, .45);
}
.fp-fission__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.fp-fission__row--l2 { gap: 8px; max-width: 320px; }
.fp-fission__lines {
  width: 72%;
  max-width: 280px;
  height: 22px;
  margin: 4px auto 8px;
  border: 1px solid rgba(108,115,255,.35);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  position: relative;
}
.fp-fission__lines::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 1px;
  height: 18px;
  background: rgba(108,115,255,.35);
}
.fp-fission__lines--to-l2 {
  width: 88%;
  max-width: 340px;
  border-color: rgba(53, 215, 156, .35);
}
.fp-fission__lines--to-l2::before { background: rgba(53, 215, 156, .35); }
.fp-fission__layer-label {
  margin: 10px 0 6px;
  font-size: 12px;
  color: var(--fp-muted);
  line-height: 1.45;
  max-width: 340px;
}
.fp-fission__more {
  font-size: 11px;
  font-weight: 700;
  color: #35d79c;
  letter-spacing: .04em;
}
.fp-fission__payout {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 22px 20px;
  background: rgba(0,0,0,.18);
}
.fp-fission__payout-title {
  font-family: var(--fp-ff-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--fp-heading);
  margin: 0 0 8px;
}
.fp-fission__payout-lead {
  font-size: 13px;
  color: var(--fp-text);
  line-height: 1.55;
  margin: 0 0 16px;
}
.fp-fission__payout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
}
.fp-fission__stat {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,.03);
}
.fp-fission__stat--total {
  border-color: rgba(108,115,255,.4);
  background: rgba(108,115,255,.1);
}
.fp-fission__stat-k {
  font-size: 11px;
  color: var(--fp-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}
.fp-fission__stat-v {
  font-family: var(--fp-ff-heading);
  font-size: 26px;
  font-weight: 800;
  color: #35d79c;
  line-height: 1.15;
}
.fp-fission__stat--total .fp-fission__stat-v { color: #fff; }
.fp-fission__stat-h { font-size: 12px; color: var(--fp-text); line-height: 1.4; }
.fp-fission__footnote {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--fp-muted);
  line-height: 1.5;
}
.fp-referral__rates {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 36px;
  background: rgba(255,255,255,.02);
}
.fp-referral__rates-title {
  font-family: var(--fp-ff-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--fp-heading);
  margin: 0 0 18px;
  text-align: center;
}
.fp-referral__table-wrap { overflow-x: auto; }
.fp-referral__table {
  width: 100%;
  border-collapse: collapse;
}
.fp-referral__table th,
.fp-referral__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fp-referral__table th {
  color: var(--fp-muted);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fp-referral__table td {
  color: var(--fp-white);
  font-weight: 600;
}
.fp-referral__table tr:last-child td { border-bottom: 0; }
.fp-referral__note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--fp-muted);
  text-align: center;
  line-height: 1.6;
}
.fp-referral__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.fp-plans__header .fp-section-desc {
  max-width: 760px;
}
.fp-plans__diffs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 48px;
}
.fp-plans__diff {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
  border: 1px solid var(--fp-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color .2s, background .2s;
}
.fp-plans__diff:hover {
  border-color: rgba(108, 115, 255, 0.35);
  background: rgba(108, 115, 255, 0.04);
}
.fp-plans__diff h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--fp-heading);
}
.fp-plans__diff p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fp-text);
}
.fp-plans__diff .fp-why-item__icon {
  width: 44px;
  height: 44px;
  font-size: 18px;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .fp-plans__diffs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .fp-plans__diffs { grid-template-columns: 1fr; }
}
.fp-plans__tier { margin-bottom: 40px; }
.fp-plans__tier-title {
  font-family: var(--fp-ff-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--fp-heading);
  margin: 0 0 18px;
  letter-spacing: .04em;
}
.fp-plans__gated {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 8px;
  padding: 28px 32px;
  border-radius: var(--fp-radius-card);
  border: 1px solid rgba(108, 115, 255, 0.22);
  background:
    linear-gradient(120deg, rgba(108, 115, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 48%, rgba(91, 252, 196, 0.06) 100%);
}
.fp-plans__gated-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fp-primary);
}
.fp-plans__gated-title {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--fp-white);
}
.fp-plans__gated-desc {
  margin: 0;
  max-width: 560px;
  color: var(--fp-text);
  line-height: 1.65;
}
.fp-plans__gated-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 899px) {
  .fp-plans__gated {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}
.fp-plan-card--locked {
  opacity: 1;
  background: rgba(255, 163, 54, 0.06);
  border-color: rgba(255, 163, 54, 0.28);
}
.fp-plan-card--locked .fp-plan-card__meta,
.fp-plan-card--locked .fp-plan-card__specs { flex: 0 0 auto; }
.fp-plan-card__lock-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ffa336;
  background: rgba(255,163,54,.12);
}
.fp-plan-card__unlock {
  margin: 8px 0 12px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(108,115,255,.08);
  border: 1px solid rgba(108,115,255,.2);
  flex: 1;
}
.fp-plan-card__unlock-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--fp-heading);
  margin: 0 0 8px;
}
.fp-plan-card__unlock ul {
  margin: 0;
  padding-left: 18px;
  color: var(--fp-text);
  font-size: 13px;
  line-height: 1.55;
}
.fp-lock-banner {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,163,54,.08);
  border: 1px solid rgba(255,163,54,.25);
  color: var(--fp-text);
}
.fp-lock-banner ul { margin: 8px 0 0; padding-left: 18px; }

.fp-pw-card {
  margin-top: 0;
  padding: 20px;
  border-radius: 13.48px;
  border: 1px solid rgba(212, 175, 55, .45);
  background: linear-gradient(180deg, rgba(212,175,55,.12), rgba(0,0,0,.2));
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(4.3px);
  transition: .3s;
  min-height: 520px;
  height: 100%;
}
.fp-pw-card:hover {
  box-shadow: -6px 6px 25px 0 rgba(212, 175, 55, 0.18);
}
.fp-pw-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.fp-pw-card__head::before {
  content: "";
  position: absolute;
  height: 1px; width: 100%;
  bottom: 0; left: 0;
  background: linear-gradient(95.42deg, rgba(212, 175, 55, 0.5) 50%, rgb(3, 3, 3) 100%);
}
.fp-pw-card__name {
  color: var(--fp-heading);
  font-family: var(--fp-ff-heading);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}
.fp-pw-card__apy {
  background: rgba(212, 175, 55, 0.12);
  border-radius: 360px;
  padding: 6px 12px;
  color: #e6c56a;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.fp-pw-card__lock-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e6c56a;
  background: rgba(212, 175, 55, .12);
}
.fp-pw-card__meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 8px; }
.fp-pw-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 34px;
  font-size: 14px;
}
.fp-pw-card__meta-key { color: var(--fp-text); display: flex; align-items: center; gap: 6px; }
.fp-pw-card__meta-key i { color: #e6c56a; font-size: 12px; }
.fp-pw-card__meta-val { color: var(--fp-white); font-weight: 600; }
.fp-pw-card__features {
  list-style: none;
  padding: 0;
  margin: 4px 0 10px;
  display: grid;
  gap: 5px;
  color: var(--fp-white);
  font-size: 13px;
}
.fp-pw-card__unlock {
  margin: 8px 0 12px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(212, 175, 55, .08);
  border: 1px solid rgba(212, 175, 55, .25);
  flex: 1;
}
.fp-pw-card__unlock-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--fp-heading);
  margin: 0 0 8px;
}
.fp-pw-card__unlock ul {
  margin: 0;
  padding-left: 18px;
  color: var(--fp-text);
  font-size: 13px;
  line-height: 1.55;
}
.fp-pw-card__cta { margin-top: auto; padding-top: 16px; }
.fp-pw-card__contacts {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  font-size: 12px;
}
.fp-pw-card__contacts a { color: #e6c56a; font-weight: 600; }
.fp-pw-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 899px) { .fp-pw-layout { grid-template-columns: 1fr; } }
.fp-pw-form {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px;
}
.fp-pw-form h2 { color: var(--fp-heading); margin-bottom: 8px; }
.fp-pw-form p { color: var(--fp-muted); margin-bottom: 18px; }
.fp-pw-form label { display: block; margin: 12px 0 6px; color: var(--fp-text); font-size: 13px; }
.fp-pw-form input,
.fp-pw-form select,
.fp-pw-form textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: var(--fp-white);
  padding: 10px 12px;
}
.fp-pw-form button { margin-top: 18px; }

/* Contact Us bubble */
.fp-cb {
  position: fixed;
  right: var(--fp-fab-right);
  bottom: calc(var(--fp-fab-bottom) + var(--fp-fab-size) + var(--fp-fab-gap));
  z-index: 60;
  font-family: inherit;
}
.fp-cb__fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--fp-border);
  border-radius: 50%;
  background: rgba(25, 32, 49, 0.9);
  color: var(--fp-white);
  font-size: 16px;
  cursor: pointer;
  box-shadow: none;
  transition: transform .3s, border-color .3s, filter .3s;
}
.fp-cb__fab:hover { transform: translateY(-3px); border-color: var(--fp-primary); filter: none; }
.fp-cb__panel {
  display: none;
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(360px, calc(100vw - 32px));
  max-height: min(640px, calc(100dvh - 120px));
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: #151b2c;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  overflow: hidden;
}
.fp-cb.is-open .fp-cb__panel { display: flex; flex-direction: column; }
.fp-cb__body {
  min-height: 0;
  overflow-y: auto;
  flex: 1 1 auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.fp-cb__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.fp-cb__head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.fp-cb__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: #c5c8d6;
  cursor: pointer;
}
.fp-cb__intro {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #9aa3b8;
}
.fp-cb label {
  display: block;
  margin: 10px 0 6px;
  font-size: 12px;
  color: #c5c8d6;
}
.fp-cb input,
.fp-cb textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: #fff;
  padding: 10px 12px;
  font-size: 14px;
}
.fp-cb textarea { min-height: 96px; resize: vertical; }
.fp-cb__submit {
  margin-top: 14px;
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #6c73ff, #4b54e6);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.fp-cb__submit:disabled { opacity: .65; cursor: wait; }
.fp-cb__status {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
}
.fp-cb__status.is-visible { display: block; }
.fp-cb__status.is-success { color: #35d79c; }
.fp-cb__status.is-error { color: #ed4c78; }
@media (max-width: 575px) {
  :root {
    --fp-fab-right: 16px;
    --fp-fab-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .fp-cb.is-open .fp-cb__panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: max(12px, env(safe-area-inset-top, 0px));
    bottom: calc(var(--fp-tabbar-offset, 16px) + 8px);
    width: auto;
    max-height: none;
    padding: 14px 14px 16px;
  }
  .fp-cb textarea { min-height: 72px; }
  .fp-cb label { margin: 8px 0 4px; }
  .fp-cb__intro { margin-bottom: 8px; }
}

/* Markets — TradingView embeds */
.fp-markets-intro.fp-section {
  padding-top: 28px;
  padding-bottom: 20px;
}
.fp-markets.fp-section {
  padding-top: 8px;
}
.fp-markets-rates {
  margin: 28px 0 0;
}
.fp-markets-rates__heading {
  margin: 0 0 10px;
  font-size: 28px;
  color: var(--fp-white);
}
.fp-markets-rates__lede {
  margin: 0 0 18px;
  max-width: 760px;
  color: var(--fp-muted);
  font-size: 15px;
  line-height: 1.6;
}
.fp-markets-rates__wrap {
  overflow-x: auto;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-card);
  background: var(--fp-card);
}
.fp-markets-rates__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.fp-markets-rates__table caption {
  caption-side: bottom;
  padding: 12px 16px;
  text-align: left;
  color: var(--fp-muted);
  font-size: 13px;
}
.fp-markets-rates__table th,
.fp-markets-rates__table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--fp-border);
  font-size: 14px;
  color: var(--fp-heading);
}
.fp-markets-rates__table thead th {
  color: var(--fp-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.fp-markets-rates__table tbody tr:last-child th,
.fp-markets-rates__table tbody tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 767px) {
  .fp-markets-rates__heading { font-size: 22px; }
}
.fp-markets-tape {
  padding: 0;
  margin: 0 0 16px;
}
.fp-markets-tape .tradingview-widget-container {
  min-height: 46px;
  overflow: hidden;
  border-radius: var(--fp-radius-card);
  border: 1px solid var(--fp-border);
  background: var(--fp-card);
}
.fp-markets__quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.fp-markets__quotes {
  overflow: hidden;
  border-radius: var(--fp-radius-card);
  border: 1px solid var(--fp-border);
  background: var(--fp-card);
}
.fp-markets__quotes-label {
  margin: 0;
  padding: 12px 16px 0;
  font-family: var(--fp-ff-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--fp-heading);
}
.fp-markets__quotes .tradingview-widget-container__widget {
  min-height: 104px;
}
.fp-markets__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.fp-markets__heading {
  font-size: 28px;
  color: var(--fp-white);
  margin-bottom: 8px;
}
.fp-markets__hint {
  margin: 0;
  max-width: 640px;
  color: var(--fp-muted);
  font-size: 14px;
}
.fp-markets__picker {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.fp-markets__switch {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 4px;
  border-radius: 100px;
  border: 1px solid var(--fp-border);
  background: rgba(255, 255, 255, 0.03);
}
.fp-markets__switch-btn {
  height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: var(--fp-text);
  font-family: var(--fp-ff-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.fp-markets__switch-btn.is-active {
  color: var(--fp-white);
  background: var(--fp-primary-dim);
}
.fp-markets__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.fp-markets__chips.is-hidden { display: none; }
.fp-markets__chip {
  height: 36px;
  padding: 0 14px;
  border-radius: 100px;
  border: 1px solid var(--fp-border);
  background: transparent;
  color: var(--fp-text);
  font-family: var(--fp-ff-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color .25s, border-color .25s, background .25s;
}
.fp-markets__chip:hover,
.fp-markets__chip.is-active {
  color: var(--fp-white);
  border-color: var(--fp-primary);
  background: var(--fp-primary-dim);
}
.fp-markets__workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  margin-bottom: 20px;
}
.fp-markets__chart,
.fp-markets__panel {
  overflow: hidden;
  border-radius: var(--fp-radius-card);
  border: 1px solid var(--fp-border);
  background: var(--fp-card);
}
.fp-markets__chart {
  min-height: 640px;
  height: 640px;
}
.fp-markets__side .fp-markets__panel {
  display: flex;
  flex-direction: column;
  height: 640px;
}
.fp-markets__panel-title {
  margin: 0;
  padding: 16px 18px 0;
  font-size: 16px;
  color: var(--fp-white);
  flex: 0 0 auto;
}
#fp-tv-overview-host,
#fp-tv-ta-host,
#fp-tv-symbol-host {
  flex: 1 1 auto;
  min-height: 420px;
  width: 100%;
}
.fp-markets__side .tradingview-widget-container,
.fp-markets__side .tradingview-widget-container__widget,
#fp-tv-overview-host .tradingview-widget-container,
#fp-tv-overview-host .tradingview-widget-container__widget {
  height: 100%;
  min-height: 520px;
}
.fp-markets__analysis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.fp-markets__analysis .fp-markets__panel {
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.fp-markets__source {
  margin: 24px 0 0;
  color: var(--fp-muted);
  font-size: 13px;
  line-height: 1.6;
}
.fp-markets__source a { color: var(--fp-heading); }
.tradingview-widget-copyright {
  font-size: 12px;
  text-align: center;
  color: var(--fp-muted);
  padding: 6px 0 8px;
}
.tradingview-widget-copyright .blue-text { color: var(--fp-heading); }
@media (max-width: 1199px) {
  .fp-markets__workspace,
  .fp-markets__analysis,
  .fp-markets__quotes-grid { grid-template-columns: 1fr; }
  .fp-markets__side .fp-markets__panel { height: 520px; }
  .fp-markets__chart { height: 560px; min-height: 560px; }
}
@media (max-width: 767px) {
  .fp-markets__toolbar { flex-direction: column; align-items: flex-start; }
  .fp-markets__picker,
  .fp-markets__chips,
  .fp-markets__switch { align-items: flex-start; justify-content: flex-start; }
  .fp-markets__heading { font-size: 22px; }
  .fp-markets__chart { height: 460px; min-height: 460px; }
}

.fp-about__block { margin-top: 40px; }
.fp-about__h { font-size: 22px; color: var(--fp-heading); margin: 0 0 16px; }
.fp-about__team {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.fp-about__person {
  border: 1px solid var(--fp-border);
  border-radius: 16px;
  padding: 20px;
  background: var(--fp-card);
}
.fp-about__person img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}
.fp-about__person h4 { margin: 0 0 4px; color: var(--fp-heading); }
.fp-about__role { color: var(--fp-muted); font-size: 13px; margin: 0 0 8px; }
.fp-about__dl { margin: 0; display: grid; gap: 12px; max-width: 720px; }
.fp-about__dl dt { color: var(--fp-muted); font-size: 13px; }
.fp-about__dl dd { margin: 4px 0 0; color: var(--fp-text); }

.fp-glossary__entry {
  max-width: 760px;
  margin: 0 auto 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--fp-border);
}
.fp-glossary__term { font-size: 26px; color: var(--fp-heading); margin: 0 0 12px; scroll-margin-top: 96px; }
.fp-glossary__def { margin: 0 0 12px; color: var(--fp-text); line-height: 1.7; }
.fp-glossary__related { font-size: 14px; color: var(--fp-muted); }
.fp-glossary__related a { color: var(--fp-heading); }

.fp-guide__prose { max-width: 760px; margin: 0 auto; }
.fp-guide__section { margin-bottom: 40px; }
.fp-guide__section h2 { font-size: 28px; color: var(--fp-heading); margin: 0 0 16px; }
.fp-guide__section h3 { font-size: 20px; color: var(--fp-heading); margin: 24px 0 12px; }
.fp-guide__body { color: var(--fp-text); line-height: 1.75; }
.fp-guide__body p { margin: 0 0 14px; }
.fp-guide__next { margin-top: 48px; color: var(--fp-muted); }
.fp-guide__next a { color: var(--fp-heading); }

.fp-why-extra { margin-top: 56px; display: grid; gap: 40px; }
.fp-why-extra__block .fp-section-desc { max-width: 760px; margin-top: 12px; }
.fp-how-it-works__after { margin-top: 56px; text-align: left; }
.fp-how-it-works__after-head { margin-bottom: 28px; }
.fp-how-it-works__after-head .fp-section-title { margin-bottom: 12px; }
.fp-how-it-works__after-head .fp-section-desc { margin: 0; max-width: 720px; }
.fp-how-it-works__after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.fp-how-it-works__after-card {
  padding: 22px 22px 20px;
  border: 1px solid var(--fp-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}
.fp-how-it-works__after-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--fp-heading);
}
.fp-how-it-works__after-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fp-text);
}
.fp-how-it-works__after-card .fp-why-item__icon {
  width: 44px;
  height: 44px;
  font-size: 18px;
  margin-bottom: 12px;
}
.fp-how-it-works__after-note {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fp-muted);
}
@media (max-width: 991px) {
  .fp-how-it-works__after-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .fp-how-it-works__after-grid { grid-template-columns: 1fr; }
}
.fp-plans__choose { margin-top: 56px; }
.fp-plans__choose .fp-section-desc { margin-top: 12px; max-width: 760px; }
.fp-markets-primer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.fp-markets-primer__card {
  padding: 24px 24px 22px;
  border: 1px solid var(--fp-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  min-height: 100%;
}
.fp-markets-primer__num {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--fp-ff-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--fp-primary);
}
.fp-markets-primer__card h2 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--fp-heading);
}
.fp-markets-primer__card p,
.fp-markets-primer__card li {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--fp-text);
}
.fp-markets-primer__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.fp-markets-primer__card li {
  padding-left: 14px;
  position: relative;
}
.fp-markets-primer__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fp-primary);
}
.fp-markets-primer__card strong,
.fp-markets-primer__card em { color: var(--fp-heading); }
@media (max-width: 991px) {
  .fp-markets-primer { grid-template-columns: 1fr; }
}

/* Mobile tab bar */
.fp-tabbar {
  display: none;
}
@media (max-width: 991px) {
  body.fp-has-tabbar {
    --fp-tabbar-offset: calc(70px + env(safe-area-inset-bottom, 0px));
    --fp-fab-right: 16px;
    --fp-fab-bottom: calc(var(--fp-tabbar-offset) + 12px);
  }
  body.fp-has-tabbar .fp-footer {
    padding-bottom: var(--fp-tabbar-offset);
  }
  body.fp-has-tabbar .fp-cookie {
    bottom: calc(var(--fp-tabbar-offset) + 12px);
  }
  .fp-tabbar {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    z-index: 45;
    height: 62px;
    padding: 6px 4px;
    border-radius: 20px;
    background: rgba(10, 12, 22, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(22px) saturate(1.35);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
  }
  .fp-tabbar__item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    font-family: var(--fp-ff-heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: color .25s;
  }
  .fp-tabbar__item:hover,
  .fp-tabbar__item.is-active { color: var(--fp-white); }
  .fp-tabbar__icon {
    width: 36px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    transition: background .25s, box-shadow .25s, color .25s;
  }
  .fp-tabbar__item.is-active .fp-tabbar__icon {
    color: var(--fp-white);
    background: var(--fp-gradient);
    box-shadow: 0 6px 16px rgba(101, 84, 255, 0.45);
  }
  .fp-tabbar__label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 2px;
  }
}


