/* ============================================
   BLODSALGO - Algorithmic Trading. Elevated.
   Modern Dark Theme Stylesheet
   ============================================ */

/* ---- Self-hosted Fonts ---- */
/* Inter - Latin Extended */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter - Latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* JetBrains Mono - Latin Extended */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* JetBrains Mono - Latin */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --bg-primary: #0F172A;
  --bg-secondary: #0A192F;
  --bg-card: #1E293B;
  --bg-card-hover: #334155;
  --bg-surface: #1E293B;

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --accent-gold: #64FFDA;
  --accent-gold-light: #a7ffeb;
  --accent-gold-dark: #4fd1b0;
  --accent-blue: #64FFDA;
  --accent-blue-light: #a7ffeb;

  --gradient-primary: linear-gradient(135deg, #64FFDA, #4fd1b0);
  --gradient-text: linear-gradient(135deg, #64FFDA, #FFD700);
  --gradient-hero: linear-gradient(180deg, rgba(15,23,42,0) 0%, var(--bg-primary) 100%);

  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;

  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);

  /* Spacing */
  --section-padding: 6rem 0;
  --container-max: 1200px;
  --container-padding: 1.5rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(100, 255, 218, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}


/* ---- Skip Link ---- */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
  z-index: 999; padding: 1rem;
  background: var(--accent-gold); color: var(--bg-primary);
  font-weight: 700; text-decoration: none;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: 1rem; top: 1rem;
  width: auto; height: auto;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}


/* ---- Utility Classes ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-accent {
  width: 22px;
  height: 22px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.icon-success {
  color: var(--success);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__header .section__desc {
  margin: 0 auto;
}


/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #030712;
  box-shadow: 0 2px 12px rgba(100, 255, 218, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 4px 24px rgba(100, 255, 218, 0.4);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(100, 255, 218, 0.05);
}

.btn--lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}


/* ---- Animations ---- */
.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in {
  transform: translateY(30px);
}

.fade-in-left {
  transform: translateX(-40px);
}

.fade-in-right {
  transform: translateX(40px);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.logo-text {
  color: var(--text-primary);
}

.logo-accent {
  color: var(--accent-gold);
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.navbar__links a:hover {
  color: var(--text-primary);
}

.navbar__ctas {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu__links a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.mobile-menu__links a:hover {
  color: var(--text-primary);
}

/* Desktop nav */
@media (min-width: 1024px) {
  .navbar__links {
    display: flex;
  }

  .navbar__ctas {
    display: flex;
  }

  .navbar__toggle {
    display: none;
  }
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F172A 0%, #0A192F 40%, #0F172A 60%, #0d1f3c 100%);
  background-size: 400% 400%;
  animation: gradient-shift 20s ease infinite;
  will-change: background-position;
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  will-change: transform;
  animation: glow-drift 25s ease-in-out infinite alternate;
}

@keyframes glow-drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(30px, -20px); }
}

.hero__glow--1 {
  width: 500px;
  height: 500px;
  background: var(--accent-gold);
  top: -10%;
  right: -5%;
  opacity: 0.08;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: var(--accent-blue);
  bottom: -5%;
  left: -5%;
  opacity: 0.06;
  animation-direction: alternate-reverse;
  animation-duration: 30s;
}

.hero__glow--3 {
  width: 600px;
  height: 600px;
  background: var(--accent-gold);
  top: 40%;
  left: 20%;
  opacity: 0.05;
  animation-duration: 28s;
}

/* Floating geometric shapes */
.hero__shape {
  position: absolute;
  border: 1px solid rgba(100, 255, 218, 0.06);
  pointer-events: none;
  animation: shape-drift 20s ease-in-out infinite alternate;
}

.hero__shape--1 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: 12%;
  right: 10%;
}

.hero__shape--2 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  bottom: 18%;
  left: 6%;
  border-color: rgba(255, 215, 0, 0.04);
  animation-duration: 25s;
  animation-direction: alternate-reverse;
}

.hero__shape--3 {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  top: 30%;
  left: 12%;
  animation-duration: 18s;
}

.hero__shape--4 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  bottom: 12%;
  right: 18%;
  border-color: rgba(100, 255, 218, 0.04);
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}

