/* =============================================
   FUTURE FINT — 2026 Premium Fintech & Community
   Design System & Section Styles
   ============================================= */

/* --- CSS Design Tokens --- */
:root {
  /* Brand Colors: White + Future Fint Purple */
  --primary: #5B20F0;
  --primary-hover: #4E18DE;
  --primary-light: #7C42FF;
  --primary-dark: #3211A8;
  --primary-ultra-dark: #1E0A66;
  --primary-glow: rgba(91, 32, 240, 0.28);
  --primary-subtle: rgba(91, 32, 240, 0.06);

  /* Backgrounds & Surfaces */
  --bg-main: #FFFFFF;
  --bg-secondary: #FAF8FE;
  --bg-lavender: #F4EFFF;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.88);

  /* Typography Colors */
  --text-main: #0E0D14;
  --text-body: #4A4754;
  --text-muted: #787586;
  --text-inverse: #FFFFFF;

  /* Borders */
  --border-light: rgba(91, 32, 240, 0.08);
  --border-card: rgba(91, 32, 240, 0.12);

  /* Typography Tokens */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --hero-size: clamp(2.875rem, 5vw + 1rem, 5.25rem);
  --h2-size: clamp(2rem, 3.2vw + 0.5rem, 3.25rem);
  --h3-size: clamp(1.35rem, 1.8vw + 0.25rem, 1.8rem);
  --body-size: 1.0625rem;
  --body-lh: 1.65;

  /* Spacing: Tightened to eliminate awkward empty gaps */
  --section-padding: clamp(64px, 7.5vw, 100px);
  --container-max: 1280px;
  --container-padding: clamp(20px, 4vw, 40px);

  /* Radii & Shadows */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 9999px;

  --shadow-sm: 0 4px 16px rgba(91, 32, 240, 0.05);
  --shadow-md: 0 10px 30px rgba(91, 32, 240, 0.08);
  --shadow-lg: 0 20px 50px rgba(91, 32, 240, 0.12);
  --shadow-phone: 0 30px 80px -15px rgba(50, 17, 168, 0.28);

  /* Transitions */
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out-cubic);
  --transition-base: 0.35s var(--ease-out-cubic);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: var(--text-body);
  background-color: var(--bg-main);
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
  width: 100%;
}

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

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

ul, ol {
  list-style: none;
}

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

/* --- Top Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 9999;
  box-shadow: 0 0 10px rgba(124, 66, 255, 0.6);
  pointer-events: none;
}

/* --- Ambient Glow Meshes --- */
.ambient-glow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  overflow: hidden;
}

.ambient-glow--top {
  top: 4%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(124, 66, 255, 0.16) 0%, transparent 70%);
}

.ambient-glow--middle {
  top: 45%;
  left: -6%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(91, 32, 240, 0.11) 0%, transparent 70%);
}

.ambient-glow--bottom {
  bottom: 8%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 66, 255, 0.13) 0%, transparent 70%);
}

/* --- Layout & Utilities --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
  position: relative;
  z-index: 1;
}

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

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

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

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

/* --- Typography Helpers --- */
.eyebrow, .section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--h2-size);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.section-lead {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 24px;
}

.mask-line {
  display: block;
  overflow: hidden;
  line-height: 1.16;
  padding-bottom: 4px;
}

.mask-inner {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

.purple-gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #9D6FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.highlight-underline {
  position: relative;
  color: var(--text-main);
  font-weight: 600;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

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

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, #5B20F0 0%, #7C42FF 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(91, 32, 240, 0.28);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #4F18DC 0%, #6E32F5 100%);
  box-shadow: 0 12px 32px rgba(91, 32, 240, 0.4);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: #FFFFFF;
  border-color: rgba(91, 32, 240, 0.25);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.btn--white {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-weight: 700;
}

.btn--white:hover {
  background: #FAF8FE;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 36px;
  font-size: 1.0625rem;
}

/* ==================== 1. NAVIGATION & PROVIDED LOGO ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background var(--transition-base), backdrop-filter var(--transition-base), border-color var(--transition-base), padding var(--transition-base);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91, 32, 240, 0.08);
  box-shadow: 0 4px 20px rgba(91, 32, 240, 0.03);
}

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

.navbar__logo {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
}

/* Provided Transparent Logo: Noticeably Larger & Clearly Visible */
.navbar__logo-img {
  height: 54px;
  max-height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

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

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-item:hover, .nav-item.active {
  color: var(--primary);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-item.active::after, .nav-item:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn--nav {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Backdrop & Actions */
.navbar__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 20, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  pointer-events: none;
}

.navbar__backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-action {
  display: none;
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
}

.btn--drawer {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.9375rem;
}

/* ==================== 7. HERO SECTION (PREMIUM FINTECH REDESIGN) ==================== */
.hero {
  padding-top: clamp(120px, 14vw, 160px);
  padding-bottom: clamp(70px, 8vw, 110px);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-main);
}

/* Ambient Fintech Background Aura */
.hero__animated-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}

.hero-aurora--1 {
  top: 8%;
  right: 8%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(124, 66, 255, 0.22) 0%, rgba(91, 32, 240, 0.08) 50%, transparent 75%);
  animation: floatAurora1 12s ease-in-out infinite alternate;
}

.hero-aurora--2 {
  top: 30%;
  left: 2%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(91, 32, 240, 0.12) 0%, rgba(244, 239, 255, 0.04) 50%, transparent 75%);
  animation: floatAurora2 14s ease-in-out infinite alternate;
}

.hero-soft-radial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse 70% 50% at 50% 20%, rgba(244, 239, 255, 0.65) 0%, transparent 80%);
}

