/* FX Co-Producer Landing – Sleek Apple-style v2.8 */

/* Reset + base */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    background: radial-gradient(1600px 900px at 16% 0%, rgba(20,32,60,.40), rgba(7,11,20,0) 68%),
    radial-gradient(1600px 900px at 60% 100%, rgba(7,11,20,.46), rgba(7,11,20,0) 68%),
    #050814 !important;
    color: #eef2f8;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.fxco, .fxco * {
    box-sizing: border-box;
}

.fxco h1, .fxco h2, .fxco h3, .fxco h4,
.fxco p, .fxco ul, .fxco li {
    margin: 0;
    padding: 0;
}

.fxco ul {
    padding-left: 1.2em;
}

.fxco a {
    color: inherit;
    text-decoration: none;
}

/* MAIN WRAPPER – GHL SAFE */
.fxco {
    width: 100% !important;
    margin: 0 auto !important;
    position: relative;
    overflow-x: hidden;
    --ink: #eef2f8;
    --ink2: #c7cfdd;
    --muted: #aeb9cd;
    --muter: #9aa6ba;
    --line: #ffffff12;
    --line2: #ffffff0a;
    --g1: #22d3ee;
    --g2: #86a8ff;
    --g3: #a21caf;
    --hero-dim-top: 0.00;
    --hero-dim-mid: 0.30;
    --hero-dim-bot: 0.55;
    --hero-video-bright: 1.14;
    --hero-video-sat: 1.12;
    --glass-bg: rgba(18,30,58,.18);
    --glass-blur: 30px;
    --glass-sat: 180%;
}

/* Cosmic background */
.fxco .fxco-bg {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background: radial-gradient(1600px 900px at 16% 0%, rgba(20,32,60,.40), rgba(7,11,20,0) 68%),
    radial-gradient(1600px 900px at 60% 100%, rgba(7,11,20,.46), rgba(7,11,20,0) 68%),
    linear-gradient(180deg, #050814 0%, #050814 100%);
}

.fxco .fxco-vignette {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(1200px 900px at 50% 50%, rgba(0,0,0,0) 70%, rgba(0,0,0,.28) 100%);
}

.fxco .fxco-notes {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

/* Floating music notes */
.fxco .fxco-note {
    position: absolute;
    color: #8ed9ff;
    filter: drop-shadow(0 6px 18px rgba(94,191,255,.55));
    opacity: .24;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes sway {
    0% {
        transform: translateY(110vh) translateX(-10px) rotate(-4deg);
        opacity: 0;
    }

    20% {
        opacity: .24;
    }

    50% {
        transform: translateY(50vh) translateX(10px) rotate(4deg);
        opacity: .34;
    }

    100% {
        transform: translateY(-20vh) translateX(-12px) rotate(-6deg);
        opacity: 0;
    }
}

/* Parallax glow discs */
.fxco .fxco-parallax {
    position: fixed;
    inset: auto auto -10% 50%;
    transform: translateX(-50%);
    width: 70vmax;
    height: 70vmax;
    pointer-events: none;
    z-index: -1;
    filter: blur(48px);
    opacity: .18;
}

.fxco .fxco-orb {
    top: 20%;
    background: radial-gradient(circle at 40% 40%, rgba(120,190,255,.35), rgba(120,190,255,0) 60%),
    radial-gradient(circle at 60% 60%, rgba(162,28,175,.35), rgba(162,28,175,0) 60%);
    mix-blend-mode: screen;
}

.fxco .fxco-drift {
    top: 60%;
    background: radial-gradient(800px 600px at 50% 50%, rgba(255,255,255,.12), rgba(255,255,255,0) 70%);
    opacity: .10;
}

/* Container – wider */
.fxco .fxco-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

/* Sticky nav */
.fxco .fxco-nav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: linear-gradient(to bottom, rgba(6,10,20,.85), rgba(6,10,20,.55));
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fxco .fxco-nav.scrolled {
    background: linear-gradient(to bottom, rgba(6,10,20,.96), rgba(6,10,20,.8));
    border-color: #ffffff22;
    box-shadow: 0 16px 34px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
}

.fxco .fxco-nav-i {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.fxco .fxco-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fxco .fxco-brand img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 10px 24px rgba(0,0,0,.6);
}

.fxco .fxco-nav-links {
    display: none;
    gap: 24px;
    color: #cfd2df;
    font-size: 14px;
}

@media (min-width: 900px) {
    .fxco .fxco-nav-links {
        display: flex;
    }
}

.fxco .fxco-nav-links a {
    position: relative;
    padding: 8px 2px;
}

.fxco .fxco-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--g1), var(--g2));
    box-shadow: 0 0 12px rgba(34,211,238,.55);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease-out, opacity .22s ease-out;
    opacity: 0;
}

