:root{
  --fxh-bg:#020814;
  --fxh-bg-2:#071427;
  --fxh-bg-3:#0a1d36;
  --fxh-surface:rgba(10,19,37,.72);
  --fxh-surface-2:rgba(13,26,48,.92);
  --fxh-line:rgba(197,215,255,.09);
  --fxh-line-2:rgba(226,184,104,.20);
  --fxh-text:#f4f7fd;
  --fxh-text-soft:#cfdbf4;
  --fxh-muted:#93a7ca;
  --fxh-gold:#d7a85b;
  --fxh-gold-2:#efc67a;
  --fxh-gold-3:#9a6c22;
  --fxh-shadow-xl:0 24px 70px rgba(0,0,0,.38);
  --fxh-shadow-lg:0 16px 44px rgba(0,0,0,.28);
  --fxh-shadow-md:0 10px 24px rgba(0,0,0,.18);
  --fxh-radius-xl:24px;
  --fxh-radius-lg:18px;
  --fxh-radius-md:14px;
  --fxh-wrap:min(1260px,calc(100% - 52px));
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  min-height:100vh;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--fxh-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(215,168,91,.14), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(60,120,255,.12), transparent 22%),
    radial-gradient(circle at 50% 30%, rgba(15,39,76,.28), transparent 48%),
    linear-gradient(180deg,#020814 0%,#04101f 20%,#061428 52%,#07152a 100%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.fxh-wrap{width:var(--fxh-wrap);margin:0 auto}

.fxh-topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(2,8,20,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.05);
  box-shadow:0 6px 20px rgba(0,0,0,.16);
}
.fxh-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:74px;
}
.fxh-brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  font-weight:900;
  letter-spacing:.05em;
}
.fxh-brand-mark{
  width:40px;
  height:40px;
  border-radius:13px;
  display:grid;
  place-items:center;
  color:#08101d;
  font-weight:900;
  font-size:17px;
  background:linear-gradient(135deg,var(--fxh-gold-2) 0%,var(--fxh-gold) 58%,var(--fxh-gold-3) 100%);
  box-shadow:0 10px 24px rgba(215,168,91,.24);
}
.fxh-nav-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.fxh-nav-links > a{
  color:var(--fxh-text-soft);
  padding:10px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  transition:.2s ease;
}
.fxh-nav-links > a:hover,
.fxh-nav-links > a.is-active{
  color:#fff;
  background:rgba(255,255,255,.05);
}

.fxh-btn{
  min-height:46px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  font-size:15px;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:.22s ease;
}
.fxh-btn:hover{transform:translateY(-1px)}
.fxh-btn-primary{
  color:#09111d;
  background:linear-gradient(135deg,var(--fxh-gold-2) 0%,var(--fxh-gold) 65%,#ba8740 100%);
  box-shadow:0 14px 28px rgba(215,168,91,.18);
}
.fxh-btn-ghost{
  color:#fff;
  border-color:rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.025));
}

.fxh-page-head{
  padding:52px 0 26px;
  position:relative;
}
.fxh-page-head::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.07),transparent);
}
.fxh-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid var(--fxh-line-2);
  background:rgba(215,168,91,.10);
  color:var(--fxh-gold-2);
  text-transform:uppercase;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
}
.fxh-h1,.fxh-h2{
  margin:16px 0 0;
  font-weight:900;
  line-height:1.0;
  letter-spacing:-.045em;
}
.fxh-h1{font-size:clamp(38px,5vw,62px)}
.fxh-h2{font-size:clamp(32px,4.2vw,52px)}
.fxh-page-head p,
.fxh-sub{
  margin-top:16px;
  max-width:860px;
  color:var(--fxh-text-soft);
  font-size:17px;
  line-height:1.7;
}

.fxh-section{padding:20px 0 64px}

.fxh-grid,
.fxh-split,
.fxh-feature-grid,
.fxh-form-grid,
.fxh-radio-grid,
.fxh-mini-grid{
  display:grid;
  gap:20px;
}
.fxh-split{grid-template-columns:1.06fr .94fr}
.fxh-feature-grid{grid-template-columns:repeat(3,1fr)}
.fxh-form-grid{grid-template-columns:repeat(2,1fr)}
.fxh-radio-grid{grid-template-columns:repeat(3,1fr)}
.fxh-mini-grid{grid-template-columns:repeat(3,1fr)}