.hero-pedestal-ground-glow {
  position: absolute;
  bottom: 0;
  right: 12%;
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse at center, rgba(124, 66, 255, 0.22) 0%, rgba(147, 51, 234, 0.08) 50%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
}

@keyframes floatAurora1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.06); }
  100% { transform: translate(20px, -25px) scale(0.96); }
}

@keyframes floatAurora2 {
  0% { transform: translate(0, 0) scale(0.95); }
  50% { transform: translate(25px, -15px) scale(1.05); }
  100% { transform: translate(-20px, 30px) scale(1); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Column: Content */
.hero__content {
  position: relative;
  z-index: 3;
}

.hero__pill-wrapper {
  margin-bottom: 22px;
}

.hero__pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #F4F0FF;
  border: 1px solid rgba(91, 32, 240, 0.16);
  border-radius: var(--radius-pill);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  box-shadow: 0 2px 10px rgba(91, 32, 240, 0.06);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--hero-size);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 22px;
}

.hero__body {
  font-size: clamp(1.0625rem, 1.2vw, 1.22rem);
  line-height: 1.65;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.btn--hero-main {
  padding: 16px 34px;
  font-size: 1rem;
}

/* Social Proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__avatar-stack {
  display: flex;
}

.proof-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #FFFFFF;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.proof-avatar:first-child {
  margin-left: 0;
}

.hero__proof-text {
  display: flex;
  flex-direction: column;
}

.proof-stars {
  color: #7C42FF;
  font-size: 0.9375rem;
  letter-spacing: 2px;
  line-height: 1.2;
}

.proof-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==================== RIGHT COLUMN: HERO VISUAL ==================== */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  perspective: 1200px;
}

/* Candlestick Arc SVG Background */
.hero__candlestick-arc {
  position: absolute;
  top: -8%;
  left: -20%;
  width: 130%;
  max-width: 520px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.hero__candlestick-arc svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Luminous Radial Ambient Glow */
.hero__luminous-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 66, 255, 0.28) 0%, rgba(91, 32, 240, 0.08) 50%, transparent 75%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

/* 3D Pedestal / Platform */
.hero-pedestal-platform {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 110px;
  z-index: 1;
  pointer-events: none;
}

.pedestal-disc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.pedestal-disc--base {
  bottom: 8px;
  width: 400px;
  height: 72px;
  background: linear-gradient(180deg, #FFFFFF 0%, #EDE5FF 45%, #D7C4FB 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 36px rgba(124, 66, 255, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.95);
}

.pedestal-disc--top {
  bottom: 30px;
  width: 330px;
  height: 60px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F0FF 45%, #E5D9FC 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(124, 66, 255, 0.14), inset 0 3px 6px rgba(255, 255, 255, 0.9);
}

.pedestal-shadow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 430px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124, 66, 255, 0.32) 0%, rgba(91, 32, 240, 0.12) 45%, transparent 75%);
  filter: blur(14px);
}

/* Smartphone Wrapper & Chassis */
.hero__phone-wrapper {
  position: relative;
  z-index: 3;
  margin-bottom: 24px;
  will-change: transform;
}

.hero__phone-frame {
  width: 355px;
  height: auto;
  border-radius: 40px;
  overflow: hidden;
  background: #0B0E17;
  border: 7px solid #1E1B2C;
  box-shadow: 
    0 25px 65px rgba(24, 9, 64, 0.28),
    0 8px 22px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  position: relative;
  transform-style: preserve-3d;
}

/* Hero Main Visual Image (covers the CSS-built trading UI) */
.hero-phone-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 12;
}

.hero__phone-frame.has-hero-image .phone-island,
.hero__phone-frame.has-hero-image .phone-glass-reflection,
.hero__phone-frame.has-hero-image .phone-screen-content {
  display: none;
}

.hero__phone-frame.has-hero-image {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  filter: drop-shadow(0 36px 70px rgba(91, 32, 240, 0.28)) drop-shadow(0 14px 30px rgba(24, 9, 64, 0.18));
}

/* Hide the pedestal platform so nothing sits behind the floating phone */
.hero-pedestal-platform {
  display: none;
}

/* Phone Dynamic Notch / Speaker */
.phone-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 18px;
  background: #000000;
  border-radius: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.island-camera {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111425;
  border: 1.5px solid #1E2338;
}

.island-sensor {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0A0D18;
}

/* Glass Reflection Sheen */
.phone-glass-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
  z-index: 15;
}

/* Phone Screen Inner UI */
.phone-screen-content {
  background: #0B0E17;
  color: #FFFFFF;
  padding-top: 36px;
  font-family: var(--font-body);
  user-select: none;
}

/* Status Bar */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #E2E8F0;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #E2E8F0;
}

/* Pair Header */
.phone-pair-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 16px 6px;
}

.pair-name-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pair-crypto-coin {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #FFFFFF;
}

.pair-crypto-coin--btc {
  background: #F7931A;
}

.pair-symbol {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.pair-chevron {
  color: #94A3B8;
}

.pair-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pair-action-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  cursor: default;
}

/* Price Row */
.phone-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 16px 6px;
}

.phone-main-price {
  font-family: var(--font-display);
  font-size: 1.4375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1;
}

