/* =============================================
   AllInNer LP  EProfessional Style
   ============================================= */

:root {
  --bg:        #020204;
  --bg-alt:    #050508;
  --surface:   rgba(10, 10, 15, 0.6);
  --border:    rgba(255, 215, 0, 0.15); /* Gold tinted border for luxury */
  --border-h:  rgba(255, 215, 0, 0.4);

  --text:      #ffffff;
  --muted:     #8a8a9e;
  --faint:     #3a3a50;

  --accent:    #00D2FF; /* Neon Cyan */       /* Blue */
  --accent-2:  #FFD700; /* Pure Gold */
  --gold:      #FFD700;       /* Gold */
  --green:     #00b87c;
  --red:       #e84545;

  --font-h:    'Outfit', sans-serif;
  --font-b:    'Inter', sans-serif;

  --r-card:    10px;
  --r-sm:      6px;
  --tr:        all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; border-radius: var(--r-card); }

/* --- PARTICLES BG --- */
#particles-bg {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1; /* Always behind everything */
  pointer-events: none; /* Let clicks pass through */
  opacity: 0.8;
}

/* ─── TYPOGRAPHY ─── */
h1 { font-family: var(--font-h); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; }
h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; line-height: 1.15; }
h3 { font-family: var(--font-h); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; line-height: 1.2; }
h4 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
p  { color: var(--muted); }

h1 em { font-style: normal; color: var(--accent); }

.sec-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.sec-title { margin-bottom: 1.2rem; }

.sec-body {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 3.5rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--r-sm);
  transition: var(--tr);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn.primary { background: linear-gradient(135deg, var(--accent-2), #B8860B); color: #000; font-weight: 800; border: none; box-shadow: 0 4px 25px rgba(255, 215, 0, 0.5); }
.btn.primary:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(255, 215, 0, 0.8); background: linear-gradient(135deg, #FFF8DC, #FFD700); }
.btn.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-h);
}
.btn.outline:hover { border-color: var(--accent); color: var(--accent); }
.btn.large { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  backdrop-filter: blur(20px);
  background: rgba(8,8,15,0.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem;
}
.logo {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text);
}
.footer-logo { font-size: 1rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--tr);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  border: 1px solid var(--border-h) !important;
  color: var(--text) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
}
.nav-cta:hover { border-color: var(--accent) !important; color: var(--accent) !important; background: rgba(79,158,255,0.06) !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.g1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(79,158,255,0.08) 0%, transparent 70%); top: -20%; left: -15%; }
.g2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%); bottom: 0; right: -10%; }
.g3 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(0,184,124,0.07) 0%, transparent 70%); top: -30%; left: 50%; transform: translateX(-50%); }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent-2);
}
.hero-left h1 { margin-bottom: 1.5rem; }
.hero-body { font-size: 1rem; color: var(--muted); margin-bottom: 2.2rem; }
.hero-cta { display: flex; gap: 1rem; margin-bottom: 2.5rem; }

.hero-spec-list { display: flex; flex-direction: column; gap: 0.6rem; }
.spec-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; color: var(--muted); }
.spec-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.chart-frame {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  /* overflow: hidden; Removed to allow annotations to pop out */
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  position: relative;
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.chart-frame:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.chart-top-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.bar-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--faint);
  display: block;
}
.bar-title { font-size: 0.78rem; color: var(--muted); margin-left: 0.5rem; font-family: monospace; }
.chart-top-bar { border-radius: 12px 12px 0 0; }
.chart-img { border-radius: 0 0 12px 12px; width: 100%; display: block; }