@keyframes shape-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, -15px); }
}

/* Rising particles */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__particles span {
  position: absolute;
  bottom: -5%;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: rgba(100, 255, 218, 0.7);
  box-shadow: 0 0 10px rgba(100, 255, 218, 0.5), 0 0 25px rgba(100, 255, 218, 0.2);
  animation: particle-rise var(--d) var(--del) linear infinite;
  will-change: transform, opacity;
}

@keyframes particle-rise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
    transform: translateY(-55vh) scale(1);
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) scale(0.6);
  }
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Two-column layout */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero__text {
  text-align: center;
}

/* Badge with shine effect */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-gold);
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero__badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.12), transparent);
  transform: translateX(-100%);
  animation: badge-shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badge-shine {
  0% { transform: translateX(-100%); }
  25% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Title */
.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Animated gradient accent */
.hero__title-accent {
  display: inline-block;
  background: linear-gradient(90deg, #64FFDA, #FFD700, #64FFDA, #FFD700, #64FFDA);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: title-shimmer 4s ease-in-out infinite;
}

@keyframes title-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Button shimmer effect */
.btn--shimmer {
  position: relative;
  overflow: hidden;
}

.btn--shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn--shimmer:hover::after {
  transform: translateX(100%);
}

/* Social Proof */
.hero__proof {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.hero__review-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__review-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  padding: 0;
}

.hero__review-arrow:hover {
  border-color: rgba(100, 255, 218, 0.3);
  color: var(--accent-gold);
  background: rgba(100, 255, 218, 0.05);
}

.hero__review-card {
  width: 100%;
  max-width: 480px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 60px rgba(100, 255, 218, 0.05);
  transition: opacity 0.4s ease;
}

.hero__review-card--fading {
  opacity: 0;
}

.hero__review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.hero__review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0 0 1.5rem;
}

.hero__review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.hero__review-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.hero__review-verified {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 500;
  margin-top: 0.15rem;
}

.hero__trust {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color var(--transition-fast);
}

.hero__trust-badge:hover {
  border-color: rgba(100, 255, 218, 0.2);
}

.hero__trust-badge svg {
  flex-shrink: 0;
}

/* Stats cards */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 800px;
  margin: auto auto 0;
}

.hero__stat-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.hero__stat-card:hover {
  border-color: rgba(100, 255, 218, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(100, 255, 218, 0.08);
}

.hero__stat-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero__stat-value-row {
  display: flex;
  align-items: baseline;
}

.hero__stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-mono);
  line-height: 1.2;
}

.hero__stat-value--static {
  font-size: 1.35rem;
  font-family: var(--font-primary);
  letter-spacing: -0.01em;
}

.hero__stat-symbol {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
  margin-top: 0.1rem;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero__scroll a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.hero__scroll a:hover {
  color: var(--accent-gold);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* Responsive */
@media (min-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero__text {
    text-align: left;
  }

  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__review-card {
    max-width: none;
  }
}

@media (max-width: 639px) {
  .hero__glow {
    filter: blur(80px);
  }

  .hero__shape {
    display: none;
  }

  .hero__glow--3 {
    display: none;
  }
}


/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--bg-secondary);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
}

.about__value:hover {
  border-color: rgba(100, 255, 218, 0.2);
}

.about__value h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.about__value p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* About card */
.about__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.about__card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
}

.about__card-header i {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
}

.about__card-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.about__card-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
}

.about__card-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

.about__card-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  display: block;
}

.about__card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Pipeline card */
.about__card--pipeline .about__card-header span {
  font-family: var(--font-mono);
  letter-spacing: 0;
}

.about__pipeline {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.about__pipeline-step {
  display: flex;
  gap: 1rem;
}

.about__pipeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 14px;
}

.about__pipeline-node::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px rgba(100, 255, 218, 0.4);
  flex-shrink: 0;
}

.about__pipeline-node::after {
  content: '';
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, rgba(100, 255, 218, 0.3), rgba(100, 255, 218, 0.05));
}

.about__pipeline-step:last-child .about__pipeline-node::after {
  display: none;
}

.about__pipeline-info {
  padding-bottom: 1.5rem;
}

