/* ==========================================================================
   ALGO XAU - Premium Fintech Stylesheet
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Variables */
:root {
  --bg-color: #050505;
  --bg-darker: #020202;
  --bg-card: rgba(10, 10, 10, 0.7);
  --bg-card-hover: rgba(20, 20, 20, 0.85);
  
  /* Brand Colors */
  --gold: #00C853;
  --gold-glow: rgba(0, 200, 83, 0.25);
  --gold-glow-strong: rgba(0, 200, 83, 0.6);
  --green: #00C853;
  --green-glow: rgba(0, 200, 83, 0.2);
  --green-glow-strong: rgba(0, 200, 83, 0.6);
  --red: #FF3D00;
  --red-glow: rgba(255, 61, 0, 0.2);
  
  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #69F0AE 0%, #00C853 50%, #007C30 100%);
  --gold-text-gradient: linear-gradient(135deg, #FFFFFF 10%, #69F0AE 60%, #00C853 100%);
  --green-gradient: linear-gradient(135deg, #69F0AE 0%, #00C853 50%, #007C30 100%);
  --dark-gradient: linear-gradient(180deg, #0A0A0A 0%, #050505 100%);
  --card-border-gold: linear-gradient(135deg, rgba(0, 200, 83, 0.3) 0%, rgba(0, 200, 83, 0.05) 50%, rgba(0, 200, 83, 0) 100%);
  --card-border-green: linear-gradient(135deg, rgba(0, 200, 83, 0.3) 0%, rgba(0, 200, 83, 0.05) 50%, rgba(0, 200, 83, 0) 100%);
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadow & Blur */
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
  --glass-blur: blur(16px);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button, input, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: 4px;
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

.text-gold {
  color: var(--gold);
}

.text-green {
  color: var(--green);
}

.text-muted {
  color: var(--text-secondary);
}

/* Background Canvas & Orbs */
#canvas-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.radial-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

.radial-glow-green {
  position: absolute;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

/* Layout Grid Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 100;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.header.scrolled {
  height: 70px;
  background: rgba(2, 2, 2, 0.9);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header.scrolled .logo img {
  height: 52px !important;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.05em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #000 100%);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 0 15px var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  animation: shine 4s infinite linear;
}

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

.logo .xau {
  color: var(--green);
  text-shadow: 0 0 10px rgba(0, 200, 83, 0.3);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 200, 83, 0.02) 100%);
  border: 1px solid var(--green);
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-cta-btn:hover {
  background: var(--green-gradient);
  color: var(--bg-darker);
  box-shadow: 0 0 20px var(--green-glow-strong);
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 110;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--border-radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--green-gradient);
  color: var(--bg-darker);
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.25);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--green-glow-strong);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(0, 200, 83, 0.05);
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 4px 25px rgba(0, 200, 83, 0.2);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 200, 83, 0.02) 100%);
  color: var(--text-primary);
  border: 1px solid var(--green);
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.1);
}

.btn-whatsapp:hover {
  background: var(--green-gradient);
  color: var(--bg-darker);
  box-shadow: 0 8px 25px var(--green-glow-strong);
  transform: translateY(-3px);
}

/* Glassmorphism Cards */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1.5px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(0, 200, 83, 0.03) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

.hero-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green);
  box-shadow: 0 0 8px var(--green);
  display: inline-block;
  animation: pulse 1.5s infinite alternate;
}

.hero-title {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.hero-feature-item svg {
  color: var(--green);
  filter: drop-shadow(0 0 4px var(--green-glow));
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Floating Chart Widget (Hero Right) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.chart-widget {
  width: 100%;
  max-width: 480px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 0 20px rgba(255,255,255,0.01);
}

.chart-widget::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  filter: blur(10px);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.chart-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chart-title-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.chart-title-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border: 0.5px solid rgba(212, 175, 55, 0.3);
}

.chart-stats {
  display: flex;
  gap: 16px;
  font-size: 12px;
}

.chart-stat-item span {
  display: block;
}

.chart-stat-label {
  color: var(--text-secondary);
}

.chart-stat-value {
  font-weight: 700;
  color: var(--green);
}

/* Candlestick Canvas container */
.chart-container {
  position: relative;
  height: 220px;
  width: 100%;
}

#hero-chart {
  width: 100%;
  height: 100%;
}

.floating-badge {
  position: absolute;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  z-index: 5;
  animation: float 4s ease-in-out infinite;
}

.badge-profit {
  top: -20px;
  right: -20px;
  border-left: 3px solid var(--green);
  animation-delay: 0.5s;
}

.badge-winrate {
  bottom: -15px;
  left: -20px;
  border-left: 3px solid var(--gold);
  animation-delay: 1.5s;
}

.badge-label {
  font-size: 11px;
  color: var(--text-secondary);
  display: block;
}

.badge-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
}

/* Trust Stats Bar */
.stats-bar {
  padding: 40px 0;
  background: rgba(3, 3, 3, 0.8);
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 4px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 15px rgba(212,175,55,0.05);
}

.stat-desc {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Sections Base Styling */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px auto;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 16px;
}

/* About Section */
.about {
  background: radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Gold bars render / abstract gold graphics */
.about-graphics-container {
  width: 100%;
  max-width: 440px;
  height: 380px;
  position: relative;
}

.about-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.03);
  position: relative;
  z-index: 1;
}

.gold-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
}