.fxh-card{
  position:relative;
  background:
    linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.018)),
    linear-gradient(135deg,rgba(13,28,54,.94),rgba(8,20,40,.90));
  border:1px solid rgba(197,215,255,.08);
  border-radius:var(--fxh-radius-xl);
  box-shadow:var(--fxh-shadow-xl);
  overflow:hidden;
}
.fxh-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(215,168,91,.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(28,93,184,.10), transparent 26%);
  pointer-events:none;
}
.fxh-card-pad{
  position:relative;
  z-index:1;
  padding:26px;
}
.fxh-label{
  color:var(--fxh-muted);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.15em;
}
.fxh-note{
  color:var(--fxh-muted);
  font-size:14px;
  line-height:1.7;
  margin-top:8px;
}

.fxh-feature,
.fxh-radio,
.fxh-mini{
  background:linear-gradient(180deg,rgba(255,255,255,.032),rgba(255,255,255,.02));
  border:1px solid rgba(197,215,255,.08);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--fxh-shadow-md);
}
.fxh-feature strong,
.fxh-radio strong,
.fxh-mini strong{
  display:block;
  margin-top:10px;
  font-size:18px;
  line-height:1.2;
  color:#fff;
}
.fxh-feature p,
.fxh-mini p{
  margin-top:8px;
  color:var(--fxh-muted);
  line-height:1.65;
  font-size:14px;
}

.fxh-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.fxh-field label{
  color:#edf3ff;
  font-size:14px;
  font-weight:800;
}
.fxh-input,
.fxh-select,
.fxh-textarea{
  width:100%;
  min-height:52px;
  border-radius:16px;
  border:1px solid rgba(197,215,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.025));
  color:#fff;
  padding:14px 16px;
  font-size:15px;
  outline:none;
  transition:.2s ease;
}
.fxh-textarea{
  min-height:150px;
  resize:vertical;
}
.fxh-input::placeholder,
.fxh-textarea::placeholder{
  color:#7f96bb;
}
.fxh-input:focus,
.fxh-select:focus,
.fxh-textarea:focus{
  border-color:rgba(215,168,91,.30);
  box-shadow:0 0 0 4px rgba(215,168,91,.08);
}

.fxh-tabbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
}
.fxh-tab{
  min-height:46px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  border:1px solid rgba(197,215,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--fxh-text-soft);
  font-size:15px;
  font-weight:800;
}
.fxh-tab.is-active{
  color:#fff;
  border-color:rgba(215,168,91,.25);
  background:linear-gradient(180deg,rgba(215,168,91,.14),rgba(255,255,255,.03));
  box-shadow:0 8px 18px rgba(215,168,91,.10);
}

.fxh-summary-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:11px 0;
  color:var(--fxh-text-soft);
  font-size:15px;
}
.fxh-summary-row strong{
  color:#fff;
  font-weight:900;
  text-align:right;
}
.fxh-summary-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-top:12px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:22px;
  font-weight:900;
}

.fxh-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}
.fxh-radio.is-selected{
  border-color:rgba(215,168,91,.34);
  background:
    linear-gradient(180deg,rgba(215,168,91,.14),rgba(255,255,255,.025)),
    linear-gradient(135deg,rgba(13,28,54,.95),rgba(8,20,40,.92));
  box-shadow:0 12px 28px rgba(215,168,91,.12);
}
.fxh-radio.is-selected strong{
  color:#fff4db;
}

.fxh-footer{padding:18px 0 36px}
.fxh-footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.07);
  color:var(--fxh-muted);
  font-size:13px;
}

@media (max-width: 1180px){
  :root{--fxh-wrap:min(1260px,calc(100% - 28px))}
  .fxh-split,
  .fxh-feature-grid,
  .fxh-radio-grid,
  .fxh-mini-grid{grid-template-columns:1fr}
}
@media (max-width: 820px){
  .fxh-form-grid{grid-template-columns:1fr}
  .fxh-nav{padding:10px 0;align-items:flex-start}
  .fxh-nav-links{width:100%}
  .fxh-card-pad{padding:20px}
  .fxh-h1{font-size:34px}
  .fxh-h2{font-size:30px}
  .fxh-page-head p,.fxh-sub{font-size:16px}
}

