/* ═══════════════════════════════════════════════════════════
   P'TRADERS — Premium Landing Page v2.0
   Professional design for trust & conversion
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --bg:          #030712;
  --bg-elevated: #0a1225;
  --surface:     #111a2e;
  --surface-2:   #162036;
  --text:        #f0f4ff;
  --text-secondary: #94a3c8;
  --muted:       #64748b;
  --accent:      #00d4ff;
  --accent-rgb:  0, 212, 255;
  --accent-dim:  rgba(0, 212, 255, 0.08);
  --accent-med:  rgba(0, 212, 255, 0.15);
  --accent-glow: rgba(0, 212, 255, 0.35);
  --blue:        #3b82f6;
  --indigo:      #6366f1;
  --violet:      #8b5cf6;
  --emerald:     #10b981;
  --amber:       #f59e0b;
  --rose:        #f43f5e;
  --gold:        #fbbf24;
  --grad-accent: linear-gradient(135deg, #00d4ff 0%, #3b82f6 50%, #6366f1 100%);
  --grad-hero:   linear-gradient(135deg, #00d4ff 0%, #3b82f6 100%);
  --border:        rgba(148, 163, 200, 0.08);
  --border-hover:  rgba(0, 212, 255, 0.2);
  --glass:         rgba(11, 18, 37, 0.75);
  --glass-border:  rgba(148, 163, 200, 0.1);
  --glass-shine:   rgba(255, 255, 255, 0.03);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-xs:  6px;
  --radius-full: 9999px;
  --max-w:      1200px;
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:   0.4s;
  --duration-slow: 0.7s;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; min-height: 100vh; }
::selection { background: rgba(var(--accent-rgb), 0.3); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(var(--accent-rgb), 0.4); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── Background ────────────────────────────────────────── */
#particles-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4; }
.bg-noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.bg-glow { position: fixed; border-radius: 50%; filter: blur(160px); opacity: 0.06; pointer-events: none; z-index: 0; will-change: transform; }
.bg-glow--1 { width: 800px; height: 800px; background: var(--accent); top: -20%; left: -10%; animation: gd1 30s ease-in-out infinite; }
.bg-glow--2 { width: 700px; height: 700px; background: var(--indigo); bottom: -20%; right: -10%; animation: gd2 35s ease-in-out infinite; }
@keyframes gd1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px,40px); } }
@keyframes gd2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px,-30px); } }

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); position: relative; z-index: 1; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