.about__pipeline-step:last-child .about__pipeline-info {
  padding-bottom: 0;
}

.about__pipeline-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.2rem;
}

.about__pipeline-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .about__values {
    grid-template-columns: 1fr 1fr;
  }

  .about__card-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}


/* ============================================
   PRODUCTS
   ============================================ */
.products {
  background: var(--bg-primary);
  padding-bottom: 2rem;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-base);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover {
  border-color: rgba(100, 255, 218, 0.15);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card--featured {
  border-color: rgba(100, 255, 218, 0.2);
  box-shadow: var(--shadow-glow);
}

.product-card--featured::before {
  opacity: 1;
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: rgba(100, 255, 218, 0.15);
  color: var(--accent-blue-light);
  border: 1px solid rgba(100, 255, 218, 0.25);
}

.product-card__badge--gold {
  background: rgba(255, 215, 0, 0.15);
  color: #FFE44D;
  border-color: rgba(255, 215, 0, 0.25);
}

.product-card__badge--new {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  border-color: rgba(34, 197, 94, 0.25);
}

.product-card__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-card__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.product-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__platform {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
}

.product-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.product-card__meta {
  margin-bottom: 1rem;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.stars {
  display: flex;
  gap: 2px;
}

.star-filled {
  width: 16px;
  height: 16px;
  color: #FFD700;
  fill: #FFD700;
}

.star-partial {
  width: 16px;
  height: 16px;
  color: #FFD700;
  fill: none;
}

.product-card__reviews {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.82rem;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.tag--risk-low {
  background: rgba(34, 197, 94, 0.08);
  color: var(--success);
  border-color: rgba(34, 197, 94, 0.2);
}

.tag--risk-med {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
  border-color: rgba(245, 158, 11, 0.2);
}

.product-card__performance {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.65rem 0.85rem;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
}

@media (min-width: 640px) {
  .products__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: var(--bg-primary);
  padding: 1.5rem 0 3rem;
}

.reviews__carousel {
  position: relative;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Override fade-in for cards inside carousel */
.reviews__carousel .review-card {
  opacity: 1;
  transform: none;
}

.review-card {
  flex: 0 0 100%;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition-base);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--accent-gold);
  opacity: 0.12;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(100, 255, 218, 0.15);
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
  margin: 0;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-card__product {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Carousel Arrows */
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
  padding: 0;
}

.reviews__arrow:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-50%) scale(1.08);
}

.reviews__arrow--prev {
  left: 0.75rem;
}

.reviews__arrow--next {
  right: 0.75rem;
}

/* Carousel Dots */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-base);
}

.reviews__dot:hover {
  background: var(--text-muted);
}

.reviews__dot--active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 4px;
}

.reviews__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: center;
}

.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.reviews__badge i {
  color: var(--success);
}

@media (min-width: 640px) {
  .review-card {
    flex: 0 0 calc(50% - 0.625rem);
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 0.834rem);
  }
}

@media (max-width: 639px) {
  .reviews__arrow {
    width: 36px;
    height: 36px;
  }

  .reviews__arrow--prev {
    left: 0.5rem;
  }

  .reviews__arrow--next {
    right: 0.5rem;
  }
}


/* ============================================
   SIGNALS
   ============================================ */
.signals {
  background: var(--bg-secondary);
}

.signals__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  padding-bottom: 1.25rem;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.signal-card:hover {
  border-color: rgba(100, 255, 218, 0.15);
  box-shadow: var(--shadow-card);
}

.signal-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.signal-card__header h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.signal-card__status {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.signal-card__status--active {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* SVG Chart */
.signal-card__chart {
  margin: 0 -1.5rem;
  height: 80px;
  overflow: hidden;
}

.signal-chart {
  width: 100%;
  height: 100%;
  display: block;
}

.signal-chart__line {
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Line draw animation */
.signal-card .signal-chart__line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 1.5s ease-out;
}

.signal-card .signal-chart__area {
  opacity: 0;
  transition: opacity 1s ease-out 0.5s;
}

.signal-card.visible .signal-chart__line,
.fade-in.visible .signal-chart__line {
  stroke-dashoffset: 0;
}

.signal-card.visible .signal-chart__area,
.fade-in.visible .signal-chart__area {
  opacity: 1;
}

.signal-card__growth {
  text-align: center;
  padding: 0.6rem 0 0.75rem;
}

.signal-card__growth-value {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

.signal-card__growth-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
}

.signal-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.signal-card__detail-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}

.signal-card__detail-value {
  font-size: 0.85rem;
  font-weight: 600;
}

.signal-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  transition: color var(--transition-fast);
}