.phone-pct-badge {
  background: rgba(16, 185, 129, 0.16);
  color: #10B981;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* Timeframes */
.phone-timeframes {
  display: flex;
  gap: 4px;
  padding: 2px 16px 8px;
}

.tf-btn {
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748B;
  padding: 2px 7px;
  border-radius: 5px;
}

.tf-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

/* Candlestick & MA Chart */
.phone-chart-wrap {
  height: 94px;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
}

.phone-trading-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Positions / Orders Subtabs */
.phone-subtabs {
  display: flex;
  gap: 16px;
  padding: 8px 16px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.subtab {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748B;
  position: relative;
  padding-bottom: 4px;
}

.subtab.active {
  color: #FFFFFF;
  font-weight: 700;
}

.subtab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #7C42FF;
  border-radius: 2px;
}

/* Positions List */
.phone-positions-list {
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.position-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  padding: 6px 9px;
}

.pos-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pos-coin {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #FFFFFF;
}

.pos-coin--btc {
  background: #F7931A;
}

.pos-coin--eth {
  background: linear-gradient(135deg, #627EEA, #3B4CA8);
}

.pos-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pos-symbol {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #F8FAFC;
}

.pos-leverage {
  font-size: 0.5625rem;
  color: #64748B;
}

.pos-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.pos-pnl-usd {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #10B981;
}

.pos-pnl-pct {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #10B981;
}

/* App Bottom Navigation */
.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 8px 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
}

.nav-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #64748B;
  font-size: 0.5625rem;
  font-weight: 600;
}

.nav-app-item.active {
  color: #A78BFA;
}

.phone-home-indicator {
  width: 90px;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  margin: 4px auto 6px;
}

/* ==================== 4 FLOATING GLASSMORPHISM CARDS ==================== */
.hero__float-card {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(60, 20, 160, 0.11), 0 2px 6px rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  pointer-events: none;
  will-change: transform;
}

/* 1. Top-Left: Live Market Insights (aligned at price level, overlapping left bezel) */
.hero__float-card--insight {
  top: 20%;
  left: -14%;
  animation: floatCard1 5.4s ease-in-out infinite alternate;
}

/* 2. Top-Right: BTC Pill Badge */
.hero__float-card--btc {
  top: 10%;
  right: -5%;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  gap: 9px;
  animation: floatCard2 4.6s ease-in-out infinite alternate;
}

/* 3. Mid-Right: Community Card */
.hero__float-card--community {
  top: 42%;
  right: -8%;
  animation: floatCard3 6.0s ease-in-out infinite alternate;
}

/* 4. Bottom-Right: Grow Together Card */
.hero__float-card--grow {
  bottom: 18%;
  right: -6%;
  animation: floatCard4 5.2s ease-in-out infinite alternate;
}

/* Floating Card Sub-elements */
.float-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card__icon--purple {
  background: #EDE8FD;
  color: var(--primary);
}

.float-card__icon--lavender {
  background: #F3EFFF;
  color: #7C42FF;
}

.float-card__icon svg {
  width: 19px;
  height: 19px;
}

.float-card__info {
  display: flex;
  flex-direction: column;
}

.float-card__title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.float-card__subtitle {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.float-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  align-self: flex-start;
  margin-top: 3px;
}

.float-card__dot--green {
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
}

.float-card__dot--purple {
  background: #7C42FF;
  box-shadow: 0 0 6px #7C42FF;
}

/* BTC Pill Card Details */
.float-card__btc-coin {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F7931A;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-card__btc-content {
  display: flex;
  align-items: center;
  gap: 7px;
}

.float-card__btc-symbol {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
}

.float-card__btc-change {
  color: #10B981;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* Micro-Floating Keyframes */
@keyframes floatCard1 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-9px) rotate(-0.5deg); }
}

@keyframes floatCard2 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(7px) rotate(0.6deg); }
}

@keyframes floatCard3 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(0.4deg); }
}

@keyframes floatCard4 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(8px) rotate(-0.4deg); }
}

/* ==================== TRUST STRIP ==================== */
.trust-strip {
  padding: 24px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-strip__icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.trust-strip__icon-wrap svg {
  width: 20px;
  height: 20px;
}

.trust-strip__item:hover .trust-strip__icon-wrap {
  transform: scale(1.08);
}

.trust-strip__text {
  display: flex;
  flex-direction: column;
}

.trust-strip__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.trust-strip__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.trust-strip__divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-light);
}

/* ==================== 6. MESSAGING SCREENSHOT SECTION (CLEANED) ==================== */
.difference {
  background: var(--bg-main);
}

.difference__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.difference__visual-col {
  position: relative;
}

/* Clean, sharp messaging frame without distracting LIVE badges */
.difference__clean-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
  background: #FFFFFF;
  transition: transform 0.4s var(--ease-out-cubic);
}

.difference__clean-frame:hover {
  transform: translateY(-4px);
}

.difference__img {
  width: 100%;
  height: auto;
  display: block;
}

.difference__subheading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
}

.difference__points-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.diff-point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.diff-point-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-lavender);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-point-icon svg {
  width: 15px;
  height: 15px;
}

.diff-point-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 3px;
}

.diff-point-item p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ==================== WE DON'T SELL COURSES ==================== */
.no-courses {
  overflow: hidden;
}

.no-courses__comparison-container {
  max-width: 1040px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1.2fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.comparison-side {
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
}

.comparison-side--old {
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(120, 117, 134, 0.25);
  opacity: 0.65;
}

.comparison-card-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.comparison-card-badge--muted {
  background: rgba(120, 117, 134, 0.15);
  color: var(--text-muted);
}

.comparison-card-badge--active {
  background: var(--bg-lavender);
  color: var(--primary);
  border: 1px solid rgba(91, 32, 240, 0.15);
}

.comparison-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.comparison-desc {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.5;
}

.course-mockup-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.course-mockup-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-sm);
  gap: 10px;
}

.mock-play-icon {
  font-size: 0.75rem;
  color: #DC2626;
  font-weight: bold;
}

.mock-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mock-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
}

.mock-meta {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.mock-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  border-radius: 4px;
}

.comparison-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8125rem;
}

.old-summary span {
  color: var(--text-muted);
}