.fxh-hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:24px;align-items:stretch}
.fxh-hero-copy{padding-right:14px}
.fxh-hero-copy .fxh-h1{font-size:clamp(40px,5vw,74px)}
.fxh-hero-copy p{max-width:900px}
.fxh-stat-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:18px}
.fxh-stat-box{
  padding:18px 18px;border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.018));
  border:1px solid rgba(197,215,255,.08)
}
.fxh-stat-box strong{display:block;font-size:26px;line-height:1.05;margin-top:8px}
.fxh-pricing-slab{
  display:flex;flex-direction:column;justify-content:space-between;height:100%;
}
.fxh-price-big{
  font-size:clamp(34px,4vw,54px);
  line-height:.95;
  font-weight:900;
  letter-spacing:-.04em;
}
.fxh-price-sub{font-size:14px;color:var(--fxh-muted);margin-top:8px}
.fxh-checklist{display:grid;gap:12px;margin-top:18px}
.fxh-checklist div{
  padding:12px 14px;border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(197,215,255,.06);
  color:var(--fxh-text-soft);
  font-size:14px;
  line-height:1.6;
}
.fxh-section-head{
  margin-bottom:20px;
}
.fxh-section-head h2{
  margin:8px 0 0;
  font-size:clamp(28px,3vw,44px);
  line-height:1.04;
  letter-spacing:-.035em;
}
.fxh-section-head p{
  margin-top:12px;
  max-width:820px;
  color:var(--fxh-text-soft);
  font-size:16px;
  line-height:1.75;
}
.fxh-feature-grid-6{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.fxh-feature-card{
  padding:22px;
  border-radius:20px;
  background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.02));
  border:1px solid rgba(197,215,255,.08);
}
.fxh-feature-card strong{
  display:block;
  font-size:20px;
  line-height:1.18;
  margin-top:8px;
}
.fxh-feature-card p{
  margin-top:10px;
  color:var(--fxh-muted);
  font-size:14px;
  line-height:1.7;
}
.fxh-how-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.fxh-step{
  padding:22px;
  border-radius:20px;
  background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.02));
  border:1px solid rgba(197,215,255,.08);
}
.fxh-step-no{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  font-size:14px;font-weight:900;
  color:#0a101c;
  background:linear-gradient(135deg,var(--fxh-gold-2),var(--fxh-gold));
  box-shadow:0 10px 20px rgba(215,168,91,.18);
}
.fxh-step strong{display:block;margin-top:14px;font-size:18px}
.fxh-step p{margin-top:8px;color:var(--fxh-muted);font-size:14px;line-height:1.7}
.fxh-faq{
  display:grid;gap:14px;
}
.fxh-faq-item{
  padding:20px 22px;border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.018));
  border:1px solid rgba(197,215,255,.08);
}
.fxh-faq-item strong{display:block;font-size:18px}
.fxh-faq-item p{margin-top:8px;color:var(--fxh-muted);font-size:14px;line-height:1.7}
.fxh-final-cta{
  display:grid;grid-template-columns:1.1fr .9fr;gap:24px;align-items:center
}
.fxh-final-cta .fxh-h2{
  font-size:clamp(30px,3.4vw,48px)
}
@media (max-width: 1180px){
  .fxh-hero-grid,.fxh-feature-grid-6,.fxh-how-grid,.fxh-final-cta,.fxh-stat-strip{grid-template-columns:1fr}
}

/* FXH dark themed select fix */
.fxh-select{
  color-scheme: dark;
  background-color:#13233f !important;
  color:#f4f7fd !important;
  border:1px solid rgba(215,168,91,.18) !important;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
}

.fxh-select option{
  background:#0b1730 !important;
  color:#f4f7fd !important;
}

.fxh-select optgroup{
  background:#0b1730 !important;
  color:#f4f7fd !important;
}

.fxh-select:focus{
  background-color:#142744 !important;
  color:#ffffff !important;
}

html body .fxh-select,
html body select.fxh-select,
html body .fxh-field select.fxh-select{
  background-image:
    linear-gradient(45deg, transparent 50%, #d7a85b 50%),
    linear-gradient(135deg, #d7a85b 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
  padding-right:42px;
}

/* force dropdown rows where browser supports it */
@supports (color-scheme: dark) {
  html, body {
    color-scheme: dark;
  }
}

#fxh_email_status{
  min-height:24px;
  margin-top:8px;
}

#fxh_existing_user_block .fxh-btn,
#fxh_new_user_fields .fxh-input{
  margin-top:4px;
}