/* ── Topbar ────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 2rem); height: 64px;
  background: rgba(3, 7, 18, 0.6); backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.topbar.scrolled { background: rgba(3, 7, 18, 0.92); box-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo { height: 30px; width: auto; filter: brightness(1.1); }
.brand-text { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700; color: var(--accent); letter-spacing: 1.5px; }
.topbar-nav { display: flex; align-items: center; gap: 2rem; }
.topbar-nav a { font-size: 0.82rem; font-weight: 500; color: var(--text-secondary); transition: color var(--duration); letter-spacing: 0.3px; }
.topbar-nav a:hover { color: var(--text); }
.topbar-actions { display: flex; align-items: center; gap: 0.8rem; }
.lang-toggle { display: flex; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-xs); overflow: hidden; }
.lang-btn { padding: 0.35rem 0.65rem; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; color: var(--muted); background: transparent; border: none; cursor: pointer; transition: all var(--duration); letter-spacing: 0.5px; }
.lang-btn.active { background: rgba(var(--accent-rgb), 0.15); color: var(--accent); }
.topbar-cta {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 1.1rem;
  font-size: 0.8rem; font-weight: 600; color: #fff; background: var(--grad-hero);
  border: none; border-radius: var(--radius-xs); position: relative; overflow: hidden;
  transition: all var(--duration) var(--ease-out);
}
.topbar-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transform: translateX(-100%); transition: transform 0.6s ease; }
.topbar-cta:hover::before { transform: translateX(100%); }
.topbar-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3); }

/* ── Hamburger ─────────────────────────────────────────── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; z-index: 201;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s var(--ease-out);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu Overlay ───────────────────────────────── */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(3, 7, 18, 0.96); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease-out);
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-menu-nav {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding: 2rem;
}
.mobile-menu-nav a {
  font-size: 1.25rem; font-weight: 600; color: var(--text-secondary);
  transition: color 0.3s; padding: 0.5rem 1rem;
}
.mobile-menu-nav a:hover, .mobile-menu-nav a:active { color: var(--accent); }
.mobile-menu-nav .btn { margin-top: 1rem; font-size: 1rem; padding: 0.9rem 2rem; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 7rem 1.5rem 3rem; position: relative; z-index: 1;
}
.hero::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08), transparent 70%); pointer-events: none; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: rgba(var(--accent-rgb), 0.06); border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 500; color: var(--accent);
  margin-bottom: 2rem; animation: fadeInDown 0.8s var(--ease-out) 0.2s backwards;
}
.hero-badge .badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); } 50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); } }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 1.5rem; max-width: 800px;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s backwards;
}
.hero-title .highlight { background: var(--grad-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-secondary); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.7; animation: fadeInUp 0.8s var(--ease-out) 0.5s backwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; animation: fadeInUp 0.8s var(--ease-out) 0.6s backwards; }
.hero-social { display: flex; gap: 1rem; animation: fadeInUp 0.8s var(--ease-out) 0.8s backwards; }
.hero-social a {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(255,255,255,0.02);
  color: var(--text-secondary); font-size: 1.1rem; transition: all var(--duration) var(--ease-out);
}
.hero-social a:hover { color: var(--accent); border-color: var(--border-hover); background: var(--accent-dim); transform: translateY(-2px); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

/* ── Stats Bar ─────────────────────────────────────────── */
.stats-bar { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 0; position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: -1rem; top: 10%; height: 80%; width: 1px; background: var(--border); }
.stat-number { font-family: var(--font-mono); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; letter-spacing: 0.3px; }

/* ── Section Headers ───────────────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(var(--accent-rgb), 0.12);
  padding: 0.3rem 0.85rem; border-radius: var(--radius-full); margin-bottom: 1.2rem;
  letter-spacing: 1px; text-transform: uppercase;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.section-desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.6rem; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--duration) var(--ease-out);
  position: relative; overflow: hidden; letter-spacing: 0.2px;
}
.btn-primary {
  color: #fff; background: var(--grad-hero);
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); transform: translateX(-100%); transition: transform 0.6s ease; }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.35), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-secondary { color: var(--text); background: rgba(255,255,255,0.04); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--border-hover); background: var(--accent-dim); color: var(--accent); transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.95rem; }
.btn-pulse { animation: btnPulse 3s ease-in-out infinite; }
@keyframes btnPulse { 0%,100% { box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.25); } 50% { box-shadow: 0 4px 30px rgba(var(--accent-rgb), 0.5); } }

/* ── Outcomes Grid ─────────────────────────────────────── */
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.outcome-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 2rem; text-align: center; transition: all var(--duration) var(--ease-out);
  position: relative; overflow: hidden;
}
.outcome-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--card-accent, var(--grad-accent)); opacity: 0; transition: opacity var(--duration); }
.outcome-card:hover::before { opacity: 1; }
.outcome-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.outcome-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.3rem; }
.outcome-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.outcome-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ── About ─────────────────────────────────────────────── */
.about-layout {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start;
}
.about-left .section-tag { margin-bottom: 1rem; }
.about-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.about-text:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); font-weight: 600; }
.about-right { display: flex; flex-direction: column; gap: 1.2rem; }
.about-quote-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 1.8rem 2rem; position: relative; overflow: hidden;
  transition: border-color var(--duration) var(--ease-out);
}
.about-quote-card:hover { border-color: var(--border-hover); }
.about-quote-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-accent); }
.about-quote {
  font-size: 1.05rem; font-style: italic; color: var(--text); line-height: 1.7; margin: 0;
  border-left: 3px solid var(--accent); padding-left: 1.2rem;
}
.about-credentials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
}
.credential {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 500; color: var(--text-secondary);
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 0.6rem 0.9rem; border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-out);
}
.credential:hover { border-color: var(--border-hover); background: rgba(var(--accent-rgb), 0.05); color: var(--text); }
.credential i { color: var(--accent); font-size: 0.72rem; }