.signal-card__link:hover {
  color: var(--accent-gold-light);
}

.signals__cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .signals__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .signals__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ============================================
   WHY US
   ============================================ */
.why-us {
  background: var(--bg-primary);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* Gradient accent line at top */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

/* Subtle corner glow decoration */
.feature-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transition: all var(--transition-slow);
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(100, 255, 218, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover), 0 0 40px rgba(100, 255, 218, 0.06);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  transform: scale(1.5);
  opacity: 1;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 255, 218, 0.06);
  border: 1px solid rgba(100, 255, 218, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.feature-card__icon i {
  width: 26px;
  height: 26px;
}

.feature-card:hover .feature-card__icon {
  background: rgba(100, 255, 218, 0.12);
  border-color: rgba(100, 255, 218, 0.3);
  box-shadow: 0 0 25px rgba(100, 255, 218, 0.12);
  transform: scale(1.08);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .why-us__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .why-us__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


/* ============================================
   BROKERS
   ============================================ */
.brokers__disclosure {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.brokers__disclosure a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.brokers {
  background: var(--bg-secondary);
}

.brokers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Broker card */
.broker-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-base);
}

.broker-card:hover {
  border-color: rgba(100, 255, 218, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Region badge */
.broker-card__region {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.broker-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.broker-card__tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Features */
.broker-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.broker-card__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.broker-card__features li svg {
  flex-shrink: 0;
}

.broker-card__features li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Stats row */
.broker-card__stats {
  display: flex;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.broker-card__stat {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.broker-card__stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.broker-card__stat-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* CTA button */
.broker-card__btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@media (min-width: 768px) {
  .brokers__grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--bg-primary);
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--accent-gold);
}

.faq__icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

.faq__answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg-secondary);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__info p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact__channel:hover {
  border-color: rgba(100, 255, 218, 0.2);
  background: var(--bg-card-hover);
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 255, 218, 0.08);
  border-radius: var(--radius-md);
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact__channel-icon i {
  width: 20px;
  height: 20px;
}

.contact__channel h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.contact__channel p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Contact form */
.contact__form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-gold);
  background: rgba(100, 255, 218, 0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand {
  max-width: 320px;
}

.footer__brand .navbar__logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
  color: var(--text-secondary);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--accent-gold);
}

.footer__disclaimer {
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.footer__disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--accent-gold);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* ============================================
   LEGAL PAGES (Privacy Policy / Terms)
   ============================================ */
.legal {
  padding-top: 8rem;
}

.legal .container {
  max-width: 800px;
}

.legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal__updated {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.legal h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.legal p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.legal ul li strong {
  color: var(--text-primary);
}

.legal a {
  color: var(--accent-gold);
  transition: color var(--transition-fast);
}

.legal a:hover {
  color: var(--accent-gold-light);
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--bg-secondary);
  overflow: hidden;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  padding-top: 1rem;
}

/* Connecting track between badges — desktop only */
.steps::before {
  content: '';
  position: absolute;
  top: calc(1rem + 17px);
  left: calc(12.5% + 17px);
  right: calc(12.5% + 17px);
  height: 2px;
  background: linear-gradient(90deg,
    rgba(100, 255, 218, 0.06),
    rgba(100, 255, 218, 0.25) 15%,
    rgba(100, 255, 218, 0.25) 85%,
    rgba(100, 255, 218, 0.06)
  );
  z-index: 1;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.step:hover {
  border-color: rgba(100, 255, 218, 0.25);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover), 0 0 40px rgba(100, 255, 218, 0.08);
}

/* Accent gradient line at top of card */
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 4px 4px;
}

.step__number {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--bg-primary);
  font-size: 0.8rem;
  font-weight: 800;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
  transition: all var(--transition-base);
  border: 3px solid var(--bg-secondary);
  margin: 0;
}