.fxh-checkout-split{
  grid-template-columns:1.06fr .94fr;
  gap:18px;
}
.fxh-checkout-card .fxh-tabbar{
  margin-bottom:16px;
}
.fxh-form-grid-tight{
  gap:14px;
}
.fxh-checkout-card .fxh-field label{
  font-size:13px;
}
.fxh-checkout-card .fxh-input,
.fxh-checkout-card .fxh-select,
.fxh-checkout-card .fxh-textarea{
  min-height:46px;
  padding:12px 14px;
  font-size:14px;
}
.fxh-checkout-card .fxh-btn{
  min-height:44px;
  font-size:14px;
}
.fxh-gateway-grid{
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.fxh-gateway-grid .fxh-radio{
  padding:16px;
  border-radius:18px;
}
.fxh-gateway-grid .fxh-radio strong{
  font-size:16px;
  margin-top:0;
}
.fxh-gateway-grid .fxh-note{
  font-size:12px;
  margin-top:8px;
}
.fxh-checkout-summary .fxh-summary-row{
  padding:9px 0;
  font-size:14px;
}
.fxh-checkout-summary .fxh-summary-total{
  font-size:18px;
  padding-top:16px;
  margin-top:10px;
}
.fxh-checkout-badges{
  margin-top:14px;
  padding-top:10px;
}
.fxh-checkout-badges img{
  max-width:260px;
  width:100%;
  height:auto;
  display:block;
}
#fxh_email_status{
  min-height:18px;
  margin-top:6px;
  font-size:13px;
}
#fxh_existing_user_block .fxh-btn{
  margin-top:2px;
}
@media (max-width: 1180px){
  .fxh-checkout-split{
    grid-template-columns:1fr;
  }
  .fxh-gateway-grid{
    grid-template-columns:1fr;
  }
}

/* FXH checkout compact visual fix */
.fxh-checkout-title{
  font-size:clamp(28px,3.1vw,42px) !important;
  line-height:1.02 !important;
  letter-spacing:-.035em !important;
}

.fxh-page-head{
  padding:36px 0 18px !important;
}
.fxh-page-head p{
  margin-top:10px !important;
  font-size:15px !important;
  line-height:1.6 !important;
  max-width:760px !important;
}

.fxh-section{
  padding:14px 0 42px !important;
}

.fxh-checkout-split{
  gap:16px !important;
  align-items:start !important;
}

.fxh-checkout-card,
.fxh-checkout-summary{
  min-height:auto !important;
}

.fxh-checkout-card .fxh-card-pad,
.fxh-checkout-summary.fxh-card-pad,
.fxh-checkout-card.fxh-card-pad,
.fxh-checkout-summary .fxh-card-pad{
  padding:22px !important;
}

.fxh-checkout-card .fxh-tabbar{
  margin-bottom:12px !important;
}

.fxh-checkout-card .fxh-tab{
  min-height:40px !important;
  padding:0 16px !important;
  font-size:14px !important;
}

.fxh-form-grid-tight{
  gap:12px !important;
}

.fxh-checkout-card .fxh-field{
  gap:6px !important;
}

.fxh-checkout-card .fxh-field label{
  font-size:12px !important;
}

.fxh-checkout-card .fxh-input,
.fxh-checkout-card .fxh-select,
.fxh-checkout-card .fxh-textarea{
  min-height:42px !important;
  padding:10px 13px !important;
  font-size:14px !important;
  border-radius:14px !important;
}

.fxh-checkout-card .fxh-btn{
  min-height:40px !important;
  font-size:14px !important;
  padding:0 16px !important;
}

.fxh-checkout-card .fxh-note{
  font-size:12px !important;
  line-height:1.55 !important;
}

.fxh-gateway-grid{
  gap:12px !important;
}

.fxh-gateway-grid .fxh-radio{
  padding:14px !important;
  min-height:116px !important;
  border-radius:16px !important;
}

.fxh-gateway-grid .fxh-radio strong{
  font-size:15px !important;
}

.fxh-gateway-grid .fxh-note{
  font-size:11px !important;
  line-height:1.45 !important;
  margin-top:6px !important;
}

.fxh-checkout-summary h2{
  margin-top:6px !important;
  font-size:clamp(28px,3vw,38px) !important;
}

.fxh-checkout-summary .fxh-summary-row{
  padding:7px 0 !important;
  font-size:13px !important;
}

.fxh-checkout-summary .fxh-summary-total{
  font-size:16px !important;
  padding-top:12px !important;
  margin-top:8px !important;
}

