/* jpskill.com/FX/ — 本気FXトレーダー向けアグレッシブテーマ */

:root {
  color-scheme: dark;
  --fx-bg: #0a0e17;
  --fx-bg2: #12172a;
  --fx-panel: #171d2f;
  --fx-panel2: #1e2438;
  --fx-border: #2a3452;
  --fx-text: #ffffff;
  --fx-text2: #c0c8d8;
  --fx-text3: #7a869a;
  --fx-red: #dc2626;
  --fx-red-dark: #991b1b;
  --fx-red-glow: #ef4444;
  --fx-gold: #f5b800;
  --fx-gold-dark: #b8890a;
  --fx-green: #16c784;
  --fx-green-dark: #0e8a5c;
  --fx-bear: #ea3943;
  --fx-wrap: 1200px;
  --fx-radius: 4px;
  --fx-radius-sm: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--fx-bg); }
body {
  background: var(--fx-bg);
  color: var(--fx-text);
  font-family: 'Inter', 'Zen Kaku Gothic New', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fx-red-glow); text-decoration: none; transition: color .15s; }
a:hover { color: var(--fx-gold); }

.fx-wrap { max-width: var(--fx-wrap); margin: 0 auto; padding: 0 24px; }

/* ==== Header ==== */
.fx-header {
  background: linear-gradient(90deg, #000000 0%, #0a0e17 100%);
  border-bottom: 2px solid var(--fx-red);
  padding: 16px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}
.fx-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--fx-wrap); margin: 0 auto; padding: 0 24px;
}
.fx-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--fx-text); text-decoration: none;
}
.fx-brand-mark {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--fx-red);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.fx-brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fx-text2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.fx-header-cta a {
  background: var(--fx-red);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--fx-radius);
  transition: all .15s;
  display: inline-block;
}
.fx-header-cta a:hover { background: var(--fx-red-glow); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5); }
.fx-back-link { font-size: 12px; color: var(--fx-text3); }
.fx-back-link:hover { color: var(--fx-gold); }

/* ==== Hero ==== */
.fx-hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(245, 184, 0, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(220, 38, 38, 0.18) 0%, transparent 50%),
    linear-gradient(180deg, #000 0%, var(--fx-bg) 100%);
  position: relative;
  overflow: hidden;
}
/* 動くスピードライン */
.fx-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 60px, rgba(220, 38, 38, 0.04) 60px 62px),
    repeating-linear-gradient(115deg, transparent 0 120px, rgba(245, 184, 0, 0.03) 120px 122px);
  animation: speed-lines 4s linear infinite;
  pointer-events: none;
}
@keyframes speed-lines {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-120px); }
}
/* 巨大な "¥" 記号背景 */
.fx-hero::after {
  content: "¥";
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 640px;
  color: rgba(245, 184, 0, 0.04);
  line-height: 0.8;
  letter-spacing: -0.1em;
  pointer-events: none;
  z-index: 0;
}
.fx-hero > .fx-wrap { position: relative; z-index: 1; }

.fx-hero-eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, var(--fx-red) 0%, var(--fx-gold) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(245, 184, 0, 0.4);
  animation: eyebrow-pulse 2s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(245, 184, 0, 0.4); }
  50%      { box-shadow: 0 0 30px rgba(245, 184, 0, 0.8), 0 0 60px rgba(220, 38, 38, 0.4); }
}