.fxco .fxco-nav-links a:hover::after,
.fxco .fxco-nav-links a:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Buttons */
.fxco .fxco-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #0c1222;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    font-size: 14px;
    transition: background .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

.fxco .fxco-btn-primary {
    border-color: #6ecff3;
    background: linear-gradient(120deg, var(--g1), var(--g2), var(--g3));
    box-shadow: 0 10px 26px rgba(34,211,238,.35);
}

.fxco .fxco-btn:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,.6);
}

/* HERO */
.fxco .fxco-hero {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.fxco .fxco-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    visibility: hidden;
    filter: brightness(var(--hero-video-bright)) saturate(var(--hero-video-sat));
}

.fxco .fxco-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
    180deg,
    rgba(7,11,20, var(--hero-dim-top)) 0%,
    rgba(7,11,20, var(--hero-dim-mid)) 60%,
    rgba(7,11,20, var(--hero-dim-bot)) 100%
  );
}

.fxco .fxco-hero-i {
    position: relative;
    z-index: 2;
    min-height: 78vh;
    display: grid;
    align-items: flex-end;
    padding: 110px 0 84px;
    padding-left: clamp(40px, 8vw, 120px);
}

/* Hero entrance animation */
.fxco .fxco-hero-anim {
    opacity: 0;
    transform: translateY(18px) scale(.985);
    filter: blur(4px);
    transition: opacity .7s ease,
    transform .7s cubic-bezier(.17,.9,.2,1),
    filter .7s ease;
}

body.fxco-loaded .fxco-hero-anim {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

body.fxco-loaded .fxco-hero-anim:nth-child(1) {
    transition-delay: .05s;
}

body.fxco-loaded .fxco-hero-anim:nth-child(2) {
    transition-delay: .12s;
}

body.fxco-loaded .fxco-hero-anim:nth-child(3) {
    transition-delay: .18s;
}

body.fxco-loaded .fxco-hero-anim:nth-child(4) {
    transition-delay: .24s;
}

body.fxco-loaded .fxco-hero-anim:nth-child(5) {
    transition-delay: .30s;
}

.fxco .fxco-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(5,10,26,.88);
    color: #cfd5e4;
    font-size: 12px;
}

/* Smaller headline & subhead */
.fxco .fxco-h1 {
    font-weight: 1000;
    font-size: clamp(34px, 6.2vw, 72px);
    line-height: 0.98;
    letter-spacing: -.02em;
    margin: 16px 0 10px;
}

.fxco .fxco-h1 span {
    display: block;
}

.fxco .fxco-h1 .grad {
    background: linear-gradient(120deg, var(--g1), var(--g2), var(--g3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fxco .fxco-subhero {
    color: #eef2f8;
    font-weight: 600;
    font-size: clamp(15px, 1.7vw, 19px);
    line-height: 1.5;
    max-width: 900px;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

.fxco .fxco-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.fxco .fxco-trust {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #b8c2d6;
    font-size: 13px;
    margin-top: 14px;
}

.fxco .fxco-trust .tick {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #16a34a;
}

/* Generic sections */
.fxco .fxco-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: radial-gradient(900px 600px at 10% 0%, rgba(49,130,255,.12), transparent 70%),
    radial-gradient(900px 600px at 90% 100%, rgba(34,211,238,.11), transparent 70%),
    transparent;
}

.fxco .fxco-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,.09), transparent 28%);
    mix-blend-mode: soft-light;
    opacity: .18;
}

