/* ============================================================
   pages.css — stili specifici delle singole pagine, in un solo file
   ------------------------------------------------------------
   Ogni blocco e' gia' isolato dai propri selettori (.fv-affiliates,
   #fv-live-trading, .fv-ma-*, body.single-post ...), quindi convivono
   senza interferire: una pagina "vede" solo il blocco che la riguarda.
   ============================================================ */


/* ═════════ AFFILIATE ═════════ */
/* Scoped to .fv-affiliates to avoid clashing with the rest of the theme */
.fv-affiliates {
  --aff-navy-950: #030814;
  --aff-navy-900: #06132a;
  --aff-navy-800: #0b1f3d;
  --aff-teal: #14b8a6;
  --aff-teal-glow: #2dd4bf;
  --aff-teal-ice: #5eead4;
  --aff-cream: #f5efe6;

  background: var(--aff-navy-900);
  color: var(--aff-cream);
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.fv-affiliates * { box-sizing: border-box; }

.fv-affiliates .fv-display { font-family: 'Inter', sans-serif; letter-spacing: -0.025em; }
.fv-affiliates .fv-mono { font-family: 'JetBrains Mono', monospace; }

/* ---- COSMIC BACKDROP ---- */
.fv-affiliates .fv-cosmic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 5%, rgba(20, 184, 166, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 25%, rgba(45, 212, 191, 0.10), transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(20, 184, 166, 0.08), transparent 60%),
    var(--aff-navy-900);
  pointer-events: none;
}

.fv-affiliates .fv-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url("/%23n")'/%3E%3C/svg%3E");
}

/* Star field */
.fv-affiliates .fv-stars { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.fv-affiliates .fv-star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: fvTwinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes fvTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.3); }
}

.fv-affiliates .fv-orbit {
  position: absolute;
  border: 1px solid rgba(94, 234, 212, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- REVEAL ANIMATIONS ---- */
.fv-affiliates .fv-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fv-affiliates .fv-reveal.fv-in-view { opacity: 1; transform: translateY(0); }

.fv-affiliates .fv-hero-line {
  display: block; opacity: 0; transform: translateY(20px);
  animation: fvHeroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fv-affiliates .fv-hero-line:nth-child(1) { animation-delay: 0.1s; }
.fv-affiliates .fv-hero-line:nth-child(2) { animation-delay: 0.25s; }
.fv-affiliates .fv-hero-line:nth-child(3) { animation-delay: 0.4s; }
.fv-affiliates .fv-hero-line:nth-child(4) { animation-delay: 0.55s; }
.fv-affiliates .fv-hero-line:nth-child(5) { animation-delay: 0.7s; }
.fv-affiliates .fv-hero-line:nth-child(6) { animation-delay: 0.85s; }
@keyframes fvHeroIn { to { opacity: 1; transform: translateY(0); } }

/* ---- TIER CARDS ---- */
.fv-affiliates .fv-tier-card {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 31, 61, 0.7), rgba(6, 19, 42, 0.5));
  border: 1px solid rgba(94, 234, 212, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  padding: 2rem;
}
.fv-affiliates .fv-tier-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--aff-accent, var(--aff-teal)), transparent 65%);
  opacity: 0.08; transition: opacity 0.5s; pointer-events: none;
}
.fv-affiliates .fv-tier-card:hover {
  border-color: rgba(94, 234, 212, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(20, 184, 166, 0.15);
}
.fv-affiliates .fv-tier-card:hover::before { opacity: 0.2; }

.fv-affiliates .fv-tier-progress {
  position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px;
  background: linear-gradient(180deg, transparent, var(--aff-accent, var(--aff-teal)), transparent);
  opacity: 0.6;
}

.fv-affiliates .fv-accent-lunar    { --aff-accent: #94a3b8; }
.fv-affiliates .fv-accent-solar    { --aff-accent: #5eead4; }
.fv-affiliates .fv-accent-galaxy   { --aff-accent: #2dd4bf; }
.fv-affiliates .fv-accent-infinity { --aff-accent: #14b8a6; }

/* ---- BUTTONS ---- */
.fv-affiliates .fv-btn-primary {
  position: relative; display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--aff-teal); color: var(--aff-navy-950);
  font-weight: 700; letter-spacing: 0.02em;
  padding: 1rem 2rem; border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.3s; isolation: isolate;
  border: none; cursor: pointer; font-size: 1rem;
  font-family: 'Inter', sans-serif;
}
.fv-affiliates .fv-btn-primary::before {
  content: ''; position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--aff-teal-glow), var(--aff-teal-ice));
  border-radius: inherit; z-index: -1; opacity: 0;
  filter: blur(14px); transition: opacity 0.4s;
}
.fv-affiliates .fv-btn-primary:hover { background: var(--aff-teal-glow); transform: translateY(-2px); color: var(--aff-navy-950); }
.fv-affiliates .fv-btn-primary:hover::before { opacity: 0.7; }

.fv-affiliates .fv-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(94, 234, 212, 0.3);
  color: var(--aff-cream);
  padding: 1rem 2rem; border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.fv-affiliates .fv-btn-ghost:hover {
  border-color: var(--aff-teal-glow);
  background: rgba(20, 184, 166, 0.08);
  color: var(--aff-cream);
}

/* ---- BENEFIT CARDS ---- */
.fv-affiliates .fv-benefit-card {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 31, 61, 0.7), rgba(6, 19, 42, 0.3));
  border: 1px solid rgba(94, 234, 212, 0.08);
  border-radius: 1rem;
  transition: all 0.4s;
  overflow: hidden;
}
.fv-affiliates .fv-benefit-card:hover {
  border-color: rgba(94, 234, 212, 0.3);
  transform: translateY(-4px);
}
.fv-affiliates .fv-benefit-num {
  font-family: 'Inter', sans-serif;
  font-size: 120px; line-height: 1; font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(94, 234, 212, 0.18);
  position: absolute; top: -16px; right: 16px;
  pointer-events: none; letter-spacing: -0.05em;
}

/* ---- CALCULATOR ---- */
.fv-affiliates .fv-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: rgba(94, 234, 212, 0.15);
  border-radius: 2px; outline: none;
}
.fv-affiliates .fv-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  background: var(--aff-teal-glow); border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
  transition: transform 0.2s;
}
.fv-affiliates .fv-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.fv-affiliates .fv-range::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--aff-teal-glow); border-radius: 50%;
  cursor: pointer; border: none;
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
}

.fv-affiliates .fv-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.4), transparent);
}

/* ---- FAQ ---- */
.fv-affiliates .fv-faq-item { border-bottom: 1px solid rgba(94, 234, 212, 0.1); }
.fv-affiliates .fv-faq-item summary { list-style: none; cursor: pointer; user-select: none; }
.fv-affiliates .fv-faq-item summary::-webkit-details-marker { display: none; }
.fv-affiliates .fv-faq-item .fv-chevron { transition: transform 0.3s; }
.fv-affiliates .fv-faq-item[open] .fv-chevron { transform: rotate(180deg); }

/* ---- KICKER ---- */
.fv-affiliates .fv-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--aff-teal-ice);
}
.fv-affiliates .fv-kicker::before {
  content: ''; width: 24px; height: 1px;
  background: var(--aff-teal-ice);
}

/* ---- MARQUEE ---- */
.fv-affiliates .fv-marquee {
  display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.fv-affiliates .fv-marquee-track {
  display: flex; gap: 80px;
  animation: fvScroll 50s linear infinite;
  white-space: nowrap; align-items: center;
}
@keyframes fvScroll { to { transform: translateX(-50%); } }

/* ---- LADDER ---- */
.fv-affiliates .fv-ladder-step {
  position: relative; display: flex;
  align-items: flex-start; gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid rgba(94, 234, 212, 0.2);
  transition: all 0.3s;
}
.fv-affiliates .fv-ladder-step::before {
  content: ''; position: absolute; left: -7px; top: 1.5rem;
  width: 12px; height: 12px;
  background: var(--aff-accent, var(--aff-teal));
  border-radius: 50%;
  box-shadow: 0 0 12px var(--aff-accent, var(--aff-teal));
}

@keyframes fvPulseGlow {
  0%, 100% { filter: drop-shadow(0 0 6px currentColor); }
  50% { filter: drop-shadow(0 0 16px currentColor); }
}
.fv-affiliates .fv-tier-card:hover .fv-tier-icon svg { animation: fvPulseGlow 2s ease-in-out infinite; }

.fv-affiliates .fv-num-hero { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }

.fv-affiliates .fv-tier-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(94, 234, 212, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.2);
  color: var(--aff-teal-ice);
}

/* ---- LAYOUT HELPERS (scoped) ---- */
.fv-affiliates .fv-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; position: relative; }
@media (min-width: 1024px) { .fv-affiliates .fv-container { padding: 0 2.5rem; } }