.fxh-checkout-badges{
  margin-top:14px !important;
  padding:14px !important;
  border-radius:16px !important;
  border:1px solid rgba(215,168,91,.16) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
    linear-gradient(135deg, rgba(13,28,54,.98), rgba(8,20,40,.96)) !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  box-shadow:0 10px 24px rgba(0,0,0,.20) !important;
}

.fxh-checkout-badges img{
  max-width:360px !important;
  width:100% !important;
  height:auto !important;
  display:block !important;
  margin:0 auto !important;
  border-radius:8px !important;
  background:#ffffff !important;
  padding:6px !important;
}

#fxh_email_status{
  min-height:14px !important;
  margin-top:4px !important;
  font-size:12px !important;
}

@media (max-width: 1180px){
  .fxh-checkout-title{
    font-size:clamp(24px,4vw,34px) !important;
  }
  .fxh-page-head{
    padding:28px 0 14px !important;
  }
}

@media (max-width: 820px){
  .fxh-checkout-card.fxh-card-pad,
  .fxh-checkout-summary.fxh-card-pad{
    padding:18px !important;
  }

  .fxh-gateway-grid{
    grid-template-columns:1fr !important;
  }

  .fxh-checkout-badges img{
    max-width:300px !important;
  }
}

/* FXH checkout card balance fix */
.fxh-checkout-split{
  align-items:stretch !important;
}

.fxh-checkout-card,
.fxh-checkout-summary{
  height:100% !important;
  display:flex !important;
  flex-direction:column !important;
}

.fxh-checkout-summary{
  justify-content:flex-start !important;
}

.fxh-checkout-summary .fxh-checkout-badges{
  margin-top:auto !important;
}

.fxh-checkout-badges{
  max-width:420px !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding:10px !important;
}

.fxh-checkout-badges img{
  max-width:280px !important;
  width:100% !important;
  height:auto !important;
  margin:0 auto !important;
  padding:4px !important;
}

@media (max-width: 1180px){
  .fxh-checkout-card,
  .fxh-checkout-summary{
    height:auto !important;
  }

  .fxh-checkout-summary .fxh-checkout-badges{
    margin-top:14px !important;
  }

  .fxh-checkout-badges{
    max-width:360px !important;
  }

  .fxh-checkout-badges img{
    max-width:250px !important;
  }
}

.fxh-pricing-head{
  padding-bottom:22px !important;
}
.fxh-promo-strip{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:center;
  margin-bottom:24px;
  padding:22px 24px;
  border-radius:22px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.022)),
    linear-gradient(135deg,rgba(13,28,54,.96),rgba(8,20,40,.92));
  border:1px solid rgba(215,168,91,.16);
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}
.fxh-promo-left strong{
  display:block;
  font-size:28px;
  line-height:1.08;
  margin-top:6px;
}
.fxh-promo-left p{
  margin-top:10px;
  color:var(--fxh-text-soft);
  font-size:15px;
  line-height:1.7;
}
.fxh-promo-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--fxh-gold-2),var(--fxh-gold));
  color:#09111d;
  font-weight:900;
  box-shadow:0 12px 24px rgba(215,168,91,.22);
}

.fxh-pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.fxh-price-card{
  position:relative;
  overflow:hidden;
  padding:24px;
  border-radius:24px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.042),rgba(255,255,255,.018)),
    linear-gradient(135deg,rgba(13,28,54,.95),rgba(8,20,40,.92));
  border:1px solid rgba(197,215,255,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  animation:fxhFloatCard 4.8s ease-in-out infinite;
}
.fxh-price-card:nth-child(2){animation-delay:.25s}
.fxh-price-card:nth-child(3){animation-delay:.5s}
.fxh-price-card:nth-child(4){animation-delay:.75s}