.fxco .fxco-section-dark {
    background: radial-gradient(1000px 700px at 0% 0%, rgba(15,23,42,.9), transparent 70%),
    radial-gradient(900px 700px at 100% 100%, rgba(15,23,42,.85), transparent 70%),
    #070b14;
}

/* Section headings */
.fxco .fxco-section-head {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.fxco .fxco-kicker {
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muter);
    font-weight: 700;
    margin-bottom: 8px;
}

.fxco .fxco-section-h {
    font-size: clamp(28px, 3.6vw, 36px);
    font-weight: 900;
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.fxco .fxco-section-sub {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
}

/* Workflow cards – single column, wide, with media */
.fxco .fxco-card-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(120px, 20vh, 220px);
}

.fxco .fxco-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: var(--glass-bg);
    border: 1px solid rgba(148,163,184,.45);
    box-shadow: 0 20px 38px rgba(0,0,0,.78),
    inset 0 0 0 1px rgba(255,255,255,.04);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
    overflow: hidden;
    transition: box-shadow .38s ease,
    border-color .3s ease,
    background .3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.fxco .fxco-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0% 0%, rgba(34,211,238,.28), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(129,140,248,.22), transparent 55%);
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity .4s ease;
}

.fxco .fxco-card-inner {
    position: relative;
    z-index: 1;
    flex: 1;
}

@media (min-width: 900px) {
    .fxco .fxco-card {
        flex-direction: row;
        align-items: stretch;
    }

    .fxco .fxco-card.fxco-card--flip {
        flex-direction: row-reverse;
    }
}

.fxco .fxco-card:hover {
    border-color: #7dd3fc;
    background: rgba(17,24,48,.98);
    box-shadow: 0 28px 60px rgba(15,23,42,.95),
    0 0 40px rgba(56,189,248,.30);
}

.fxco .fxco-card:hover::before {
    opacity: 1;
}