.fv-affiliates .fv-section { padding: 7rem 0; position: relative; }
@media (min-width: 1024px) { .fv-affiliates .fv-section { padding: 9rem 0; } }

.fv-affiliates .fv-grid { display: grid; gap: 1.5rem; }
.fv-affiliates .fv-grid-2 { grid-template-columns: 1fr; }
.fv-affiliates .fv-grid-3 { grid-template-columns: 1fr; }
.fv-affiliates .fv-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .fv-affiliates .fv-grid-2 { grid-template-columns: 1fr 1fr; }
  .fv-affiliates .fv-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .fv-affiliates .fv-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .fv-affiliates .fv-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Typography utilities */
.fv-affiliates h1, .fv-affiliates h2, .fv-affiliates h3, .fv-affiliates h4 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.025em;
  color: var(--aff-cream);
  margin: 0;
}
.fv-affiliates p { margin: 0; }
.fv-affiliates ul { margin: 0; padding: 0; list-style: none; }
.fv-affiliates a { color: inherit; text-decoration: none; }

.fv-affiliates .fv-text-ice { color: var(--aff-teal-ice); }
.fv-affiliates .fv-italic-light { font-style: italic; font-weight: 300; color: var(--aff-teal-ice); }

@media (min-width: 1024px) {
              #fv-calc { grid-template-columns: 1fr 1fr !important; gap: 5rem !important; }
            }

@media (min-width: 1024px) {
              #fv-custom-grid { grid-template-columns: 1fr 1fr !important; }
            }

form.fluent_form_1 .ff-btn-submit:not(.ff_btn_no_style) { background-color: var(--fluentform-primary); color: #ffffff; }


/* ═════════ ARTICLES ═════════ */
/* Pagine-articolo del blog. Prima avevano un design system tutto loro
   (fondo #0d0f1a, accento viola #6c5ce7, font di sistema): qui usano
   i token del sito, cosi' sono coerenti con tutte le altre pagine.
   Restano scopate sotto body.single-post solo per non toccare il resto. */

body.single-post {
  /* i colori arrivano dal sistema, non piu' da una palette separata */
  --art-surface: var(--fv-dark-surface, #1a1a1c);
  --art-raised:  var(--fv-dark-raised, #202024);
  --art-text:    var(--fv-dark-text, #f4f7f5);
  --art-muted:   var(--fv-dark-muted, #f4f7f5a8);
  --art-line:    var(--fv-dark-line, #ffffff14);
  --art-accent:  var(--fv-teal, #45c8b4);
  --art-red:     #ff6b6b;
  font-size: 17px;
  line-height: 1.7;
}
body.single-post * { box-sizing: border-box }

/* --- impaginato --- */
body.single-post .wrap { max-width: 820px; margin: 0 auto; padding: 32px 20px 80px }
body.single-post header.hero { padding: 24px 0 8px }

/* --- testo --- */
body.single-post p,
body.single-post li { color: var(--art-muted) }
body.single-post .lead { font-size: 1.15rem; color: var(--art-text) }
body.single-post .meta { color: var(--art-muted); font-size: 15px; margin-bottom: 1.5em }

body.single-post .kicker {
  color: var(--art-accent); font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; font-size: 12px;
}

body.single-post h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 600; line-height: 1.14; letter-spacing: -.028em; margin: .4em 0 .3em; color: var(--art-text) }
body.single-post h2 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 600; letter-spacing: -.022em; margin: 2em 0 .5em; padding-top: .6em; border-top: 1px solid var(--art-line); color: var(--art-text) }
body.single-post h3 { font-size: 19px; font-weight: 600; letter-spacing: -.015em; margin: 1.4em 0 .3em; color: var(--art-text) }

body.single-post a { color: var(--art-accent); text-decoration: none }
body.single-post a:hover { text-decoration: underline }

/* --- riquadro riassunto --- */
body.single-post .tldr {
  background: var(--art-surface); border: 1px solid var(--art-line);
  border-left: 3px solid var(--art-accent); border-radius: 16px;
  padding: 20px 24px; margin: 1.5em 0;
}
body.single-post .tldr strong { color: var(--art-accent) }

/* --- tabelle --- */
body.single-post table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 15px; background: var(--art-surface); border-radius: 16px; overflow: hidden }
body.single-post th, body.single-post td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--art-line); vertical-align: top; color: var(--art-muted) }
body.single-post th { background: var(--art-raised); color: var(--art-text); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em }
body.single-post tr:last-child td { border-bottom: none }

/* --- elenchi puntati --- */
body.single-post .checklist { list-style: none; padding: 0 }
body.single-post .checklist li { padding: 8px 0 8px 32px; position: relative }
body.single-post .checklist li:before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--art-accent); font-weight: 600 }

/* --- FAQ --- */
body.single-post .faq { margin-top: 1em }
body.single-post .faq details { background: var(--art-surface); border: 1px solid var(--art-line); border-radius: 16px; padding: 4px 20px; margin: 10px 0 }
body.single-post .faq summary { cursor: pointer; font-weight: 500; padding: 14px 0; color: var(--art-text) }

/* --- correlati e note --- */
body.single-post .related { background: var(--art-surface); border: 1px solid var(--art-line); border-radius: 16px; padding: 18px 22px; margin: 2em 0 }
body.single-post .related a { font-weight: 500 }
body.single-post footer { color: var(--art-muted); font-size: 13px; border-top: 1px solid var(--art-line); margin-top: 3em; padding-top: 20px }
body.single-post .disclaimer { font-size: 13px; color: var(--art-muted); background: var(--art-surface); border: 1px solid var(--art-line); border-radius: 12px; padding: 14px 16px; margin-top: 1.5em }

/* --- call to action: teal del marchio, non piu' il gradiente viola --- */
body.single-post .cta {
  background: var(--art-surface); border: 1px solid var(--art-line);
  border-radius: 24px; padding: 32px; margin: 2.5em 0; text-align: center;
}
body.single-post .cta a {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 24px; margin-top: 14px;
  background: var(--art-accent); color: #062019;
  font-weight: 500; font-size: 15px; border-radius: 8px;
}
body.single-post .cta a:hover { text-decoration: none; background: var(--fv-teal-600, #37b6a4) }

/* --- passaggi numerati --- */
body.single-post .steps { counter-reset: step; list-style: none; padding: 0 }
body.single-post .steps li { position: relative; padding: 6px 0 18px 52px; border-left: 2px solid var(--art-line); margin-left: 16px }
body.single-post .steps li:before {
  counter-increment: step; content: counter(step); position: absolute; left: -17px; top: 2px;
  width: 32px; height: 32px; background: var(--art-accent); color: #062019; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px;
}
body.single-post .steps li:last-child { border-left: 2px solid transparent }

/* --- confronto pro/contro --- */
body.single-post .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 1.5em 0 }
body.single-post .flag { background: var(--art-surface); border: 1px solid var(--art-line); border-radius: 16px; padding: 18px 20px }
body.single-post .flag h3 { margin-top: 0 }
body.single-post .flag.red { border-top: 3px solid var(--art-red) }
body.single-post .flag.green { border-top: 3px solid var(--art-accent) }
body.single-post .flag ul { list-style: none; padding: 0; margin: 0 }
body.single-post .flag li { padding: 6px 0 6px 26px; position: relative; font-size: 15px }
body.single-post .flag.red li:before { content: "✗"; position: absolute; left: 0; color: var(--art-red); font-weight: 600 }
body.single-post .flag.green li:before { content: "✓"; position: absolute; left: 0; color: var(--art-accent); font-weight: 600 }

@media (max-width: 599px) { body.single-post .cols { grid-template-columns: 1fr } }


/* ═════════ CAREERS ═════════ */
/* ════════════════════════════════════════════════════════════
   FundedVerse Careers — Lighter palette v2
   Background : #0d1628 (midnight navy, not pure black)
   Surface    : #1a2540 (visible slate card)
   Surface +  : #213056 (lighter form panel)
   Accent     : #37b594 (teal-green)
   Text       : #ffffff / #c6dfd6 (warmer light teal)
   ════════════════════════════════════════════════════════════ */

.fv-careers-page {
    background: #0d1628;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}
.fv-careers-page * { box-sizing: border-box; }

/* ── Hero ────────────────────────────────────────────── */
.fv-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 7rem 1.5rem 6rem;
    border-bottom: 1px solid rgba(55, 181, 148, 0.25);
    background: linear-gradient(180deg, #0d1628 0%, #102a4d 60%, #0d1628 100%);
}
.fv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(55, 181, 148, 0.18) 0%, transparent 70%);
}
.fv-hero-inner {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
}
.fv-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #37b594;
    border: 1px solid rgba(55, 181, 148, 0.45);
    background: rgba(55, 181, 148, 0.08);
    border-radius: 9999px;
    padding: 0.375rem 1.25rem;
    margin-bottom: 1.75rem;
}
.fv-h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
}
.fv-h1 .accent { color: #37b594; }
.fv-hero-sub {
    font-size: 1.125rem;
    color: #c6dfd6;
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}
.fv-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* ── Buttons ─────────────────────────────────────────── */
.fv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #37b594;
    color: #0d1628 !important;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.fv-btn-primary:hover {
    background: #45c9a7;
    color: #0d1628 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(55, 181, 148, 0.25);
}
.fv-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c6dfd6 !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(55, 181, 148, 0.5);
    background: rgba(55, 181, 148, 0.05);
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.fv-btn-secondary:hover {
    background: rgba(55, 181, 148, 0.15);
    color: #ffffff !important;
    border-color: rgba(55, 181, 148, 0.8);
}