.comparison-bridge {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bridge-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bridge-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

.bridge-arrow {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.comparison-side--new {
  background: #FFFFFF;
  border: 1px solid rgba(91, 32, 240, 0.15);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(91, 32, 240, 0.08);
}

.community-live-hub-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hub-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.hub-channel-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.telegram-brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5B20F0, #7C42FF);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-brand-icon svg {
  width: 18px;
  height: 18px;
}

.hub-channel-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-main);
}

.hub-status {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hub-live-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border-radius: var(--radius-pill);
}

.hub-message-sample {
  background: var(--bg-lavender);
  border-radius: var(--radius-md);
  padding: 14px;
  border: 1px solid rgba(91, 32, 240, 0.08);
}

.msg-bubble .msg-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.msg-bubble p {
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 8px;
}

.msg-reactions {
  display: flex;
  gap: 6px;
}

.msg-reactions span {
  font-size: 0.6875rem;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(91, 32, 240, 0.1);
  color: var(--text-main);
}

.new-summary span {
  color: var(--primary-dark);
  font-weight: 600;
}

.no-courses__tagline-bar {
  text-align: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  max-width: 460px;
  margin: 0 auto;
}

.no-courses__tagline-bar p {
  font-size: 0.9375rem;
  color: var(--text-main);
}

/* ==================== TELEGRAM COMMUNITY SHOWCASE ==================== */
.telegram-showcase {
  background: var(--bg-main);
}

.tg-sticky-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.tg-phone-center {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Clean Left Image — no background, no frame, transparent PNG */
.tg-community-img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(91, 32, 240, 0.22));
}

/* Community Main Visual Image (covers the CSS-built Telegram UI) */
.tg-phone-img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 3;
  flex-shrink: 0;
}

.tg-phone-mockup.has-community-image .phone-top-bar,
.tg-phone-mockup.has-community-image .phone-tg-header,
.tg-phone-mockup.has-community-image .phone-tg-body,
.tg-phone-mockup.has-community-image .phone-home-indicator {
  display: none;
}

.tg-phone-mockup {
  width: 320px;
  height: 550px;
  background: #0E0D14;
  border-radius: 40px;
  border: 8px solid #1F1D2B;
  box-shadow: 0 25px 70px -15px rgba(50, 17, 168, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.phone-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 6px 20px;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
}

.phone-notch {
  width: 80px;
  height: 16px;
  background: #1F1D2B;
  border-radius: 0 0 10px 10px;
}

.phone-tg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #181622;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.tg-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tg-avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-channel-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.tg-channel-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}

.online-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}

.phone-tg-body {
  flex: 1;
  padding: 14px;
  background: #0B0A10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: hidden;
}

.tg-bubble {
  background: #1C1929;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px 14px;
  color: #E2E1EB;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.tg-bubble.active-highlight {
  border-color: var(--primary-light);
  box-shadow: 0 0 15px rgba(124, 66, 255, 0.3);
}

.bubble-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.sender-name {
  font-weight: 700;
  font-size: 0.75rem;
  color: #9D72FF;
}

.sender-name--analyst { color: #38BDF8; }
.sender-name--lead { color: #F59E0B; }

.bubble-time {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.4);
}

.bubble-reactions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.bubble-reactions span {
  font-size: 0.625rem;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.chart-preview-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 10px;
  background: rgba(124, 66, 255, 0.18);
  border-radius: 6px;
  color: #C4B5FD;
  font-size: 0.6875rem;
  font-weight: 600;
}

.tg-typing-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  width: fit-content;
}

.typing-bubble {
  display: flex;
  gap: 3px;
}

.typing-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.typing-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
}

.phone-home-indicator {
  width: 110px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin: 8px auto;
}

.tg-phone-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 32, 240, 0.28) 0%, transparent 70%);
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.tg-annotations-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tg-annotation {
  padding: 20px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.tg-annotation.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md), 0 0 20px rgba(91, 32, 240, 0.1);
  transform: translateX(6px);
}

.annotation-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--bg-lavender);
  color: var(--primary);
  margin-bottom: 8px;
}

.tg-annotation.active .annotation-badge {
  background: var(--primary);
  color: #FFFFFF;
}

.annotation-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.annotation-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ==================== 4. "A REAL TRADING ENVIRONMENT..." SECTION (REAL CHART) ==================== */
.purple-highlight-section {
  padding: 40px 0;
}

.purple-immersive-card {
  background: linear-gradient(135deg, #2E0F9A 0%, #1A085C 60%, #0F0338 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px) clamp(20px, 4vw, 50px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(30, 10, 102, 0.45);
  color: #FFFFFF;
}

.purple-card-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 66, 255, 0.35) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.purple-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #C4B5FD;
  margin-bottom: 14px;
}

.purple-card-heading {
  font-family: var(--font-display);
  font-size: var(--h2-size);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.purple-card-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 36px auto;
}