/* Media placeholder inside card – now per-card images */
.fxco .fxco-card-media {
    flex: 0 0 48%;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px 18px;
    min-height: clamp(320px, 40vh, 440px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 1–6 specific screenshots */
.fxco .fxco-card-media--1 {
    background-image: linear-gradient(to top, rgba(5,10,25,.18), rgba(5,10,25,.06)),
    url("https://storage.googleapis.com/msgsndr/bVHPC17UjHlpxDYNhgH6/media/6916c0281c143a7295f88c1c.png");
}

.fxco .fxco-card-media--2 {
    background-image: linear-gradient(to top, rgba(5,10,25,.18), rgba(5,10,25,.06)),
    url("https://storage.googleapis.com/msgsndr/bVHPC17UjHlpxDYNhgH6/media/6916c02821776f5e45c98ebe.png");
}

.fxco .fxco-card-media--3 {
    background-image: linear-gradient(to top, rgba(5,10,25,.18), rgba(5,10,25,.06)),
    url("https://storage.googleapis.com/msgsndr/bVHPC17UjHlpxDYNhgH6/media/6916c02801e5bc61e4077515.png");
}

.fxco .fxco-card-media--4 {
    background-image: linear-gradient(to top, rgba(5,10,25,.18), rgba(5,10,25,.06)),
    url("https://storage.googleapis.com/msgsndr/bVHPC17UjHlpxDYNhgH6/media/6916c0281c143a72fcf88c1e.png");
}

.fxco .fxco-card-media--5 {
    background-image: linear-gradient(to top, rgba(5,10,25,.18), rgba(5,10,25,.06)),
    url("https://storage.googleapis.com/msgsndr/bVHPC17UjHlpxDYNhgH6/media/6916c0281c143a2396f88c1d.png");
}

.fxco .fxco-card-media--6 {
    background-image: linear-gradient(to top, rgba(5,10,25,.18), rgba(5,10,25,.06)),
    url("https://storage.googleapis.com/msgsndr/bVHPC17UjHlpxDYNhgH6/media/6916c028ac7fadcd4e2a4f07.png");
}

.fxco .fxco-media-label {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(15,23,42,.9);
    background: rgba(255,255,255,.90);
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(15,23,42,.55);
}

.fxco .fxco-card-media--7 {
    background-image: linear-gradient(to top, rgba(5,10,25,.18), rgba(5,10,25,.06)),
    url("https://storage.googleapis.com/msgsndr/bVHPC17UjHlpxDYNhgH6/media/69177b167aa3307ffb8b7305.png");
}

.fxco .fxco-card-media--8 {
    background-image: linear-gradient(to top, rgba(5,10,25,.18), rgba(5,10,25,.06)),
    url("https://storage.googleapis.com/msgsndr/bVHPC17UjHlpxDYNhgH6/media/69177b1721776fb347e1d4d9.png");
}

.fxco .fxco-card-media--9 {
    background-image: linear-gradient(to top, rgba(5,10,25,.18), rgba(5,10,25,.06)),
    url("https://storage.googleapis.com/msgsndr/bVHPC17UjHlpxDYNhgH6/media/69177b168106163670acadf0.png");
}

.fxco .fxco-card-media--10 {
    background-image: linear-gradient(to top, rgba(5,10,25,.18), rgba(5,10,25,.06)),
    url("https://storage.googleapis.com/msgsndr/bVHPC17UjHlpxDYNhgH6/media/69177b168106164940acadf7.png");
}


/* Center-active card highlight */
.fxco .fxco-card.reveal {
    opacity: 0;
}

.fxco .fxco-card.reveal.in {
    opacity: 0.22;
    transform: translateY(8px) scale(.986);
}

.fxco .fxco-card.fxco-card-active {
    opacity: 1;
    border-color: rgba(255,255,255,1);
    background: rgba(17,24,48,0.98);
    box-shadow: 0 0 0 2px rgba(255,255,255,.9),
      0 0 56px rgba(148,163,253,.85),
      0 34px 64px rgba(0,0,0,.98);
}
/* Hover glow for main workflow cards to match active state */
.fxco .fxco-card:hover {
    border-color: rgba(255,255,255,1);
    background: rgba(17,24,48,0.98);
    box-shadow: 0 0 0 2px rgba(255,255,255,.9),
      0 0 56px rgba(148,163,253,.85),
      0 34px 64px rgba(0,0,0,.98);
}


/* Card text */
.fxco .fxco-tag {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    border: 1px solid rgba(226,232,255,.26);
    color: var(--muter);
    margin-bottom: 10px;
}

.fxco .fxco-card-title {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
}

.fxco .fxco-card-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink2);
}

.fxco .fxco-card-body p + p {
    margin-top: 8px;
}

.fxco .fxco-card-list {
    margin-top: 6px;
}

/* Why split layout */
.fxco .fxco-split {
    display: grid;
    gap: 28px;
}

@media (min-width: 900px) {
    .fxco .fxco-split {
        grid-template-columns: minmax(0,1.1fr) minmax(0,1.2fr);
        align-items: flex-start;
    }
}

.fxco .fxco-split-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fxco .fxco-feature {
    border-radius: 18px;
    padding: 18px 18px 16px;
    background: rgba(10,16,32,.96);
    border: 1px solid rgba(148,163,184,.55);
    box-shadow: 0 18px 36px rgba(0,0,0,.78);
    overflow: hidden;
    transition: transform .32s cubic-bezier(.17,.9,.2,1),
    box-shadow .32s ease,
    border-color .3s ease,
    background .3s ease;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

.fxco .fxco-feature::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0% 0%, rgba(129,140,248,.22), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(45,212,191,.24), transparent 55%);
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity .36s ease;
}