.fx-hero-title {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fx-text);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.fx-hero-title .accent {
  color: var(--fx-red);
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.6), 0 0 60px rgba(220, 38, 38, 0.3);
}
.fx-hero-title .gold {
  background: linear-gradient(180deg, #ffdd44 0%, #f5b800 40%, #b8890a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(245, 184, 0, 0.5);
  filter: drop-shadow(0 4px 10px rgba(245, 184, 0, 0.4));
}
.fx-hero-title .huge {
  font-size: 1.4em;
  display: inline-block;
  transform: skewX(-6deg);
  padding: 0 4px;
}
.fx-hero-lead {
  font-size: 17px;
  color: var(--fx-text2);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.85;
}
.fx-hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ==== Buttons ==== */
.fx-btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--fx-radius);
  transition: all .18s;
  border: none; cursor: pointer;
  position: relative;
  overflow: hidden;
}
/* ボタンにきらめき */
.fx-btn::after {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btn-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shine {
  0%, 20%   { left: -60%; }
  60%, 100% { left: 120%; }
}
.fx-btn-primary {
  background: linear-gradient(180deg, var(--fx-red-glow) 0%, var(--fx-red) 50%, var(--fx-red-dark) 100%);
  color: #fff;
  box-shadow:
    0 4px 0 var(--fx-red-dark),
    0 8px 24px rgba(220, 38, 38, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
  animation: primary-pulse 2.4s ease-in-out infinite;
}
@keyframes primary-pulse {
  0%, 100% { box-shadow: 0 4px 0 var(--fx-red-dark), 0 8px 24px rgba(220, 38, 38, 0.5), inset 0 1px 0 rgba(255,255,255,0.2); }
  50%      { box-shadow: 0 4px 0 var(--fx-red-dark), 0 8px 40px rgba(220, 38, 38, 0.9), 0 0 20px rgba(245, 184, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.2); }
}
.fx-btn-primary:hover {
  background: linear-gradient(180deg, #ff5555 0%, var(--fx-red-glow) 50%, var(--fx-red) 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 0 var(--fx-red-dark), 0 12px 30px rgba(220, 38, 38, 0.8);
}
.fx-btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--fx-red-dark);
}
.fx-btn-ghost {
  background: transparent;
  color: var(--fx-text);
  border: 2px solid var(--fx-border);
}
.fx-btn-ghost:hover {
  border-color: var(--fx-red);
  color: var(--fx-red-glow);
}
.fx-btn-large {
  padding: 22px 48px;
  font-size: 16px;
}
.fx-btn-gold {
  background: linear-gradient(180deg, #ffe680 0%, var(--fx-gold) 45%, #d99a0a 100%);
  color: #1a1000;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
  box-shadow:
    0 4px 0 var(--fx-gold-dark),
    0 8px 24px rgba(245, 184, 0, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.5);
  animation: gold-pulse 2.4s ease-in-out infinite;
}
@keyframes gold-pulse {
  0%, 100% { box-shadow: 0 4px 0 var(--fx-gold-dark), 0 8px 24px rgba(245, 184, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.5); }
  50%      { box-shadow: 0 4px 0 var(--fx-gold-dark), 0 8px 40px rgba(255, 210, 60, 0.95), 0 0 24px rgba(220, 38, 38, 0.3), inset 0 1px 0 rgba(255,255,255,0.5); }
}
.fx-btn-gold:hover {
  background: linear-gradient(180deg, #fff2a0 0%, #ffcd2e 45%, var(--fx-gold-dark) 100%);
  color: #000;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 0 var(--fx-gold-dark), 0 12px 30px rgba(245, 184, 0, 0.9);
}

/* ==== Ticker/stats bar ==== */
.fx-tickers {
  background: linear-gradient(90deg, #000 0%, var(--fx-bg2) 50%, #000 100%);
  border-top: 2px solid var(--fx-red);
  border-bottom: 1px solid var(--fx-gold);
  padding: 14px 0;
  overflow: hidden;
  font-family: 'Inter', monospace;
  font-size: 13px;
  box-shadow: inset 0 0 40px rgba(220, 38, 38, 0.15);
}
.fx-tickers-inner {
  display: flex; gap: 40px; padding: 0 24px;
  animation: ticker-scroll 25s linear infinite;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fx-ticker { display: inline-flex; gap: 8px; align-items: center; padding: 0 12px; border-right: 1px solid rgba(255,255,255,0.08); }
.fx-ticker-pair { color: var(--fx-text2); font-weight: 700; }
.fx-ticker-price { color: var(--fx-text); font-weight: 800; }
.fx-ticker-up { color: var(--fx-green); font-weight: 800; text-shadow: 0 0 8px rgba(22, 199, 132, 0.6); }
.fx-ticker-up::before { content: "▲ "; }
.fx-ticker-down { color: var(--fx-bear); font-weight: 800; text-shadow: 0 0 8px rgba(234, 57, 67, 0.6); }
.fx-ticker-down::before { content: "▼ "; }

/* ==== Hub stats ==== */
.fx-hub-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--fx-border);
  border-bottom: 1px solid var(--fx-border);
  margin: 40px 0;
}
.fx-hub-stat { flex: 1; min-width: 140px; }
.fx-hub-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffdd44 0%, var(--fx-gold) 50%, var(--fx-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 2px 8px rgba(245, 184, 0, 0.3));
}
.fx-hub-stat-num .unit { font-size: 16px; color: var(--fx-text2); font-weight: 700; margin-left: 4px; -webkit-text-fill-color: var(--fx-text2); }
.fx-hub-stat-label { font-size: 11px; color: var(--fx-text3); margin-top: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; }

/* ==== DREAM TARGETS ==== */
.fx-dream {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at center, rgba(245, 184, 0, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, #000 0%, var(--fx-bg) 100%);
  border-top: 2px solid var(--fx-gold);
  border-bottom: 2px solid var(--fx-red);
  position: relative;
  overflow: hidden;
}
.fx-dream::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 40px, rgba(245, 184, 0, 0.03) 40px 42px);
  animation: dream-flow 6s linear infinite;
  pointer-events: none;
}
@keyframes dream-flow {
  0%   { transform: translateX(0); }
  100% { transform: translateX(80px); }
}
.fx-dream-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: var(--fx-text);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
}
.fx-dream-title .accent {
  background: linear-gradient(180deg, #ffdd44 0%, var(--fx-gold) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.fx-dream-lead { text-align: center; color: var(--fx-text2); margin-bottom: 40px; position: relative; }
.fx-dream-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  position: relative;
}
.fx-dream-card {
  background: linear-gradient(180deg, var(--fx-panel) 0%, var(--fx-bg) 100%);
  border: 1px solid var(--fx-border);
  padding: 32px 20px;
  text-align: center;
  border-radius: var(--fx-radius);
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.fx-dream-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fx-red), var(--fx-gold));
}
.fx-dream-card:hover {
  transform: translateY(-4px);
  border-color: var(--fx-gold);
  box-shadow: 0 12px 30px rgba(245, 184, 0, 0.25);
}
.fx-dream-level {
  font-size: 11px; color: var(--fx-red-glow); font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px;
}
.fx-dream-num {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffdd44 0%, var(--fx-gold) 50%, var(--fx-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 12px rgba(245, 184, 0, 0.35));
}
.fx-dream-num .unit { font-size: 18px; color: var(--fx-text2); font-weight: 700; -webkit-text-fill-color: var(--fx-text2); }
.fx-dream-desc { font-size: 12px; color: var(--fx-text3); margin-top: 12px; }