/* ── Sections ────────────────────────────────────────── */
.fv-section { padding: 5rem 1.5rem; }
.fv-section-roles {
    border-top: 1px solid rgba(55, 181, 148, 0.2);
    background: linear-gradient(180deg, #0d1628 0%, #122036 100%);
}
.fv-section-form {
    border-top: 1px solid rgba(55, 181, 148, 0.2);
    background: linear-gradient(180deg, #122036 0%, #0d1628 100%);
}
.fv-container-md { max-width: 72rem; margin: 0 auto; }
.fv-container-sm { max-width: 64rem; margin: 0 auto; }
.fv-container-xs { max-width: 48rem; margin: 0 auto; }

.fv-section-header { text-align: center; margin-bottom: 3.5rem; }
.fv-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #37b594;
    margin: 0 0 0.75rem;
}
.fv-h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 1rem;
}
.fv-section-desc {
    color: #c6dfd6;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Value cards (Why FundedVerse) ───────────────────── */
.fv-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.fv-value-card {
    background: #1a2540;
    border: 1px solid rgba(55, 181, 148, 0.25);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.fv-value-card:hover {
    border-color: rgba(55, 181, 148, 0.6);
    transform: translateY(-2px);
}
.fv-value-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(55, 181, 148, 0.15);
    border: 1px solid rgba(55, 181, 148, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #37b594;
    margin-bottom: 1rem;
}
.fv-value-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
}
.fv-value-body {
    font-size: 0.9rem;
    color: #c6dfd6;
    line-height: 1.6;
    margin: 0;
}

/* ── Job cards ───────────────────────────────────────── */
.fv-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.fv-job-card {
    background: #1a2540;
    border: 1px solid rgba(55, 181, 148, 0.25);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.fv-job-card:hover {
    border-color: rgba(55, 181, 148, 0.55);
    transform: translateY(-1px);
}
.fv-job-card.is-open {
    border-color: rgba(55, 181, 148, 0.6);
    background: #1c2848;
}

.fv-job-head {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}
.fv-job-head-left { flex: 1; min-width: 260px; }
.fv-job-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.fv-job-dept {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #37b594;
}
.fv-dot {
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: rgba(55, 181, 148, 0.55);
}
.fv-job-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: #a8c4be;
}
.fv-job-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    transition: color 0.2s ease;
}
.fv-job-card.is-open .fv-job-title { color: #37b594; }

.fv-job-head-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.fv-job-cta-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #37b594;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.fv-when-open { display: none; }
.fv-job-card.is-open .fv-when-closed { display: none; }
.fv-job-card.is-open .fv-when-open { display: inline; }
@media (max-width: 768px) { .fv-job-cta-text { display: none; } }

.fv-chev {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid rgba(55, 181, 148, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #37b594;
    transition: transform 0.3s ease, background 0.2s ease;
}
.fv-job-card.is-open .fv-chev {
    transform: rotate(180deg);
    background: rgba(55, 181, 148, 0.18);
}

.fv-job-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.fv-job-card.is-open .fv-job-body { max-height: 1000px; }
.fv-job-body-inner {
    padding: 1.5rem 1.75rem 1.75rem;
    border-top: 1px solid rgba(55, 181, 148, 0.2);
}
.fv-job-summary {
    color: #d5eae3;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.fv-job-reqlabel {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a8c4be;
    margin: 0 0 0.75rem;
}
.fv-job-reqs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}
.fv-job-reqs li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d5eae3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.625rem;
}
.fv-job-reqs li:last-child { margin-bottom: 0; }
.fv-check {
    flex-shrink: 0;
    margin-top: 4px;
    color: #37b594;
}
.fv-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #37b594;
    color: #0d1628 !important;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.fv-apply-btn:hover {
    background: #45c9a7;
    color: #0d1628 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(55, 181, 148, 0.3);
}

/* ── "Don't see your role" callout ────────────────────── */
.fv-fallback-card {
    margin-top: 2.5rem;
    text-align: center;
    background: #1a2540;
    border: 1px solid rgba(55, 181, 148, 0.25);
    border-radius: 1rem;
    padding: 2.25rem 1.75rem;
}
.fv-fallback-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
}
.fv-fallback-body {
    color: #c6dfd6;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Form section (lighter panel) ────────────────────── */
.fv-form-wrap {
    background: #213056;
    border: 1px solid rgba(55, 181, 148, 0.35);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.fv-form-fallback {
    font-size: 0.8rem;
    color: #a8c4be;
    margin-top: 1.5rem;
    text-align: center;
}
.fv-form-fallback a { color: #37b594; text-decoration: none; font-weight: 600; }
.fv-form-fallback a:hover { text-decoration: underline; }

/* ── Fluent Forms overrides — LIGHTER theme inside .fv-form-wrap */
.fv-form-wrap .ff-el-form-control,
.fv-form-wrap select.ff-el-form-control,
.fv-form-wrap textarea.ff-el-form-control {
    background-color: #ffffff !important;
    border: 1px solid rgba(55, 181, 148, 0.4) !important;
    border-radius: 10px !important;
    color: #0d1628 !important;
    font-size: 14px !important;
    padding: 12px 14px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}
.fv-form-wrap .ff-el-form-control:focus,
.fv-form-wrap select.ff-el-form-control:focus,
.fv-form-wrap textarea.ff-el-form-control:focus {
    border-color: #37b594 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(55, 181, 148, 0.18) !important;
}
.fv-form-wrap .ff-el-form-control::placeholder,
.fv-form-wrap textarea.ff-el-form-control::placeholder {
    color: #9aa5b8 !important;
}
.fv-form-wrap .ff-el-input--label label,
.fv-form-wrap label.ff-el-form-check-label {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}
.fv-form-wrap .ff-el-is-required.asterisk-right label::after { color: #37b594 !important; }
.fv-form-wrap select.ff-el-form-control {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4 6l4 4 4-4' stroke='%2337b594' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 40px !important;
}
.fv-form-wrap input[type="file"] {
    background-color: #ffffff !important;
    color: #0d1628 !important;
    border: 1px solid rgba(55, 181, 148, 0.4) !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    width: 100% !important;
}
.fv-form-wrap input[type="file"]::file-selector-button {
    background: #37b594;
    color: #0d1628;
    border: none;
    padding: 7px 14px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 11px;
    margin-right: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.fv-form-wrap input[type="file"]::file-selector-button:hover { background: #45c9a7; }
.fv-form-wrap .ff-el-form-check input[type="checkbox"] {
    accent-color: #37b594 !important;
    width: 18px !important;
    height: 18px !important;
}
.fv-form-wrap .ff-el-form-check label,
.fv-form-wrap .ff_gdpr_label {
    color: #d5eae3 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}
.fv-form-wrap .ff-el-form-check a,
.fv-form-wrap .ff_gdpr_label a {
    color: #37b594 !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}
.fv-form-wrap .ff-btn-submit,
.fv-form-wrap button[type="submit"] {
    background-color: #37b594 !important;
    color: #0d1628 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 14px 32px !important;
    border-radius: 9999px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 14px rgba(55, 181, 148, 0.3) !important;
}
.fv-form-wrap .ff-btn-submit:hover,
.fv-form-wrap button[type="submit"]:hover {
    background-color: #45c9a7 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(55, 181, 148, 0.45) !important;
}
.fv-form-wrap .ff-message-success {
    background: rgba(55, 181, 148, 0.15) !important;
    border: 1px solid rgba(55, 181, 148, 0.5) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
}

/* ── Responsive ──────────────────────────────────────── */
@media (min-width: 768px) {
    .fv-section { padding: 6rem 1.5rem; }
    .fv-h1 { font-size: 4rem; }
    .fv-h2 { font-size: 3rem; }
    .fv-hero-sub { font-size: 1.25rem; }
    .fv-form-wrap { padding: 2.5rem; }
}
@media (max-width: 900px) {
    .fv-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .fv-values-grid { grid-template-columns: 1fr; }
    .fv-h1 { font-size: 2rem; }
    .fv-h2 { font-size: 1.75rem; }
    .fv-job-head { padding: 1.25rem 1.25rem; }
    .fv-job-body-inner { padding: 1.25rem 1.25rem 1.5rem; }
    .fv-job-title { font-size: 1.125rem; }
}

form.fluent_form_4 .ff-btn-submit:not(.ff_btn_no_style) { background-color: var(--fluentform-primary); color: #ffffff; }


/* ═════════ INDEX ═════════ */
#fv-profit-calc,
#fv-profit-calc *,
#fv-profit-calc *::before,
#fv-profit-calc *::after {
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  float: none !important;
  position: relative !important;
  background: none !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  list-style: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  min-height: 0 !important;
  max-height: none !important;
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

#fv-profit-calc {
  max-width: 850px !important;
  margin: 24px auto !important;
  padding: 0 16px !important;
  color: #fff !important;
}

#fv-profit-calc .fvc-box {
  background: linear-gradient(160deg, #0a0f1e, #0d1b2a) !important;
  border: 1px solid rgba(55,181,148,0.18) !important;
  border-radius: 20px !important;
  padding: 22px 30px 18px !important;
  overflow: hidden !important;
}

#fv-profit-calc .fvc-hd {
  text-align: center !important;
  margin-bottom: 16px !important;
}
#fv-profit-calc .fvc-hd h2 {
  font-size: 25px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 0 0 2px !important;
}
#fv-profit-calc .fvc-hd p {
  font-size: 14px !important;
  color: #6b7c8a !important;
  margin: 0 !important;
}

#fv-profit-calc .fvc-layout {
  display: grid !important;
  grid-template-columns: 1fr 1px 220px !important;
  gap: 24px !important;
  align-items: center !important;
}

#fv-profit-calc .fvc-sep {
  background: rgba(55,181,148,0.15) !important;
  width: 1px !important;
  align-self: stretch !important;
}

#fv-profit-calc .fvc-lbl {
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.8px !important;
  color: rgba(55,181,148,0.65) !important;
  margin: 0 0 7px !important;
  text-align: left !important;
  display: block !important;
}

#fv-profit-calc .fvc-sizes {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
  margin-bottom: 12px !important;
}
#fv-profit-calc .fvc-sz {
  flex: 1 1 0 !important;
  min-width: 50px !important;
  padding: 8px 4px !important;
  border: 1px solid rgba(55,181,148,0.15) !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #6b7c8a !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  text-align: center !important;
  display: block !important;
  transition: all .2s !important;
}
#fv-profit-calc .fvc-sz.on {
  background: rgba(55,181,148,0.15) !important;
  border-color: rgba(55,181,148,0.4) !important;
  color: #37b594 !important;
}