.chart-annotation {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  background: rgba(8,8,15,0.8);
  white-space: nowrap;
  animation: floatY 5s ease-in-out infinite;
}
.ca1 { top: 22%; left: -10px; border: 1px solid var(--accent); color: #fff; background: rgba(79,158,255,0.15); box-shadow: 0 0 20px rgba(79,158,255,0.4); animation-delay: 0s; z-index: 10; }
.ca2 { bottom: 28%; right: -10px; border: 1px solid var(--green); color: #fff; background: rgba(8,153,129,0.15); box-shadow: 0 0 20px rgba(8,153,129,0.4); animation-delay: 2.5s; z-index: 10; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }


/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.stat-item { text-align: center; }
.stat-val {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-lbl { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.05em; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ─── SECTIONS ─── */
.section { padding: 110px 0; }
.dark-section { background: var(--bg-alt); }

/* ─── FEATURE ROW ─── */
.feature-row {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 5rem;
  align-items: center;
}
.feature-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(79,158,255,0.25);
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 1.2rem;
}
.gold-tag {
  color: var(--accent-2);
  border-color: rgba(200,169,110,0.3);
}
.feature-text h3 { margin-bottom: 1rem; }
.feature-text > p { margin-bottom: 2rem; }
.feature-points { display: flex; flex-direction: column; gap: 1.5rem; }
.point { border-left: 1px solid var(--border); padding-left: 1.2rem; }
.point-label { display: block; font-weight: 600; color: var(--text); font-size: 0.92rem; margin-bottom: 0.3rem; }
.point p { font-size: 0.9rem; }
.feature-visual img { box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* ─── TYPE TABLE ─── */
.type-table {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 4rem;
}
.type-row {
  display: grid;
  grid-template-columns: 60px 200px 1fr;
  padding: 1.1rem 1.6rem;
  border-bottom: 1px solid var(--border);
  gap: 1.5rem;
  align-items: center;
  transition: background 0.2s;
}
.type-row:last-child { border-bottom: none; }
.type-header {
  background: rgba(255,255,255,0.02);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
.type-row:not(.type-header):hover { background: rgba(255,255,255,0.02); }
.type-n {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 900;
  color: var(--faint);
}
.type-n.accent { color: var(--accent); }
.type-n.gold { color: var(--accent-2); }
.type-name { font-weight: 600; font-size: 0.92rem; color: var(--text); }
.type-name.gold { color: var(--accent-2); }
.type-desc { color: var(--muted); font-size: 0.88rem; }
.gold-desc { color: var(--muted); }
.type-recommended { background: rgba(79,158,255,0.04); border-color: rgba(79,158,255,0.12); }
.type-recommended:hover { background: rgba(79,158,255,0.06) !important; }
.type-gold { background: rgba(200,169,110,0.04); border-color: rgba(200,169,110,0.15); }
.type-gold:hover { background: rgba(200,169,110,0.07) !important; }
.badge-inline {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  background: rgba(79,158,255,0.12);
  color: var(--accent);
  vertical-align: middle;
}
.gold-badge { background: rgba(200,169,110,0.12); color: var(--accent-2); }

/* ─── TYPE 6 DETAIL ─── */
.type6-detail {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 4rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 3rem;
}
.type6-left h3 { margin-bottom: 1rem; }
.type6-left > p { margin-bottom: 2rem; }
.steps { display: flex; flex-direction: column; gap: 1.6rem; margin-bottom: 2rem; }
.step { display: flex; align-items: flex-start; gap: 1rem; }
.step-n {
  min-width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content strong { display: block; color: var(--text); margin-bottom: 0.25rem; font-size: 0.92rem; }
.step-content p { font-size: 0.88rem; }
blockquote {
  border-left: 2px solid var(--accent-2);
  padding: 0.8rem 1.2rem;
  color: var(--accent-2);
  font-size: 0.9rem;
  font-style: italic;
  background: rgba(200,169,110,0.04);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.type6-right img { box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* ─── BOS GRID ─── */
.bos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.bos-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.8rem;
  transition: var(--tr);
}
.bos-card:hover { border-color: var(--border-h); }
.bos-card h4 { margin-bottom: 0.8rem; }
.bos-card p { font-size: 0.88rem; }
.bos-line {
  height: 2px;
  width: 100%;
  margin-bottom: 1.2rem;
  border-radius: 1px;
}
.solid-line { background: var(--green); }
.dashed-line { border-top: 2px dashed var(--red); background: none; }
.label-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.7rem; }
.lbl-green, .lbl-red, .lbl-gold {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  min-width: 48px;
  text-align: center;
}
.lbl-green { background: rgba(0,184,124,0.1); color: var(--green); border: 1px solid rgba(0,184,124,0.2); }
.lbl-red   { background: rgba(232,69,69,0.1);  color: var(--red);   border: 1px solid rgba(232,69,69,0.2);  }
.lbl-gold  { background: rgba(200,169,110,0.1); color: var(--accent-2); border: 1px solid rgba(200,169,110,0.2); }
.lbl-desc  { font-size: 0.84rem; color: var(--muted); }
.color-swatch { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.6rem; font-size: 0.85rem; color: var(--muted); }
.swatch { width: 14px; height: 14px; border-radius: 3px; flex-shrink: 0; }
.green-swatch { background: #089981; }
.red-swatch { background: #f23645; }
code { font-size: 0.82rem; background: rgba(255,255,255,0.06); padding: 0.1rem 0.4rem; border-radius: 3px; font-family: monospace; color: var(--text); }
.bos-card .note { font-size: 0.82rem; margin-top: 0.8rem; }
.bos-color-card { grid-column: span 1; }

/* ─── FVG ─── */
.fvg-layout {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 4rem;
  align-items: start;
}
.fvg-visual img { box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.fvg-modes { display: flex; flex-direction: column; gap: 1rem; }
.fvg-mode-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.4rem;
  transition: var(--tr);
}
.fvg-mode-card:hover { border-color: var(--border-h); }
.mode-tag {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.fvg-mode-card h4 { margin-bottom: 0.4rem; font-size: 0.95rem; }
.fvg-mode-card p { font-size: 0.87rem; }
.fvg-auto-note {
  background: rgba(200,169,110,0.04);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--r-card);
  padding: 1.1rem 1.4rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.fvg-auto-note strong { color: var(--accent-2); }

/* ─── MTF ─── */
.mtf-layout {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 5rem;
  align-items: center;
}
.mtf-text p { margin-bottom: 1rem; }
.mtf-mock {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.6rem;
  font-family: var(--font-b);
}
.mtf-head {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
}
.mtf-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.mtf-row:last-child { border-bottom: none; }
.mtf-tf { font-size: 0.82rem; color: var(--muted); width: 32px; }
.mtf-bar { flex: 1; height: 3px; background: var(--surface); border-radius: 2px; overflow: hidden; }
.mtf-fill { height: 100%; border-radius: 2px; }
.mtf-fill.bull { background: var(--green); }
.mtf-fill.neutral { background: var(--faint); }
.mtf-trend { font-size: 0.8rem; font-weight: 600; width: 32px; text-align: right; }
.bull-text { color: var(--green); }
.neutral-text { color: var(--faint); }

/* ─── LABEL GRID ─── */
.label-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.label-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.8rem;
  transition: var(--tr);
}
.label-card:hover { border-color: var(--border-h); }
.label-card h4 { margin-bottom: 0.8rem; }
.label-card p { font-size: 0.88rem; }

/* ─── SECURITY ─── */
.security-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.sec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2rem;
  transition: var(--tr);
}
.sec-card:hover { border-color: rgba(79,158,255,0.2); }
.sec-icon-wrap { margin-bottom: 1.4rem; }
.sec-icon-line {
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.sec-card h4 { margin-bottom: 0.8rem; }
.sec-card p { font-size: 0.88rem; }

/* ─── CTA ─── */
.cta-section {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,158,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}
.cta-inner h2 { margin-bottom: 1.2rem; }
.cta-inner p { color: var(--muted); margin-bottom: 2.5rem; }
.cta-note { margin-top: 1.5rem; font-size: 0.8rem; color: var(--faint); }

/* ─── FOOTER ─── */
footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: #04040a;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.copy { font-size: 0.82rem; color: var(--faint); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-right { order: -1; }
  .eyebrow { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-spec-list { align-items: center; }

  .feature-row, .type6-detail, .fvg-layout, .mtf-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .chart-frame { transform: none; max-width: 560px; margin: 0 auto; }
  .chart-frame:hover { transform: none; }

  .bos-grid { grid-template-columns: repeat(2, 1fr); }

  .type6-detail { padding: 2rem; }
  .cta-inner { padding: 3rem 2rem; }

  .sec-title { font-size: clamp(1.6rem, 4vw, 2.2rem); }

  /* Float annotations hidden on tablet to avoid overflow */
  .chart-annotation { display: none; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  /* General */
  .container { padding: 0 1.2rem; }
  .section { padding: 72px 0; }

  /* Navbar */
  .nav-inner { padding: 1rem 1.2rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .logo { font-size: 1.1rem; }

  /* Hero */
  .hero { padding: 90px 0 60px; min-height: auto; }
  .hero-left h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-body { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; align-items: center; gap: 0.8rem; }
  .hero-cta .btn { width: 100%; max-width: 320px; text-align: center; }
  .hero-spec-list { flex-direction: column; align-items: flex-start; align-self: stretch; }

  /* Stats */
  .stats-inner { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .stat-sep { display: none; }
  .stat-item { min-width: 80px; }
  .stat-val { font-size: 1.7rem; }

  /* Grids ↁEsingle column */
  .bos-grid,
  .label-grid,
  .security-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Type table */
  .type-row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    padding: 1rem 1rem;
    gap: 0.5rem 0.8rem;
  }
  .type-header { display: none; }
  .type-desc { grid-column: 2; font-size: 0.84rem; }
  .type-n { font-size: 0.9rem; }
  .type-name { font-size: 0.88rem; }

  /* Type 6 detail */
  .type6-detail { padding: 1.5rem; gap: 2rem; }
  .type6-detail { grid-template-columns: 1fr; }

  /* Feature row */
  .feature-row { gap: 2rem; }

  /* FVG layout */
  .fvg-layout { gap: 2rem; }

  /* MTF layout */
  .mtf-layout { gap: 2rem; }
  .mtf-mock { max-width: 100%; }

  /* Cards */
  .bos-card, .label-card, .sec-card { padding: 1.4rem; }

  /* CTA */
  .cta-section { padding: 80px 0; }
  .cta-inner { padding: 2.5rem 1.5rem; border-radius: 14px; }
  .cta-inner h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .cta-inner p { font-size: 0.95rem; }
  .btn.primary.large { width: 100%; max-width: 320px; padding: 1rem 1.5rem; }

  /* Section headers */
  .sec-header { text-align: left; }
  .sec-body { margin-bottom: 2.5rem; }

  /* Blockquote */
  blockquote { font-size: 0.85rem; }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .hero-left h1 { font-size: 1.85rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }

  .eyebrow { font-size: 0.7rem; }
  .badge-inline { display: none; }

  .type6-detail { padding: 1.2rem; }
  .steps { gap: 1.2rem; }

  .bos-line { margin-bottom: 0.8rem; }

  .cta-inner { padding: 2rem 1.2rem; }
  .cta-inner h2 { font-size: 1.5rem; }

  .stats-inner { gap: 1rem; }
  .stat-val { font-size: 1.5rem; }
  .stat-lbl { font-size: 0.7rem; }

  .nav-cta { padding: 0.4rem 0.9rem; font-size: 0.82rem; }
}


/* =============================================
   LUXURY UPGRADE OVERRIDES
   ============================================= */

/* Logo gradient */
.logo {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.35rem;
}
.footer-logo { font-size: 1.05rem; }

/* h1 em */
h1 em {
  background: linear-gradient(90deg, var(--accent) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* h3 gradient */
h3 {
  background: linear-gradient(135deg, #ffffff 60%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section title gradient */
.sec-title {
  background: linear-gradient(135deg, #ffffff 50%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label gradient */
.sec-label {
  background: linear-gradient(90deg, var(--accent), rgba(79,158,255,0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.22em;
}

/* Eyebrow gradient */
.eyebrow {
  background: linear-gradient(90deg, var(--accent-2), #e8c87a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow::before { background: var(--accent-2); }

/* Stat values */
.stat-val {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.2rem;
}

/* Stats strip */
.stats-strip {
  background: linear-gradient(180deg, rgba(79,158,255,0.04) 0%, var(--bg-alt) 100%);
  border-top: 1px solid rgba(79,158,255,0.12);
  border-bottom: 1px solid rgba(79,158,255,0.06);
}

/* Primary button */
.btn.primary { background: linear-gradient(135deg, var(--accent-2), #B8860B); color: #000; font-weight: 800; border: none; box-shadow: 0 4px 25px rgba(255, 215, 0, 0.5); }
.btn.primary:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(255, 215, 0, 0.8); background: linear-gradient(135deg, #FFF8DC, #FFD700); }
.btn.primary.large { padding: 1.1rem 3rem; font-size: 1.05rem; }

/* Outline button */
.btn.outline {
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.03);
}
.btn.outline:hover {
  border-color: rgba(79,158,255,0.4);
  background: rgba(79,158,255,0.06);
  color: var(--accent);
}

/* Chart frame */
.chart-frame {
  border: 1px solid rgba(79,158,255,0.15);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Feature point line */
.point {
  border-left: 2px solid rgba(79,158,255,0.25);
  transition: border-color 0.3s;
}
.point:hover { border-left-color: var(--accent); }

/* Feature tag */
.feature-tag { background: rgba(79,158,255,0.08); }

/* Type table */
.type-table { box-shadow: 0 8px 40px rgba(0,0,0,0.3); }
.type-gold {
  background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, rgba(200,169,110,0.02) 100%);
  border-color: rgba(200,169,110,0.2) !important;
  position: relative;
}
.type-gold::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent-2), transparent);
}

/* Type 6 panel */
.type6-detail {
  background: linear-gradient(145deg, rgba(200,169,110,0.04) 0%, rgba(15,15,22,0.8) 60%);
  border: 1px solid rgba(200,169,110,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}
blockquote {
  background: linear-gradient(90deg, rgba(200,169,110,0.07), transparent);
}

/* Step number */
.step-n {
  background: linear-gradient(135deg, rgba(79,158,255,0.15), rgba(124,111,255,0.15));
  border-color: rgba(79,158,255,0.4);
  box-shadow: 0 0 12px rgba(79,158,255,0.15);
}

/* Cards hover upgrade */
.bos-card, .label-card, .sec-card, .fvg-mode-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.bos-card::before, .label-card::before, .sec-card::before, .fvg-mode-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,158,255,0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.bos-card:hover, .label-card:hover, .sec-card:hover, .fvg-mode-card:hover {
  border-color: rgba(79,158,255,0.18) !important;
  box-shadow: 0 10px 36px rgba(0,0,0,0.35), 0 0 0 1px rgba(79,158,255,0.05);
  transform: translateY(-4px);
}
.bos-card:hover::before, .label-card:hover::before, .sec-card:hover::before, .fvg-mode-card:hover::before { opacity: 1; }

/* =============================================
   ULTIMATE PRO-AGENCY LUXURY UPGRADE
============================================= */

/* 1. Navbar Hyper-Glass */
.navbar {
  background: rgba(8,8,15,0.4) !important;
  backdrop-filter: blur(20px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* 2. Supreme Gradients for Typography */
h1, .sec-title, h2 {
  background: linear-gradient(to right, #ffffff 0%, #e0e0e0 40%, var(--gold, #c8a96e) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(200,169,110,0.15);
  display: inline-block;
}

/* 3. Masterpiece Buttons */
.btn.primary { background: linear-gradient(135deg, var(--accent-2), #B8860B); color: #000; font-weight: 800; border: none; box-shadow: 0 4px 25px rgba(255, 215, 0, 0.5); }
@keyframes bgShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

.btn.primary:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(255, 215, 0, 0.8); background: linear-gradient(135deg, #FFF8DC, #FFD700); }

.btn.outline {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(200,169,110,0.3) !important;
  box-shadow: 0 0 20px rgba(200,169,110,0.05);
}
.btn.outline:hover {
  background: rgba(200,169,110,0.1) !important;
  border-color: #c8a96e !important;
  box-shadow: 0 10px 30px rgba(200, 169, 110, 0.3);
  color: #c8a96e !important;
  transform: translateY(-2px);
}

/* 4. Ultimate Bento Grid Cards */
.feature-text, .bos-card, .label-card, .sec-card, .fvg-mode-card, .type6-left {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  background: linear-gradient(160deg, rgba(30,30,45,0.6) 0%, rgba(10,10,15,0.8) 100%) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

/* Shimmer effect on cards */
.feature-text::after, .bos-card::after, .label-card::after, .sec-card::after, .fvg-mode-card::after, .type6-left::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-20deg);
  transition: 0.7s;
}

.feature-text:hover::after, .bos-card:hover::after, .label-card:hover::after, .sec-card:hover::after, .fvg-mode-card:hover::after, .type6-left:hover::after {
  left: 150%;
}

.feature-text:hover, .bos-card:hover, .label-card:hover, .sec-card:hover, .fvg-mode-card:hover, .type6-left:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 30px rgba(79,158,255,0.15) !important;
  border-color: rgba(79,158,255,0.4) !important;
}

/* 5. Chart Frame Hyper-Pop */
.chart-frame {
  animation: floatChart 8s ease-in-out infinite;
}
@keyframes floatChart {
  0%, 100% { transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(-15px); }
}

.chart-frame:hover {
  animation-play-state: paused;
  transform: perspective(1200px) rotateY(0) rotateX(0) scale(1.02);
  box-shadow: 0 60px 120px rgba(0,0,0,0.9), 0 0 60px rgba(79, 158, 255, 0.25);
  border-color: rgba(79, 158, 255, 0.5);
  z-index: 10;
}

/* 6. Gold Gradient for Stats & Em */
.stat-val, h1 em {
  background: linear-gradient(135deg, #4f9eff, #c8a96e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

/* 7. CTA Luxury Portal */
.cta-inner {
  background: radial-gradient(circle at top, rgba(40,40,65,0.9) 0%, rgba(10,10,15,0.95) 100%);
  border: 1px solid rgba(200, 169, 110, 0.3);
  box-shadow: 0 0 80px rgba(0,0,0,0.8), inset 0 0 50px rgba(200,169,110,0.1);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(200,169,110,0.1) 0%, transparent 60%);
  animation: spinLight 15s linear infinite;
}
@keyframes spinLight { 100% { transform: rotate(360deg); } }

.cta-inner * { position: relative; z-index: 2; }

/* =============================================
   Hologram MTF Dashboard
============================================= */
.hologram-panel {
  background: linear-gradient(160deg, rgba(15,15,22,0.95) 0%, rgba(5,5,10,0.98) 100%);
  border: 1px solid rgba(79,158,255,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), inset 0 0 30px rgba(79,158,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.hologram-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,158,255,0.6), transparent);
}
.mtf-head {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-h); font-weight: 700; font-size: 0.9rem;
  color: #fff; margin-bottom: 1.5rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.8rem;
}
.pulse-indicator {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulseDot 2s infinite;
}
.mtf-hologram-grid { display: flex; flex-direction: column; gap: 1rem; }
.hologram-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 6px;
  transition: background 0.3s, transform 0.3s;
}
.hologram-row:hover {
  background: rgba(79,158,255,0.05);
  transform: translateX(4px);
  border-color: rgba(79,158,255,0.2);
}
.mtf-tf { font-family: monospace; font-size: 1.1rem; color: #a0a0a8; font-weight: bold; width: 40px; }
.mtf-status-wrap { display: flex; align-items: center; gap: 1rem; flex: 1; justify-content: flex-end; }
.mtf-trend-ja { font-size: 1rem; font-weight: bold; letter-spacing: 0.1em; transition: color 0.5s, text-shadow 0.5s; }
.bull-text { color: #00e676; text-shadow: 0 0 10px rgba(0,230,118,0.5); }
.bear-text { color: #ff1744; text-shadow: 0 0 10px rgba(255,23,68,0.5); }
.neutral-text { color: #a0a0a8; text-shadow: 0 0 10px rgba(160,160,168,0.5); }
.mtf-glow-bar {
  width: 120px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.mtf-glow-fill { height: 100%; border-radius: 2px; transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s, box-shadow 0.5s; }
.bull-line { width: 100%; background: linear-gradient(90deg, transparent, #00e676); box-shadow: 0 0 8px #00e676; }
.bear-line { width: 100%; background: linear-gradient(90deg, transparent, #ff1744); box-shadow: 0 0 8px #ff1744; }
.neutral-line { width: 40%; background: linear-gradient(90deg, transparent, #a0a0a8); box-shadow: 0 0 8px #a0a0a8; }

/* =============================================
   NEW SECTIONS (Grid, Compare, Alerts, FAQ)
============================================= */

/* Hero Grid Background */
.hero { position: relative; }
.hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(79, 158, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 158, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, transparent 100%);
  z-index: 0;
}

/* Compare Table */
.compare-table {
  background: rgba(15,15,22,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.comp-row {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comp-row:last-child { border-bottom: none; }
.comp-header {
  background: rgba(255,255,255,0.03);
  font-weight: bold;
  color: #fff;
}
.comp-col {
  flex: 1; padding: 1.5rem;
  font-size: 0.95rem;
  display: flex; align-items: center;
}
.comp-title { font-weight: bold; color: #e0e0e0; flex: 0.8; }
.comp-other { color: #888; border-right: 1px solid rgba(255,255,255,0.05); }
.comp-allinner {
  color: var(--gold);
  font-weight: bold;
  background: linear-gradient(90deg, rgba(200,169,110,0.05), transparent);
}

/* Alerts Grid */
.alert-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.alert-card {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  background: linear-gradient(160deg, rgba(30,30,45,0.6) 0%, rgba(10,10,15,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 2rem;
  transition: transform 0.3s;
}
.alert-card:hover { transform: translateY(-5px); border-color: rgba(79,158,255,0.3); }
.alert-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.alert-card h4 { margin-bottom: 0.8rem; color: #fff; }
.alert-card p { font-size: 0.9rem; color: var(--muted); }

/* FAQ Accordion */
.faq-list {
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 800px; margin: 0 auto;
}
.faq-item {
  background: rgba(15,15,22,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item.active {
  border-color: rgba(200,169,110,0.4);
  background: rgba(20,20,30,0.8);
}
.faq-q {
  font-size: 1.1rem; font-weight: bold; color: var(--accent);
  padding: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.3s;
}
.faq-q:hover { color: #fff; }
.faq-q-text { display: flex; align-items: center; gap: 0.8rem; }
.faq-q-text::before { content: "Q."; color: var(--gold); font-size: 1.2rem; }
.faq-icon {
  font-size: 1.2rem; color: var(--faint);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  color: #c0c0c0; line-height: 1.6;
  padding: 0 1.5rem;
}
.faq-item.active .faq-a {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* =============================================
   NEW SECTIONS 2 (Slider, Marquee, Progress)
============================================= */

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, #4f9eff, #c8a96e);
  width: 0%; z-index: 10000;
  box-shadow: 0 0 10px rgba(79, 158, 255, 0.5);
  transition: width 0.1s;
}

/* Sticky Navbar Scrolled State */
.navbar { transition: background 0.3s, padding 0.3s; }
.navbar.scrolled {
  background: rgba(4,4,10,0.85) !important;
  border-bottom: 1px solid rgba(200,169,110,0.2);
  padding: 0.5rem 0; /* Shrink slightly */
}

/* Before / After Slider */
.ba-slider {
  position: relative; width: 100%; max-width: 900px; margin: 0 auto 4rem auto;
  aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  user-select: none;
}
.ba-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.ba-after { width: 50%; border-right: 2px solid var(--gold); }
.ba-label {
  position: absolute; bottom: 1rem;
  background: rgba(0,0,0,0.7); color: #fff; padding: 0.5rem 1rem;
  border-radius: 4px; font-weight: bold; font-size: 0.85rem;
}
.ba-before .ba-label { right: 1rem; }
.ba-after .ba-label { left: 1rem; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 40px; margin-left: -20px;
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize; z-index: 10;
}
.ba-handle::before {
  content: ''; position: absolute; width: 36px; height: 36px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 15px rgba(200,169,110,0.8);
}
.ba-arrow-left, .ba-arrow-right {
  width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  position: relative; z-index: 2;
}
.ba-arrow-left { border-right: 6px solid #000; margin-right: 4px; }
.ba-arrow-right { border-left: 6px solid #000; margin-left: 4px; }

/* Infinite Marquee */
.text-center { text-align: center; }
.marquee-section { padding-bottom: 5rem; overflow: hidden; }
.marquee-container {
  display: flex; width: 100%; overflow: hidden; margin-bottom: 1.5rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
  display: flex; gap: 1.5rem; white-space: nowrap;
  animation: scrollMarquee 40s linear infinite;
  padding-left: 1.5rem;
}
.marquee-container.reverse .marquee-content { animation-direction: reverse; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.review-card {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  background: rgba(15,15,22,0.8); border: 1px solid rgba(79,158,255,0.1);
  border-radius: 8px; padding: 1.5rem; min-width: 320px;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.rev-head { display: flex; align-items: center; gap: 0.8rem; }
.rev-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #4f9eff, #7c6fff); }
.rev-name { font-weight: bold; color: #fff; font-size: 0.95rem; }
.rev-tag { background: rgba(0,230,118,0.1); color: #00e676; padding: 0.2rem 0.5rem; border-radius: 4px; font-size: 0.75rem; }
.rev-text { color: #c0c0c0; font-size: 0.9rem; white-space: normal; line-height: 1.5; }
.rev-gold { background: rgba(200,169,110,0.1); color: var(--gold); }

/* -------------------------------------------
   Unified Layout Balance (User Request)
------------------------------------------- */
.feature-visual img, 
.type6-right img, 
.fvg-visual img,
.ba-slider {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Override existing fixed height for BA slider */
.ba-slider {
    height: auto !important;
}

/* Make MTF dashboard match the same aspect ratio */
.mtf-mock {
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
}

/* Lightbox Styles */
.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}
.zoomable:hover {
    transform: scale(1.02);
}

.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 100000;
    line-height: 1;
}
.lightbox-close:hover {
    color: var(--primary);
}

/* Large Screen Scaling */
@media (min-width: 1440px) {
    html {
        font-size: 18px;
    }
}
@media (min-width: 1920px) {
    html {
        font-size: 20px;
    }
    .container { max-width: 1600px; }
}

/* -------------------------------------------
   BA Slider Swipe Hint (Impact & UX)
------------------------------------------- */
.ba-swipe-hint {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    pointer-events: none;
    animation: hintFloat 2s infinite ease-in-out;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 10;
}
.ba-swipe-hint::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: var(--gold) transparent transparent transparent;
}
@keyframes hintFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.ba-handle::before {
    animation: pulseHandle 2s infinite;
}
@keyframes pulseHandle {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* -------------------------------------------
   Premium SVG Icon Styling
------------------------------------------- */
.alert-icon svg {
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(79, 158, 255, 0.6));
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.alert-card:hover .alert-icon svg {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    color: var(--gold);
}


/* ================================================
   LUXURY IMPACT UPGRADE — CheatCode LP v3.5
   ================================================ */

/* === AURORA BACKGROUND GRADIENT === */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0, 200, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 40%, rgba(120, 80, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* === GOLD HERO GLOW === */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 300px;
  background: radial-gradient(ellipse, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* === PREMIUM NAVBAR BORDER === */
.navbar {
  border-bottom: 1px solid transparent;
  background: linear-gradient(rgba(2, 2, 4, 0.9), rgba(2, 2, 4, 0.9)) padding-box,
              linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent) border-box;
}

/* === LOGO SHINE ANIMATION === */
@keyframes logoShine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.logo {
  background: linear-gradient(90deg, #fff 0%, #FFD700 30%, #fff 50%, #FFD700 70%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShine 4s linear infinite;
}

/* === SECTION DIVIDERS (Gold Line) === */
.section + .section,
.dark-section + .section,
.section + .dark-section {
  border-top: 1px solid transparent;
  background-clip: padding-box;
}

/* === GLOWING SECTION LABELS === */
.sec-label {
  text-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
  letter-spacing: 0.25em;
}

/* === H1 MEGA TITLE GRADIENT === */
.hero-left h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* === CHART FRAME PREMIUM GLOW === */
.chart-frame {
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow:
    0 0 0 1px rgba(0, 210, 255, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(255, 215, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.chart-frame:hover {
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.3),
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(255, 215, 0, 0.12);
}

/* === STATS STRIP PREMIUM === */
.stats-strip {
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.95), rgba(5, 5, 10, 0.95));
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.25), rgba(0, 210, 255, 0.2), rgba(255, 215, 0, 0.25), transparent);
  z-index: -1;
  border-radius: inherit;
}
.stat-val {
  font-size: 2.6rem !important;
  text-shadow: 0 0 30px rgba(0, 210, 255, 0.5);
}

/* === CARD PREMIUM GLASSMORPHISM === */
.bos-card, .label-card, .sec-card, .fvg-mode-card, .alert-card {
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.8), rgba(8, 8, 16, 0.9));
  border: 1px solid rgba(255, 215, 0, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.bos-card:hover, .label-card:hover, .sec-card:hover, .fvg-mode-card:hover, .alert-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

/* === TYPE6 DETAIL PREMIUM BOX === */
.type6-detail {
  background: linear-gradient(135deg, rgba(12, 12, 22, 0.95), rgba(6, 6, 14, 0.98));
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.05);
}

/* === CTA SECTION MEGA IMPACT === */
.cta-section {
  background: linear-gradient(180deg, rgba(2, 2, 4, 0) 0%, rgba(255, 215, 0, 0.04) 50%, rgba(2, 2, 4, 0) 100%);
  padding: 160px 0;
}
.cta-glow {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, rgba(0, 210, 255, 0.06) 40%, transparent 70%);
  width: 900px; height: 900px;
}
.cta-inner h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.5rem;
}
.cta-btn {
  padding: 1.2rem 3rem !important;
  font-size: 1.15rem !important;
  border-radius: 50px !important;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 60%; height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0% { left: -60%; }
  60%, 100% { left: 120%; }
}

/* === COMPARE TABLE PREMIUM === */
.compare-table {
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  margin-top: 3rem;
}
.comp-allinner {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.08), rgba(0, 210, 255, 0.06)) !important;
  color: #FFD700 !important;
  font-weight: 700 !important;
}

/* === BEFORE/AFTER SLIDER GLOW === */
.ba-slider {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.15);
  margin-bottom: 3rem;
}
.ba-handle::before {
  background: linear-gradient(135deg, #FFD700, #FFA500) !important;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8) !important;
}

/* === MARQUEE SECTION PREMIUM === */
.review-card {
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.9), rgba(8, 8, 16, 0.95));
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* === FOOTER PREMIUM GRADIENT LINE === */
footer {
  border-top: 1px solid transparent;
  background:
    linear-gradient(rgba(4, 4, 10, 1), rgba(4, 4, 10, 1)) padding-box,
    linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), rgba(0, 210, 255, 0.15), transparent) border-box;
}
.f-logo {
  background: linear-gradient(90deg, #FFD700, #FFA500) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 1.4rem !important;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* === FLOATING PARTICLES ENHANCEMENT === */
#particles-bg { opacity: 1; }

/* === PULSE ANIMATION FOR SPEC DOTS === */
.spec-dot {
  animation: specPulse 2s ease-in-out infinite;
  background: var(--accent) !important;
  box-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
}
@keyframes specPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* === HERO BADGE PREMIUM === */
.eyebrow {
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShine 3s linear infinite;
  font-size: 0.85rem;
}
.eyebrow::before {
  background: #FFD700 !important;
  height: 2px !important;
  width: 30px !important;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

/* === STEP NUMBERS GLOW === */
.step-n {
  border-color: #FFD700 !important;
  color: #FFD700 !important;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4), inset 0 0 12px rgba(255, 215, 0, 0.05);
}

/* === TYPE TABLE PREMIUM ROWS === */
.type-row:not(.type-header):hover {
  background: rgba(255, 215, 0, 0.04) !important;
}
.type-gold {
  background: rgba(255, 215, 0, 0.05) !important;
  border-color: rgba(255, 215, 0, 0.2) !important;
}

/* === BLOCKQUOTE PREMIUM === */
blockquote {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.06), rgba(255, 165, 0, 0.03));
  border-left: 3px solid #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
}

/* === FAQ ITEMS PREMIUM === */
.faq-item {
  background: linear-gradient(135deg, rgba(12, 12, 22, 0.8), rgba(6, 6, 14, 0.9));
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.08);
}

/* === ALERT ICONS GOLD ON HOVER === */
.alert-icon svg {
  color: #00D2FF;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.7));
}
.alert-card:hover .alert-icon svg {
  color: #FFD700 !important;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9)) !important;
}

/* === SCROLL PROGRESS BAR GOLD === */
.scroll-progress {
  background: linear-gradient(90deg, #00D2FF, #FFD700, #FFA500) !important;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6) !important;
  height: 3px !important;
}

/* === LARGE SCREEN ENHANCEMENTS === */
@media (min-width: 1440px) {
  html { font-size: 18px; }
}
@media (min-width: 1920px) {
  html { font-size: 20px; }
  .container { max-width: 1600px; }
}

/* ================================================
   RESPONSIVE FIXES + IB FLOW + FLOATING CTA
   ================================================ */

/* === FOOTER FIX (Full Responsive) === */
footer {
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.f-disclaimer {
  font-size: 0.8rem;
  color: #555 !important;
  line-height: 1.7;
  background: rgba(0,0,0,0.25);
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06) !important;
  order: 2;
}
.f-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  order: 3;
}

/* === FLOATING CTA BUTTON === */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000 !important;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5), 0 0 0 0 rgba(255, 215, 0, 0.5);
  animation: floatPulse 2.5s infinite;
  transition: all 0.3s ease;
  text-decoration: none;
}
.float-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.7);
}
@keyframes floatPulse {
  0% { box-shadow: 0 8px 30px rgba(255,215,0,0.5), 0 0 0 0 rgba(255,215,0,0.4); }
  70% { box-shadow: 0 8px 30px rgba(255,215,0,0.5), 0 0 0 18px rgba(255,215,0,0); }
  100% { box-shadow: 0 8px 30px rgba(255,215,0,0.5), 0 0 0 0 rgba(255,215,0,0); }
}

/* === IB STEPS SECTION === */
.ib-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}
.ib-step-card {
  background: linear-gradient(135deg, rgba(15,15,25,0.9), rgba(8,8,16,0.95));
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
}
.ib-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.5), transparent);
}
.ib-step-card:hover {
  border-color: rgba(255,215,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,215,0,0.1);
}
.ib-step-num {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  position: absolute;
  top: 1rem; right: 1.2rem;
}
.ib-step-icon {
  margin-bottom: 1.2rem;
}
.ib-step-icon svg {
  color: #FFD700;
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.6));
}
.ib-step-card h4 {
  color: #fff;
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.ib-step-card p {
  font-size: 0.87rem;
  color: #6e6e8a;
  line-height: 1.6;
}
.ib-arrow {
  font-size: 1.5rem;
  color: rgba(255,215,0,0.4);
  font-weight: 900;
  flex-shrink: 0;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(5px); }
}

/* === MOBILE RESPONSIVE OVERRIDES === */
@media (max-width: 768px) {
  /* IB Steps: stack vertically */
  .ib-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ib-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
  
  /* Floating CTA smaller on mobile */
  .float-cta {
    bottom: 16px;
    right: 16px;
    font-size: 0.82rem;
    padding: 0.75rem 1.2rem;
  }
  
  /* Footer stacked */
  .f-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Feature row full width */
  .feature-row, .type6-detail, .fvg-layout, .mtf-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Fix hero on mobile */
  .hero-inner {
    grid-template-columns: 1fr !important;
  }
  .hero-left h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  
  /* Alert grid 1 col on mobile */
  .alert-grid { grid-template-columns: 1fr !important; }
  
  /* Stats wrap */
  .stats-inner { flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
  .stat-sep { display: none; }
  
  /* BOS grid 1 col */
  .bos-grid { grid-template-columns: 1fr !important; }
  .label-grid { grid-template-columns: 1fr !important; }
  .security-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .hero-left h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 64px 0; }
  .cta-btn { width: 100% !important; text-align: center; }
}

/* ============================================================
   CHEAT CODE LUXURY UPGRADE v4.0
   ============================================================ */

/* ── URGENCY BAR ── */
.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #1a0a00, #2d1500, #1a0a00);
  border-bottom: 1px solid rgba(255,165,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  animation: urgSlide 0.5s ease;
}
@keyframes urgSlide { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.urg-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF4444;
  box-shadow: 0 0 0 0 rgba(255,68,68,0.5);
  animation: urgPulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes urgPulse { 0%,100%{box-shadow:0 0 0 0 rgba(255,68,68,0.5)} 50%{box-shadow:0 0 0 8px rgba(255,68,68,0)} }
.urg-text { color: rgba(255,255,255,0.9); }
.urg-text strong { color: #FFD700; }
.urg-btn {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000 !important;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  white-space: nowrap;
}
.urg-btn:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(255,215,0,0.5); }

/* Push page down for urgency bar */
body { padding-top: 36px; }
.navbar { top: 36px !important; }

/* ── CASHBACK BANNER ── */
.cashback-banner {
  background: linear-gradient(135deg, rgba(0,210,255,0.06), rgba(255,215,0,0.04));
  border-top: 1px solid rgba(0,210,255,0.12);
  border-bottom: 1px solid rgba(0,210,255,0.12);
  padding: 1.2rem 0;
}
.cashback-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cb-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.cb-item svg { color: var(--accent); flex-shrink: 0; }
.cb-item strong { color: #fff; }
.cb-sep { color: rgba(255,255,255,0.15); font-size: 1.2rem; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testi-card {
  background: linear-gradient(145deg, rgba(10,10,20,0.95), rgba(5,5,12,0.98));
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 16px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(255,215,0,0.06);
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover {
  border-color: rgba(255,215,0,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,215,0,0.08);
}
.featured-testi {
  border-color: rgba(255,215,0,0.3);
  background: linear-gradient(145deg, rgba(20,15,5,0.98), rgba(10,8,2,0.99));
}
.featured-testi::after {
  content: '⭐ TOP REVIEW';
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  padding: 3px 10px;
  border-radius: 20px;
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0090b8);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #000;
  flex-shrink: 0;
}
.featured-testi .testi-avatar {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
}
.testi-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}
.testi-stars { color: #FFD700; font-size: 0.8rem; letter-spacing: 2px; }
.testi-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.testi-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00D2FF;
  letter-spacing: 0.05em;
}

/* ── IB STEPS UPGRADE ── */
.ib-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.2rem;
  align-items: center;
  margin-top: 2.5rem;
}
.ib-step-card {
  background: linear-gradient(145deg, rgba(10,10,20,0.95), rgba(5,5,12,0.98));
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.ib-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6), transparent);
}
.ib-step-card:hover {
  border-color: rgba(255,215,0,0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,215,0,0.12);
}
.ib-step-num {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; right: 1rem;
  line-height: 1;
}
.ib-step-icon {
  margin-bottom: 1.2rem;
}
.ib-step-icon svg { color: #FFD700; filter: drop-shadow(0 0 10px rgba(255,215,0,0.6)); }
.ib-step-card h4 { color: #fff; margin-bottom: 0.6rem; font-size: 1.02rem; }
.ib-step-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.ib-arrow {
  font-size: 1.6rem; color: rgba(255,215,0,0.4); font-weight: 900;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse { 0%,100%{opacity:0.4;transform:translateX(0)} 50%{opacity:1;transform:translateX(5px)} }

/* ── CTA SECTION UPGRADE ── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,215,0,0.06) 0%, transparent 70%);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,210,255,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,215,0,0.04) 0%, transparent 50%);
}
.cta-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
.cta-inner p { font-size: 0.95rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 1rem auto 2rem; }

/* ── FOOTER UPGRADE ── */
footer {
  border-top: 1px solid rgba(255,215,0,0.08);
  padding: 3.5rem 0 2rem;
  background: linear-gradient(180deg, transparent, rgba(5,5,10,0.8));
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
.f-logo {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #00D2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}
.f-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  max-width: 800px;
  line-height: 1.8;
}
.f-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE RESPONSIVENESS ── */
@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { padding-top: 30px; }
  .navbar { top: 30px !important; }
  .urgency-bar { font-size: 0.72rem; gap: 0.6rem; padding: 0.45rem 0.8rem; }
  .urg-text { display: none; }
  .urgency-bar::before {
    content: '⚡ 残り7名 — 先着締め切り';
    font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.9);
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ib-steps {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .ib-arrow {
    transform: rotate(90deg);
    text-align: center;
    display: block;
  }
  .cashback-inner {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0 1rem;
  }
  .cb-sep { display: none; }

  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .hero-right { display: none; }

  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .feature-row {
    grid-template-columns: 1fr !important;
  }
  .type6-detail {
    grid-template-columns: 1fr !important;
  }
  .fvg-layout {
    grid-template-columns: 1fr !important;
  }
  .mtf-layout {
    grid-template-columns: 1fr !important;
  }
  .bos-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .label-grid {
    grid-template-columns: 1fr !important;
  }
  .alert-grid {
    grid-template-columns: 1fr !important;
  }
  .security-grid {
    grid-template-columns: 1fr !important;
  }
  .stats-inner {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .stat-sep { display: none; }
  .stat-item { flex: 1 1 40%; text-align: center; }

  .section { padding: 60px 0; }
  .container { padding: 0 1.2rem; }

  .comp-row { font-size: 0.8rem; }
  .comp-col { padding: 0.7rem 0.8rem !important; }

  .cta-inner h2 { font-size: 1.6rem; }
  .btn.large { padding: 1rem 1.5rem; font-size: 0.95rem; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .urgency-bar::before { content: '⚡ 残り7名'; }
  .bos-grid { grid-template-columns: 1fr !important; }
  .type-table { font-size: 0.8rem; }
  .testi-card { padding: 1.4rem; }
  .featured-testi::after { font-size: 0.55rem; }
}

/* ============================================================
   CINEMATIC OPENING v1.0
   ============================================================ */

/* Block scroll during opening */
body.opening { overflow: hidden; }

/* Full-screen opening overlay */
#opening-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Canvas behind everything in overlay */
#opening-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
#opening-canvas.visible { opacity: 1; }

/* Scan line effect */
#opening-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Vignette */
#opening-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Opening center content */
.opening-center {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Glitch scan line */
.opening-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,210,255,0.8), transparent);
  box-shadow: 0 0 20px rgba(0,210,255,0.6);
  animation: scanLine 3s linear infinite;
  z-index: 5;
}
@keyframes scanLine {
  from { top: -2px; }
  to   { top: 100%; }
}

/* Logo mark */
.opening-logo-mark {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin-bottom: 24px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.opening-logo-mark.show { opacity: 1; transform: scale(1); }

.opening-logo-mark::before,
.opening-logo-mark::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.2);
  animation: ringPulse 2s ease-in-out infinite;
}
.opening-logo-mark::after {
  inset: -18px;
  border-color: rgba(0,210,255,0.15);
  animation-delay: 0.5s;
}
@keyframes ringPulse {
  0%,100% { opacity: 0.2; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.05); }
}

.opening-logo-inner {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #00D2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Brand name typed */
.opening-brand {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #FFD700 0%, #fff8dc 50%, #00D2FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
  white-space: nowrap;
  overflow: hidden;
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.3));
}
.opening-brand.show { opacity: 1; transform: translateY(0); }

/* Tagline */
.opening-tagline {
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
  margin-top: 8px;
}
.opening-tagline.show { opacity: 1; transform: translateY(0); }

/* Loading bar */
.opening-progress-wrap {
  width: 240px;
  margin-top: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.opening-progress-wrap.show { opacity: 1; }
.opening-progress-track {
  height: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 10px;
}
.opening-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00D2FF, #FFD700);
  border-radius: 1px;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px rgba(0,210,255,0.5);
}
.opening-progress-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  text-align: right;
  font-family: monospace;
}

/* Data readout lines */
.opening-data-lines {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.opening-data-lines.show { opacity: 1; }
.opening-data-line {
  font-family: 'Courier New', monospace;
  font-size: 0.68rem;
  color: rgba(0,210,255,0.5);
  letter-spacing: 0.08em;
  animation: dataBlink 2s ease-in-out infinite;
}
.opening-data-line:nth-child(2) { animation-delay: 0.3s; }
.opening-data-line:nth-child(3) { animation-delay: 0.6s; }
.opening-data-line:nth-child(4) { animation-delay: 0.9s; }
@keyframes dataBlink { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* Right side data */
.opening-data-right {
  right: 40px;
  left: auto;
}
.opening-data-right .opening-data-line { color: rgba(255,215,0,0.45); }

/* Skip button */
.opening-skip {
  position: absolute;
  bottom: 28px; right: 32px;
  z-index: 20;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease, color 0.2s, border-color 0.2s;
}
.opening-skip.show { opacity: 1; }
.opening-skip:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }

/* Overlay exit animation */
#opening-overlay.exit {
  animation: overlayExit 1.2s cubic-bezier(0.76,0,0.24,1) forwards;
}
@keyframes overlayExit {
  0%   { opacity: 1; transform: scale(1); }
  60%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 0; transform: scale(1.08); pointer-events: none; }
}

/* Site content fades in */
#site-content {
  opacity: 0;
  transition: opacity 0.8s ease;
}
#site-content.revealed { opacity: 1; }

/* Mobile adjustments */
@media (max-width: 600px) {
  .opening-data-lines,
  .opening-data-right { display: none; }
  .opening-brand { font-size: 2rem; }
  .opening-progress-wrap { width: 180px; }
}

/* ================================================
   MATRIX CANVAS HOVER - card base styles
   ================================================ */
.bos-card, .fvg-mode-card, .label-card, .sec-card, .alert-card, .testi-card, .ib-step-card {
  position: relative;
  overflow: hidden;
}
.bos-card > *, .fvg-mode-card > *, .label-card > *, .sec-card > *, .alert-card > *, .testi-card > *, .ib-step-card > * {
  position: relative;
  z-index: 1;
}
.matrix-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.matrix-canvas.active {
  opacity: 1;
}

/* Gold outline button */
.btn.outline-gold {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
}
.btn.outline-gold:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: #FFF8DC;
  color: #FFF8DC;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

/* ================================================
   COMPARE TABLE STABILITY FIX
   Keeps the Cheat Code column aligned and prevents
   clipped/overlapping dark blocks on wide screens.
   ================================================ */
.compare-table,
.compare-table * {
  box-sizing: border-box;
}

.compare-table {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(12, 12, 18, 0.9), rgba(5, 12, 13, 0.78));
}

.comp-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.82fr) minmax(220px, 1fr) minmax(260px, 1.22fr);
  align-items: stretch;
}

.comp-col {
  min-width: 0;
  width: auto;
  flex: none;
  display: flex;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
  background: transparent;
}

.comp-col:last-child {
  border-right: 0;
}

.comp-title {
  flex: none;
}

.comp-other {
  border-right: 1px solid rgba(255, 255, 255, 0.055);
}

.comp-allinner {
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
  background:
    linear-gradient(90deg, rgba(255, 215, 0, 0.105), rgba(0, 210, 255, 0.045)) !important;
  box-shadow:
    inset 1px 0 0 rgba(255, 215, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.comp-header .comp-col {
  min-height: 74px;
}

.comp-header .comp-allinner {
  background:
    linear-gradient(135deg, rgba(255, 215, 0, 0.14), rgba(0, 210, 255, 0.07)) !important;
}

@media (max-width: 760px) {
  .compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comp-row {
    grid-template-columns: 150px 220px 260px;
    min-width: 630px;
  }

  .comp-col {
    padding: 0.9rem 1rem !important;
    font-size: 0.82rem;
  }
}