.fxco .fxco-feature:hover {
    transform: translateY(-6px);
    border-color: #93c5fd;
    background: rgba(15,23,42,1);
    box-shadow: 0 26px 50px rgba(15,23,42,.98),
    0 0 30px rgba(129,140,248,.35);
}

.fxco .fxco-feature:hover::before {
    opacity: 1;
}

.fxco .fxco-feature-kicker {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muter);
    margin-bottom: 4px;
}

.fxco .fxco-feature-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.fxco .fxco-feature-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fxco .fxco-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    font-size: 13px;
    background: radial-gradient(circle at 30% 0%, rgba(248,250,252,.95), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(129,140,248,.5), transparent 55%);
    box-shadow: 0 0 18px rgba(129,140,248,.55);
    color: #020617;
}

.fxco .fxco-feature-label {
    display: inline-block;
}

/* Subtle reveal animation for feature cards */
.fxco .fxco-feature.reveal {
    opacity: 0;
    transform: translateY(10px) scale(.985);
}

.fxco .fxco-feature.reveal.in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hover glow to match active spotlight */
.fxco .fxco-feature:hover {
    border-color: rgba(255,255,255,1);
    background: rgba(17,24,48,0.98);
    box-shadow: 0 0 0 2px rgba(255,255,255,.9),
      0 0 56px rgba(148,163,253,.85),
      0 34px 64px rgba(0,0,0,.98);
}

.fxco .fxco-feature-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink2);
}

.fxco .fxco-feature-body ul {
    margin-top: 6px;
}

/* FX Tool Suite grid */
.fxco .fxco-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.fxco .fxco-section-tools {
    padding-top: 72px;
    padding-bottom: 88px;
}

/* Responsive layout for Tool Suite */
@media (max-width: 1100px) {
    .fxco .fxco-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

@media (max-width: 520px) {
    .fxco .fxco-feature-grid {
        grid-template-columns: 1fr;
    }
}


/* FX Training Hub section */
.fxco .fxco-section-training {
    padding-top: 80px;
    padding-bottom: 90px;
}

.fxco .fxco-training-media {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(15,23,42,.95),
      0 0 70px rgba(129,140,248,.65);
    background: radial-gradient(circle at 0% 0%, rgba(59,130,246,.4), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(56,189,248,.4), transparent 55%);
}

.fxco .fxco-training-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(15,23,42,.2), transparent 55%);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.fxco .fxco-training-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: inherit;
}

.fxco .fxco-training-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 520px;
}

.fxco .fxco-training-sub {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink2);
}

.fxco .fxco-training-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--ink2);
}

.fxco .fxco-training-cta {
    margin-top: 18px;
}

@media (max-width: 900px) {
    .fxco .fxco-section-training {
        padding-top: 64px;
        padding-bottom: 72px;
    }

    .fxco .fxco-training-copy {
        max-width: none;
    }
}

/* Final CTA */
.fxco .fxco-section-cta {
    text-align: center;
    padding: 80px 0 96px;
    background: radial-gradient(900px 600px at 50% 0%, rgba(37,99,235,.55), transparent 72%),
    radial-gradient(900px 600px at 50% 100%, rgba(22,163,74,.26), transparent 70%),
    #050814;
}

.fxco .fxco-section-cta h2 {
    font-size: clamp(28px, 3.8vw, 38px);
    font-weight: 900;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.fxco .fxco-section-cta p {
    max-width: 640px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink2);
}

.fxco .fxco-section-cta .fxco-cta-row {
    justify-content: center;
}

.fxco .fxco-section-cta .fxco-btn-ghost {
    border-color: rgba(226,232,255,.4);
}