/* ── Roadmap Timeline ──────────────────────────────────── */
.roadmap-timeline { position: relative; max-width: 700px; margin: 0 auto; }
.roadmap-timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--accent), var(--indigo), var(--violet)); opacity: 0.3; }
.roadmap-item { display: flex; gap: 1.8rem; margin-bottom: 1.2rem; position: relative; }
.roadmap-marker {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 800; color: var(--accent);
  background: var(--bg); border: 2px solid rgba(var(--accent-rgb), 0.25); flex-shrink: 0; z-index: 1;
  transition: all var(--duration) var(--ease-out);
}
.roadmap-item:hover .roadmap-marker { border-color: var(--accent); background: var(--accent-dim); box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.2); }
.roadmap-body {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 1.5rem 1.8rem; flex: 1; transition: all var(--duration) var(--ease-out);
}
.roadmap-item:hover .roadmap-body { border-color: var(--border-hover); background: rgba(var(--accent-rgb), 0.03); }
.roadmap-title { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.3rem; }
.roadmap-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Tool Cards ────────────────────────────────────────── */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 1.2rem; }
.tool-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 1.6rem; position: relative; overflow: hidden; transition: all var(--duration) var(--ease-out);
  display: flex; gap: 1rem; align-items: flex-start; cursor: pointer;
}
.tool-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--grad-accent); opacity: 0; transition: opacity var(--duration); }
.tool-card:hover::before { opacity: 1; }
.tool-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.tool-card.locked .tool-content { filter: none; opacity: 0.7; user-select: none; }
.tool-icon-box { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.tool-content { flex: 1; min-width: 0; }
.tool-module { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700; color: var(--accent); letter-spacing: 0.8px; margin-bottom: 0.25rem; text-transform: uppercase; }
.tool-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; line-height: 1.3; }
.tool-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; }
.tool-lock-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(3,7,18,0.75); backdrop-filter: blur(6px); border-radius: var(--radius);
  opacity: 0; transition: opacity var(--duration); z-index: 2;
}
.tool-card.locked:hover .tool-lock-overlay { opacity: 1; }
.lock-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.lock-text { font-size: 0.75rem; font-weight: 600; color: var(--accent); }

/* ── Tags ──────────────────────────────────────────────── */
.tag { display: inline-flex; align-items: center; padding: 0.25rem 0.7rem; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 600; margin: 0.15rem; }
.tag-cyan { background: rgba(var(--accent-rgb), 0.1); color: var(--accent); }
.tag-orange { background: rgba(245,158,11,0.12); color: var(--amber); }
.tag-mint { background: rgba(16,185,129,0.12); color: var(--emerald); }

/* ── Brokers ───────────────────────────────────────────── */
.broker-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1.5rem; }
.broker-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 2rem; transition: all var(--duration) var(--ease-out); }
.broker-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.broker-region { font-size: 2rem; margin-bottom: 0.5rem; line-height: 1; }
.broker-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.broker-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }
.broker-link-btn {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem;
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08); border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-xs); transition: all var(--duration) var(--ease-out);
  text-decoration: none; font-family: var(--font-mono);
}
.broker-link-btn i { font-size: 0.7rem; opacity: 0.6; }
.broker-link-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-1px); }
.broker-link-btn:hover i { opacity: 1; }