#fv-profit-calc .fvc-splits {
  display: flex !important;
  gap: 6px !important;
  margin-bottom: 12px !important;
}
#fv-profit-calc .fvc-sp {
  padding: 8px 22px !important;
  border: 1px solid rgba(55,181,148,0.15) !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #6b7c8a !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  text-align: center !important;
  display: inline-block !important;
  transition: all .2s !important;
}
#fv-profit-calc .fvc-sp.on {
  background: rgba(55,181,148,0.15) !important;
  border-color: rgba(55,181,148,0.4) !important;
  color: #37b594 !important;
}

#fv-profit-calc .fvc-stop {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  margin-bottom: 5px !important;
}
#fv-profit-calc .fvc-pct {
  font-size: 23px !important;
  font-weight: 800 !important;
  color: #37b594 !important;
  line-height: 1 !important;
}
#fv-profit-calc .fvc-dollar {
  font-size: 14px !important;
  color: #6b7c8a !important;
  font-weight: 500 !important;
}

#fv-profit-calc input[type=range] {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  height: 5px !important;
  border-radius: 3px !important;
  background: rgba(255,255,255,0.08) !important;
  cursor: pointer !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
#fv-profit-calc input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #37b594 !important;
  border: 2px solid #0d1b2a !important;
  box-shadow: 0 0 8px rgba(55,181,148,0.4) !important;
  cursor: pointer !important;
}
#fv-profit-calc input[type=range]::-moz-range-thumb {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #37b594 !important;
  border: 2px solid #0d1b2a !important;
  cursor: pointer !important;
}

#fv-profit-calc .fvc-res {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
}
#fv-profit-calc .fvc-big {
  font-size: 44px !important;
  font-weight: 900 !important;
  color: #37b594 !important;
  line-height: 1 !important;
}
#fv-profit-calc .fvc-rlbl {
  font-size: 10px !important;
  color: #6b7c8a !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-weight: 700 !important;
  margin: 4px 0 10px !important;
}
#fv-profit-calc .fvc-minis {
  display: flex !important;
  gap: 18px !important;
}
#fv-profit-calc .fvc-mv {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #e0eaf0 !important;
}
#fv-profit-calc .fvc-ml {
  font-size: 9px !important;
  color: #6b7c8a !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  font-weight: 600 !important;
}

#fv-profit-calc .fvc-bot {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 14px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(55,181,148,0.08) !important;
  gap: 14px !important;
}
#fv-profit-calc .fvc-note {
  font-size: 9px !important;
  color: #3d4a54 !important;
  line-height: 1.4 !important;
  flex: 1 !important;
  text-align: left !important;
}
#fv-profit-calc .fvc-cta {
  padding: 11px 28px !important;
  background: #37b594 !important;
  color: #080716 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-align: center !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  text-decoration: none !important;
}
#fv-profit-calc .fvc-cta:hover {
  background: #fff !important;
  box-shadow: 0 6px 20px rgba(55,181,148,0.2) !important;
}

@media(max-width:768px){
  #fv-profit-calc .fvc-sz {
    flex: 1 1 calc(25% - 5px) !important;
    font-size: 13px !important;
  }
}

@media(max-width:640px){
  #fv-profit-calc .fvc-layout {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  #fv-profit-calc .fvc-sep { display: none !important; }
  #fv-profit-calc .fvc-res {
    padding: 14px 0 0 !important;
    border-top: 1px solid rgba(55,181,148,0.1) !important;
  }
  #fv-profit-calc .fvc-bot {
    flex-direction: column !important;
    text-align: center !important;
  }
  #fv-profit-calc .fvc-note { text-align: center !important; }
  #fv-profit-calc .fvc-cta { width: 100% !important; }
  #fv-profit-calc .fvc-sz {
    flex: 1 1 calc(33.333% - 5px) !important;
  }
}