/* Proper Financial Trading Terminal Dashboard */
.trading-terminal-dashboard {
  max-width: 980px;
  margin: 0 auto 36px auto;
  background: #0D0B1A;
  border: 1px solid rgba(124, 66, 255, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #141126;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 14px;
}

.terminal-pair {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pair-symbol {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.pair-price {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  color: #34D399;
}

.pair-change.positive {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  padding: 3px 8px;
  border-radius: 6px;
}

.terminal-stats {
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.stat-item {
  color: #FFFFFF;
}

.stat-lbl {
  color: rgba(255, 255, 255, 0.45);
  margin-right: 4px;
}

.terminal-timeframes {
  display: flex;
  gap: 6px;
}

.tf-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.tf-btn.active, .tf-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.terminal-main-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
}

.terminal-chart-area {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-indicator-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.ind-pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: #C4B5FD;
}

.ind-pill--bull {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}

.svg-chart-container {
  width: 100%;
  overflow: hidden;
}

.trading-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes candleBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.live-candle-pulse {
  animation: candleBlink 1.8s infinite ease-in-out;
}

.terminal-side-panel {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #110E21;
}

.side-panel-header {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #C4B5FD;
}

.sentiment-meter {
  height: 8px;
  background: rgba(239, 68, 68, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.sentiment-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10B981, #34D399);
  border-radius: 4px;
}

.sentiment-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.bull-pct { color: #34D399; }
.bear-pct { color: #F87171; }

.order-book-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ob-title {
  font-size: 0.6875rem;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.ob-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.ob-level { color: rgba(255, 255, 255, 0.7); }
.ob-val { font-weight: 700; }
.ob-note { font-size: 0.6875rem; color: rgba(255, 255, 255, 0.45); }
.text-green { color: #34D399; }
.text-purple { color: #C4B5FD; }
.text-red { color: #F87171; }

.terminal-active-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: auto;
}

/* Community Avatars Overlay */
.community-avatars-overlay {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.avatar-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 6px 18px 6px 6px;
}

.avatar-img-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
}

.avatar-badge-text strong {
  display: block;
  font-size: 0.8125rem;
  color: #FFFFFF;
}

.avatar-badge-text span {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== EXPERIENCED MINDS ==================== */
.experience-section {
  background: var(--bg-main);
}

.experience__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.experience__pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.pillar-card:hover {
  transform: translateX(6px);
  border-color: rgba(91, 32, 240, 0.25);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-lavender);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.pillar-body p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
}

.team-editorial-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.team-editorial-media {
  position: relative;
  background: linear-gradient(135deg, #1E1A2B 0%, #2A1E4A 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo-atmosphere {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.chart-backlight {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 66, 255, 0.4) 0%, transparent 70%);
  filter: blur(40px);
}

.team-silhouette-group {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  opacity: 0.45;
  filter: blur(1.5px);
  margin-bottom: 20px;
}

.silhouette-person {
  width: 46px;
  background: #000000;
  border-radius: 23px 23px 0 0;
}

.sil--1 { height: 120px; }
.sil--2 { height: 150px; }
.sil--3 { height: 135px; }
.sil--4 { height: 110px; }

.team-overlay-details {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-pill-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
}

.team-caption-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.team-quote-box {
  padding: 24px;
  background: #FFFFFF;
}

.team-quote-text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 14px;
}

.team-quote-author .author-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.team-quote-author .author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==================== BRAND STORY ==================== */
.brand-story {
  position: relative;
  overflow: hidden;
}

.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.brand-story__text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-main);
  margin-bottom: 14px;
}

.brand-story__text-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 28px;
}

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

.steps-flow-container {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.steps-connecting-line {
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}

.connecting-line-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 1.2s ease;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91, 32, 240, 0.2);
}

.step-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-lavender);
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 14px rgba(91, 32, 240, 0.15);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 16px;
}

.step-micro-action {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-top: auto;
}

/* ==================== 3. REVIEWS SECTION (ALL 4 REVIEWS RESTORED WITH AVATARS) ==================== */
.testimonials {
  background: var(--bg-lavender);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91, 32, 240, 0.25);
}

.review-stars {
  color: #7C42FF;
  font-size: 0.9375rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 22px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.review-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  box-shadow: 0 2px 8px rgba(91, 32, 240, 0.15);
}

.review-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
}

.review-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq__item.active {
  border-color: rgba(91, 32, 240, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  background: transparent;
  transition: color var(--transition-fast);
}

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

.faq__toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-lavender);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.faq__toggle-icon svg {
  width: 15px;
  height: 15px;
}

.faq__item.active .faq__toggle-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #FFFFFF;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out-cubic);
}

.faq__answer-inner {
  padding: 0 24px 22px 24px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-body);
}

/* ==================== FINAL CTA ==================== */
.final-cta {
  background: var(--bg-main);
}

.final-cta__box {
  background: linear-gradient(135deg, #5B20F0 0%, #3211A8 60%, #1E0A66 100%);
  border-radius: var(--radius-xl);
  padding: clamp(50px, 7vw, 85px) clamp(20px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(91, 32, 240, 0.35);
  color: #FFFFFF;
}

.final-cta__glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

.final-cta__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #E0D4FF;
  margin-bottom: 14px;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: var(--h2-size);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.final-cta__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

/* ==================== 2. FOOTER (FOTOR) SECTION ==================== */
.footer {
  background: #0E0D14;
  color: #FFFFFF;
  padding: 70px 0 35px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  margin-bottom: 40px;
}

.footer__logo-link {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
}

/* Exact Provided Logo, Pure White, Noticeably Larger, No Background */
.footer__logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer__description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
  line-height: 1.6;
}

.footer__column h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__column a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer__column a:hover {
  color: #FFFFFF;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer__social-link svg {
  width: 17px;
  height: 17px;
}

.footer__social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Prominent Footer Attribution: "Made with Annizi and Co" with provided white logo */
.footer__annizi-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0;
  margin: 30px 0 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.annizi-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: none;
}