/* ── App Promo ─────────────────────────────────────────── */
.app-promo {
  display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: center;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.5rem); position: relative; overflow: hidden;
}
.app-promo::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-accent); }
.app-promo-content .section-title { text-align: left; margin-bottom: 0.8rem; }
.app-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.app-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 2rem; }
.app-feature {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary); padding: 0.5rem 0.8rem; background: rgba(var(--accent-rgb), 0.04);
  border-radius: var(--radius-xs); border: 1px solid rgba(var(--accent-rgb), 0.08);
}
.app-feature i { color: var(--accent); font-size: 0.9rem; width: 18px; text-align: center; }
.app-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.app-store-btn {
  display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.7rem 1.3rem;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-size: 1rem; transition: all var(--duration) var(--ease-out); text-decoration: none;
}
.app-store-btn i { font-size: 1.6rem; }
.app-store-btn:hover { border-color: var(--border-hover); background: var(--accent-dim); transform: translateY(-2px); }
.app-store-small { display: block; font-size: 0.6rem; color: var(--muted); font-weight: 500; letter-spacing: 0.3px; line-height: 1; }
.app-store-name { display: block; font-size: 0.95rem; font-weight: 700; line-height: 1.3; }
.app-coming-soon { font-size: 0.8rem; color: var(--accent); font-weight: 500; display: flex; align-items: center; gap: 0.4rem; }
.app-coming-soon i { font-size: 0.75rem; }
.app-promo-visual { display: flex; justify-content: center; }
/* ── Phone Mockup ── */
.app-phone-wrapper { position: relative; padding: 1.5rem; }
.app-phone-wrapper::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1), transparent 70%);
  pointer-events: none;
}
.app-phone {
  width: 220px;
  background: #060c1a;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 8px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.app-phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 20px;
  background: #060c1a;
  border-radius: 0 0 12px 12px;
  z-index: 10;
}
.app-phone-notch::after {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.25);
}
.app-phone-screen {
  background: #0a1122;
  border-radius: 22px;
  padding: 0.4rem 0.7rem 0.5rem;
  display: flex; flex-direction: column; overflow: hidden;
}
.app-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0.2rem 0.2rem;
  font-size: 0.5rem; color: var(--muted);
}
.app-status-time { font-weight: 700; font-size: 0.55rem; color: var(--text-secondary); }
.app-status-icons { display: flex; gap: 0.25rem; font-size: 0.45rem; }
.app-screen-header {
  display: flex; align-items: center; justify-content: center;
  padding: 0.4rem 0 0.7rem;
}
.app-screen-title {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  color: var(--accent); letter-spacing: 1px;
}
.app-screen-items { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.app-screen-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.7rem; font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.025);
  border-radius: 10px;
  border: 1px solid transparent;
}
.app-screen-item i { font-size: 0.65rem; width: 16px; text-align: center; color: var(--muted); }
.app-screen-item span { font-size: 0.68rem; }
.app-screen-item.active {
  background: rgba(var(--accent-rgb), 0.06);
  border-color: rgba(var(--accent-rgb), 0.15);
  color: var(--text);
}
.app-screen-item.active i { color: var(--accent); }
.app-screen-nav {
  display: flex; justify-content: space-around;
  padding: 0.6rem 0 0.15rem; margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.app-nav-item { font-size: 0.6rem; color: var(--muted); }
.app-nav-item.active { color: var(--accent); }
.app-screen-home-bar {
  width: 35%; height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  margin: 0.35rem auto 0;
}
@media (max-width: 768px) {
  .app-promo { grid-template-columns: 1fr; }
  .app-promo-visual { order: -1; }
  .app-phone { width: 190px; }
  .app-features { grid-template-columns: 1fr; }
  .app-promo-content .section-title { text-align: center; }
  .app-desc { text-align: center; }
  .app-buttons { justify-content: center; }
  .app-coming-soon { justify-content: center; }
}

/* ── Testimonials ──────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 2rem; }
.testimonial-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-quote { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; color: var(--text-secondary); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0; }
.testimonial-name { font-size: 0.85rem; font-weight: 600; }
.testimonial-role { font-size: 0.75rem; color: var(--muted); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--duration); }
.faq-item.open { border-color: var(--border-hover); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem; background: none; border: none; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; color: var(--text); text-align: left; cursor: pointer;
  transition: color var(--duration);
}
.faq-question:hover { color: var(--accent); }
.faq-chevron { font-size: 0.8rem; color: var(--muted); transition: transform var(--duration); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--duration-slow) var(--ease-out); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Warning ───────────────────────────────────────────── */
.warning-box {
  background: rgba(244,63,94,0.04); border: 1px solid rgba(244,63,94,0.15);
  border-radius: var(--radius); padding: 2rem 2.5rem; max-width: 700px; margin: 0 auto;
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.warning-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(244,63,94,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.warning-title { font-size: 1rem; font-weight: 700; color: var(--rose); margin-bottom: 0.3rem; }
.warning-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ── CTA Final ─────────────────────────────────────────── */
.cta-final { text-align: center; padding: clamp(4rem, 8vw, 6rem) 1.5rem; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.06), transparent 70%); pointer-events: none; }
.cta-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 1rem; position: relative; letter-spacing: -0.02em; }
.cta-desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 2rem; position: relative; line-height: 1.7; }