/* ═════════ LIVE-ROOM ═════════ */
/* ─── LIVE TRADING LANDING — Scoped styles ─── */
  #fv-live-trading {
    --lt-charcoal: #0e0e0e;
    --lt-slate: #14171c;
    --lt-teal: #8BC1BD;
    --lt-teal-light: #b8d8d4;
    --lt-sienna: #d97757;
    --lt-text: #ffffff;
    --lt-text-dim: rgba(255, 255, 255, 0.6);
    --lt-text-faint: rgba(255, 255, 255, 0.35);
    --lt-border: rgba(139, 193, 189, 0.15);
    --lt-border-strong: rgba(139, 193, 189, 0.35);

    position: relative;
    background: var(--lt-charcoal);
    color: var(--lt-text);
    font-family: 'Inter', 'Inter', system-ui, sans-serif;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
  }

  #fv-live-trading * { box-sizing: border-box; }

  /* Atmosphere */
  #fv-live-trading::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(139, 193, 189, 0.10), transparent 70%),
      radial-gradient(circle at 80% 80%, rgba(217, 119, 87, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 0;
  }

  #fv-live-trading::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(139, 193, 189, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(139, 193, 189, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
    mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* Status bar */
  #fv-live-trading .lt-status {
    position: relative;
    z-index: 2;
    background: var(--lt-slate);
    border-bottom: 1px solid var(--lt-border);
    padding: 12px 24px;
    text-align: center;
    font-family: 'DM Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--lt-teal);
    text-transform: uppercase;
  }

  #fv-live-trading .lt-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--lt-sienna);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    box-shadow: 0 0 10px var(--lt-sienna);
    animation: lt-pulse 1.5s ease-in-out infinite;
  }

  @keyframes lt-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
  }

  /* Container */
  #fv-live-trading .lt-container {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 24px 100px;
  }

  /* Hero */
  #fv-live-trading .lt-eyebrow {
    display: inline-block;
    font-family: 'DM Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--lt-teal);
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid var(--lt-border-strong);
    border-radius: 100px;
    margin-bottom: 32px;
    background: rgba(139, 193, 189, 0.05);
  }

  #fv-live-trading h1.lt-headline {
    font-family: 'Inter', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 8vw, 96px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0 0 28px;
    max-width: 900px;
    color: var(--lt-text);
  }

  #fv-live-trading h1.lt-headline .lt-accent {
    color: var(--lt-teal);
    font-style: italic;
    font-weight: 700;
  }

  #fv-live-trading .lt-subtitle {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--lt-text-dim);
    max-width: 620px;
    margin: 0 0 48px;
    line-height: 1.55;
  }

  #fv-live-trading .lt-subtitle strong {
    color: var(--lt-text);
    font-weight: 600;
  }

  /* CTA */
  #fv-live-trading .lt-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }

  #fv-live-trading .lt-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    background: var(--lt-teal);
    color: var(--lt-charcoal) !important;
    font-family: 'Inter', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    border-radius: 100px;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 0 0 rgba(139, 193, 189, 0.4);
    border: none;
  }

  #fv-live-trading .lt-cta:hover {
    transform: translateY(-2px);
    background: var(--lt-teal-light);
    color: var(--lt-charcoal) !important;
    box-shadow: 0 12px 40px rgba(139, 193, 189, 0.3), 0 0 0 8px rgba(139, 193, 189, 0.1);
  }

  #fv-live-trading .lt-cta:active { transform: translateY(0); }

  #fv-live-trading .lt-cta svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  #fv-live-trading .lt-cta-meta {
    font-family: 'DM Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--lt-text-faint);
    text-transform: uppercase;
  }

  #fv-live-trading .lt-cta-meta .lt-free {
    color: var(--lt-teal);
    font-weight: 500;
  }

  /* Schedule */
  #fv-live-trading .lt-schedule {
    background: var(--lt-slate);
    border: 1px solid var(--lt-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 64px;
  }

  #fv-live-trading .lt-sched-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--lt-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  #fv-live-trading .lt-sched-title {
    font-family: 'Inter', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lt-text);
  }

  #fv-live-trading .lt-sched-meta {
    font-family: 'DM Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lt-text-faint);
  }

  #fv-live-trading .lt-sessions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  #fv-live-trading .lt-session {
    padding: 40px 32px;
    position: relative;
  }

  #fv-live-trading .lt-session:first-child {
    border-right: 1px solid var(--lt-border);
  }

  #fv-live-trading .lt-session-tag {
    font-family: 'DM Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--lt-teal);
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  #fv-live-trading .lt-session-time {
    font-family: 'Inter', 'Inter', sans-serif;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 700;
    color: var(--lt-text);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1;
  }

  #fv-live-trading .lt-session-time .lt-dash {
    color: var(--lt-teal);
    margin: 0 8px;
    font-weight: 400;
  }

  #fv-live-trading .lt-session-desc {
    font-size: 14px;
    color: var(--lt-text-dim);
    line-height: 1.5;
  }

  #fv-live-trading .lt-sched-footer {
    padding: 18px 32px;
    border-top: 1px solid var(--lt-border);
    background: rgba(139, 193, 189, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: 'DM Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lt-text-dim);
  }

  #fv-live-trading .lt-sched-footer .lt-days {
    color: var(--lt-teal);
    font-weight: 500;
  }

  /* Steps */
  #fv-live-trading .lt-steps-section { margin-bottom: 80px; }

  #fv-live-trading .lt-section-label {
    font-family: 'DM Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--lt-text-faint);
    text-transform: uppercase;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  #fv-live-trading .lt-section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--lt-teal);
  }

  #fv-live-trading .lt-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  #fv-live-trading .lt-step {
    padding: 32px 24px;
    border: 1px solid var(--lt-border);
    border-radius: 16px;
    background: var(--lt-slate);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  #fv-live-trading .lt-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lt-teal), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }

  #fv-live-trading .lt-step:hover {
    border-color: var(--lt-border-strong);
    transform: translateY(-3px);
  }

  #fv-live-trading .lt-step:hover::before { transform: translateX(0); }

  #fv-live-trading .lt-step-num {
    font-family: 'DM Mono', ui-monospace, monospace;
    font-size: 13px;
    color: var(--lt-teal);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
  }

  #fv-live-trading .lt-step-text {
    font-size: 15px;
    line-height: 1.55;
    color: var(--lt-text);
  }

  #fv-live-trading .lt-step-text strong {
    color: var(--lt-teal);
    font-weight: 600;
  }

  /* Final CTA */
  #fv-live-trading .lt-final {
    text-align: center;
    padding: 56px 32px;
    border: 1px solid var(--lt-border);
    border-radius: 20px;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(139, 193, 189, 0.08), transparent 70%),
      var(--lt-slate);
  }

  #fv-live-trading .lt-final h2 {
    font-family: 'Inter', 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    line-height: 1.1;
    color: var(--lt-text);
  }

  #fv-live-trading .lt-final h2 .lt-accent {
    color: var(--lt-teal);
    font-style: italic;
  }

  #fv-live-trading .lt-final p {
    color: var(--lt-text-dim);
    margin: 0 0 32px;
    font-size: 15px;
  }

  /* Footer note */
  #fv-live-trading .lt-foot-note {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--lt-border);
    text-align: center;
    font-family: 'DM Mono', ui-monospace, monospace;
    font-size: 11px;
    color: var(--lt-text-faint);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.8;
  }

  /* Reveal animation */
  #fv-live-trading .lt-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: lt-reveal 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  #fv-live-trading .lt-reveal-1 { animation-delay: 0.05s; }
  #fv-live-trading .lt-reveal-2 { animation-delay: 0.2s; }
  #fv-live-trading .lt-reveal-3 { animation-delay: 0.35s; }
  #fv-live-trading .lt-reveal-4 { animation-delay: 0.5s; }
  #fv-live-trading .lt-reveal-5 { animation-delay: 0.65s; }
  #fv-live-trading .lt-reveal-6 { animation-delay: 0.8s; }

  @keyframes lt-reveal {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Responsive */
  @media (max-width: 720px) {
    #fv-live-trading .lt-container { padding: 56px 18px 72px; }
    #fv-live-trading .lt-sessions { grid-template-columns: 1fr; }
    #fv-live-trading .lt-session:first-child {
      border-right: none;
      border-bottom: 1px solid var(--lt-border);
    }
    #fv-live-trading .lt-sched-header,
    #fv-live-trading .lt-sched-footer { padding: 18px 22px; }
    #fv-live-trading .lt-session { padding: 32px 22px; }
    #fv-live-trading .lt-steps { grid-template-columns: 1fr; }
    #fv-live-trading .lt-cta {
      padding: 18px 28px;
      font-size: 15px;
      width: 100%;
      justify-content: center;
    }
    #fv-live-trading .lt-cta-row { gap: 16px; }
    #fv-live-trading .lt-final { padding: 40px 24px; }
  }


/* ═════════ MASTER-AFFILIATE ═════════ */
/* ════════════════════════════════════════════════════════════
   FundedVerse Master Affiliate — v2 (premium / golosa)
   ════════════════════════════════════════════════════════════ */

.fv-ma-page {
    background: #0d1628;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}
.fv-ma-page * { box-sizing: border-box; }

/* ── Marquee bar (top) ────────────────────────────────── */
.fv-ma-marquee {
    background: linear-gradient(90deg, #37b594 0%, #2a9479 50%, #37b594 100%);
    background-size: 200% 100%;
    color: #0d1628;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    animation: fv-marquee-bg 6s linear infinite;
}
@keyframes fv-marquee-bg {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
.fv-ma-marquee-track {
    display: inline-flex;
    gap: 3rem;
    animation: fv-marquee-scroll 28s linear infinite;
    padding-left: 3rem;
}
.fv-ma-marquee span { display: inline-flex; align-items: center; gap: 0.5rem; }
.fv-ma-marquee-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #0d1628;
    opacity: 0.6;
}
@keyframes fv-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Hero with aurora ────────────────────────────────── */
.fv-ma-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 5rem 1.5rem 4rem;
    border-bottom: 1px solid rgba(55, 181, 148, 0.25);
    background: #0d1628;
}
.fv-ma-aurora {
    position: absolute;
    inset: -20% -10% -10% -10%;
    pointer-events: none;
    background:
        radial-gradient(ellipse 40% 50% at 20% 30%, rgba(55, 181, 148, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(70, 130, 220, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 80%, rgba(55, 181, 148, 0.2) 0%, transparent 60%);
    filter: blur(40px);
    animation: fv-aurora 12s ease-in-out infinite;
}
@keyframes fv-aurora {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(3%, -3%) scale(1.1); }
    66% { transform: translate(-3%, 3%) scale(0.95); }
}
.fv-ma-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(55, 181, 148, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(55, 181, 148, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 0%, transparent 70%);
}
.fv-ma-hero-inner {
    position: relative;
    max-width: 60rem;
    margin: 0 auto;
    z-index: 1;
}
.fv-ma-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #37b594;
    border: 1px solid rgba(55, 181, 148, 0.5);
    background: rgba(55, 181, 148, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.5rem;
}
.fv-ma-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #37b594;
    border-radius: 50%;
    box-shadow: 0 0 14px #37b594;
    animation: fv-pulse 2s ease-in-out infinite;
}
@keyframes fv-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.15); }
}
.fv-ma-h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem;
}
.fv-ma-h1 .accent {
    background: linear-gradient(135deg, #37b594 0%, #6ad7b8 50%, #37b594 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fv-gradient-shift 6s ease infinite;
}
@keyframes fv-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.fv-ma-hero-sub {
    font-size: 1.15rem;
    color: #c6dfd6;
    line-height: 1.55;
    max-width: 42rem;
    margin: 0 auto 2.25rem;
}
.fv-ma-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

/* ── Animated counters in hero ───────────────────────── */
.fv-ma-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 44rem;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(26, 37, 64, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(55, 181, 148, 0.25);
    border-radius: 1.25rem;
}
.fv-ma-stat { text-align: center; }
.fv-ma-stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, rgba(55, 181, 148, 0.25) 0%, rgba(55, 181, 148, 0.1) 100%);
    border: 1px solid rgba(55, 181, 148, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #37b594;
    margin: 0 auto 0.85rem;
    box-shadow: 0 4px 16px rgba(55, 181, 148, 0.18);
}
.fv-ma-stat-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 0.3rem;
}
.fv-ma-stat-sub {
    font-size: 0.78rem;
    color: #a8c4be;
    line-height: 1.4;
}