.annizi-brand-link {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.annizi-brand-link:hover .annizi-brand-text,
.annizi-brand-link:focus-visible .annizi-brand-text {
  color: var(--primary-light);
}

.annizi-brand-link:hover {
  transform: translateY(-2px);
}

.footer__prominent-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

.annizi-brand-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

.footer__bottom {
  padding-top: 20px;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 780px;
  line-height: 1.5;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

/* ==================== MOBILE STICKY CTA ==================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 990;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.mobile-cta.visible {
  transform: translateY(0);
}

.btn--mobile {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.9375rem;
}

/* ==================== RESPONSIVE MEDIA QUERIES (COMPREHENSIVE) ==================== */

/* --- LARGE SCREENS & WIDE DESKTOPS (≥1440px) --- */
@media (min-width: 1440px) {
  :root {
    --container-max: 1320px;
    --hero-size: clamp(3.25rem, 4.5vw + 1rem, 5.25rem);
  }

  .hero__phone-frame {
    width: 390px;
  }

  .hero-pedestal-platform {
    width: 440px;
  }

  .pedestal-disc--base {
    width: 420px;
  }

  .pedestal-disc--top {
    width: 350px;
  }
}

/* --- SMALL DESKTOP / TABLET LANDSCAPE (1025px – 1200px) --- */
@media (max-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero__float-card--insight {
    left: -6%;
  }

  .hero__float-card--btc {
    right: -2%;
  }

  .hero__float-card--community {
    right: -4%;
  }

  .hero__float-card--grow {
    right: -3%;
  }
}

/* --- TABLETS / IPAD PRO (769px – 1024px) --- */
@media (max-width: 1024px) {
  .hero {
    padding-top: clamp(105px, 12vw, 130px);
    padding-bottom: 60px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__pill-wrapper {
    display: flex;
    justify-content: center;
  }

  .hero__body {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__social-proof {
    justify-content: center;
  }

  .hero__visual {
    width: 100%;
    max-width: 520px;
    margin: 30px auto 0 auto;
    min-height: 520px;
  }

  .hero__candlestick-arc {
    left: 2%;
    width: 96%;
    max-width: 500px;
  }

  .hero__float-card--insight {
    left: 2%;
    top: 8%;
  }

  .hero__float-card--btc {
    right: 4%;
    top: 4%;
  }

  .hero__float-card--community {
    right: 2%;
    top: 42%;
  }

  .hero__float-card--grow {
    right: 3%;
    bottom: 10%;
  }

  .trust-strip__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
  }

  .trust-strip__divider {
    display: none;
  }

  .difference__grid,
  .brand-story__grid,
  .experience__grid,
  .tg-sticky-stage {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .no-courses__comparison-container {
    max-width: 720px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-bridge {
    transform: rotate(90deg);
    padding: 10px 0;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .steps-connecting-line {
    display: none;
  }

  .terminal-main-grid {
    grid-template-columns: 1fr;
  }

  .terminal-chart-area {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* --- MOBILE DEVICES & IPAD PORTRAIT (≤768px) --- */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --section-padding: 56px;
  }

  /* Body bottom padding to avoid sticky mobile CTA overlap */
  body {
    padding-bottom: 74px;
  }

  /* Navbar Mobile Layout */
  .navbar {
    padding: 14px 0;
  }

  .navbar.scrolled {
    padding: 10px 0;
  }

  .navbar__logo-img {
    height: 44px;
    max-height: 44px;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 320px);
    height: 100dvh;
    background: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 85px 24px 32px 24px;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.14);
    transition: right var(--transition-base);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 4px;
  }

  .navbar__links.open {
    right: 0;
  }

  .nav-item {
    font-size: 1.05rem;
    padding: 12px 6px;
    border-bottom: 1px solid rgba(91, 32, 240, 0.06);
    width: 100%;
    display: flex;
    align-items: center;
  }

  .nav-item::after {
    display: none;
  }

  .nav-mobile-action {
    display: block;
    margin-top: auto;
    padding-top: 20px;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__actions .btn--nav {
    display: none;
  }

  .mobile-cta {
    display: block;
  }

  /* Hero Section Mobile */
  .hero {
    padding-top: 96px;
    padding-bottom: 44px;
    min-height: auto;
  }

  .hero__pill-wrapper {
    margin-bottom: 18px;
  }

  .hero__pill-tag {
    padding: 7px 14px;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
  }

  .hero__headline {
    font-size: clamp(2.15rem, 8.5vw, 2.85rem);
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
  }

  .hero__body {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .hero__social-proof {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero__avatar-stack {
    justify-content: center;
  }

  .proof-avatar {
    width: 34px;
    height: 34px;
  }

  .hero__proof-text {
    align-items: center;
    text-align: center;
  }

  .proof-stars {
    font-size: 0.8125rem;
    letter-spacing: 1.5px;
  }

  .proof-label {
    font-size: 0.75rem;
  }

  /* Hero Visual & Phone on Mobile */
  .hero__visual {
    width: 100%;
    max-width: 380px;
    margin: 24px auto 0 auto;
    min-height: 460px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }

  .hero__candlestick-arc {
    display: none;
  }

  .hero__luminous-glow {
    width: 300px;
    height: 300px;
    filter: blur(45px);
  }

  .hero__phone-wrapper {
    margin-bottom: 20px;
  }

  .hero__phone-frame {
    width: min(78vw, 330px);
    border-radius: 34px;
    border-width: 6px;
    box-shadow: 0 20px 50px rgba(24, 9, 64, 0.25), 0 6px 18px rgba(0, 0, 0, 0.14);
  }

  .phone-screen-content {
    padding-top: 32px;
  }

  .phone-island {
    width: 65px;
    height: 16px;
    top: 7px;
  }

  .phone-main-price {
    font-size: 1.25rem;
  }

  /* Pedestal on Mobile */
  .hero-pedestal-platform {
    width: min(88vw, 340px);
    height: 90px;
  }

  .pedestal-disc--base {
    width: min(85vw, 330px);
    height: 56px;
    bottom: 6px;
  }

  .pedestal-disc--top {
    width: min(72vw, 275px);
    height: 46px;
    bottom: 22px;
  }

  .pedestal-shadow {
    width: min(88vw, 340px);
    height: 38px;
    bottom: -8px;
  }

  /* Hero Floating Cards on Mobile (Safely bounded within viewport, no negative margins) */
  .hero__float-card {
    padding: 7px 11px;
    border-radius: 12px;
    gap: 8px;
  }

  .float-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .float-card__icon svg {
    width: 15px;
    height: 15px;
  }

  .float-card__title {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .float-card__subtitle {
    font-size: 0.6rem;
    line-height: 1.15;
  }

  .hero__float-card--insight {
    left: 0;
    top: 6%;
    max-width: 200px;
  }

  .hero__float-card--btc {
    right: 0;
    top: 3%;
    padding: 6px 12px;
    gap: 7px;
  }

  .float-card__btc-coin {
    width: 19px;
    height: 19px;
    font-size: 0.6875rem;
  }

  .float-card__btc-symbol {
    font-size: 0.75rem;
  }

  .float-card__btc-change {
    font-size: 0.6875rem;
  }

  .hero__float-card--community {
    display: none;
  }

  .hero__float-card--grow {
    right: 0;
    bottom: 8%;
    max-width: 185px;
  }

  /* Trust Strip Mobile Grid */
  .trust-strip {
    padding: 20px 0;
  }

  .trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .trust-strip__item {
    gap: 10px;
    align-items: center;
  }

  .trust-strip__icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .trust-strip__icon-wrap svg {
    width: 17px;
    height: 17px;
  }

  .trust-strip__title {
    font-size: 0.85rem;
    line-height: 1.25;
  }

  .trust-strip__desc {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  /* Difference Section Mobile */
  .difference__subheading {
    font-size: 1.15rem;
  }

  .difference__clean-frame {
    border-radius: 16px;
  }

  .difference__points-list {
    gap: 14px;
    margin-bottom: 24px;
  }

  .diff-point-item {
    gap: 12px;
  }

  .diff-point-icon {
    width: 24px;
    height: 24px;
  }

  .diff-point-icon svg {
    width: 13px;
    height: 13px;
  }

  .diff-point-item strong {
    font-size: 0.95rem;
  }

  .diff-point-item p {
    font-size: 0.875rem;
  }

  /* Our Approach Mobile */
  .comparison-side {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .comparison-title {
    font-size: 1.2rem;
  }

  .comparison-desc {
    font-size: 0.825rem;
    margin-bottom: 16px;
  }

  .course-mockup-item {
    padding: 8px 10px;
    gap: 8px;
  }

  .mock-title {
    font-size: 0.75rem;
  }

  .mock-meta {
    font-size: 0.625rem;
  }

  .mock-tag {
    font-size: 0.625rem;
    padding: 2px 6px;
  }

  .hub-card-header {
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 10px;
  }

  .hub-channel-info {
    gap: 8px;
  }

  .telegram-brand-icon {
    width: 30px;
    height: 30px;
  }

  .telegram-brand-icon svg {
    width: 16px;
    height: 16px;
  }

  .hub-channel-info strong {
    font-size: 0.875rem;
  }

  .hub-status {
    font-size: 0.7rem;
  }

  .hub-live-badge {
    font-size: 0.6875rem;
    padding: 3px 8px;
  }

  .hub-message-sample {
    padding: 12px;
    border-radius: 14px;
  }

  .msg-bubble .msg-author {
    font-size: 0.7rem;
  }

  .msg-bubble p {
    font-size: 0.8125rem;
  }

  .msg-reactions span {
    font-size: 0.625rem;
    padding: 2px 6px;
  }

  .no-courses__tagline-bar {
    padding: 12px 18px;
    border-radius: 14px;
  }

  .no-courses__tagline-bar p {
    font-size: 0.875rem;
  }

  /* Community Section Mobile */
  .tg-phone-mockup {
    width: min(85vw, 290px);
    height: auto;
    min-height: 460px;
    border-radius: 34px;
    border-width: 6px;
  }

  .phone-tg-header {
    padding: 8px 12px;
  }

  .phone-tg-body {
    padding: 10px;
    gap: 8px;
  }

  .tg-bubble {
    padding: 9px 11px;
    font-size: 0.75rem;
    border-radius: 12px;
  }

  .sender-name {
    font-size: 0.7rem;
  }

  .tg-annotations-wrapper {
    gap: 12px;
  }

  .tg-annotation {
    padding: 16px 18px;
    border-radius: var(--radius-sm);
  }

  .annotation-title {
    font-size: 1rem;
  }

  .annotation-text {
    font-size: 0.825rem;
  }

  /* Trading Terminal Mobile */
  .purple-immersive-card {
    padding: 32px 16px;
    border-radius: 22px;
  }

  .purple-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .purple-card-heading {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }

  .purple-card-sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .trading-terminal-dashboard {
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .terminal-header {
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .terminal-pair {
    width: 100%;
    justify-content: space-between;
  }

  .pair-symbol {
    font-size: 1rem;
  }

  .pair-price {
    font-size: 1rem;
  }

  .terminal-stats {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.6875rem;
  }

  .terminal-timeframes {
    width: 100%;
    justify-content: flex-start;
    gap: 4px;
  }

  .tf-btn {
    padding: 3px 8px;
    font-size: 0.6875rem;
  }

  .terminal-chart-area {
    padding: 14px 10px;
  }

  .terminal-indicator-row {
    gap: 6px;
    margin-bottom: 8px;
  }

  .ind-pill {
    font-size: 0.625rem;
    padding: 2px 6px;
  }

  .terminal-side-panel {
    padding: 14px 12px;
    gap: 14px;
  }

  .ob-row {
    font-size: 0.6875rem;
  }

  .community-avatars-overlay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .avatar-badge-item {
    padding: 4px 10px 4px 4px;
    gap: 8px;
  }

  .avatar-img-circle {
    width: 30px;
    height: 30px;
  }

  .avatar-badge-text strong {
    font-size: 0.72rem;
  }

  .avatar-badge-text span {
    font-size: 0.6rem;
  }

  /* Experienced Minds Mobile */
  .pillar-card {
    padding: 14px 16px;
    gap: 14px;
  }

  .pillar-num {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .pillar-body strong {
    font-size: 0.9375rem;
  }

  .pillar-body p {
    font-size: 0.85rem;
  }

  .team-editorial-media {
    min-height: 200px;
  }

  .silhouette-person {
    width: 38px;
  }

  .sil--1 { height: 95px; }
  .sil--2 { height: 120px; }
  .sil--3 { height: 110px; }
  .sil--4 { height: 90px; }

  .team-quote-box {
    padding: 18px 16px;
  }

  .team-quote-text {
    font-size: 0.875rem;
  }

  /* Brand Story Mobile */
  .brand-story__text {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .brand-story__text-sub {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  /* Steps Mobile */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 22px 18px;
  }

  .step-badge {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-desc {
    font-size: 0.875rem;
  }

  /* Reviews Mobile */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 20px 18px;
  }

  .review-quote {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }

  .review-author {
    padding-top: 12px;
    gap: 10px;
  }

  .review-avatar-img {
    width: 38px;
    height: 38px;
  }

  .review-name {
    font-size: 0.8125rem;
  }

  .review-role {
    font-size: 0.7rem;
  }

  /* FAQ Mobile */
  .faq__question {
    padding: 16px 18px;
    font-size: 0.9375rem;
    gap: 10px;
  }

  .faq__toggle-icon {
    width: 26px;
    height: 26px;
  }

  .faq__toggle-icon svg {
    width: 13px;
    height: 13px;
  }

  .faq__answer-inner {
    padding: 0 18px 16px 18px;
    font-size: 0.85rem;
  }

  /* Final CTA Mobile */
  .final-cta__box {
    padding: 40px 18px;
    border-radius: 22px;
  }

  .final-cta__title {
    font-size: clamp(1.7rem, 6.5vw, 2.3rem);
  }

  .final-cta__desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  /* Footer Mobile */
  .footer {
    padding: 50px 0 90px 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__logo-img {
    height: 44px;
  }

  .footer__annizi-branding {
    padding: 20px 0;
    margin: 24px 0 20px 0;
  }

  .annizi-brand-wrap {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer__prominent-logo {
    height: 46px;
  }

  .annizi-brand-text {
    font-size: 1rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer__disclaimer {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.5;
  }

  .footer__copyright {
    font-size: 0.7rem;
    white-space: normal;
    text-align: center;
  }

  /* Sticky Mobile CTA Bar */
  .mobile-cta {
    padding: 10px 16px;
  }

  .btn--mobile {
    padding: 13px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
  }
}

/* --- SMALL MOBILE & IPHONES (≤480px, including iPhone 15 Pro Max at 430px) --- */
@media (max-width: 480px) {
  .hero__phone-frame {
    width: min(78vw, 300px);
    border-radius: 32px;
    border-width: 5px;
  }

  .hero-pedestal-platform {
    width: min(86vw, 310px);
    height: 82px;
  }

  .pedestal-disc--base {
    width: min(84vw, 300px);
    height: 50px;
  }

  .pedestal-disc--top {
    width: min(70vw, 250px);
    height: 42px;
    bottom: 20px;
  }

  /* Grow Together card hidden under 480px so device UI is completely clean and unblocked */
  .hero__float-card--grow {
    display: none;
  }

  /* Two high-impact badges positioned cleanly at top without negative offsets */
  .hero__float-card--insight {
    top: 4%;
    left: 0;
    max-width: 175px;
    padding: 6px 10px;
  }

  .hero__float-card--btc {
    top: 2%;
    right: 0;
    padding: 5px 10px;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }

  .trust-strip__title {
    font-size: 0.8125rem;
  }

  .trust-strip__desc {
    font-size: 0.6875rem;
  }
}

/* --- VERY SMALL PHONES (≤360px) --- */
@media (max-width: 360px) {
  .navbar__logo-img {
    height: 38px;
  }

  .hero__headline {
    font-size: 2.05rem;
  }

  .hero__pill-tag {
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    padding: 5px 10px;
  }

  .hero__phone-frame {
    width: 268px;
    border-radius: 28px;
    border-width: 5px;
  }

  .hero-pedestal-platform {
    width: 270px;
    height: 74px;
  }

  .pedestal-disc--base {
    width: 260px;
    height: 46px;
  }

  .pedestal-disc--top {
    width: 220px;
    height: 38px;
    bottom: 18px;
  }

  .hero__float-card--insight .float-card__subtitle {
    display: none;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .community-avatars-overlay {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   WHERE THE COMMUNITY LIVES — REAL TRADING COMMUNITY
   ============================================= */
.community-lives {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
}

.community-lives__header {
  max-width: 720px;
  margin: 0 auto 52px auto;
}

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

.community-lives__card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.community-lives__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.community-lives__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.community-lives__icon svg {
  width: 24px;
  height: 24px;
}

.community-lives__icon--primary {
  background: #EDE8FD;
  color: var(--primary);
}

.community-lives__icon--lavender {
  background: #F3EFFF;
  color: #7C42FF;
}

.community-lives__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.community-lives__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
}

.community-lives__cta {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .community-lives__grid {
    grid-template-columns: 1fr;
  }
}