/* ── Modal ─────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(3,7,18,0.88); backdrop-filter: blur(12px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity var(--duration); }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal { background: var(--surface); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 2.5rem; max-width: 420px; width: 100%; text-align: center; transform: scale(0.95) translateY(10px); transition: transform var(--duration) var(--ease-spring); }
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.5rem; }
.modal-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.modal-desc { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; }
.modal-input {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--font-mono); font-size: 1rem;
  font-weight: 700; text-align: center; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text); background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: all var(--duration);
}
.modal-input:focus { outline: none; border-color: rgba(var(--accent-rgb), 0.4); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.08); }
.modal-input.error { border-color: var(--rose); animation: shake 0.4s ease; }
.modal-input.success { border-color: var(--emerald); }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
.modal-error { font-size: 0.78rem; color: var(--rose); margin-top: 0.5rem; min-height: 1.2rem; }
.modal-actions { display: flex; gap: 0.8rem; justify-content: center; margin-top: 1.2rem; }

/* ── Footer ────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 3rem clamp(1.25rem, 4vw, 2.5rem); text-align: center; position: relative; z-index: 1; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-logo { height: 32px; margin: 0 auto 1.5rem; opacity: 0.6; }
.footer-social { display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--radius-xs); border: 1px solid var(--border); color: var(--muted); font-size: 1rem; transition: all var(--duration) var(--ease-out); }
.footer-social a:hover { color: var(--accent); border-color: var(--border-hover); background: var(--accent-dim); }
.footer-legal { font-size: 0.72rem; color: var(--muted); max-width: 700px; margin: 0 auto; opacity: 0.7; line-height: 1.7; }

/* ── Reveal ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.stagger-children.visible > * { animation: fadeInUp 0.6s var(--ease-out) backwards; }
.stagger-children.visible > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { animation-delay: 0.3s; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .topbar-nav { display: none; }
  .topbar-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-left .section-title { text-align: center !important; }
  .about-left .section-tag { display: flex; justify-content: center; }
  .about-quote-card { padding: 1.5rem; }
  .about-credentials { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .roadmap-timeline::before { left: 20px; }
  .roadmap-marker { width: 42px; height: 42px; font-size: 0.7rem; }
  .roadmap-item { gap: 1rem; }
  .roadmap-body { padding: 1.2rem; }
  .tools-grid { grid-template-columns: 1fr; }
  .broker-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .warning-box { flex-direction: column; text-align: center; align-items: center; padding: 1.5rem; }
  .section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
  .btn-lg { padding: 0.85rem 1.8rem; font-size: 0.9rem; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .section-desc { font-size: 0.95rem; }
  .modal { padding: 1.8rem 1.2rem; margin: 0.5rem; }
  .hero { padding: 6rem 1rem 2.5rem; min-height: auto; }
  .hero-subtitle { font-size: 0.95rem; }
  .faq-question { padding: 1rem 1.2rem; font-size: 0.9rem; }
  .faq-answer-inner { padding: 0 1.2rem 1.2rem; font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .topbar { height: 56px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.72rem; }
  .tool-card { padding: 1.2rem; }
  .tool-name { font-size: 0.9rem; }
  .tool-desc { font-size: 0.78rem; }
  .outcome-card { padding: 1.5rem; }
  .outcome-desc { font-size: 0.82rem; }
  .broker-card { padding: 1.5rem; }
  .broker-links { gap: 0.4rem; }
  .broker-link-btn { padding: 0.45rem 0.8rem; font-size: 0.75rem; }
  .testimonial-card { padding: 1.5rem; }
  .testimonial-quote { font-size: 0.88rem; }
  .app-phone { width: 170px; }
  .container { padding: 0 1rem; }
  .section-tag { font-size: 0.65rem; padding: 0.25rem 0.7rem; }
  .about-text { font-size: 0.92rem; }
  .about-quote { font-size: 0.88rem; }
  .about-quote-card { padding: 1.2rem; }
  .about-credentials { grid-template-columns: 1fr; }
  .credential { font-size: 0.72rem; padding: 0.45rem 0.7rem; }
  .cta-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .cta-desc { font-size: 0.92rem; }
  .footer-legal { font-size: 0.65rem; }
}
@media (max-width: 360px) {
  .hero-title { font-size: 1.5rem; }
  .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.7rem 0.3rem 0.4rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .stat-number { font-size: 1.2rem; }
  .lang-toggle { display: none; }
  .container { padding: 0 0.75rem; }
}

/* ── Floating App Toast ────────────────────────────────── */
.app-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 340px;
  width: calc(100% - 2rem);
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, rgba(11, 18, 37, 0.92), rgba(22, 32, 54, 0.95));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 212, 255, 0.06),
    inset 0 1px 0 var(--glass-shine);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease-spring), opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}