/* ── Buttons with glow ───────────────────────────────── */
.fv-ma-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #37b594 0%, #45c9a7 100%);
    color: #0d1628 !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow:
        0 0 0 0 rgba(55, 181, 148, 0.5),
        0 8px 24px rgba(55, 181, 148, 0.4);
    overflow: hidden;
    animation: fv-glow-pulse 2.8s ease-in-out infinite;
}
@keyframes fv-glow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(55, 181, 148, 0.5), 0 8px 24px rgba(55, 181, 148, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(55, 181, 148, 0), 0 8px 24px rgba(55, 181, 148, 0.55); }
}
.fv-ma-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    color: #0d1628 !important;
}
.fv-ma-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}
.fv-ma-btn-primary:hover::before { left: 100%; }
.fv-ma-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c6dfd6 !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(55, 181, 148, 0.5);
    background: rgba(55, 181, 148, 0.05);
    backdrop-filter: blur(10px);
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.fv-ma-btn-secondary:hover {
    background: rgba(55, 181, 148, 0.15);
    color: #ffffff !important;
    border-color: rgba(55, 181, 148, 0.8);
}

/* ── Sections ────────────────────────────────────────── */
.fv-ma-section { padding: 5rem 1.5rem; position: relative; }
.fv-ma-section-alt {
    border-top: 1px solid rgba(55, 181, 148, 0.2);
    background: linear-gradient(180deg, #0d1628 0%, #122036 100%);
}
.fv-ma-section-form {
    border-top: 1px solid rgba(55, 181, 148, 0.2);
    background:
        radial-gradient(ellipse 50% 50% at 50% 0%, rgba(55, 181, 148, 0.12) 0%, transparent 70%),
        linear-gradient(180deg, #122036 0%, #0d1628 100%);
}
.fv-ma-container-md { max-width: 72rem; margin: 0 auto; position: relative; z-index: 1; }
.fv-ma-container-sm { max-width: 56rem; margin: 0 auto; position: relative; z-index: 1; }
.fv-ma-container-xs { max-width: 40rem; margin: 0 auto; position: relative; z-index: 1; }

.fv-ma-section-header { text-align: center; margin-bottom: 3.5rem; }
.fv-ma-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #37b594;
    margin: 0 0 0.75rem;
    padding: 0.3rem 0.8rem;
    background: rgba(55, 181, 148, 0.1);
    border-radius: 9999px;
    border: 1px solid rgba(55, 181, 148, 0.3);
}
.fv-ma-h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0 0 1rem;
}
.fv-ma-h2 .accent {
    background: linear-gradient(135deg, #37b594 0%, #6ad7b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fv-ma-section-desc {
    color: #c6dfd6;
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ── Steps ───────────────────────────────────────────── */
.fv-ma-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}
.fv-ma-steps::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #37b594 50%, transparent);
    z-index: 0;
}
.fv-ma-step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: linear-gradient(180deg, #1a2540 0%, #16203a 100%);
    border: 1px solid rgba(55, 181, 148, 0.25);
    border-radius: 1.25rem;
    padding: 2.25rem 1.5rem 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}
.fv-ma-step:hover {
    border-color: rgba(55, 181, 148, 0.6);
    box-shadow: 0 20px 40px rgba(55, 181, 148, 0.15);
}
.fv-ma-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #37b594 0%, #45c9a7 100%);
    color: #0d1628;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    box-shadow:
        0 0 0 6px rgba(55, 181, 148, 0.1),
        0 8px 24px rgba(55, 181, 148, 0.35);
    position: relative;
}
.fv-ma-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
}
.fv-ma-step-body {
    color: #c6dfd6;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* ── Benefits grid ───────────────────────────────────── */
.fv-ma-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.fv-ma-benefit {
    background: linear-gradient(180deg, #1a2540 0%, #16203a 100%);
    border: 1px solid rgba(55, 181, 148, 0.25);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.fv-ma-benefit::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, transparent 40%, rgba(55, 181, 148, 0.4) 50%, transparent 60%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    border-radius: 1.25rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease, background-position 0.5s ease;
}
.fv-ma-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(55, 181, 148, 0.6);
    box-shadow: 0 20px 40px rgba(55, 181, 148, 0.15);
}
.fv-ma-benefit:hover::before { opacity: 1; background-position: 100% 100%; }
.fv-ma-benefit-highlight {
    background: linear-gradient(135deg, rgba(55, 181, 148, 0.2) 0%, #1a2540 100%);
    border-color: rgba(55, 181, 148, 0.5);
}
.fv-ma-benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, rgba(55, 181, 148, 0.25) 0%, rgba(55, 181, 148, 0.1) 100%);
    border: 1px solid rgba(55, 181, 148, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #37b594;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 16px rgba(55, 181, 148, 0.15);
}
.fv-ma-benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
}
.fv-ma-benefit-body {
    font-size: 0.92rem;
    color: #c6dfd6;
    line-height: 1.55;
    margin: 0;
}

/* ── Who we are looking for ──────────────────────────── */
.fv-ma-who {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(55, 181, 148, 0.12) 0%, transparent 70%),
        linear-gradient(180deg, #1a2540 0%, #16203a 100%);
    border: 1px solid rgba(55, 181, 148, 0.3);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fv-ma-who-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem;
}
.fv-ma-who-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 38rem;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    text-align: left;
}
.fv-ma-who-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: #d5eae3;
    font-size: 1.02rem;
    line-height: 1.55;
    padding: 0.6rem 0.85rem;
    background: rgba(55, 181, 148, 0.05);
    border: 1px solid rgba(55, 181, 148, 0.15);
    border-radius: 0.65rem;
    transition: all 0.2s ease;
}
.fv-ma-who-list li:hover {
    background: rgba(55, 181, 148, 0.1);
    border-color: rgba(55, 181, 148, 0.35);
    transform: translateX(4px);
}
.fv-ma-who-check {
    flex-shrink: 0;
    margin-top: 3px;
    color: #37b594;
}
.fv-ma-who-cta { margin-top: 2.25rem; }

/* ── Big mid-page CTA banner ─────────────────────────── */
.fv-ma-cta-banner {
    background:
        radial-gradient(ellipse 40% 80% at 0% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 80% at 100% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #37b594 0%, #2a9479 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    color: #0d1628;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(55, 181, 148, 0.3);
}
.fv-ma-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13, 22, 40, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 22, 40, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.fv-ma-cta-banner h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.85rem;
    color: #0d1628;
    letter-spacing: -0.025em;
    position: relative;
}
.fv-ma-cta-banner p {
    margin: 0 0 1.75rem;
    font-size: 1.1rem;
    color: #0d1628;
    opacity: 0.85;
    position: relative;
}
.fv-ma-cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0d1628;
    color: #37b594 !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(13, 22, 40, 0.4);
    position: relative;
}
.fv-ma-cta-banner-btn:hover {
    background: #1a2540;
    color: #45c9a7 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(13, 22, 40, 0.55);
}

