/* ============================================================
   JUGAME75 — Premium Personal Brand · Light Theme
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: rgb(210,214,225);
  --page: rgb(245,247,252);
  --panelGrey: #EEEFF4;
  --text: rgb(35,38,45);
  --muted: rgb(70,85,115);
  --accent: rgb(120,165,210);
  --accentDark: rgb(90,130,180);
  --purple: #a855f7;
  --gradient-hero: linear-gradient(135deg, var(--accent), var(--purple));

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1200px;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(35,38,45,0.05), 0 1px 2px rgba(35,38,45,0.03);
  --shadow-md: 0 4px 16px rgba(35,38,45,0.07), 0 2px 4px rgba(35,38,45,0.03);
  --shadow-lg: 0 16px 48px rgba(35,38,45,0.1), 0 4px 12px rgba(35,38,45,0.05);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────────────────────────── */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────── */

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

section { padding: 96px 0; }

section.alt { background: var(--panelGrey); }

section.tinted { background: var(--bg); }

/* ── Navigation ────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav.scrolled {
  background: rgba(245,247,252,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(35,38,45,0.07);
}

.nav-logo {
  height: 42px;
  width: auto;
  display: block;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-size: 0.825rem;
  font-weight: 450;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.9;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--accent);
  color: white !important;
  opacity: 1 !important;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--accentDark);
  box-shadow: 0 4px 16px rgba(90,130,180,0.3);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  color: var(--text);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--page);
  padding: 88px 32px 48px;
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid rgba(35,38,45,0.06);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-mobile a:hover { opacity: 1; }

.nav-mobile .mobile-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--accent);
  color: white;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Hero (light) ──────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  background: var(--page);
  color: var(--text);
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -32px;
  background-image: radial-gradient(circle, rgba(120,165,210,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: dotPan 60s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes dotPan {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(32px, 32px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accentDark);
  margin-bottom: 32px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--text);
  text-align: center;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-logo-wrap {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-logo-img {
  height: 56px;
  width: auto;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  opacity: 0.45;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  opacity: 0.4;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 10px rgba(120,165,210,0.25);
}

.btn-primary:hover {
  background: var(--accentDark);
  box-shadow: 0 6px 20px rgba(90,130,180,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(35,38,45,0.18);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accentDark);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ── Section Headers ───────────────────────────────────────── */

.section-header { margin-bottom: 64px; }
.section-header .eyebrow { margin-bottom: 16px; display: block; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ── Preview Cards ─────────────────────────────────────────── */

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.preview-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(210,214,225,0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.preview-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--panelGrey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.preview-card-icon svg { width: 18px; height: 18px; stroke: var(--accentDark); fill: none; stroke-width: 1.5; }

.preview-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.preview-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accentDark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; }

/* ── Stats Row ─────────────────────────────────────────────── */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(210,214,225,0.6);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 64px 0;
}

.stat-item {
  background: white;
  padding: 36px 28px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--accentDark);
}

.stat-label {
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Image display ─────────────────────────────────────────── */

.img-placeholder {
  background: var(--panelGrey);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.775rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px dashed rgba(70,85,115,0.2);
  overflow: hidden;
}

.img-placeholder svg {
  width: 28px;
  height: 28px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.25;
  opacity: 0.4;
}

.asset-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.asset-img.contain {
  object-fit: contain;
  background: white;
  padding: 16px;
}

/* ── Gallery Grid ──────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--panelGrey);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(210,214,225,0.5);
}

.gallery-item:nth-child(1) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35,38,45,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.04em;
}

/* ── Signal Card ───────────────────────────────────────────── */

.signal-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.signal-badge.long { background: rgba(120,165,210,0.12); color: var(--accentDark); }
.signal-badge.short { background: rgba(168,85,247,0.1); color: #8b3cf7; }

/* ── Two column layout ─────────────────────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
}

/* ── Sessions grid ─────────────────────────────────────────── */

.sessions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.session-card {
  background: white;
  border: 1px solid rgba(210,214,225,0.7);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.session-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}

.session-time {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accentDark);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.session-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Risk table ────────────────────────────────────────────── */

.risk-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.risk-table th {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(210,214,225,0.6);
  background: var(--panelGrey);
}

.risk-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(210,214,225,0.3);
  color: var(--text);
}

.risk-table tr:last-child td { border-bottom: none; }

.risk-table .highlight { font-weight: 600; color: var(--accentDark); }

/* ── Chart tabs ────────────────────────────────────────────── */

.chart-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(210,214,225,0.5);
  margin-bottom: 24px;
}