.app-toast::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-accent);
  border-radius: var(--radius) var(--radius) 0 0;
}
.app-toast.visible {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.app-toast.hiding {
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.35s ease, visibility 0.4s ease;
}
.app-toast-close {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.app-toast-close:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.app-toast-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(99, 102, 241, 0.12));
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 1.2rem;
}
.app-toast-body { flex: 1; min-width: 0; }
.app-toast-badge {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: var(--radius-full);
  padding: 0.15rem 0.55rem;
  margin-bottom: 0.35rem;
}
.app-toast-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.15rem;
}
.app-toast-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.7rem;
}
.app-toast-buttons {
  display: flex;
  gap: 0.5rem;
}
.app-toast-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem; font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.app-toast-btn i { font-size: 0.85rem; }
.app-toast-btn:hover {
  background: var(--accent-dim);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}
/* Pulse glow ring animation on toast icon */
.app-toast.visible .app-toast-icon {
  animation: toastPulse 2.5s ease-in-out infinite;
}
@keyframes toastPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0); }
}
/* Mobile: bottom full-width */
@media (max-width: 480px) {
  .app-toast {
    right: 0.75rem; left: 0.75rem; bottom: 0.75rem;
    max-width: none; width: auto;
    padding: 1rem 1.1rem;
    transform: translateY(120%);
  }
  .app-toast.visible { transform: translateY(0); }
  .app-toast.hiding { transform: translateY(120%); }
}

/* ── Utility ───────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; } .hidden { display: none !important; }
@keyframes spin { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