/* ==== Section ==== */
.fx-section {
  padding: 72px 0;
}
.fx-section-alt { background: var(--fx-bg2); }
.fx-section-header { margin-bottom: 40px; }
.fx-section-eyebrow {
  color: var(--fx-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fx-section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--fx-text);
  margin-bottom: 12px;
}
.fx-section-lead { font-size: 15px; color: var(--fx-text2); max-width: 640px; }

/* ==== Program cards (grid) ==== */
.fx-program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.fx-program-card {
  background: var(--fx-panel);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius);
  padding: 28px 24px;
  color: var(--fx-text);
  text-decoration: none;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: all .18s;
  overflow: hidden;
}
.fx-program-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fx-red), var(--fx-red-glow), var(--fx-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.fx-program-card:hover {
  border-color: var(--fx-gold);
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow:
    0 20px 40px rgba(220, 38, 38, 0.35),
    0 0 30px rgba(245, 184, 0, 0.2);
  color: var(--fx-text);
}
.fx-program-card:hover::before { transform: scaleX(1); }

.fx-program-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--fx-radius-sm);
}
.fx-badge-active { background: var(--fx-green); color: #000; }
.fx-badge-pending { background: var(--fx-panel2); color: var(--fx-gold); border: 1px solid var(--fx-gold); }
.fx-program-category {
  font-size: 11px;
  color: var(--fx-red-glow);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fx-program-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--fx-text);
  letter-spacing: -0.005em;
}
.fx-program-sub {
  font-size: 13px;
  color: var(--fx-text2);
  line-height: 1.7;
}
.fx-program-more {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--fx-red-glow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.fx-program-more::after { content: " →"; }

/* ==== LP specific ==== */
.fx-lp-hero {
  padding: 72px 0 48px;
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.10) 0%, transparent 70%),
    var(--fx-bg);
  border-bottom: 1px solid var(--fx-border);
}
.fx-lp-category {
  display: inline-block;
  background: var(--fx-red);
  color: #fff;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-radius: var(--fx-radius-sm);
}
.fx-lp-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.fx-lp-title .accent { color: var(--fx-red); }
.fx-lp-lead {
  font-size: 17px;
  color: var(--fx-text2);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 680px;
}
.fx-lp-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding: 24px;
  background: var(--fx-panel);
  border: 1px solid var(--fx-border);
  border-left: 4px solid var(--fx-red);
  margin-bottom: 32px;
}
.fx-lp-stat-num { font-size: 24px; font-weight: 900; color: var(--fx-red); font-family: 'Inter', sans-serif; }
.fx-lp-stat-num .unit { font-size: 13px; color: var(--fx-text2); font-weight: 700; margin-left: 2px; }
.fx-lp-stat-label { font-size: 11px; color: var(--fx-text3); margin-top: 4px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Body */
.fx-lp-body { padding: 56px 0; }
.fx-lp-block { margin-bottom: 56px; }
.fx-lp-block h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--fx-text);
  border-left: 5px solid var(--fx-red);
  padding-left: 16px;
  margin-bottom: 24px;
  line-height: 1.3;
}
.fx-lp-block h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--fx-red-glow);
  margin: 24px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--fx-red);
}
.fx-lp-block p { color: var(--fx-text2); margin-bottom: 16px; line-height: 1.95; }
.fx-lp-block ul { margin: 12px 0 20px 24px; color: var(--fx-text2); }
.fx-lp-block ul li { margin-bottom: 8px; }
.fx-lp-block strong { color: var(--fx-gold); font-weight: 700; }
.fx-lp-block a { color: var(--fx-red-glow); border-bottom: 1px dotted var(--fx-red); }