.graphic-card-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 70%;
  padding: 20px;
  border-color: rgba(212, 175, 55, 0.15);
  z-index: 2;
}

.graphic-card-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 70%;
  padding: 20px;
  border-color: rgba(0, 200, 83, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  z-index: 2;
}

.graphic-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: block;
}

.graphic-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}

.mini-chart {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-top: 10px;
}

.mini-chart-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  height: 10%;
  transition: height 1s ease;
}

.mini-chart-bar.active {
  background: var(--gold-gradient);
}

.mini-chart-bar.green-active {
  background: var(--green-gradient);
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-pretitle {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.25;
}

.about-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 15px;
}

.about-list-item svg {
  color: var(--gold);
}

/* Why Choose Grid */
.why-choose {
  background: radial-gradient(circle at 10% 80%, rgba(0, 200, 83, 0.02) 0%, transparent 60%);
}

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

.choose-card {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.choose-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.02);
}

.choose-card-hover-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.choose-card:hover .choose-card-hover-border {
  transform: scaleX(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--gold);
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.choose-card:hover .card-icon {
  background: var(--gold-gradient);
  color: var(--bg-darker);
  box-shadow: 0 0 15px var(--gold-glow-strong);
  border-color: transparent;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-body {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Advantages Section */
.advantages {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.advantages-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: rgba(212, 175, 55, 0.02);
  border-color: rgba(212, 175, 55, 0.1);
  transform: translateX(5px);
}

.advantage-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.advantage-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.advantage-info p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Algorithmic Live Board Mockup (Advantages Right) */
.live-board {
  border-color: rgba(0, 200, 83, 0.15);
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 30px rgba(0, 200, 83, 0.01);
}

.live-board-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.board-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.status-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.board-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}

.live-board-content {
  padding: 24px;
}

.live-price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.price-meta span {
  display: block;
}

.price-ticker {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.price-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.price-digits-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--green);
  transition: color 0.1s ease;
}

.price-change {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.trades-log {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 16px;
  font-family: 'Courier New', Courier, monospace;
}

.trades-log-title {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 6px;
  letter-spacing: 0.05em;
}

.log-entry {
  font-size: 12px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  animation: logReveal 0.5s forwards ease;
}

.log-time {
  color: var(--text-muted);
}

.log-action {
  font-weight: bold;
}

.log-action.buy {
  color: var(--green);
}

.log-action.sell {
  color: var(--red);
}

.log-result {
  color: var(--gold);
}

/* Community Section */
.community {
  background: linear-gradient(180deg, #050505 0%, #0c0a06 50%, #050505 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.05);
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.community-panel {
  padding: 60px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.03);
}

.community-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.community-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.community-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.community-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 36px;
}

.community-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.comm-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comm-feat-item svg {
  color: var(--gold);
}

.community-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Contact Section */
.contact {
  background: radial-gradient(circle at 85% 85%, rgba(0, 200, 83, 0.03) 0%, transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-header-block h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-header-block p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-method-card.whatsapp:hover {
  border-color: var(--green);
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.05);
}

.contact-method-card.telegram:hover {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.contact-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
}

.whatsapp .contact-icon-wrapper {
  color: var(--green);
  background: rgba(0, 200, 83, 0.05);
}

.telegram .contact-icon-wrapper {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.contact-card-info h4 {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-card-info p {
  font-size: 16px;
  font-weight: 700;
}

/* Call to Action Promo Box */
.cta-promo-box {
  padding: 32px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.01) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-md);
  margin-top: auto;
}

.cta-promo-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-promo-box p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.cta-promo-box-actions {
  display: flex;
  gap: 12px;
}

.cta-promo-box-actions .btn {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 8px;
}

/* Quick Contact Form */
.contact-form-container {
  padding: 40px;
  border-color: rgba(255, 255, 255, 0.05);
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* Profit Calculator Section */
.calculator {
  background: radial-gradient(circle at 90% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
}

.calculator-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 48px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
}

.calc-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.calc-group {
  width: 100%;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calc-value-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}

/* Custom Sliders */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: background 0.3s ease;
}

.calc-slider:focus {
  background: rgba(255, 255, 255, 0.12);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 10px var(--gold-glow-strong);
  transition: transform 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Risk Option Cards Grid */
.risk-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.risk-option {
  padding: 16px 12px;
  text-align: center;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.01);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.risk-option:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

/* Color specific active states */
.risk-option.active#risk-low {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.08);
}

.risk-option.active#risk-medium {
  border-color: var(--green);
  background: rgba(0, 200, 83, 0.06);
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.08);
}

.risk-option.active#risk-high {
  border-color: var(--red);
  background: rgba(255, 61, 0, 0.06);
  box-shadow: 0 0 15px rgba(255, 61, 0, 0.08);
}