.chart-tab {
  padding: 12px 24px;
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.chart-tab.active {
  color: var(--accentDark);
  border-bottom-color: var(--accentDark);
}

.chart-panel { display: none; }
.chart-panel.active { display: block; }

/* ── Story text ────────────────────────────────────────────── */

.story-text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  color: var(--muted);
  max-width: 680px;
}

.story-text p { margin-bottom: 24px; }
.story-text p:last-child { margin-bottom: 0; }
.story-text strong { color: var(--text); font-weight: 500; }

/* ── Timeline ──────────────────────────────────────────────── */

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item { position: relative; margin-bottom: 40px; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(120,165,210,0.15);
}

.timeline-date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accentDark);
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Community perks ───────────────────────────────────────── */

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

/* ── CTA accent section ────────────────────────────────────── */

.cta-section {
  background: var(--bg);
  text-align: center;
  padding: 96px 0;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(120,165,210,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 1px solid rgba(120,165,210,0.2);
}

/* ── Results gallery (results page) ────────────────────────── */

.results-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(210,214,225,0.8);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* ── Video ─────────────────────────────────────────────────── */

.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(210,214,225,0.6);
  background: #000;
}

.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
}

/* ───────────────────────────────────────────────────────────── */

.results-masonry {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.results-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.results-trades {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.result-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  border: 1px solid rgba(210,214,225,0.6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}


.result-card-img {
  background: var(--panelGrey);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.result-card-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.result-card-meta {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-card-label { font-size: 0.85rem; font-weight: 500; color: var(--text); }

.result-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.result-tag.payout { background: rgba(60,184,125,0.1); color: #2d9e6e; }
.result-tag.cert   { background: rgba(120,165,210,0.12); color: var(--accentDark); }
.result-tag.stat   { background: rgba(70,85,115,0.08); color: var(--muted); }
.result-tag.trade  { background: rgba(35,38,45,0.06); color: var(--muted); }

/* ── Cert banner ───────────────────────────────────────────── */

.cert-banner {
  background: white;
  border: 1px solid rgba(210,214,225,0.7);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease);
}

.cert-banner:hover { box-shadow: var(--shadow-md); }

.cert-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(120,165,210,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(120,165,210,0.2);
}

.cert-icon svg { stroke: var(--accentDark); }

/* ── Reveal animations ─────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Footer ────────────────────────────────────────────────── */

.footer {
  background: var(--panelGrey);
  border-top: 1px solid rgba(210,214,225,0.8);
  padding: 56px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--accentDark); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(210,214,225,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.social-link:hover {
  color: var(--accentDark);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(210,214,225,0.6);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.6;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .results-trades { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 3.8rem); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .sessions-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cert-banner { flex-direction: column; gap: 20px; }
}

@media (max-width: 600px) {
  .results-masonry { flex-direction: column; }
  .results-trades { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .preview-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Discord CTA ───────────────────────────────────────────── */

.discord-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 0;
}

.discord-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.discord-cta p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.discord-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(120,165,210,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 1px solid rgba(120,165,210,0.2);
}

/* ── Signal mockup (light) ─────────────────────────────────── */

.signal-mockup {
  max-width: 520px;
  margin: 0 auto;
  background: white;
  border: 1px solid rgba(210,214,225,0.7);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.signal-mockup-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(210,214,225,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--panelGrey);
}

.signal-mockup-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.signal-mockup-name { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.signal-mockup-time { font-size: 0.72rem; color: var(--muted); }

.signal-mockup-body { padding: 20px; }

.signal-mockup-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  padding: 16px;
  background: var(--panelGrey);
  border-radius: 8px;
  border: 1px solid rgba(210,214,225,0.5);
  margin-bottom: 12px;
}

.signal-grid-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.signal-grid-val {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 600;
}

.signal-note {
  padding: 12px 16px;
  background: rgba(120,165,210,0.08);
  border-radius: 8px;
  border-left: 2px solid var(--accent);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.be-note {
  padding: 12px 16px;
  background: rgba(60,184,125,0.07);
  border-radius: 8px;
  border-left: 2px solid #3cb87d;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.be-note strong { color: #2d9e6e; }

/* ── Sessions stat panel ───────────────────────────────────── */

.sessions-stat-panel {
  margin-top: 64px;
  padding: 40px;
  border: 1px solid rgba(210,214,225,0.6);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  text-align: center;
}

.sessions-stat-panel .sp-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.sessions-stat-panel .sp-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}