/* Pain / Fight box */
.fx-pain {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.05) 100%);
  border: 1px solid var(--fx-red-dark);
  border-left: 4px solid var(--fx-red);
  padding: 32px;
  margin-bottom: 40px;
}
.fx-pain h2 { border-left: none; padding-left: 0; font-size: 22px; }
.fx-pain ul { list-style: none; margin-left: 0; }
.fx-pain ul li {
  padding-left: 28px; position: relative; margin-bottom: 10px;
  color: var(--fx-text);
}
.fx-pain ul li::before {
  content: "×"; color: var(--fx-red); font-weight: 900; font-size: 20px;
  position: absolute; left: 0; top: -3px;
}

/* Comparison table */
.fx-compare {
  width: 100%; border-collapse: collapse;
  margin: 20px 0;
  background: var(--fx-panel);
  border: 1px solid var(--fx-border);
  font-size: 13px;
}
.fx-compare th {
  background: var(--fx-panel2);
  color: var(--fx-red-glow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px;
  text-align: left;
  border-bottom: 2px solid var(--fx-red);
  font-size: 11px;
}
.fx-compare td { padding: 14px; border-bottom: 1px solid var(--fx-border); color: var(--fx-text2); }
.fx-compare tr.recommended td { background: rgba(220, 38, 38, 0.08); color: var(--fx-text); font-weight: 600; }
.fx-compare tr.recommended td:first-child { border-left: 3px solid var(--fx-red); }

/* Feature grid */
.fx-feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.fx-feature-card {
  background: var(--fx-panel);
  border: 1px solid var(--fx-border);
  padding: 24px 20px;
  border-radius: var(--fx-radius);
  position: relative;
  transition: all .18s;
}
.fx-feature-card:hover { border-color: var(--fx-red); transform: translateY(-2px); }
.fx-feature-num {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--fx-red);
  line-height: 1;
  opacity: 0.4;
  position: absolute;
  top: 12px; right: 16px;
}
.fx-feature-card h3 { font-size: 16px; font-weight: 800; color: var(--fx-text); border: none; padding: 0; margin: 0 0 10px; }
.fx-feature-card p { font-size: 13px; color: var(--fx-text2); line-height: 1.75; margin: 0; }