/* ── Testimonial-style social proof ──────────────────── */
.fv-ma-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
.fv-ma-proof-card {
    background: linear-gradient(180deg, #1a2540 0%, #16203a 100%);
    border: 1px solid rgba(55, 181, 148, 0.25);
    border-radius: 1.1rem;
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
}
.fv-ma-proof-card:hover { transform: translateY(-3px); border-color: rgba(55, 181, 148, 0.5); }
.fv-ma-proof-quote {
    color: #d5eae3;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1.1rem;
    font-style: italic;
}
.fv-ma-proof-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.fv-ma-proof-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #37b594 0%, #45c9a7 100%);
    color: #0d1628;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.fv-ma-proof-meta { line-height: 1.3; }
.fv-ma-proof-name { color: #ffffff; font-weight: 700; font-size: 0.9rem; }
.fv-ma-proof-role { color: #a8c4be; font-size: 0.78rem; }

/* ── Form section ────────────────────────────────────── */
.fv-ma-form-wrap {
    background: linear-gradient(180deg, #213056 0%, #1a2540 100%);
    border: 1px solid rgba(55, 181, 148, 0.4);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow:
        0 0 0 1px rgba(55, 181, 148, 0.1),
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(55, 181, 148, 0.15);
    position: relative;
}
.fv-ma-form-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(55, 181, 148, 0.5), transparent 50%, rgba(55, 181, 148, 0.3));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.fv-ma-form-note {
    font-size: 0.85rem;
    color: #a8c4be;
    margin-top: 1.5rem;
    text-align: center;
    line-height: 1.5;
}
.fv-ma-form-note a { color: #37b594; text-decoration: none; font-weight: 600; }
.fv-ma-form-note a:hover { text-decoration: underline; }

/* ── Fluent Forms overrides */
.fv-ma-form-wrap .ff-el-form-control,
.fv-ma-form-wrap select.ff-el-form-control,
.fv-ma-form-wrap textarea.ff-el-form-control {
    background-color: #ffffff !important;
    border: 1px solid rgba(55, 181, 148, 0.35) !important;
    border-radius: 10px !important;
    color: #0d1628 !important;
    font-size: 14px !important;
    padding: 13px 14px !important;
    transition: all 0.2s ease !important;
}
.fv-ma-form-wrap .ff-el-form-control:focus,
.fv-ma-form-wrap select.ff-el-form-control:focus,
.fv-ma-form-wrap textarea.ff-el-form-control:focus {
    border-color: #37b594 !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(55, 181, 148, 0.18) !important;
}
.fv-ma-form-wrap .ff-el-form-control::placeholder,
.fv-ma-form-wrap textarea.ff-el-form-control::placeholder { color: #9aa5b8 !important; }
.fv-ma-form-wrap .ff-el-input--label label,
.fv-ma-form-wrap label.ff-el-form-check-label {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}
.fv-ma-form-wrap .ff-el-is-required.asterisk-right label::after { color: #37b594 !important; }
.fv-ma-form-wrap select.ff-el-form-control {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4 6l4 4 4-4' stroke='%2337b594' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 40px !important;
}
.fv-ma-form-wrap .ff-el-form-check input[type="checkbox"] {
    accent-color: #37b594 !important;
    width: 18px !important;
    height: 18px !important;
}
.fv-ma-form-wrap .ff-el-form-check label,
.fv-ma-form-wrap .ff_gdpr_label {
    color: #d5eae3 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}
.fv-ma-form-wrap .ff-el-form-check a,
.fv-ma-form-wrap .ff_gdpr_label a {
    color: #37b594 !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}
.fv-ma-form-wrap .ff-btn-submit,
.fv-ma-form-wrap button[type="submit"] {
    background: linear-gradient(135deg, #37b594 0%, #45c9a7 100%) !important;
    color: #0d1628 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 16px 32px !important;
    border-radius: 9999px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 8px 24px rgba(55, 181, 148, 0.4) !important;
    width: 100% !important;
    animation: fv-glow-pulse 2.8s ease-in-out infinite !important;
}
.fv-ma-form-wrap .ff-btn-submit:hover,
.fv-ma-form-wrap button[type="submit"]:hover {
    transform: translateY(-2px) scale(1.01) !important;
    box-shadow: 0 12px 36px rgba(55, 181, 148, 0.55) !important;
}
.fv-ma-form-wrap .ff-message-success {
    background: rgba(55, 181, 148, 0.15) !important;
    border: 1px solid rgba(55, 181, 148, 0.5) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
}

/* ── Reveal animations on scroll ─────────────────────── */
.fv-ma-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fv-ma-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────── */
@media (min-width: 768px) {
    .fv-ma-section { padding: 6rem 1.5rem; }
    .fv-ma-h1 { font-size: 4.25rem; }
    .fv-ma-h2 { font-size: 3rem; }
    .fv-ma-hero-sub { font-size: 1.3rem; }
    .fv-ma-form-wrap { padding: 2.75rem; }
    .fv-ma-cta-banner h3 { font-size: 2.5rem; }
}
@media (max-width: 900px) {
    .fv-ma-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .fv-ma-steps { grid-template-columns: 1fr; gap: 1rem; }
    .fv-ma-steps::before { display: none; }
    .fv-ma-proof { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .fv-ma-benefits-grid { grid-template-columns: 1fr; }
    .fv-ma-h1 { font-size: 2.1rem; }
    .fv-ma-h2 { font-size: 1.85rem; }
    .fv-ma-stats { grid-template-columns: 1fr; gap: 1.25rem; }
    .fv-ma-cta-banner { padding: 2.25rem 1.5rem; }
    .fv-ma-cta-banner h3 { font-size: 1.6rem; }
    .fv-ma-marquee-track { gap: 2rem; padding-left: 2rem; }
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .fv-ma-page *,
    .fv-ma-page *::before,
    .fv-ma-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

form.fluent_form_5 .ff-btn-submit:not(.ff_btn_no_style) { background-color: var(--fluentform-primary); color: #ffffff; }


/* ═════════ THE-BIG-3 ═════════ */
@media (max-width: 700px) {
            .fv-stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1px !important; }
            .fv-stat-item  { padding: 24px 16px !important; }
        }

@media (max-width: 700px) {
            .fv-podium { grid-template-columns: 1fr !important; max-width: 400px !important; margin: 0 auto !important; }
            .fv-card-1st { order: -1; }
        }

@keyframes fvwinner {
                0%   { transform: translateX(0); }
                100% { transform: translateX(-50%); }
            }
            .fv-win-track {
                display: flex;
                width: max-content;
                animation: fvwinner 45s linear infinite;
            }
            .fv-win-track:hover { animation-play-state: paused; }
            .fv-win-card {
                font-family: 'Inter', sans-serif;
                display: inline-flex;
                align-items: center;
                gap: 12px;
                background: rgba(255,255,255,0.04);
                border: 1px solid rgba(255,255,255,0.09);
                border-radius: 10px;
                padding: 14px 22px;
                margin-right: 20px;
                white-space: nowrap;
                flex-shrink: 0;
            }

@media (max-width: 700px) {
            .fv-steps-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
            .fv-step-card  { text-align: left !important; display: flex !important; align-items: flex-start !important; gap: 20px !important; padding: 24px 20px !important; }
            .fv-step-circle { flex-shrink: 0; margin: 0 !important; }
            .fv-step-body  { flex: 1; }
        }

@media (max-width: 700px) {
            .fv-cta-num  { font-size: 120px !important; }
            .fv-cta-sub  { font-size: 26px !important; letter-spacing: 0.06em !important; }
            .fv-cta-btn  { padding: 18px 28px !important; font-size: 13px !important; width: 100% !important; box-sizing: border-box !important; }
            .fv-path     { gap: 8px !important; }
            .fv-path-step{ font-size: 11px !important; padding: 8px 10px !important; }
        }


/* ═════════ HERO (home) ═════════ */
/* Sfondo: immagine al posto del video, come nella styleguide.
   Il velo scuro sopra garantisce il contrasto del testo. */
.section-hero .hero-copy-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/color-bg.webp');
  background-size: cover;
  background-position: center;
}
.section-hero .hero-copy-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,5,15,.55) 0%, rgba(2,5,15,.72) 60%, rgba(2,5,15,.92) 100%);
}
.section-hero .container { position: relative; z-index: 1 }

/* Statistiche sotto i pulsanti */
.section-hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(36px, 5vw, 56px);
}
.section-hero .hero-stat { display: flex; flex-direction: column; gap: 6px }
.section-hero .hero-stat__value {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: var(--fv-weight-heading, 600);
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--fv-dark-text, #f4f7f5);
  font-variant-numeric: tabular-nums;
}
.section-hero .hero-stat__label {
  font-size: 14px;
  line-height: 1.45;
  color: var(--fv-dark-muted, #f4f7f5a8);
  max-width: 15ch;
}

@media (max-width: 991px) {
  .section-hero .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 24px }
  .section-hero .hero-stat__label { max-width: none }
}
@media (max-width: 479px) {
  .section-hero .hero-stats { gap: 22px 18px }
}

/* Tolte le 4 card, la colonna destra della griglia resta vuota:
   l'hero passa a una colonna sola e la striscia loghi va sotto,
   a piena larghezza, invece di finire nello spazio delle card. */
.section-hero .hero-main-grid {
  grid-template-columns: 1fr !important;
  grid-template-rows: auto !important;
  align-content: center;
}
.section-hero .hero-main-grid > .sect-title { max-width: 720px }
.section-hero .hero-logo-strip {
  grid-column: 1 / -1;
  margin-top: clamp(40px, 6vw, 72px);
  width: 100%;
}

/* Sottotitolo e badge erano centrati (flex justify-content:center),
   scelta del vecchio layout a due colonne. Con l'hero allineato a
   sinistra vanno riportati a sinistra, in linea con titolo e bottoni. */
.section-hero .hero-main-grid .s-sub_title,
.section-hero .hero-main-grid .hero-platform-badge {
  justify-content: flex-start !important;
}

/* Su mobile il tema ordina esplicitamente i figli dell'hero
   (titolo 1, sottotitolo 2, badge 3, CTA 5). Senza un ordine
   le statistiche finirebbero per prime, sopra al titolo. */
@media (max-width: 767px) {
  .section-hero .hero-main-grid .hero-stats { order: 6 }
  .section-hero .hero-logo-strip { order: 7 }
}

/* ---- Badge Trustpilot sopra il titolo ----
   Verde ufficiale #00B67A. La quinta casella e' riempita al 70%
   con un gradiente netto, per rappresentare il 4,7 su 5. */
.section-hero .fv-tp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--fv-dark-text, #f4f7f5);
}
.section-hero .fv-tp__stars { display: inline-flex; gap: 3px }
.section-hero .fv-tp__box {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: #00b67a;
}
.section-hero .fv-tp__box svg { width: 15px; height: 15px; fill: #fff }
/* 4,7 -> l'ultima casella e' verde al 70%, grigia per il resto */
.section-hero .fv-tp__box--partial {
  background: linear-gradient(90deg, #00b67a 0 70%, #56606a 70% 100%);
}
.section-hero .fv-tp__score {
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.section-hero .fv-tp__sep {
  width: 1px; height: 16px;
  background: var(--fv-dark-line-str, #ffffff2e);
}
.section-hero .fv-tp__brand {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 15px; font-weight: 600; letter-spacing: -.015em;
}
.section-hero .fv-tp__brand svg { width: 16px; height: 16px; fill: #00b67a }

/* il badge va per primo su mobile, sopra il titolo */
@media (max-width: 767px) {
  .section-hero .hero-main-grid .fv-tp { order: 0 }
}
@media (max-width: 479px) {
  .section-hero .fv-tp { gap: 8px }
  .section-hero .fv-tp__box { width: 19px; height: 19px }
  .section-hero .fv-tp__box svg { width: 13px; height: 13px }
}

/* ---- Statistiche hero: piu' piccole, con icona a fianco ---- */
.section-hero .hero-stats {
  grid-template-columns: repeat(3, auto) !important;
  gap: clamp(20px, 3vw, 44px) !important;
}
.section-hero .hero-stat {
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
}
.section-hero .hero-stat__icon {
  flex: none;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--fv-teal, #45c8b4) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--fv-teal, #45c8b4) 22%, transparent);
}
.section-hero .hero-stat__icon svg {
  width: 19px; height: 19px;
  fill: none; stroke: var(--fv-teal, #45c8b4);
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.section-hero .hero-stat__body { display: flex; flex-direction: column; gap: 1px; min-width: 0 }
.section-hero .hero-stat__value {
  font-size: 21px !important;      /* prima clamp(26-36px) */
  line-height: 1.2 !important;
  letter-spacing: -.02em !important;
}
.section-hero .hero-stat__label {
  font-size: 13px !important;
  line-height: 1.35 !important;
  max-width: 17ch;
}

@media (max-width: 767px) {
  .section-hero .hero-stats { grid-template-columns: 1fr !important; gap: 16px !important }
  .section-hero .hero-stat__label { max-width: none }
}

/* Le etichette vanno a capo in modo diverso: allineando in alto
   i valori restano sulla stessa linea invece di sfalsarsi. */
.section-hero .hero-stat { align-items: flex-start !important }
.section-hero .hero-stat__icon { margin-top: 1px }

/* ---- Statistiche: ancora piu' compatte, icone senza contorno ---- */
.section-hero .hero-stat__icon {
  width: 22px !important; height: 22px !important;
  border: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  margin-top: 2px !important;
}
.section-hero .hero-stat__icon svg { width: 20px !important; height: 20px !important; stroke-width: 1.6 }
.section-hero .hero-stat { gap: 9px !important }
.section-hero .hero-stat__value { font-size: 17px !important; letter-spacing: -.015em !important }
.section-hero .hero-stat__label { font-size: 12px !important; max-width: 19ch }
.section-hero .hero-stats { gap: clamp(18px, 2.4vw, 34px) !important }

/* ═════════ SEZIONE STAMPA (in fondo alla pagina) ═════════ */
.section-press {
  padding-block: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--fv-dark-line, #ffffff14);
}
.section-press .press-strip__title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fv-dark-muted, #f4f7f5a8);
}

/* ═════════ HERO — ritmo verticale ═════════
   Senza la striscia loghi l'hero va ricomposto: spaziature piu'
   regolari e niente altezza fissa, cosi' il blocco resta compatto
   e centrato invece di lasciare un grande vuoto in basso. */
.section-hero .hero-main-grid {
  min-height: auto !important;
  padding-block: clamp(56px, 8vw, 104px);
}
.section-hero .hero-main-grid > .sect-title { max-width: 760px }

.section-hero .fv-tp { margin-bottom: 20px !important }
.section-hero .hero-main-grid .s-title { margin-bottom: 18px !important }
.section-hero .hero-main-grid .s-sub_title {
  margin-bottom: 22px !important;
  max-width: 60ch;
  font-size: 17px;
}
.section-hero .hero-main-grid .hero-platform-badge { margin-bottom: 30px !important }
.section-hero .hero-main-grid .hero-cta { margin-bottom: 0 !important }
.section-hero .hero-stats { margin-top: 34px !important }

/* Il tema aggiunge un margin-top a badge (16px) e CTA (24px) che si
   sommava ai margin-bottom, creando vuoti di 38 e 54px. Azzerato,
   il ritmo verticale e' governato da un solo lato. */
.section-hero .hero-main-grid .hero-platform-badge { margin-top: 0 !important; margin-bottom: 26px !important }
.section-hero .hero-main-grid .hero-cta { margin-top: 0 !important }
.section-hero .hero-main-grid .s-sub_title { margin-bottom: 24px !important }

/* ---- Hero a tutta altezza schermo ----
   L'header e' fisso (barra promo ~40px + barra ~72px): il padding
   superiore evita che il contenuto ci finisca sotto.
   svh invece di vh: su mobile evita il salto quando compare/scompare
   la barra del browser. */
.section-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.section-hero .sect-main { width: 100%; }
.section-hero .hero-main-grid {
  padding-block: clamp(40px, 6vw, 72px) !important;
  padding-top: clamp(140px, 16vh, 180px) !important;
}
@media (max-width: 767px) {
  .section-hero .hero-main-grid { padding-top: clamp(130px, 18vh, 170px) !important }
}

/* Correzione: il padding-top grande sulla griglia si sommava alla
   centratura verticale, spingendo il contenuto troppo in basso
   (evidente su mobile). Lo spazio di sicurezza per l'header fisso
   va sulla sezione; alla posizione ci pensa align-items:center. */
.section-hero { padding-top: 112px }
.section-hero .hero-main-grid {
  padding-top: clamp(24px, 4vw, 48px) !important;
  padding-bottom: clamp(24px, 4vw, 48px) !important;
}
@media (max-width: 767px) {
  .section-hero { padding-top: 104px }
  .section-hero .hero-main-grid { padding-top: 16px !important }
}

/* Su mobile il contenuto dell'hero e' piu' alto dello schermo:
   centrarlo lascerebbe un grande vuoto in cima. Meglio allinearlo
   in alto e lasciare che la sezione cresca col contenuto. */
@media (max-width: 767px) {
  .section-hero { align-items: flex-start; min-height: auto }
  .section-hero .hero-main-grid { padding-bottom: 56px !important }
}

/* .sect-main del tema aveva 140px di padding-top che si sommavano
   allo spazio di sicurezza dell'header: 104+140+16 = 260px vuoti.
   Lo spazio verticale ora e' governato solo dalla sezione. */
.section-hero .sect-main { padding-top: 0 !important; padding-bottom: 0 !important }

/* Su mobile il contenitore centra i figli senza larghezza esplicita:
   le statistiche restavano strette e centrate, disallineate rispetto
   ai pulsanti. Con width:100% tornano a filo a sinistra. */
@media (max-width: 767px) {
  .section-hero .hero-stats { width: 100%; align-self: stretch; justify-items: start }
  .section-hero .hero-stat { width: 100% }
}