.step:hover .step__number {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
}

.step__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(100, 255, 218, 0.06);
  border: 1px solid rgba(100, 255, 218, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1.25rem;
  color: var(--accent-gold);
  transition: all var(--transition-base);
}

.step__icon i {
  width: 28px;
  height: 28px;
}

.step:hover .step__icon {
  background: rgba(100, 255, 218, 0.12);
  border-color: rgba(100, 255, 218, 0.3);
  box-shadow: 0 0 30px rgba(100, 255, 218, 0.12);
  transform: scale(1.08);
}

.step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.step__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.steps__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
  }

  .steps::before {
    display: none;
  }
}


/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(30, 41, 59, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--accent-gold);
}

.cookie-banner__text a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}


/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
}

.error-page__content {
  max-width: 500px;
}

.error-page__code {
  display: block;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  font-family: var(--font-mono);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.error-page__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}


/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}


/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: rgba(100, 255, 218, 0.3);
  color: var(--text-primary);
}


/* ============================================
   TELEGRAM FLOATING BUTTON
   ============================================ */
.telegram-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.telegram-fab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: #fff;
  box-shadow:
    0 4px 16px rgba(42, 171, 238, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
  order: 2;
}

.telegram-fab__btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 24px rgba(42, 171, 238, 0.5),
    0 3px 10px rgba(0, 0, 0, 0.3);
}

.telegram-fab__btn:active {
  transform: scale(0.95);
}

.telegram-fab__icon {
  width: 28px;
  height: 28px;
}

/* Tooltip */
.telegram-fab__tooltip {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  order: 1;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.telegram-fab:hover .telegram-fab__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.telegram-fab__tooltip-arrow {
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--border-light);
}

/* Entrance animation */
.telegram-fab__btn {
  animation: fab-enter 0.6s ease 1s both;
}

@keyframes fab-enter {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Pulse ring */
.telegram-fab__btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(42, 171, 238, 0.4);
  animation: fab-pulse 3s ease-in-out infinite;
}

@keyframes fab-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 0; }
}

/* Mobile: smaller, tighter to corner */
@media (max-width: 639px) {
  .telegram-fab {
    bottom: 1rem;
    right: 1rem;
  }

  .telegram-fab__btn {
    width: 50px;
    height: 50px;
  }

  .telegram-fab__icon {
    width: 24px;
    height: 24px;
  }

  .telegram-fab__tooltip {
    display: none;
  }
}