.fxh-price-card.is-featured{
  border-color:rgba(215,168,91,.26);
  box-shadow:0 22px 52px rgba(215,168,91,.10), 0 18px 40px rgba(0,0,0,.24);
  transform:translateY(-4px);
}
.fxh-price-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(215,168,91,.10), transparent 24%),
    radial-gradient(circle at bottom left, rgba(29,94,184,.10), transparent 28%);
  pointer-events:none;
}
.fxh-price-top,
.fxh-price-block,
.fxh-price-features,
.fxh-price-actions{
  position:relative;
  z-index:1;
}
.fxh-price-badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(215,168,91,.12);
  border:1px solid rgba(215,168,91,.18);
  color:var(--fxh-gold-2);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.fxh-price-top h2{
  margin:14px 0 0;
  font-size:38px;
  line-height:.98;
  letter-spacing:-.04em;
}
.fxh-price-top p{
  margin-top:12px;
  color:var(--fxh-text-soft);
  font-size:14px;
  line-height:1.7;
  min-height:96px;
}
.fxh-price-block{
  margin-top:18px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.028);
  border:1px solid rgba(197,215,255,.08);
}
.fxh-price-off{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#1fbf75;
  color:#08111d;
  font-size:11px;
  font-weight:900;
}
.fxh-price-row{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:10px;
}
.fxh-price-old{
  color:var(--fxh-muted);
  text-decoration:line-through;
  font-size:16px;
}
.fxh-price-new{
  font-size:34px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
}
.fxh-price-note{
  margin-top:10px;
  color:var(--fxh-text-soft);
  font-size:13px;
}
.fxh-price-features{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.fxh-price-feature{
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.028);
  border:1px solid rgba(197,215,255,.07);
  color:var(--fxh-text-soft);
  font-size:13px;
  line-height:1.55;
}
.fxh-price-actions{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.fxh-price-actions .fxh-btn{
  width:100%;
}
@keyframes fxhFloatCard{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-5px)}
}
@media (max-width: 1280px){
  .fxh-pricing-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width: 820px){
  .fxh-promo-strip{
    grid-template-columns:1fr;
    padding:18px;
  }
  .fxh-promo-left strong{
    font-size:22px;
  }
  .fxh-pricing-grid{
    grid-template-columns:1fr;
  }
}

.fxh-payment-loader-wrap{
  display:flex;
  justify-content:center;
  margin-bottom:18px;
}
.fxh-payment-orbit{
  position:relative;
  width:150px;
  height:150px;
  border-radius:50%;
  border:1px dashed rgba(215,168,91,.22);
  animation:fxhSpin 8s linear infinite;
}
.fxh-payment-core{
  position:absolute;
  inset:50% auto auto 50%;
  transform:translate(-50%, -50%);
  width:74px;
  height:74px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--fxh-gold-2),var(--fxh-gold));
  color:#08111d;
  font-size:34px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(215,168,91,.24);
}
.fxh-orbit-dot{
  position:absolute;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#4e9fff;
  box-shadow:0 0 18px rgba(78,159,255,.42);
}
.fxh-dot-1{top:8px;left:50%;transform:translateX(-50%)}
.fxh-dot-2{right:14px;bottom:28px;background:#d7a85b;box-shadow:0 0 18px rgba(215,168,91,.42)}
.fxh-dot-3{left:14px;bottom:28px;background:#b86df0;box-shadow:0 0 18px rgba(184,109,240,.42)}

@keyframes fxhSpin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

.fxh-countdown-shell{
  margin-top:22px;
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(215,168,91,.14);
}
.fxh-countdown-value{
  margin-top:6px;
  font-size:48px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
  color:#fff;
}

.fxh-license-table-shell{
  border-color:rgba(215,168,91,.20) !important;
}
.fxh-license-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
}
.fxh-license-table thead th{
  background:linear-gradient(135deg, rgba(215,168,91,.22), rgba(215,168,91,.10));
  color:#f7d79b;
  text-align:left;
  padding:14px 16px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(215,168,91,.18);
}
.fxh-license-table tbody td{
  padding:14px 16px;
  color:#eef3fb;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.018);
}
.fxh-license-table tbody tr:hover td{
  background:rgba(215,168,91,.05);
}
@media (max-width: 900px){
  .fxh-countdown-value{font-size:38px}
  .fxh-mini-grid{grid-template-columns:1fr !important}
  .fxh-license-table thead{display:none}
  .fxh-license-table,
  .fxh-license-table tbody,
  .fxh-license-table tr,
  .fxh-license-table td{
    display:block;
    width:100%;
  }
  .fxh-license-table tr{
    margin-bottom:12px;
  }
}

/* waiting page title smaller */
.fxh-payment-waiting-title{
  font-size:clamp(34px, 4.2vw, 56px) !important;
  line-height:1.04 !important;
  letter-spacing:-.035em !important;
}

/* FXH waiting title final reduction */
html body .fxh-payment-waiting-title{
  font-size: clamp(26px, 3vw, 42px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.03em !important;
  max-width: 1400px !important;
}
