:root {
    --cyan: #00C8FF;
    --violet: #7B61FF;
    --navy: #080C16;
    --card: #0D1421;
    --border: #1A2540;
    --muted: #4B6080;
    --text: #E8F0FE;
    --mono: 'Share Tech Mono', monospace;
    --sans: 'Inter', sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  html, body { background: var(--navy); color: var(--text); font-family: var(--sans); overflow-x: hidden; max-width: 100vw; }
  #candleWatermark { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 1; will-change: transform; }
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--navy); }
  ::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }
  .grad { background: linear-gradient(90deg, var(--cyan), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

  /* NAV */
  nav { position: fixed; top: 0; width: 100%; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 16px 5%; backdrop-filter: blur(16px); background: rgba(8,12,22,0.92); border-bottom: 1px solid var(--border); }
  .logo { font-family: var(--mono); font-size: 1.3rem; letter-spacing: 2px; text-decoration: none; display: block; }
  .logo span { color: var(--cyan); }
  .logo em { color: #fff; font-style: normal; font-weight: 300; }
  .nav-links { display: flex; gap: 20px; list-style: none; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; font-family: var(--mono); cursor: pointer; }
  .nav-links a:hover { color: var(--cyan); }
  .nav-cta { background: linear-gradient(90deg, var(--cyan), var(--violet)); color: #fff; border: none; padding: 10px 22px; border-radius: 4px; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 1px; cursor: pointer; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
  .nav-cta:hover { opacity: 0.85; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 1px; }

  /* SECTIONS */
  section { padding: 96px 8%; position: relative; z-index: 1; }
  .section-tag { font-family: var(--mono); font-size: 0.72rem; color: var(--cyan); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; }
  .section-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
  .section-sub { color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 580px; }
  .divider { width: 48px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--violet)); border-radius: 1px; margin: 20px 0 40px; }

  /* HERO */
  #hero { padding-top: 140px; padding-bottom: 100px; display: flex; align-items: flex-start; position: relative; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(0,200,255,0.06) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 20% 80%, rgba(123,97,255,0.07) 0%, transparent 60%); }
  .hero-bg::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px); background-size: 60px 60px; }
  .hero-content { position: relative; z-index: 2; max-width: 820px; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 0.72rem; color: var(--cyan); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; }
  .hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--cyan); }
  .hero-h1 { font-size: clamp(1.5rem, 2.4vw, 2.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 24px; white-space: nowrap; }
  .banner-rotator { position: relative; min-height: clamp(80px, 7vw, 140px); }
  .banner-slide { position: absolute; top: 0; left: 0; right: 0; opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; pointer-events: none; }
  .banner-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
  .banner-dots { display: flex; gap: 8px; margin: -4px 0 28px; }
  .banner-dot { width: 22px; height: 3px; border-radius: 2px; background: var(--border); cursor: pointer; transition: background 0.3s, width 0.3s; }
  .banner-dot.active { background: linear-gradient(90deg, var(--cyan), var(--violet)); width: 36px; }
  .hero-p { font-size: 0.95rem; color: #8AA0C0; line-height: 1.8; margin-bottom: 40px; }
  .btn-primary { background: linear-gradient(90deg, var(--cyan), var(--violet)); color: #fff; padding: 14px 30px; border-radius: 4px; font-family: var(--mono); font-size: 0.83rem; letter-spacing: 1px; text-decoration: none; transition: opacity 0.2s; display: inline-block; }
  .btn-primary:hover { opacity: 0.85; }
  .hero-stats { display: flex; gap: 40px; margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); flex-wrap: wrap; }
  .stat-item .num { font-family: var(--mono); font-size: 1.9rem; font-weight: 700; color: #fff; }
  .stat-item .num span { color: var(--cyan); }
  .stat-item .lbl { font-size: 0.75rem; color: var(--muted); letter-spacing: 1px; margin-top: 4px; }

  /* ABOUT */
  #about { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .about-visual-cards { display: flex; flex-direction: column; gap: 16px; }
  .avc { background: var(--navy); border: 1px solid var(--border); border-radius: 8px; padding: 22px 24px; display: flex; align-items: flex-start; gap: 16px; transition: border-color 0.2s; }
  .avc:hover { border-color: var(--cyan); }
  .avc-icon { flex-shrink: 0; margin-top: 2px; }
  .avc h4 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 5px; }
  .avc p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
  .focus-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
  .about-more { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
  .about-more.open { max-height: 600px; }
  .read-more-btn { background: none; border: none; color: var(--cyan); font-family: var(--mono); font-size: 0.8rem; letter-spacing: 1px; cursor: pointer; padding: 14px 0 0; display: flex; align-items: center; gap: 6px; transition: opacity 0.2s; }
  .read-more-btn:hover { opacity: 0.8; }
  #about-arrow { transition: transform 0.3s; display: inline-block; }
  #about-arrow.flip { transform: rotate(180deg); }
  .focus-item { display: flex; align-items: flex-start; gap: 16px; }
  .focus-icon { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; background: var(--navy); color: var(--cyan); }
  .focus-item h4 { font-size: 0.93rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
  .focus-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

  /* AI AGENT DEMO WIDGET */
  .ai-widget { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; overflow: hidden; height: 480px; }
  .ai-widget::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0,200,255,0.05) 0%, transparent 70%); pointer-events: none; }
  .ai-grid { position: relative; display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 18px; z-index: 2; height: 100%; }
  .side-panel { background: var(--navy); border: 1px solid var(--border); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.4s, box-shadow 0.4s; overflow: hidden; height: 100%; }
  .side-panel.scanning { border-color: var(--cyan); box-shadow: 0 0 24px rgba(0,200,255,0.12); }
  .panel-label { font-family: var(--mono); font-size: 0.68rem; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
  .scan-badge { font-family: var(--mono); font-size: 0.56rem; color: var(--cyan); border: 1px solid var(--cyan); border-radius: 3px; padding: 2px 6px; opacity: 0; transition: opacity 0.3s; letter-spacing: 1px; }
  .scan-badge.active { opacity: 1; animation: aiPulse 1.2s ease-in-out infinite; }
  @keyframes aiPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
  .up-row { display: flex; justify-content: space-between; font-size: 0.72rem; padding: 6px 0; border-bottom: 1px solid var(--border); }
  .up-row span:first-child { color: var(--muted); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.5px; }
  .up-row span:last-child { color: var(--text); font-weight: 500; }
  .mini-chart-box { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 10px; height: 84px; position: relative; overflow: hidden; }
  .mini-chart-box svg { width: 100%; height: 100%; }
  .scan-sweep { position: absolute; top: 0; bottom: 0; width: 40%; background: linear-gradient(90deg, transparent, rgba(0,200,255,0.18), transparent); transform: translateX(-150%); }
  .scan-sweep.sweeping { animation: aiSweep 1.8s ease-in-out; }
  @keyframes aiSweep { from { transform: translateX(-150%); } to { transform: translateX(350%); } }
  .asset-pills { display: flex; flex-wrap: wrap; gap: 6px; }
  .asset-pill { font-family: var(--mono); font-size: 0.64rem; background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 4px 8px; color: var(--muted); transition: all 0.3s; }
  .asset-pill.lit { color: var(--violet); border-color: var(--violet); }
  .stat-table { font-family: var(--mono); font-size: 0.64rem; }
  .stat-head, .stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; padding: 4px 0; }
  .stat-head { color: var(--muted); border-bottom: 1px solid var(--border); margin-bottom: 4px; }
  .stat-row { color: var(--text); opacity: 0; transform: translateY(4px); transition: opacity 0.4s, transform 0.4s; }
  .stat-row.shown { opacity: 1; transform: translateY(0); }
  .stat-row .win { color: #00FF87; }
  .chat-panel { background: var(--navy); border: 1px solid var(--border); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; height: 100%; overflow: hidden; }
  .chat-header { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 16px; flex-shrink: 0; }
  .chat-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--violet)); flex-shrink: 0; }
  .chat-title { font-family: var(--mono); font-size: 0.82rem; color: #fff; font-weight: 700; letter-spacing: 0.5px; }
  .chat-sub { font-family: var(--mono); font-size: 0.64rem; color: #00FF87; }
  .chat-sub::before { content: '● '; }
  .chat-body { flex: 1; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; overflow-x: hidden; scroll-behavior: smooth; min-height: 0; padding-right: 4px; scrollbar-width: none; -ms-overflow-style: none; }
  .chat-body::-webkit-scrollbar { display: none; }
  .msg { display: flex; gap: 10px; opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s; }
  .msg.shown { opacity: 1; transform: translateY(0); }
  .msg-avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--violet)); flex-shrink: 0; }
  .msg-bubble { background: #131D33; border-radius: 8px; padding: 10px 14px; font-size: 0.78rem; color: #C8D6E8; max-width: 80%; line-height: 1.5; }
  .msg.user { flex-direction: row-reverse; }
  .msg.user .msg-bubble { background: var(--border); color: #fff; }
  .msg.user .msg-avatar { background: var(--muted); }
  .typing-dots { display: inline-flex; gap: 3px; padding: 4px 0; }
  .typing-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); animation: aiBlink 1.2s infinite; }
  .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
  .typing-dots span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes aiBlink { 0%,80%,100% { opacity: 0.2; } 40% { opacity: 1; } }
  .signal-card { background: #131D33; border: 1px solid var(--cyan); border-radius: 8px; padding: 14px; margin-top: 4px; opacity: 0; transform: translateY(8px); transition: opacity 0.5s, transform 0.5s; }
  .signal-card.shown { opacity: 1; transform: translateY(0); }
  .signal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
  .signal-pair { font-family: var(--mono); font-size: 0.76rem; color: #fff; font-weight: 700; }
  .signal-badge { font-family: var(--mono); font-size: 0.6rem; padding: 3px 9px; border-radius: 10px; font-weight: 700; }
  .signal-badge.buy { background: rgba(0,255,135,0.15); color: #00FF87; }
  .signal-chart { height: 54px; margin-bottom: 8px; }
  .signal-chart svg { width: 100%; height: 100%; }
  .signal-stats { display: flex; gap: 16px; font-family: var(--mono); font-size: 0.6rem; color: var(--muted); flex-wrap: wrap; }
  .signal-stats b { color: var(--text); }

  /* AUM Counter */
  .aum-box { margin-top: 4px; }
  .aum-value { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1; margin: 8px 0 6px; }
  .aum-unit { font-size: 0.9rem; color: var(--cyan); margin-left: 2px; }
  .aum-bar-wrap { background: var(--border); border-radius: 2px; height: 4px; overflow: hidden; margin-bottom: 6px; }
  .aum-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--cyan), var(--violet)); border-radius: 2px; transition: width 0.4s ease; }
  .aum-sub { font-family: var(--mono); font-size: 0.62rem; color: var(--muted); }
  .aum-pct { color: #00FF87; }

  /* Profit Acceleration */
  .profit-accel-box { margin-top: 4px; }
  .pa-metrics { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
  .pa-metric { display: flex; flex-direction: column; gap: 3px; }
  .pa-label { font-family: var(--mono); font-size: 0.6rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
  .pa-val { font-family: var(--mono); font-size: 0.85rem; font-weight: 700; }
  .pa-val.green { color: #00FF87; }
  .pa-val.cyan { color: var(--cyan); }
  .pa-val.violet { color: var(--violet); }
  .pa-bar-wrap { background: var(--border); border-radius: 2px; height: 3px; overflow: hidden; }
  .pa-bar { height: 100%; width: 0%; border-radius: 2px; transition: width 0.6s ease; }
  .green-bar { background: #00FF87; }
  .cyan-bar { background: var(--cyan); }
  .violet-bar { background: var(--violet); }
  @media (max-width: 880px) {
    .ai-grid { grid-template-columns: 1fr; height: 100%; }
    .side-panel { display: none; }
    .ai-widget { padding: 18px; height: 400px; }
    @media (max-width: 600px) { .ai-widget { height: 520px; } }
    .chat-panel { height: 100%; }
  }

  /* SWING MASTER AI */
  #swingmaster { background: var(--navy); }
  .sm-callout { background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--cyan); border-radius: 8px; padding: 28px 32px; margin-top: 40px; width: 100%; }
  .sm-callout-tag { font-family: var(--mono); font-size: 0.72rem; color: var(--cyan); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
  .sm-callout p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; }
  .sm-subhead { font-size: 1.5rem; font-weight: 700; color: #fff; margin-top: 56px; }
  .sm-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
  .sm-step { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 22px; display: flex; align-items: flex-start; gap: 14px; transition: border-color 0.2s; }
  .sm-step:hover { border-color: var(--cyan); }
  .sm-step-num { font-family: var(--mono); font-size: 0.95rem; color: var(--cyan); font-weight: 700; border: 1px solid var(--border); border-radius: 6px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .sm-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; padding-top: 6px; }
  .sm-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
  .sm-tag { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 9px 18px; font-size: 0.82rem; color: var(--text); transition: border-color 0.2s, color 0.2s; }
  .sm-tag:hover { border-color: var(--cyan); color: var(--cyan); }
  .sm-closing { background: linear-gradient(135deg, rgba(0,200,255,0.06), rgba(123,97,255,0.06)); border: 1px solid var(--border); border-radius: 10px; padding: 40px; margin-top: 64px; text-align: center; width: 100%; }
  .sm-closing p { color: var(--muted); line-height: 1.8; max-width: 700px; margin-left: auto; margin-right: auto; }

  /* VISION & MISSION */
  #vision { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
  .vm-card { background: var(--navy); border: 1px solid var(--border); border-radius: 10px; padding: 36px; position: relative; overflow: hidden; }
  .vm-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--violet)); }
  .vm-icon { margin-bottom: 14px; }
  .vm-title { font-size: 1.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 4px; }
  .vm-text { font-size: 0.92rem; color: var(--muted); line-height: 1.85; }
  .vm-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .vm-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
  .vm-num { font-family: var(--mono); font-size: 0.75rem; color: var(--cyan); flex-shrink: 0; margin-top: 2px; border: 1px solid var(--border); border-radius: 4px; width: 28px; height: 22px; display: flex; align-items: center; justify-content: center; }

  /* MARKETS */
  .markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .market-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 26px; transition: border-color 0.2s, transform 0.2s; cursor: pointer; }
  .market-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
  .market-icon { margin-bottom: 14px; color: var(--cyan); }
  .market-card h3 { font-size: 0.97rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
  .market-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

  /* BENEFITS */
  #benefits { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .benefit-card { background: var(--navy); border: 1px solid var(--border); border-radius: 8px; padding: 30px; transition: transform 0.25s; position: relative; overflow: hidden; }
  .benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--violet)); opacity: 0; transition: opacity 0.25s; }
  .benefit-card:hover { transform: translateY(-4px); }
  .benefit-card:hover::before { opacity: 1; }
  .benefit-num { font-family: var(--mono); font-size: 0.68rem; color: var(--cyan); letter-spacing: 2px; margin-bottom: 14px; }
  .benefit-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
  .benefit-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

  /* VS TABLE */
  .vs-wrap { overflow-x: auto; margin-top: 48px; }
  .vs-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 480px; }
  .vs-table th { padding: 14px 20px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; }
  .vs-table th:first-child { color: var(--muted); text-align: left; }
  .vs-table th.human { color: #FF4D6A; text-align: center; }
  .vs-table th.ai { color: var(--cyan); text-align: center; }
  .vs-table td { padding: 13px 20px; border-top: 1px solid var(--border); }
  .vs-table td:first-child { color: var(--muted); font-size: 0.78rem; letter-spacing: 1px; }
  .vs-table td.human-val { color: #FF4D6A; text-align: center; }
  .vs-table td.ai-val { color: #00FF87; text-align: center; font-weight: 600; }
  .vs-table tr:hover td { background: rgba(0,200,255,0.03); }

  /* FAQ */
  .faq-list { display: flex; flex-direction: column; gap: 10px; width: 100%; }
  .faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
  .faq-q { padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 0.93rem; font-weight: 500; color: #fff; user-select: none; gap: 16px; }
  .faq-q:hover { color: var(--cyan); }
  .faq-icon { font-family: var(--mono); color: var(--cyan); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
  .faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-a p { font-size: 0.86rem; color: var(--muted); line-height: 1.75; padding-bottom: 18px; }
  .faq-a ul { padding: 0 0 18px 18px; margin: 0; }
  .faq-a ul li { font-size: 0.86rem; color: var(--muted); line-height: 1.7; margin-bottom: 5px; }
  .faq-a p + p { padding-top: 0; }
  .faq-item.open .faq-a { max-height: 600px; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  /* CONTACT */
  #contact { background: var(--navy); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact-form { display: flex; flex-direction: column; gap: 12px; }
  .contact-form input, .contact-form textarea, .contact-form select { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 13px 16px; color: var(--text); font-family: var(--sans); font-size: 0.87rem; outline: none; transition: border-color 0.2s; width: 100%; }
  .contact-form select option { background: var(--card); }
  .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--cyan); }
  .contact-form textarea { height: 118px; resize: vertical; }
  .contact-form button { background: linear-gradient(90deg, var(--cyan), var(--violet)); color: #fff; border: none; padding: 14px; border-radius: 4px; font-family: var(--mono); font-size: 0.85rem; letter-spacing: 1px; cursor: pointer; transition: opacity 0.2s; }
  .contact-form button:hover { opacity: 0.85; }
  .contact-info { display: flex; flex-direction: column; gap: 22px; }
  .contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
  .ci-icon { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: var(--card); }
  .ci-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; font-family: var(--mono); }
  .ci-val { font-size: 0.9rem; color: #fff; }
  .ci-val a { color: var(--cyan); text-decoration: none; }
  .ci-val a:hover { text-decoration: underline; }
  .social-links { display: flex; gap: 10px; flex-wrap: wrap; }
  .social-link { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
  .social-link:hover { border-color: var(--cyan); color: var(--cyan); }

  /* FOOTER */
  footer { background: var(--card); border-top: 1px solid var(--border); padding: 60px 8% 32px; position: relative; z-index: 1; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
  .footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; max-width: 250px; margin-top: 14px; }
  .footer-col h4 { font-family: var(--mono); font-size: 0.7rem; color: var(--cyan); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-col ul a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; cursor: pointer; }
  .footer-col ul a:hover { color: var(--cyan); }
  .footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 14px; padding-top: 28px; border-top: 1px solid var(--border); text-align: center; }
  .footer-bottom p { font-size: 0.76rem; color: var(--muted); }
  .footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-legal a { color: var(--muted); text-decoration: none; font-size: 0.76rem; transition: color 0.2s; cursor: pointer; }
  .footer-legal a:hover { color: var(--cyan); }

  /* WHATSAPP */
  .wa-btn { position: fixed; bottom: 28px; right: 28px; z-index: 1000; display: flex; align-items: center; gap: 0; background: #229ED9; border-radius: 28px; box-shadow: 0 4px 20px rgba(34,158,217,0.4); text-decoration: none; overflow: hidden; transition: box-shadow 0.3s, bottom 0.3s ease; }
  .wa-btn:hover { box-shadow: 0 6px 28px rgba(34,158,217,0.6); }
  .wa-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .wa-icon svg { width: 24px; height: 24px; fill: white; }
  .wa-label { color: white; font-family: var(--mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; white-space: nowrap; max-width: 0; overflow: hidden; transition: max-width 0.4s ease, padding-right 0.4s ease; padding-right: 0; display: flex; align-items: center; height: 50px; }
  .wa-btn:hover .wa-label { max-width: 160px; padding-right: 18px; }
  @media (max-width: 600px) { .wa-btn { right: 16px; } }


  /* TESTIMONIALS MARQUEE */
  #testimonials { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .testi-header { text-align: center; margin-bottom: 40px; }
  .testi-title { font-size: 1rem; font-weight: 400; color: var(--muted); margin-bottom: 4px; }
  .testi-title strong { display: block; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: #fff; }
  .testi-divider { width: 48px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--violet)); border-radius: 1px; margin: 14px auto 0; }
  .marquee-outer { overflow: hidden; position: relative; }
  .marquee-outer::before, .marquee-outer::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
  .marquee-outer::before { left: 0; background: linear-gradient(90deg, var(--card), transparent); }
  .marquee-outer::after { right: 0; background: linear-gradient(270deg, var(--card), transparent); }
  .marquee-track { display: flex; gap: 20px; width: max-content; animation: marqueeScroll 55s linear infinite; padding: 8px 0; }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .t-card { background: var(--navy); border: 1px solid var(--border); border-top: 2px solid var(--cyan); border-radius: 10px; padding: 24px; width: 300px; flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.3s; }
  .t-card:hover { border-color: var(--cyan); }
  .t-heading { font-size: 0.9rem; font-weight: 700; color: #fff; line-height: 1.4; }
  .t-quote { font-size: 0.78rem; color: var(--muted); line-height: 1.75; flex: 1; }
  .t-footer { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; }
  .t-photo { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), var(--cyan)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 9px; color: rgba(255,255,255,0.4); border: 2px solid var(--cyan); overflow: hidden; }
  .t-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .t-name { font-size: 0.82rem; font-weight: 600; color: #fff; }
  .t-meta { font-size: 0.72rem; color: var(--muted); }

  /* FIXED BOTTOM TICKER */
  #fixedTicker { position:fixed; bottom:0; left:0; right:0; z-index:999; transition: bottom 0.3s ease; }
  .tick-wrap { background:#080C16; border-top:1px solid #1A2540; padding:16px 0; overflow:hidden; position:relative; }
  .tick-wrap::before,.tick-wrap::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
  .tick-wrap::before { left:0; background:linear-gradient(90deg,#080C16,transparent); }
  .tick-wrap::after { right:0; background:linear-gradient(270deg,#080C16,transparent); }
  .tick-track { display:flex; gap:0; width:max-content; animation:tickerScroll 40s linear infinite; }
  .tick-track:hover { animation-play-state:paused; }
  @keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .tick-item { display:flex; align-items:center; gap:8px; padding:0 22px; border-right:1px solid #1A2540; white-space:nowrap; }
  .tick-logo { width:22px; height:22px; border-radius:50%; flex-shrink:0; }
  .tick-pair { font-family:var(--mono); font-size:0.8rem; font-weight:700; color:#fff; letter-spacing:0.5px; }
  .tick-up { color:#00FF87; font-family:var(--mono); font-size:0.76rem; font-weight:600; }
  .tick-dn { color:#FF4D6A; font-family:var(--mono); font-size:0.76rem; font-weight:600; }
  /* COOKIE */
  #cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--card); border-top: 1px solid var(--border); padding: 12px 5%; display: none; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.82rem; color: var(--muted); max-width: 100vw; overflow: hidden; box-sizing: border-box; }
  #cookie-banner.visible { display: flex; }
  #cookie-banner a { color: var(--cyan); text-decoration: none; cursor: pointer; }
  #cookie-accept { background: linear-gradient(90deg, var(--cyan), var(--violet)); color: #fff; border: none; padding: 8px 20px; border-radius: 4px; font-family: var(--mono); font-size: 0.76rem; cursor: pointer; white-space: nowrap; }

  /* MODAL */
  .modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(4,6,12,0.88); align-items: center; justify-content: center; padding: 20px; }
  .modal-overlay.open { display: flex; }
  .modal-box { background: var(--card); border: 1px solid var(--border); border-radius: 10px; max-width: 640px; width: 100%; max-height: 85vh; display: flex; flex-direction: column; position: relative; }
  .modal-header { padding: 24px 28px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
  .modal-header h3 { font-size: 1.1rem; font-weight: 700; color: #fff; }
  .modal-tag { font-family: var(--mono); font-size: 0.68rem; color: var(--cyan); letter-spacing: 3px; margin-bottom: 4px; }
  .modal-close { background: none; border: 1px solid var(--border); color: var(--muted); width: 32px; height: 32px; border-radius: 4px; cursor: pointer; font-size: 1rem; transition: color 0.2s, border-color 0.2s; flex-shrink: 0; }
  .modal-close:hover { color: #fff; border-color: var(--cyan); }
  .modal-body { padding: 24px 28px; overflow-y: auto; font-size: 0.87rem; color: var(--muted); line-height: 1.8; }
  .modal-body h4 { color: #fff; font-size: 0.95rem; margin: 20px 0 8px; font-weight: 600; }
  .modal-body h4:first-child { margin-top: 0; }
  .modal-body p { margin-bottom: 10px; }
  .modal-body ul { padding-left: 18px; margin-bottom: 10px; }
  .modal-body ul li { margin-bottom: 5px; }
  .modal-body a { color: var(--cyan); }

  /* MARKET POPUP */
  .mkt-popup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
  .mkt-popup-item { background: var(--navy); border: 1px solid var(--border); border-radius: 6px; padding: 14px 16px; }
  .mkt-popup-item .pair { font-family: var(--mono); font-size: 0.85rem; color: var(--cyan); font-weight: 700; margin-bottom: 4px; }
  .mkt-popup-item .desc { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

  /* ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .fade-up.visible {
    opacity: 1;
    transform: scale(1);
  }
  .fade-up:nth-child(1) { transition-delay: 0ms; }
  .fade-up:nth-child(2) { transition-delay: 60ms; }
  .fade-up:nth-child(3) { transition-delay: 120ms; }
  .fade-up:nth-child(4) { transition-delay: 180ms; }
  .fade-up:nth-child(5) { transition-delay: 240ms; }
  .fade-up:nth-child(6) { transition-delay: 300ms; }

  /* RESPONSIVE */
  @media (max-width: 1200px) {
    .nav-links { gap: 14px; }
    .nav-links a { font-size: 0.7rem; letter-spacing: 0; }
    nav { padding: 14px 3%; }
    .logo { font-size: 1.1rem; }
    .nav-cta { padding: 8px 14px; font-size: 0.72rem; }
    .hero-h1 { font-size: clamp(1.2rem, 2vw, 2rem); white-space: nowrap; }
    .banner-rotator { min-height: clamp(80px, 8vw, 150px); }
  }
  @media (max-width: 1050px) {
    .nav-links { gap: 10px; }
    .nav-links a { font-size: 0.65rem; }
  }
  @media (max-width: 960px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }
  @media (max-width: 900px) {
    .about-grid, .contact-grid, .vm-grid { grid-template-columns: 1fr; gap: 40px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .who-grid { grid-template-columns: repeat(2, 1fr); }
    .sm-steps { grid-template-columns: repeat(2, 1fr); }
    section { padding: 72px 5%; }
    #hero { min-height: auto; padding-top: 120px; padding-bottom: 80px; padding-left: 5%; padding-right: 5%; align-items: flex-start; }
    .mkt-popup-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
    .benefits-grid { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: 1fr; }
    .sm-steps { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; display: grid; grid-template-columns: repeat(2, 1fr); }
    .hero-h1.banner-slide { font-size: clamp(1.1rem, 5vw, 1.6rem); white-space: normal; }
    .hero-taglines .hero-p { white-space: normal !important; font-size: 0.85rem; }
    .banner-rotator { min-height: auto; }
    section { padding: 60px 4%; }
    #hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; align-items: flex-start; }
    .modal-body { padding: 18px 20px; }
    .modal-header { padding: 18px 20px; }
  }

  /* MOBILE NAV */
  .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(8,12,22,0.98); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { color: var(--text); text-decoration: none; font-family: var(--mono); font-size: 1.1rem; letter-spacing: 3px; text-transform: uppercase; transition: color 0.2s; }
  .mobile-nav a:hover { color: var(--cyan); }
  .mobile-nav-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--text); font-size: 1.8rem; cursor: pointer; }
.hero-taglines { display: flex; flex-direction: column; gap: 4px; margin-bottom: 36px; }
.hero-taglines .hero-p { margin-bottom: 0; }