/* Reveal */
.fxco .reveal {
    opacity: 0;
    transform: translateY(12px) scale(.995);
    filter: blur(4px);
    transition: opacity .6s ease,
    transform .65s cubic-bezier(.2,.8,.2,1),
    filter .65s ease;
}

.fxco .reveal.in {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

/* Extra breathing room below the 6 workflow cards */
#features {
    padding-bottom: 180px;
}

/* EMERGENCY BRIGHT FIX */
.fxco .fxco-card {
    background: rgba(255,255,255,0.12) !important;
}

.fxco .fxco-card.reveal.in {
    opacity: 1 !important;
}

.fxco .fxco-card.fxco-card-active {
    opacity: 1 !important;
    background: rgba(255,255,255,0.18) !important;
    box-shadow: 0 0 0 2px rgba(255,255,255,.95),
    0 0 70px rgba(255,255,255,.85),
    0 30px 80px rgba(0,0,0,.8) !important;
}

.fxco .fxco-card-media::before,
.fxco .fxco-card-media::after {
    opacity: 0 !important;
 /* fully remove overlay darkness */
}

/* Feature card media (bottom 4 cards) */
.fxco .fxco-feature-media {
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    background: #020617;
}

.fxco .fxco-feature-media img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 230px;
}


/* Spotlight behavior for bottom feature cards */
.fxco .fxco-feature.reveal {
    opacity: 0;
}

.fxco .fxco-feature.reveal.in {
    opacity: 0.35;
    transform: translateY(6px) scale(.992);
    box-shadow: none;
}

.fxco .fxco-feature.fxco-card-active {
    opacity: 1;
    transform: translateY(0) scale(1.03);
    border-color: rgba(255,255,255,1);
    box-shadow: 0 0 0 2px rgba(255,255,255,.95),
    0 0 70px rgba(148,163,253,.85),
    0 30px 70px rgba(0,0,0,.9);
}


/* === Bottom 4 feature cards: mirror spotlight behavior from top 6 cards === */
.fxco .fxco-feature.reveal {
    opacity: 0;
}

.fxco .fxco-feature.reveal.in {
    opacity: 0.22;
    transform: translateY(8px) scale(.986);
}

.fxco .fxco-feature.fxco-card-active {
    opacity: 1;
    transform: translateY(0) scale(1.03);
    border-color: rgba(255,255,255,1);
    background: rgba(17,24,48,0.98);
    box-shadow: 0 0 0 2px rgba(255,255,255,.9),
    0 0 56px rgba(148,163,253,.85),
    0 34px 64px rgba(0,0,0,.98);
}

/* Turn on their gradient glow layer when active */
.fxco .fxco-feature.fxco-card-active::before {
    opacity: 1;
}

/* Ensure feature media images are not artificially darkened */
.fxco .fxco-feature .fxco-feature-media img {
    filter: none;
}

/* === FINAL OVERRIDE: Make bottom 4 cards bright & remove dark overlay === */

/* Remove any dark gradient overlays on feature cards */
.fxco .fxco-feature::before,
.fxco .fxco-feature::after {
    opacity: 0 !important;
}

/* Baseline brightness for all 4 bottom cards */
.fxco .fxco-feature {
    background: rgba(15, 23, 42, 0.98);
    border-color: rgba(148,163,253,0.7);
    box-shadow: 0 0 0 1px rgba(30,64,175,0.5),
    0 0 50px rgba(15,23,42,0.9),
    0 26px 60px rgba(0,0,0,0.95);
}

/* Baseline image brightness */
.fxco .fxco-feature .fxco-feature-media img {
    filter: brightness(1.4) contrast(1.08);
    transition: filter 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

/* Active: full spotlight */
.fxco .fxco-feature.fxco-card-active {
    background: rgba(30, 64, 175, 1);
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,255,255,1),
    0 0 160px rgba(129,140,248,1),
    0 0 220px rgba(59,130,246,1),
    0 46px 120px rgba(0,0,0,1);
    transform: translateY(0) scale(1.06);
    opacity: 1;
}