.risk-title {
  font-size: 13px;
  font-weight: 700;
}

.risk-rate {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Outputs Card */
.calc-outputs {
  background: rgba(255, 255, 255, 0.012);
  border: 1.5px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  padding: 32px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.calc-output-box {
  text-align: center;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.calc-output-label {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.calc-output-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
}

.calc-output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}

.calc-sub-output span:first-child {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.calc-sub-output .sub-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

/* Broker Independence Section */
.broker-control {
  background: radial-gradient(circle at 10% 50%, rgba(0, 200, 83, 0.02) 0%, transparent 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.broker-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.broker-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.broker-mockup {
  width: 100%;
  max-width: 440px;
  border-color: rgba(0, 200, 83, 0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.mockup-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.mockup-dot.red { background-color: #ff5f56; }
.mockup-dot.yellow { background-color: #ffbd2e; }
.mockup-dot.green { background-color: #27c93f; }

.mockup-title {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 700;
  margin-left: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Performance Section */
.performance {
  background: radial-gradient(circle at 10% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.performance-card {
  display: flex;
  gap: 28px;
  padding: 28px;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.04);
}

.performance-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.02);
}

.perf-image-wrapper {
  flex: 0 0 160px;
  height: 310px;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid #1a1a1a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  background: #000;
  transition: transform 0.3s ease;
}

.performance-card:hover .perf-image-wrapper {
  transform: scale(1.05) rotate(1deg);
}

.perf-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perf-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.perf-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 16px;
}

.perf-status-badge.text-gold {
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.08);
}

.perf-status-badge.text-green {
  color: var(--green);
  border: 1px solid rgba(0, 200, 83, 0.25);
  background: rgba(0, 200, 83, 0.08);
}

.perf-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.perf-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.perf-stats-row {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.perf-stat-block span {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.perf-stat-block strong {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 800;
}

/* Disclaimer & Footer */
.disclaimer-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 20px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.disclaimer-box strong {
  color: var(--text-secondary);
  display: block;
  margin-bottom: 6px;
}

.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-desc p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 260px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-newsletter-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form .form-input {
  padding: 10px 14px;
  font-size: 13px;
}

.newsletter-btn {
  background: var(--gold-gradient);
  color: var(--bg-darker);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px var(--gold-glow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 30px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link:hover {
  color: var(--text-secondary);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

@keyframes shine {
  0% { transform: translate(-50%, -50%) rotate(45deg) translateX(-150%); }
  100% { transform: translate(-50%, -50%) rotate(45deg) translateX(150%); }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 200, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
  }
}

@keyframes logReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-features {
    justify-items: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-visual {
    order: 2;
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    height: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(2, 2, 2, 0.98);
    backdrop-filter: var(--glass-blur);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 90;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .nav-cta-btn {
    display: none; /* Hide on mobile navbar header */
  }
  
  .nav-menu .nav-cta-btn {
    display: inline-flex; /* Show inside mobile menu */
    width: 200px;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .community-title {
    font-size: 30px;
  }
  
  .community-panel {
    padding: 40px 20px;
  }
  
  .community-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .contact-form-container {
    padding: 24px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .performance-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .performance-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 32px 20px;
  }

  .perf-status-badge {
    margin: 0 auto 16px auto;
  }

  .perf-stats-row {
    justify-content: center;
    width: 100%;
  }

  .calculator-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px;
  }

  .calc-outputs {
    padding: 24px 16px;
  }

  .broker-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .hero-features {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-left: 20px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-badge {
    display: none;
  }
  
  .chart-widget {
    padding: 16px;
  }
  
  .about-graphics-container {
    height: 300px;
  }
  
  .graphic-card-1, .graphic-card-2 {
    width: 85%;
  }
}