/* CTA sections */
.fx-cta-block {
  background: linear-gradient(135deg, #000 0%, var(--fx-bg2) 100%);
  border: 2px solid var(--fx-red);
  padding: 40px;
  margin: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fx-cta-block::before {
  content: "";
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(220, 38, 38, 0.05) 20px, rgba(220, 38, 38, 0.05) 21px);
  pointer-events: none;
}
.fx-cta-copy {
  font-size: 20px; font-weight: 800; color: var(--fx-text); margin-bottom: 24px;
  position: relative;
}
.fx-cta-note {
  font-size: 12px; color: var(--fx-text3); margin-top: 16px;
  position: relative;
}
.fx-final-cta {
  background: linear-gradient(135deg, var(--fx-red-dark) 0%, #000 100%);
  padding: 64px 40px;
  margin: 56px 0;
  border: 2px solid var(--fx-red);
  text-align: center;
  position: relative;
}
.fx-final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(255, 255, 255, 0.02) 30px, rgba(255, 255, 255, 0.02) 31px);
  pointer-events: none;
}
.fx-final-cta-eyebrow { color: var(--fx-gold); font-size: 12px; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 16px; position: relative; }
.fx-final-cta-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
  position: relative;
}

/* Steps */
.fx-steps { list-style: none; padding: 0; counter-reset: step; }
.fx-steps li {
  padding: 24px 24px 24px 80px;
  background: var(--fx-panel);
  border-left: 3px solid var(--fx-red);
  margin-bottom: 12px;
  position: relative;
  counter-increment: step;
}
.fx-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--fx-red);
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  opacity: 0.6;
}
.fx-steps h3 { font-size: 16px; font-weight: 800; color: var(--fx-text); margin: 0 0 6px; padding: 0; border: none; }
.fx-steps p { font-size: 13px; color: var(--fx-text2); margin: 0; line-height: 1.75; }

/* FAQ */
.fx-faq details {
  background: var(--fx-panel);
  border: 1px solid var(--fx-border);
  border-left: 3px solid var(--fx-red);
  margin-bottom: 8px;
  padding: 16px 20px;
}
.fx-faq details[open] { border-color: var(--fx-red-glow); }
.fx-faq summary {
  font-weight: 700;
  color: var(--fx-text);
  cursor: pointer;
  padding: 6px 0;
  font-size: 15px;
  list-style: none;
}
.fx-faq summary::-webkit-details-marker { display: none; }
.fx-faq summary::before {
  content: "▸ ";
  color: var(--fx-red);
  font-weight: 900;
  margin-right: 6px;
}
.fx-faq details[open] summary::before { content: "▾ "; }
.fx-faq p { padding: 12px 0 4px; color: var(--fx-text2); font-size: 14px; line-height: 1.85; margin: 0; }

/* Risk warning */
.fx-risk {
  background: rgba(234, 57, 67, 0.1);
  border: 1px solid var(--fx-bear);
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 13px;
  color: var(--fx-text2);
  line-height: 1.85;
}
.fx-risk strong { color: var(--fx-bear); }

/* Sticky mobile CTA */
.fx-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--fx-red);
  padding: 12px 16px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.fx-sticky-cta a {
  color: #fff; font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.05em;
  display: block; text-decoration: none;
}
@media (min-width: 768px) { .fx-sticky-cta { display: none; } }

/* Footer */
.fx-footer {
  background: #000;
  border-top: 2px solid var(--fx-red);
  padding: 40px 0 24px;
  color: var(--fx-text3);
  font-size: 13px;
}
.fx-footer-nav { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }
.fx-footer-nav a { color: var(--fx-text2); }
.fx-footer-nav a:hover { color: var(--fx-red); }
.fx-footer-note { font-size: 11px; color: var(--fx-text3); line-height: 1.85; }

/* Mobile */
@media (max-width: 720px) {
  .fx-hero { padding: 48px 0 32px; }
  .fx-section { padding: 48px 0; }
  .fx-lp-hero { padding: 48px 0 32px; }
  .fx-final-cta { padding: 40px 24px; }
  .fx-hub-stats { gap: 24px; padding: 20px 0; margin: 24px 0; }
  .fx-hub-stat-num { font-size: 28px; }
  .fx-header-cta { display: none; }
  body { padding-bottom: 60px; }
}