/* Active image: very bright and punchy */
.fxco .fxco-feature.fxco-card-active .fxco-feature-media img {
    filter: brightness(2.4) contrast(1.35);
}

/* Inline 'Unfair Advantage' block between workflow cards */
.fxco .fxco-unfair-inline {
    max-width: 640px;
    margin: 80px auto 56px;
    text-align: center;
}

/* .fxco .fxco-unfair-inline-title (unused) */.fxco .fxco-unfair-inline-title {
    font-size: 1.9rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
}

.fxco .fxco-unfair-inline-body {
    max-width: 620px;
    margin: 0 auto;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(226,232,240,0.9);
}

/* Inline CTA under Unfair Advantage block */
.fxco .fxco-inline-cta {
    margin-top: 22px;
}

/* Bottom CTA spacing */
.fxco .fxco-cta-bottom {
    margin-top: 28px;
    display: inline-flex;
}

/* ============================== */
/*  MAGNETIC HOVER GLOW + CURSOR  */
/* ============================== */

/* Shared magnetic styling for cards + buttons */
.fxco .fxco-card,
.fxco .fxco-feature,
.fxco .fxco-btn {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Glow that follows the cursor on cards */
.fxco .fxco-card::after,
.fxco .fxco-feature::after {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%),
      rgba(56,189,248,0.25),
      transparent 60%);
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    transition: opacity 0.22s ease-out;
}

.fxco .fxco-card.fxco-magnetic-on::after,
.fxco .fxco-feature.fxco-magnetic-on::after {
    opacity: 1;
}

/* Glow that follows cursor on CTA buttons */
.fxco .fxco-btn::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%),
      rgba(248,250,252,0.38),
      transparent 65%);
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    transition: opacity 0.18s ease-out;
}

.fxco .fxco-btn.fxco-magnetic-on::after {
    opacity: 1;
}

/* ============================== */
/*  MINI AUDIO PLAYER STYLING     */
/* ============================== */

.fxco .fxco-audio {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(148,163,184,0.55);
}

.fxco .fxco-audio-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muter);
    margin-bottom: 8px;
}

.fxco .fxco-audio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.fxco .fxco-audio-chip {
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.7);
    color: var(--ink2);
    cursor: pointer;
    transition: background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.16s ease;
}

.fxco .fxco-audio-chip:hover {
    background: rgba(37,99,235,0.96);
    border-color: #93c5fd;
    color: #e5f2ff;
    transform: translateY(-1px);
}

.fxco .fxco-audio-chip.fxco-audio-active {
    background: linear-gradient(120deg, var(--g1), var(--g2));
    border-color: #7dd3fc;
    color: #020617;
}

.fxco .fxco-audio-el {
    width: 100%;
    max-width: 100%;
}

/* Make the browser audio bar feel slim and unobtrusive */
.fxco .fxco-audio-el {
    height: 30px;
}

/* Small tweak for very narrow screens so audio doesn’t crush layout */
@media (max-width: 480px) {
    .fxco .fxco-audio-row {
        gap: 6px;
    }

    .fxco .fxco-audio-chip {
        font-size: 10px;
        padding: 5px 9px;
    }
}

/* === FXCO FOOTER === */
.fxco-footer {
    border-top: 1px solid rgba(148,163,184,0.35);
    background: rgba(5,8,20,0.96);
    padding: 18px 0 22px;
}

.fxco-footer-inner {
    text-align: center;
    font-size: 12px;
    color: var(--ink2);
}

.fxco-footer-inner a {
    color: var(--ink2);
    text-decoration: none;
}

.fxco-footer-inner a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.fxco-footer-inner .fxco-footer-links {
    margin-bottom: 6px;
}

.fxco-footer-inner .fxco-footer-meta {
    opacity: 0.9;
}


