* { box-sizing: border-box; }
        body { background: var(--bg0); color: var(--txt); font-family: 'Barlow', sans-serif; }

        /* ── HERO ── */
        .ff-hero {
            background: var(--bg1);
            border-bottom: 1px solid var(--bg3);
            padding: 64px 0 52px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .ff-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 700px 260px at 50% -60px, rgba(244,165,0,.07) 0%, transparent 70%),
                radial-gradient(ellipse 400px 200px at 20% 120%, rgba(88,101,242,.05) 0%, transparent 70%);
            pointer-events: none;
        }
        /* subtle diagonal line texture */
        .ff-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 40px,
                rgba(255,255,255,.012) 40px,
                rgba(255,255,255,.012) 41px
            );
            pointer-events: none;
        }
        .ff-hero-inner { position: relative; z-index: 1; }
        .ff-eyebrow {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin: 0 0 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .ff-eyebrow::before,
        .ff-eyebrow::after {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--gold);
            opacity: .4;
        }
        .ff-hero h1 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(42px, 8vw, 80px);
            font-weight: 900;
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 3px;
            margin: 0 0 14px;
            line-height: .95;
        }
        .ff-hero h1 span { color: var(--gold); }
        .ff-hero p {
            color: var(--sub);
            font-size: 15px;
            max-width: 480px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ── MAIN LAYOUT ── */
        .ff-body {
            max-width: 1100px;
            margin: 0 auto;
            padding: 64px 32px 80px;
        }

        /* ── DISCORD CARD (hero widget) ── */
        .ff-discord-card {
            background: var(--bg1);
            border: 1px solid var(--bg3);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            margin-bottom: 48px;
        }
        /* gold top-bar accent */
        .ff-discord-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), rgba(244,165,0,.2), transparent);
        }
        .ff-discord-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 320px;
        }
        /* LEFT — server identity */
        .ff-server-side {
            padding: 48px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid var(--bg3);
            position: relative;
        }
        .ff-server-side::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 300px 300px at 0% 50%, rgba(244,165,0,.04), transparent 70%);
            pointer-events: none;
        }
        .ff-server-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--bg3);
            border: 3px solid var(--gold-border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }
        /* Server pfp placeholder — boxing glove icon in gold */
        .ff-server-avatar .pfp-icon {
            font-size: 36px;
            color: var(--gold);
            line-height: 1;
        }
        /* If you have an actual server pfp image, replace the icon with:
           <img src="path/to/pfp.png" alt="Server PFP" style="width:100%;height:100%;object-fit:cover"> */
        .ff-server-name {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 28px;
            font-weight: 900;
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 1px;
            margin: 0 0 6px;
            position: relative; z-index: 1;
        }
        .ff-server-tag {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin: 0 0 20px;
            position: relative; z-index: 1;
        }
        /* stats row */
        .ff-server-stats {
            display: flex;
            gap: 24px;
            position: relative; z-index: 1;
        }
        .ff-stat {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .ff-stat-val {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 22px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
        }
        .ff-stat-lbl {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--sub);
        }
        .ff-stat-dot {
            display: inline-block;
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #22c55e;
            margin-right: 5px;
            animation: ffBlink 2s ease-in-out infinite;
        }
        @keyframes ffBlink { 0%,100%{opacity:1} 50%{opacity:.3} }

        /* RIGHT — CTA side */
        .ff-cta-side {
            padding: 48px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
            position: relative;
        }
        .ff-cta-side::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 280px 280px at 100% 50%, rgba(88,101,242,.06), transparent 70%);
            pointer-events: none;
        }
        .ff-cta-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--sub);
            position: relative; z-index: 1;
        }
        .ff-cta-heading {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 900;
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 1px;
            line-height: 1.05;
            margin: 0;
            position: relative; z-index: 1;
        }
        .ff-cta-heading span { color: var(--gold); }
        .ff-cta-desc {
            font-size: 14px;
            color: var(--sub);
            line-height: 1.65;
            max-width: 340px;
            position: relative; z-index: 1;
        }
        .ff-discord-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--discord);
            color: #fff;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 13px 26px;
            border-radius: 5px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background .2s, transform .15s, box-shadow .2s;
            align-self: flex-start;
            position: relative; z-index: 1;
        }
        .ff-discord-btn:hover {
            background: #4752c4;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(88,101,242,.35);
        }
        .ff-discord-btn i { font-size: 16px; }

        /* ── WHAT'S INSIDE — feature strips ── */
        .ff-section-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--sub);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .ff-section-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--bg3);
        }

        .ff-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 48px;
        }
        .ff-feat {
            background: var(--bg1);
            border: 1px solid var(--bg3);
            border-radius: 8px;
            padding: 24px 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: border-color .25s, transform .25s;
        }
        .ff-feat:hover {
            border-color: var(--gold-border);
            transform: translateY(-4px);
        }
        .ff-feat-icon {
            width: 40px; height: 40px;
            border-radius: 6px;
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            color: var(--gold);
        }
        .ff-feat-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 15px;
            font-weight: 900;
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .ff-feat-desc {
            font-size: 12.5px;
            color: var(--sub);
            line-height: 1.55;
        }

        /* ── HOW IT WORKS steps ── */
        .ff-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            background: var(--bg1);
            border: 1px solid var(--bg3);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 48px;
        }
        .ff-step {
            padding: 28px 24px;
            position: relative;
            text-align: center;
        }
        /* divider between steps */
        .ff-step + .ff-step::before {
            content: '';
            position: absolute;
            left: 0; top: 20%; bottom: 20%;
            width: 1px;
            background: var(--bg3);
        }
        .ff-step-num {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 42px;
            font-weight: 900;
            color: var(--bg3);
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }
        .ff-step-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 14px;
            font-weight: 900;
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .ff-step-desc {
            font-size: 12px;
            color: var(--sub);
            line-height: 1.5;
        }

        /* ── BOTTOM CTA BANNER ── */
        .ff-banner {
            background: var(--bg1);
            border: 1px solid var(--bg3);
            border-radius: 10px;
            padding: 40px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            position: relative;
            overflow: hidden;
        }
        .ff-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--discord), transparent);
        }
        .ff-banner::after {
            content: '';
            position: absolute;
            right: -60px; top: -60px;
            width: 280px; height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(88,101,242,.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .ff-banner-text { position: relative; z-index: 1; }
        .ff-banner-text h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 28px;
            font-weight: 900;
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 1px;
            margin: 0 0 6px;
        }
        .ff-banner-text h3 span { color: var(--gold); }
        .ff-banner-text p {
            font-size: 13px;
            color: var(--sub);
            margin: 0;
        }
        .ff-banner-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #fff;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            border: 1px solid var(--discord);
            transition: background .2s, transform .15s, box-shadow .2s;
            flex-shrink: 0;
            position: relative; z-index: 1;
        }
        .ff-banner-btn:hover {
            background: var(--discord);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(88,101,242,.3);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .ff-discord-inner { grid-template-columns: 1fr; }
            .ff-server-side { border-right: none; border-bottom: 1px solid var(--bg3); padding: 36px 28px; }
            .ff-cta-side { padding: 36px 28px; }
            .ff-features { grid-template-columns: repeat(2, 1fr); }
            .ff-steps { grid-template-columns: repeat(2, 1fr); }
            .ff-step + .ff-step::before { display: none; }
            .ff-step:nth-child(2n)::before { display: none; }
            .ff-banner { flex-direction: column; align-items: flex-start; padding: 32px 28px; }
        }
        @media (max-width: 580px) {
            .ff-body { padding: 40px 16px 64px; }
            .ff-features { grid-template-columns: 1fr; }
            .ff-steps { grid-template-columns: 1fr; }
            .ff-banner-text h3 { font-size: 22px; }
        }