/* ============================================
   PERFORMANCE & ACCESSIBILITY
   ============================================ */

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero__gradient,
  .hero__glow,
  .hero__scroll,
  .hero__shape,
  .hero__particles span,
  .hero__badge::after,
  .hero__title-accent,
  .telegram-fab__btn,
  .telegram-fab__btn::after {
    animation: none;
  }

  .hero__title-accent {
    background-position: 0% 50%;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

/* Prevent horizontal overflow globally */
html {
  overflow-x: hidden;
}

/* Medium mobile (< 768px) */
@media (max-width: 767px) {
  :root {
    --container-padding: 1rem;
    --section-padding: 4rem 0;
  }

  .section__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section__desc {
    font-size: 0.95rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
  }

  .hero__review-card {
    padding: 1.5rem;
  }

  .hero__review-text {
    font-size: 0.9rem;
  }

  .hero__stat-card {
    padding: 0.85rem 1rem;
  }

  .hero__stat-value {
    font-size: 1.35rem;
  }

  .hero__stat-label {
    font-size: 0.65rem;
  }

  .about__text {
    font-size: 0.95rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .product-card__name {
    font-size: 1.25rem;
  }

  .product-card__desc {
    font-size: 0.85rem;
  }

  .product-card__price {
    font-size: 1.4rem;
  }

  .signal-card__growth-value {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.82rem;
  }

  .broker-card {
    padding: 1.5rem;
  }

  .broker-card__title {
    font-size: 1.25rem;
  }

  .faq__question {
    font-size: 0.92rem;
    padding: 1rem 0;
  }

  .contact__form-wrapper {
    padding: 1.5rem;
  }

  .footer__disclaimer {
    padding: 1rem;
  }

  .footer__disclaimer p {
    font-size: 0.72rem;
  }

  .cookie-banner {
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__text {
    font-size: 0.82rem;
  }
}

/* Small mobile (< 480px) */
@media (max-width: 479px) {
  :root {
    --container-padding: 0.875rem;
    --section-padding: 3rem 0;
  }

  .section__header {
    margin-bottom: 2.5rem;
  }

  .section__title {
    font-size: 1.4rem;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
  }

  .hero__subtitle {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    gap: 0.5rem;
  }

  .hero__stat-card {
    padding: 0.75rem 0.5rem;
    gap: 0.5rem;
  }

  .hero__stat-svg {
    width: 18px;
    height: 18px;
  }

  .hero__stat-value {
    font-size: 1.15rem;
  }

  .hero__stat-value--static {
    font-size: 1rem;
  }

  .hero__stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }

  .hero__review-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero__review-arrow {
    display: none;
  }

  .hero__review-card {
    padding: 1.25rem;
  }

  .hero__review-stars svg {
    width: 16px;
    height: 16px;
  }

  .hero__review-text {
    font-size: 0.85rem;
  }

  .hero__trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero__trust-badge {
    width: 100%;
    justify-content: center;
  }

  .about__value {
    padding: 0.85rem;
  }

  .about__value h4 {
    font-size: 0.85rem;
  }

  .about__value p {
    font-size: 0.78rem;
  }

  .about__card {
    padding: 1.5rem;
  }

  .about__card-stat-value {
    font-size: 1.6rem;
  }

  .product-card {
    padding: 1.25rem;
  }

  .product-card__icon {
    width: 60px;
    height: 60px;
  }

  .product-card__name {
    font-size: 1.15rem;
  }

  .product-card__desc {
    font-size: 0.82rem;
  }

  .product-card__price {
    font-size: 1.25rem;
  }

  .product-card__footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .product-card__footer .btn {
    width: 100%;
    justify-content: center;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-card__text {
    font-size: 0.85rem;
  }

  .signal-card {
    padding: 1.25rem;
  }

  .signal-card__growth-value {
    font-size: 1.35rem;
  }

  .signal-card__detail-value {
    font-size: 0.8rem;
  }

  .feature-card {
    padding: 1.25rem 1rem;
  }

  .feature-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .feature-card__icon i {
    width: 22px;
    height: 22px;
  }

  .step {
    padding: 2rem 1.25rem 1.5rem;
  }

  .step__icon {
    width: 52px;
    height: 52px;
  }

  .step__icon i {
    width: 24px;
    height: 24px;
  }

  .step__title {
    font-size: 1rem;
  }

  .step__desc {
    font-size: 0.8rem;
  }

  .broker-card {
    padding: 1.25rem;
  }

  .broker-card__title {
    font-size: 1.15rem;
  }

  .broker-card__tagline {
    font-size: 0.82rem;
  }

  .broker-card__features li {
    font-size: 0.8rem;
  }

  .broker-card__stat-value {
    font-size: 1rem;
  }

  .broker-card__stat-label {
    font-size: 0.6rem;
  }

  .faq__question {
    font-size: 0.88rem;
  }

  .faq__answer p {
    font-size: 0.85rem;
  }

  .contact__channel {
    padding: 0.85rem;
  }

  .contact__channel-icon {
    width: 38px;
    height: 38px;
  }

  .contact__form-wrapper {
    padding: 1.25rem;
  }

  .footer__grid {
    gap: 1.5rem;
  }

  .footer__brand p {
    font-size: 0.82rem;
  }

  .footer__links h4 {
    font-size: 0.78rem;
  }

  .footer__links a {
    font-size: 0.82rem;
  }

  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .btn--lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .navbar__logo {
    font-size: 1.2rem;
  }

  .mobile-menu__links a {
    font-size: 1.1rem;
  }
}

/* Extra small mobile (< 360px) */
@media (max-width: 359px) {
  :root {
    --container-padding: 0.75rem;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__stat-card {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }

  .section__title {
    font-size: 1.25rem;
  }

  .product-card__icon {
    width: 52px;
    height: 52px;
  }
}