/* === FX TRAINING HUB MODAL === */
.fxco-modal-backdrop {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(37,99,235,0.55), transparent 60%),
              radial-gradient(circle at 90% 100%, rgba(236,72,153,0.45), transparent 65%),
              rgba(2,6,23,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease-out;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    z-index: 80;
}

.fxco-modal-backdrop.fxco-modal-open {
    opacity: 1;
    pointer-events: auto;
}

.fxco-modal-shell {
    position: relative;
    max-width: 960px;
    width: 100%;
    border-radius: 24px;
    padding: 18px 18px 20px;
    background: radial-gradient(circle at 0 0, rgba(248,250,252,0.12), transparent 55%),
              linear-gradient(to bottom right, rgba(15,23,42,0.98), rgba(15,23,42,0.96));
    box-shadow: 0 24px 80px rgba(15,23,42,0.95),
    0 0 90px rgba(59,130,246,0.65);
    border: 1px solid rgba(148,163,253,0.55);
}

.fxco-modal-media {
    border-radius: 18px;
    overflow: hidden;
    background: black;
}

.fxco-modal-video {
    display: block;
    width: 100%;
    height: auto;
}

.fxco-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,253,0.65);
    background: radial-gradient(circle at 0 0, rgba(248,250,252,0.14), transparent 55%);
    color: #e5e7eb;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(15,23,42,0.75);
}

.fxco-modal-close:hover {
    background: radial-gradient(circle at 0 0, rgba(248,250,252,0.22), transparent 55%);
}

@media (max-width: 640px) {
    .fxco-modal-shell {
        padding: 14px 12px 16px;
        border-radius: 20px;
    }

    .fxco-modal-backdrop {
        padding: 16px;
    }
}

/* ================================================= */
/*  FINAL PRICE LOCK — FIXED & ISOLATED (v2.9)       */
/* ================================================= */

.fxco .fxco-price-lock-line {
    max-width: 720px;
    margin: 26px auto 28px;
    font-size: 15px;
    line-height: 1.8;
    color: #fefce8;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-shadow: 0 0 22px rgba(250,250,210,0.65);
}

/* HARD ISOLATION — KILLS ALL INHERITED SCALE */
.fxco .fxco-price-panel,
.fxco .fxco-price-panel * {
    transform: none !important;
    scale: 1 !important;
}

.fxco .fxco-price-panel {
    max-width: 840px;
    margin: 0 auto;
    padding: 36px 30px 38px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 0 0, rgba(255,255,255,0.14), transparent 60%),
        linear-gradient(to bottom right, rgba(15,23,42,0.98), rgba(15,23,42,0.94));
    border: 1px solid rgba(148,163,253,0.65);
    box-shadow:
        0 32px 96px rgba(15,23,42,0.95),
        0 0 140px rgba(56,189,248,0.28);
    text-align: center;
}

.fxco .fxco-price-eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(226,232,240,0.92);
    margin-bottom: 8px;
}

/* THE NUMBER — NO CLAMP, NO SCALE */
.fxco .fxco-price-main {
    font-size: 190px !important;
    font-weight: 1000;
    line-height: 0.9;
    letter-spacing: -0.055em;
    margin: 40px 0 32px;
    color: #ffffff;
    text-shadow:
        0 0 48px rgba(56,189,248,0.9),
        0 0 130px rgba(168,85,247,0.7);
}

/* stack /monthly */
.fxco .fxco-price-main span {
    display: block;
    margin-top: 12px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.18em;
    opacity: 0.75;
}

.fxco .fxco-price-sub {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink2);
    margin-top: 6px;
}

.fxco .fxco-price-sub-strong {
    font-weight: 700;
}

.fxco .fxco-price-footnote {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(148,163,184,0.96);
    font-style: italic;
}

.fxco .fxco-price-panel .fxco-btn {
    margin-top: 28px;
}

@media (max-width: 640px) {
    .fxco .fxco-price-main {
        font-size: 120px !important;
    }
}