/* ==========================================================================
   Lynaro 2.0 - Prop Firm Frontend Stylesheet
   Design System: Dark Glassmorphism, Bright Teal (#00D4AA), Slate Blue (#0F3460), Deep Navy (#0A0C16)
   Fluid Mobile Viewport Locked (Zero Horizontal Overflow, Modern Multi-Column Mobile Grids)
   ========================================================================== */

:root {
  /* Lynaro Color System Tokens */
  --bg-canvas: #0A0C16;
  /* Deep Canvas */
  --bg-surface-dark: #0F1428;
  /* Container Surface */
  --bg-surface-card: rgba(15, 20, 40, 0.7);
  --bg-surface-card-hover: rgba(22, 30, 58, 0.9);

  --accent-primary: #00D4AA;
  /* Bright Teal */
  --accent-primary-hover: #00B38F;
  --accent-purple: #8B5CF6;
  --accent-pink: #EC4899;

  --bg-light-rare1: #09bd99;
  /* Rare Teal 1 */
  --bg-light-rare2: #0ead8d;
  /* Rare Teal 2 */

  --text-main-darkbg: #FFFFFF;
  --text-muted-darkbg: #94A3B8;

  --border-glass: rgba(255, 255, 255, 0.12);
  --shadow-glass: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-btn-teal: 0 0 20px rgba(0, 212, 170, 0.4);

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Layout Tokens */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --max-width: 1240px;
}

/* Base Reset & Mobile Screen Locking */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

body {
  background-color: var(--bg-canvas);
  color: var(--text-main-darkbg);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Ambient Background Glow Orbs */
.bg-glow-orb-1 {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, rgba(139, 92, 246, 0.1) 40%, rgba(10, 12, 22, 0) 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-orb-2 {
  position: absolute;
  top: 550px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 52, 96, 0.3) 0%, rgba(0, 212, 170, 0.1) 50%, rgba(10, 12, 22, 0) 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(10, 12, 22, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo image — navbar (light logo on dark bg) */
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Subtle hover lift */
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo:hover .logo-img {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Footer logo image — slightly smaller */
.footer-logo-img {
  height: 38px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
  background: rgba(15, 20, 40, 0.6);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  flex-wrap: nowrap;
}

.nav-link {
  padding: 6px 12px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted-darkbg);
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-primary);
  background: rgba(0, 212, 170, 0.12);
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Sleek Single "Dashboard" Button — Glass + Teal Glow */
.btn-dashboard {
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  /* WHITE text — always high contrast, never dark on teal */
  color: #FFFFFF;
  /* Dark glass background with teal border glow */
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.45);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 14px rgba(0, 212, 170, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-dashboard svg {
  color: #00D4AA;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn-dashboard:hover {
  color: #FFFFFF;
  background: rgba(0, 212, 170, 0.18);
  border-color: rgba(0, 212, 170, 0.75);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 212, 170, 0.45), 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-dashboard:hover svg {
  transform: scale(1.1);
  color: #24E5BE;
}

/* Icon-only Login / Profile Button — Premium */
.btn-login-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Gradient border: teal → violet using padding-box/border-box trick */
  background:
    linear-gradient(rgba(10, 12, 22, 0.85), rgba(10, 12, 22, 0.85)) padding-box,
    linear-gradient(135deg, #00D4AA 0%, #8B5CF6 100%) border-box;
  border: 1.5px solid transparent;
  /* Icon always teal — never muted */
  color: #00D4AA;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  /* Persistent inner glow to catch the eye */
  box-shadow: 0 0 12px rgba(0, 212, 170, 0.25), inset 0 0 8px rgba(0, 212, 170, 0.06);
}

/* Breathing pulse ring — always animating to draw attention */
.btn-login-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 212, 170, 0.5);
  animation: loginPulseRing 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes loginPulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  60% {
    transform: scale(1.22);
    opacity: 0;
  }

  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

/* Tooltip on hover */
.btn-login-icon::after {
  content: "Sign In";
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 20, 40, 0.95);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid rgba(0, 212, 170, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.btn-login-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
}

.btn-login-icon:hover {
  /* Stronger gradient border on hover */
  background:
    linear-gradient(rgba(10, 12, 22, 0.7), rgba(10, 12, 22, 0.7)) padding-box,
    linear-gradient(135deg, #24E5BE 0%, #A78BFA 100%) border-box;
  color: #24E5BE;
  box-shadow:
    0 0 24px rgba(0, 212, 170, 0.55),
    0 0 48px rgba(0, 212, 170, 0.2),
    inset 0 0 12px rgba(0, 212, 170, 0.1);
  transform: translateY(-2px) scale(1.05);
}

.btn-login-icon svg {
  transition: transform 0.25s ease;
  filter: drop-shadow(0 0 4px rgba(0, 212, 170, 0.4));
}

.btn-login-icon:hover svg {
  transform: scale(1.12);
  filter: drop-shadow(0 0 8px rgba(0, 212, 170, 0.8));
}

.btn-secondary {
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-primary);
  background: transparent;
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: rgba(0, 212, 170, 0.14);
}

.btn-primary {
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bg-canvas);
  background: var(--accent-primary);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-btn-teal);
}

.btn-primary:hover {
  background: var(--accent-primary-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--text-main-darkbg);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
}

/* ==========================================================================
   Hero Showcase Section — Enhanced Nexform Reference Design
   Theme: Obsidian (#070913), Radiant Teal (#00D4AA), Electric Cyan (#00E5FF), Neon Violet (#8B5CF6)
   ========================================================================== */
.hero-showcase-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  background: #070913;
  overflow: hidden;
  padding-top: 105px;
  padding-bottom: 0;
  box-sizing: border-box;
}

/* Background atmospheric radiance behind character and across hero */
.hero-showcase-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Multi-Tone Atmospheric Radiance (Teal, Cyan, Purple, Deep Ocean) */
.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-teal {
  width: 620px;
  height: 620px;
  right: 22%;
  top: 12%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.32) 0%, rgba(0, 180, 216, 0.18) 45%, transparent 70%);
  animation: glowPulseTeal 9s ease-in-out infinite alternate;
}

.hero-glow-cyan {
  width: 480px;
  height: 480px;
  right: 10%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.24) 0%, rgba(59, 130, 246, 0.14) 50%, transparent 75%);
  animation: glowPulseCyan 11s ease-in-out infinite alternate;
}

.hero-glow-purple {
  width: 580px;
  height: 580px;
  right: 2%;
  top: 8%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.28) 0%, rgba(168, 85, 247, 0.15) 45%, transparent 72%);
  filter: blur(90px);
  animation: glowPulsePurple 13s ease-in-out infinite alternate;
}

.hero-glow-ocean {
  width: 700px;
  height: 700px;
  left: -10%;
  top: -15%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.8) 0%, rgba(7, 9, 19, 0) 70%);
}

@keyframes glowPulseTeal {
  0% { transform: scale(0.95) translate(0, 0); opacity: 0.85; }
  50% { transform: scale(1.08) translate(-15px, 10px); opacity: 1; }
  100% { transform: scale(1) translate(10px, -8px); opacity: 0.9; }
}

@keyframes glowPulseCyan {
  0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  100% { transform: scale(1.15) translate(15px, -15px); opacity: 1; }
}

@keyframes glowPulsePurple {
  0% { transform: scale(0.92) translate(0, 0); opacity: 0.75; }
  100% { transform: scale(1.1) translate(-10px, 15px); opacity: 0.95; }
}

/* Subtle dot matrix overlay for institutional high-tech aesthetic */
.hero-mesh-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 80%);
}

/* Soft Volumetric Light Beam from Upper Right */
.hero-ray-light {
  position: absolute;
  top: -20%;
  right: 15%;
  width: 600px;
  height: 1000px;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(139, 92, 246, 0.04) 50%, transparent 80%);
  transform: rotate(-25deg);
  filter: blur(50px);
  pointer-events: none;
}

/* Main 3-Column Showcase Container */
.hero-showcase-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.9fr;
  align-items: end;
  column-gap: 32px;
}

/* ==================== LEFT COLUMN ==================== */
.hero-showcase-col-left {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}

/* Status Pill Badge */
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px;
  background: rgba(0, 212, 170, 0.09);
  border: 1px solid rgba(0, 212, 170, 0.38);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 16px rgba(0, 212, 170, 0.15);
}

.hero-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00D4AA;
  box-shadow: 0 0 10px #00D4AA;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-status-tag {
  background: rgba(0, 212, 170, 0.22);
  color: #00F2FE;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Giant Condensed Title */
.hero-display-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5.8vw, 5.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-title-teal {
  color: #00D4AA;
  text-shadow: 0 0 35px rgba(0, 212, 170, 0.45);
  display: inline-block;
}

/* Subtitle */
.hero-display-sub {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--text-muted-darkbg);
  line-height: 1.55;
  margin: 0 0 30px 0;
  max-width: 380px;
  letter-spacing: -0.01em;
}

/* Dual Button CTA Group */
.hero-display-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Primary Button — Frosted Glass Teal/Cyan Glow (Strictly White Text) */
.btn-display-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 700;
  color: #FFFFFF !important;
  background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 28px rgba(0, 212, 170, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-display-primary:hover {
  background: linear-gradient(135deg, #00E5FF 0%, #00C896 100%);
  border-color: #FFFFFF;
  color: #FFFFFF !important;
  box-shadow: 0 0 42px rgba(0, 229, 255, 0.65), inset 0 1px 2px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px) scale(1.02);
}

.btn-display-primary svg {
  transition: transform 0.25s ease;
  color: #FFFFFF;
}

.btn-display-primary:hover svg {
  transform: translateX(4px);
}

/* Secondary Button — Minimalist Glass Outline Pill */
.btn-display-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-display-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 212, 170, 0.5);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Trust & Social Proof Review Capsule Badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 12px;
  background: linear-gradient(135deg, rgba(7, 16, 30, 0.88) 0%, rgba(13, 24, 42, 0.92) 100%);
  border: 1px solid rgba(0, 212, 170, 0.28);
  border-radius: 9999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 
              0 0 20px rgba(0, 212, 170, 0.08), 
              inset 0 1px 1px rgba(255, 255, 255, 0.12);
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 6px;
}

.hero-trust-badge:hover {
  border-color: rgba(0, 212, 170, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 
              0 0 28px rgba(0, 212, 170, 0.22), 
              0 0 14px rgba(255, 184, 0, 0.12),
              inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-trust-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.trust-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #060913;
  margin-left: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

.trust-av:first-child {
  margin-left: 0;
}

.trust-av:hover {
  transform: translateY(-2px) scale(1.08);
  z-index: 2;
}

.av-teal { 
  background: linear-gradient(135deg, #00D4AA 0%, #00876D 100%); 
  box-shadow: 0 0 0 1px rgba(0, 212, 170, 0.4);
}
.av-gold { 
  background: linear-gradient(135deg, #FFB800 0%, #D97706 100%); 
  color: #FFFFFF;
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.45);
}
.av-teal-deep { 
  background: linear-gradient(135deg, #059669 0%, #064E3B 100%); 
  box-shadow: 0 0 0 1px rgba(5, 150, 105, 0.4);
}
.av-amber { 
  background: linear-gradient(135deg, #F59E0B 0%, #B45309 100%); 
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.4);
}

.hero-trust-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(0, 212, 170, 0.35) 0%, rgba(255, 184, 0, 0.3) 50%, rgba(255, 255, 255, 0.06) 100%);
  flex-shrink: 0;
}

.hero-trust-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  min-width: 0;
}

.hero-trust-rating-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust-stars {
  display: flex;
  gap: 2.5px;
  color: #FFB800;
  filter: drop-shadow(0 0 5px rgba(255, 184, 0, 0.55));
}

.hero-trust-score {
  font-size: 0.76rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #FFD166;
  letter-spacing: 0.02em;
}

.hero-trust-tag {
  font-size: 0.56rem;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 9999px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.35);
  color: #00D4AA;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-trust-caption {
  font-size: 0.8rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.trust-highlight-teal {
  color: #00D4AA;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(0, 212, 170, 0.45);
}

.trust-sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.trust-sub-countries {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

/* ==================== CENTER COLUMN ==================== */
.hero-showcase-col-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

/* Radiant Spotlight Aura Centered Right Behind Character */
.hero-character-aura {
  position: absolute;
  width: 540px;
  height: 540px;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 212, 170, 0.42) 0%, rgba(0, 229, 255, 0.26) 35%, rgba(139, 92, 246, 0.18) 60%, transparent 75%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 1;
}

/* Subtle Animated Rotating Halo Ring Behind Trader */
.hero-halo-ring {
  position: absolute;
  width: 480px;
  height: 480px;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 212, 170, 0.35);
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.2), inset 0 0 30px rgba(139, 92, 246, 0.15);
  animation: rotateHalo 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes rotateHalo {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* Floating Live Micro-Chips */
.hero-chip-badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(13, 18, 38, 0.8);
  border: 1px solid rgba(0, 212, 170, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 16px rgba(0, 212, 170, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  pointer-events: auto;
}

.hero-chip-badge:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: #00D4AA;
}

.chip-execution {
  top: 14%;
  left: -20px;
  animation: floatChip1 5s ease-in-out infinite;
}

.chip-drawdown {
  bottom: 22%;
  right: -25px;
  animation: floatChip2 6s ease-in-out infinite;
}

@keyframes floatChip1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatChip2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.chip-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00D4AA;
  box-shadow: 0 0 10px #00D4AA;
  animation: pulseDot 1.8s infinite;
}

.chip-text-group {
  display: flex;
  flex-direction: column;
}

.chip-val {
  font-size: 0.84rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.chip-sub {
  font-size: 0.68rem;
  color: var(--text-muted-darkbg);
}

.hero-character-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 0;
}

/* Character Image with Seamless Bottom Gradient Fade */
.hero-character-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, #000000 78%, rgba(0, 0, 0, 0.25) 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000000 78%, rgba(0, 0, 0, 0.25) 92%, transparent 100%);
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.8));
  transform-origin: bottom center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-character-img:hover {
  transform: scale(1.02);
}

/* ==================== RIGHT COLUMN ==================== */
.hero-showcase-col-right {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 3;
}

.hero-right-header {
  margin-bottom: 22px;
}

.hero-secondary-title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px 0;
}

.hero-secondary-accent {
  background: linear-gradient(135deg, #00D4AA 0%, #00F2FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-secondary-sub {
  font-size: 0.88rem;
  color: var(--text-muted-darkbg);
  line-height: 1.55;
  max-width: 330px;
  margin: 0;
}

/* Two Stacked Sleek Dark Glass Stat Cards */
.hero-stat-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 320px;
}

.hero-stat-card {
  position: relative;
  background: rgba(14, 18, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 22px 26px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stat-card:hover {
  border-color: rgba(0, 212, 170, 0.4);
  background: rgba(18, 24, 48, 0.85);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.65), 0 0 25px rgba(0, 212, 170, 0.12);
  transform: translateY(-3px);
}

.stat-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
  transition: all 0.2s ease;
}

.hero-stat-card:hover .stat-card-tag {
  color: #00D4AA;
  border-color: rgba(0, 212, 170, 0.35);
  background: rgba(0, 212, 170, 0.1);
}

.hero-stat-label {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-muted-darkbg);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Responsive Breakpoints for Hero Showcase (Desktop, Tablet, Mobile)
   ========================================================================== */

/* ==========================================================================
   Responsive Breakpoints for Hero Showcase (Desktop, Tablet, Mobile)
   ========================================================================== */

/* Laptop / Small Desktop (1025px - 1280px) */
@media (max-width: 1280px) {
  .hero-showcase-container {
    column-gap: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-display-title {
    font-size: 3.5rem;
  }
  .hero-character-img {
    max-width: 380px;
  }
  .chip-execution { left: -10px; }
  .chip-drawdown { right: -10px; }
}

/* Tablet & Mobile (<1024px) — Clean Stacked High-Converting App Flow */
@media (max-width: 1024px) {
  .hero-showcase-section {
    min-height: auto !important;
    padding-top: 105px !important;
    padding-bottom: 36px !important;
    align-items: center !important;
  }
  .hero-showcase-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  .hero-showcase-col-left {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    align-items: flex-start !important;
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
  }
  .hero-status-pill {
    margin-bottom: 16px;
    font-size: 0.76rem;
  }
  .hero-display-title {
    font-size: clamp(2.8rem, 8vw, 3.8rem);
    line-height: 0.94;
    margin-bottom: 16px;
  }
  .hero-display-sub {
    font-size: 0.98rem;
    margin-bottom: 24px;
    max-width: 500px;
  }
  .hero-display-cta {
    width: 100% !important;
    display: flex !important;
    gap: 14px !important;
    margin-bottom: 22px !important;
  }
  .btn-display-primary,
  .btn-display-outline {
    flex: 1 !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    padding: 13px 22px !important;
    font-size: 0.92rem !important;
  }
  .hero-trust-badge {
    max-width: 100%;
    padding: 9px 14px;
    gap: 12px;
    border-radius: 18px;
    box-sizing: border-box;
  }
  .hero-showcase-col-center {
    order: 2 !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 12px auto !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .hero-character-wrapper {
    max-width: 320px !important;
  }
  .hero-character-img {
    max-width: 310px !important;
  }
  .hero-character-aura {
    width: 340px !important;
    height: 340px !important;
    top: 5% !important;
  }
  .hero-halo-ring {
    width: 300px !important;
    height: 300px !important;
    top: 8% !important;
  }
  /* Keep chips strictly inside viewport */
  .chip-execution {
    top: 6% !important;
    left: 4px !important;
    padding: 6px 12px !important;
  }
  .chip-drawdown {
    bottom: 16% !important;
    right: 4px !important;
    padding: 6px 12px !important;
  }
  .chip-val {
    font-size: 0.8rem;
  }
  .chip-sub {
    font-size: 0.64rem;
  }
  .hero-showcase-col-right {
    order: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    align-items: flex-start !important;
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
  }
  .hero-secondary-title {
    font-size: 1.55rem;
    margin-bottom: 8px;
  }
  .hero-secondary-sub {
    font-size: 0.88rem;
    max-width: 100%;
    margin-bottom: 18px;
  }
  /* High-Converting 2-Column Mobile Stat Grid */
  .hero-stat-cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .hero-stat-card {
    padding: 16px 18px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }
  .hero-stat-number {
    font-size: 1.75rem !important;
  }
  .stat-card-tag {
    font-size: 0.64rem !important;
    padding: 2px 7px !important;
  }
  .hero-stat-label {
    font-size: 0.74rem !important;
    margin-bottom: 6px !important;
  }
  .features-section {
    padding: 55px 0 !important;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
}

@media (max-width: 820px) {
  .features-section {
    padding: 45px 0 !important;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .feature-card {
    padding: 24px 20px !important;
    border-radius: 18px !important;
  }
}

/* Smartphone (<600px) */
@media (max-width: 600px) {
  .hero-showcase-section {
    padding-top: 86px !important;
    padding-bottom: 28px !important;
  }
  .hero-showcase-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 20px !important;
  }
  .hero-display-title {
    font-size: clamp(2.5rem, 11vw, 3.2rem);
  }
  .hero-display-cta {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .btn-display-primary,
  .btn-display-outline {
    width: 100% !important;
    padding: 13px 20px !important;
  }
  .hero-trust-badge {
    padding: 8px 12px !important;
    gap: 10px !important;
    border-radius: 16px !important;
  }
  .hero-trust-caption {
    font-size: 0.74rem !important;
  }
  .hero-trust-score {
    font-size: 0.72rem !important;
  }
  .hero-character-wrapper {
    max-width: 270px !important;
  }
  .hero-character-img {
    max-width: 260px !important;
  }
  .hero-character-aura {
    width: 280px !important;
    height: 280px !important;
  }
  .hero-halo-ring {
    width: 250px !important;
    height: 250px !important;
  }
  .chip-execution {
    left: 0 !important;
  }
  .chip-drawdown {
    right: 0 !important;
  }
  .hero-secondary-title {
    font-size: 1.35rem;
  }
  .features-section {
    padding: 42px 0 !important;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .feature-card {
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }
}

/* Very Small Mobile (<380px) */
@media (max-width: 380px) {
  .hero-stat-cards {
    grid-template-columns: 1fr !important;
  }
  .hero-character-wrapper {
    max-width: 230px !important;
  }
  .hero-character-img {
    max-width: 220px !important;
  }
}

/* ==========================================================================
   Stats Bar Section
   ========================================================================== */
.stats-section {
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-surface-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  backdrop-filter: blur(16px);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.25);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main-darkbg);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted-darkbg);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.section-header-left {
  text-align: left;
  max-width: 720px;
  margin-bottom: 28px;
}

.section-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  color: var(--accent-primary);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text-main-darkbg);
}

.section-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted-darkbg);
}

/* ==========================================================================
   PROMO BANNER — We Fund Your Forex Success
   ========================================================================== */
.promo-banner-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #00C49A 0%, #00D4AA 40%, #00B899 70%, #009E85 100%);
  padding: 0;
}

/* Decorative corner circles matching reference image */
.promo-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.1);
}

.promo-deco--tl {
  width: 180px;
  height: 180px;
  top: -60px;
  left: -60px;
  background: rgba(0, 150, 120, 0.35);
}

.promo-deco--tr {
  width: 130px;
  height: 130px;
  top: -40px;
  right: 5%;
  background: rgba(0, 180, 145, 0.2);
}

.promo-deco--bl {
  width: 70px;
  height: 70px;
  bottom: 30px;
  left: 6%;
  background: rgba(255, 255, 255, 0.12);
}

.promo-deco--br {
  width: 100px;
  height: 100px;
  bottom: -30px;
  right: 3%;
  background: rgba(0, 140, 110, 0.3);
}

/* Inner layout: two columns */
.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: flex-end;
  min-height: 360px;
  gap: 0;
}

/* ── LEFT COLUMN ── */
.promo-left {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  min-height: 360px;
}

/* Floating quote card */
.promo-quote-card {
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 3;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 16px 18px;
  max-width: 195px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.promo-quote-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: #0A1628;
  line-height: 1.5;
  margin-bottom: 0;
}

.promo-quote-text strong {
  color: #009E85;
  font-weight: 700;
}

/* Trader image */
.promo-trader-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  margin-left: auto;
  width: 100%;
  justify-content: flex-end;
}

.promo-trader-img {
  display: block;
  height: 360px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

/* ── RIGHT COLUMN ── */
.promo-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 42px 36px;
  gap: 0;
}

.promo-firm-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.promo-headline {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

/* Second line — outlined/accent style */
.promo-headline-accent {
  color: rgba(255, 255, 255, 0.88);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  display: block;
}

.promo-sub {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.promo-hashtags {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* CTA pill buttons row */
.promo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

/* Primary: white filled */
.promo-btn--primary {
  background: #FFFFFF;
  color: #007A65;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.promo-btn--primary:hover {
  background: #F0FEFA;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Ghost: transparent with white border */
.promo-btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.promo-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 820px) {
  .promo-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .promo-left {
    min-height: 260px;
    justify-content: center;
  }

  .promo-trader-img {
    height: 250px;
  }

  .promo-quote-card {
    left: 8px;
    top: 16px;
    max-width: 160px;
  }

  .promo-right {
    padding: 28px 0 36px;
  }

  .promo-headline {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   "How We Keep You Ahead®" 3 GLOWING NEON CARDS (ELEGANT DARK SLATE NAVY CANVAS)
   ========================================================================== */
.glow-steps-section {
  padding: 65px 0;
  position: relative;
  /* Rich Deep Slate-Navy Background (Not Pitch Black) */
  background: linear-gradient(165deg, #0F172A 0%, #111827 50%, #0D1322 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
}

.glow-steps-section .section-title {
  color: #FFFFFF !important;
  text-shadow: none;
}

.glow-steps-section .section-subtitle {
  color: var(--text-muted-darkbg) !important;
  font-weight: 400;
}

.glow-steps-section p[style] {
  color: rgba(255, 255, 255, 0.5) !important;
}

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

.glow-card {
  position: relative;
  background: linear-gradient(160deg, rgba(10, 14, 28, 0.92) 0%, rgba(15, 20, 40, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.35s ease;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.glow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7);
}

.glow-card-amber {
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 -45px 60px -15px rgba(255, 107, 0, 0.35);
}

.glow-card-blue {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 -45px 60px -15px rgba(59, 130, 246, 0.35);
}

.glow-card-purple {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 -45px 60px -15px rgba(168, 85, 247, 0.45);
}

.glow-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glow-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.glow-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.2;
}

.glow-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.glow-card-action {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.glow-pills-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.glow-pill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(10, 12, 22, 0.82);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.glow-pill-item svg {
  color: #00FFE0;
}

/* ==========================================================================
   Core Evaluation Models Showcase
   ========================================================================== */
.gradient-text-vibrant {
  background: linear-gradient(135deg, #00F2FE 0%, #00D4AA 35%, #FFB800 70%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.35));
}

/* ==========================================================================
   Core Evaluation Models Showcase (Multi-Color Electric Vibrant Spectrum)
   ========================================================================== */
.features-section {
  padding: 85px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #060B16 0%, #0B1326 50%, #080D1D 100%) !important;
  border-top: 1px solid rgba(0, 242, 254, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.6);
}

/* Ambient Multi-Color Light Orbs */
.features-bg-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
  z-index: 1;
}

.features-aura-tr {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -90px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.18) 0%, rgba(0, 212, 170, 0.08) 50%, transparent 75%);
}

.features-aura-bl {
  width: 480px;
  height: 480px;
  bottom: -120px;
  left: -90px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.16) 0%, rgba(255, 107, 0, 0.08) 50%, transparent 75%);
}

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

/* Base Feature Card */
.feature-card {
  background: linear-gradient(145deg, rgba(13, 20, 36, 0.88) 0%, rgba(18, 28, 48, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 26px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

/* ----------------------------------------------------
   1. CARD 1: ELECTRIC CYAN & BLUE
   ---------------------------------------------------- */
.card-cyan {
  border-color: rgba(0, 242, 254, 0.22);
}
.card-cyan:hover {
  transform: translateY(-8px);
  border-color: #00F2FE;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65), 0 0 35px rgba(0, 242, 254, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}
.card-cyan .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.2) 0%, rgba(79, 172, 254, 0.08) 100%);
  border: 1px solid rgba(0, 242, 254, 0.45);
  color: #00F2FE;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.45));
}
.card-cyan .feature-bullets li svg {
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: #00F2FE !important;
}
.card-cyan .card-link {
  color: #00F2FE;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.3);
}
.card-cyan .card-link:hover {
  background: #00F2FE;
  color: #070D1A;
  border-color: #00F2FE;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.5);
}

/* ----------------------------------------------------
   2. CARD 2: SIGNATURE TEAL & GOLD (FEATURED)
   ---------------------------------------------------- */
.card-teal-gold {
  background: linear-gradient(145deg, rgba(10, 26, 42, 0.94) 0%, rgba(15, 38, 58, 0.96) 100%);
  border: 1.5px solid #00D4AA;
  box-shadow: 0 18px 45px rgba(0, 212, 170, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.22);
}
.card-teal-gold:hover {
  transform: translateY(-8px);
  border-color: #FFB800;
  box-shadow: 0 25px 60px rgba(0, 212, 170, 0.35), 0 0 35px rgba(255, 184, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}
.card-teal-gold .popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 13px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FFB800 0%, #F59E0B 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #070D1A;
  font-size: 0.66rem;
  font-weight: 900;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.45);
}
.card-teal-gold .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.22) 0%, rgba(0, 212, 170, 0.12) 100%);
  border: 1px solid rgba(255, 184, 0, 0.5);
  color: #FFB800;
  filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.5));
}
.card-teal-gold .feature-bullets li svg {
  background: rgba(0, 212, 170, 0.18);
  border: 1px solid rgba(0, 212, 170, 0.45);
  color: #00D4AA !important;
}
.card-teal-gold .card-link {
  color: #FFFFFF;
  background: linear-gradient(135deg, #00D4AA 0%, #009678 100%);
  border: 1px solid #00D4AA;
  box-shadow: 0 4px 14px rgba(0, 212, 170, 0.35);
}
.card-teal-gold .card-link:hover {
  background: linear-gradient(135deg, #FFB800 0%, #D97706 100%);
  color: #070D1A;
  border-color: #FFB800;
  box-shadow: 0 6px 22px rgba(255, 184, 0, 0.5);
}

/* ----------------------------------------------------
   3. CARD 3: NEON PURPLE & ULTRA VIOLET
   ---------------------------------------------------- */
.card-purple {
  border-color: rgba(168, 85, 247, 0.25);
}
.card-purple:hover {
  transform: translateY(-8px);
  border-color: #C084FC;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65), 0 0 35px rgba(168, 85, 247, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}
.card-purple .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.22) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #C084FC;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.45));
}
.card-purple .feature-bullets li svg {
  background: rgba(168, 85, 247, 0.16);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #C084FC !important;
}
.card-purple .card-link {
  color: #C084FC;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.32);
}
.card-purple .card-link:hover {
  background: #A855F7;
  color: #FFFFFF;
  border-color: #A855F7;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
}

/* ----------------------------------------------------
   4. CARD 4: SUNSET AMBER & FLAME GOLD
   ---------------------------------------------------- */
.card-amber {
  border-color: rgba(255, 107, 0, 0.25);
}
.card-amber:hover {
  transform: translateY(-8px);
  border-color: #FF9E00;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65), 0 0 35px rgba(255, 107, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}
.card-amber .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.22) 0%, rgba(255, 184, 0, 0.1) 100%);
  border: 1px solid rgba(255, 107, 0, 0.48);
  color: #FF9E00;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.45));
}
.card-amber .feature-bullets li svg {
  background: rgba(255, 107, 0, 0.16);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: #FF9E00 !important;
}
.card-amber .card-link {
  color: #FF9E00;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.32);
}
.card-amber .card-link:hover {
  background: #FF6B00;
  color: #FFFFFF;
  border-color: #FF6B00;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.5);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.25;
}

.feature-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-bullets {
  list-style: none;
  margin-bottom: 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-bullets li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.feature-bullets li svg {
  flex-shrink: 0;
  padding: 2px;
  border-radius: 50%;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
  text-decoration: none;
}

/* ==========================================================================
   Trading Platform Advantage & Mockup Showcase
   ========================================================================== */
.advantage-section {
  padding: 55px 0;
}

.advantage-box {
  background: rgba(15, 20, 40, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.advantage-text h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.advantage-text p {
  font-size: 0.88rem;
  color: var(--text-muted-darkbg);
  margin-bottom: 22px;
}

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

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

.adv-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.adv-info p {
  font-size: 0.85rem;
  color: var(--text-muted-darkbg);
}

.adv-glass-container {
  background: rgba(22, 30, 58, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.adv-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.adv-big-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
}

.adv-badge {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ==========================================================================
   Rules & Policy Explanations
   ========================================================================== */
.rules-section {
  padding: 55px 0;
}

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

.rule-box {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  backdrop-filter: blur(12px);
}

.rule-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.rule-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 212, 170, 0.12);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rule-header h4 {
  font-size: 1rem;
  font-weight: 700;
}

.rule-box p {
  font-size: 0.85rem;
  color: var(--text-muted-darkbg);
  line-height: 1.5;
}

/* ==========================================================================
   3D PODIUM CAROUSEL TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 65px 0 50px 0;
  position: relative;
  overflow: hidden;
}

.podium-carousel-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 0 40px 0;
}

/* Ambient 3D Stage Background Glow */
.podium-stage-glow {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 200px;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 212, 170, 0.22) 0%, rgba(139, 92, 246, 0.15) 45%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* Navigation Arrow Buttons */
.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 20, 40, 0.85);
  border: 1px solid rgba(0, 212, 170, 0.4);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.carousel-btn:hover {
  background: var(--accent-primary);
  color: var(--bg-canvas);
  border-color: var(--accent-primary);
  box-shadow: 0 0 25px rgba(0, 212, 170, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.btn-prev {
  left: -20px;
}

.btn-next {
  right: -20px;
}

/* Slider Viewport & Track */
.carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 20px 6px 30px 6px;
  position: relative;
  z-index: 2;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Podium Card Design */
.podium-card {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  box-sizing: border-box;
}

.podium-card-inner {
  background: linear-gradient(160deg, rgba(22, 30, 58, 0.85) 0%, rgba(12, 16, 32, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid rgba(0, 212, 170, 0.5);
  border-radius: 20px;
  padding: 24px 18px 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  backdrop-filter: blur(20px);
  transition: all 0.35s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.podium-card-inner:hover {
  transform: translateY(-8px);
  border-top-color: var(--accent-primary);
  border-color: rgba(0, 212, 170, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 212, 170, 0.2);
}

/* Avatar Header */
.trader-avatar-wrapper {
  position: relative;
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
}

.podium-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--accent-primary);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
}

.verified-badge-pill {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0A0C16;
  border: 1.5px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.podium-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.podium-tier-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-primary);
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.25);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.podium-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.podium-quote {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}

/* 3D Stage Podium Base Element */
.podium-stage-base {
  width: 100%;
  margin-top: -15px;
  position: relative;
  z-index: 1;
}

.podium-svg-stage {
  width: 100%;
  height: 60px;
  display: block;
}

/* Carousel Dots Navigation */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 3;
}

.dot-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-item.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--accent-primary);
  box-shadow: 0 0 12px var(--accent-primary);
}

/* Responsive Podium Slider */
@media (max-width: 1024px) {
  .podium-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .btn-prev {
    left: -10px;
  }

  .btn-next {
    right: -10px;
  }
}

@media (max-width: 640px) {
  .podium-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .btn-prev {
    left: 0;
  }

  .btn-next {
    right: 0;
  }

  .podium-svg-stage {
    height: 35px;
  }
}

/* ==========================================================================
   FULL OPACITY PRIMARY TEAL CTA BANNER WITH MODERN MULTI-COLOR SVGS
   ========================================================================== */
.cta-section {
  padding: 55px 0;
  position: relative;
  z-index: 2;
}

.cta-card {
  position: relative;
  /* Full Opacity Vibrant Primary Teal Canvas Background */
  background: linear-gradient(135deg, #00D4AA 0%, #00B38F 55%, #008F72 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 58px 24px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 55px rgba(0, 212, 170, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Multi-Color Ambient SVGs Overlay */
.cta-ring-svg,
.cta-svg-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* SVG 1: Left Ambient Ring (Electric Violet) */
.cta-ring-left {
  width: 320px;
  height: 320px;
  left: -50px;
  bottom: -50px;
  opacity: 0.95;
}

/* SVG 2: Right Ambient Arch (Hot Pink & Gold) */
.cta-ring-right {
  width: 340px;
  height: 340px;
  right: -60px;
  top: -60px;
  opacity: 0.95;
}

/* SVG 3: Modern 4-Point Floating Spark (Top Center Right) */
.cta-spark-top {
  width: 48px;
  height: 48px;
  top: 35px;
  right: 18%;
  opacity: 0.9;
  animation: pulseSpark 3s ease-in-out infinite alternate;
}

@keyframes pulseSpark {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.25) rotate(15deg);
    opacity: 1;
  }
}

/* SVG 4: Modern Financial Wave Curve (Bottom Edge) */
.cta-wave-bottom {
  width: 550px;
  height: 100px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.85;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  background: rgba(10, 12, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  font-weight: 800;
  color: #00FFE0;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00FFE0;
  box-shadow: 0 0 12px #00FFE0;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0A0C16;
  /* Deep Navy Solid Text for Maximum Contrast on Primary Teal */
  margin-bottom: 14px;
}

.cta-title .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0FDFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.cta-subtitle {
  font-size: 0.92rem;
  color: #08211C;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 500px;
}

/* High-Contrast Deep Navy Pill Button on Primary Teal Canvas */
.cta-btn-glow {
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #FFFFFF;
  background: #0A0C16;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 35px rgba(10, 12, 22, 0.5);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-glow:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 45px rgba(10, 12, 22, 0.7);
  background: #FFFFFF;
  color: #008F72;
}

/* ==========================================================================
   Footer (Direct 100% Vibrant Background Graphic - Zero Dark Overlay)
   ========================================================================== */
.footer {
  background: url('footer_bg_ambient.svg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 212, 170, 0.4);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.8);
  padding-top: 50px;
  padding-bottom: 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr) 1.5fr;
  gap: 24px;
  margin-bottom: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted-darkbg);
  line-height: 1.6;
  margin-bottom: 18px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted-darkbg);
}

.contact-info a {
  color: var(--accent-primary);
}

.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted-darkbg);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

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

.newsletter-input {
  flex-grow: 1;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: white;
  font-size: 0.82rem;
  outline: none;
}

.newsletter-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: var(--bg-canvas);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-disclaimer {
  background: rgba(15, 20, 40, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.76rem;
  color: var(--text-muted-darkbg);
  line-height: 1.6;
  margin-bottom: 30px;
  backdrop-filter: blur(12px);
}

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

.footer-legal-links {
  display: flex;
  gap: 16px;
}

/* ==========================================================================
   HIGH-END MULTI-COLUMN MOBILE BOXY GRID LAYOUT (Dual/Triple Columns)
   ========================================================================== */
@media (max-width: 1024px) {
  /* HIDE LOGIN ICON ON MOBILE DEVICES */
  .btn-login-icon {
    display: none !important;
  }

  /* LOGO FULL LEFT, RIGHT GROUP FULL RIGHT */
  .nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
  }

  .logo {
    margin-right: auto !important;
    flex-shrink: 0 !important;
  }

  .nav-right-group {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  @media (max-width: 600px) {
    .logo-img {
      max-width: 110px !important;
      height: auto !important;
    }
    .btn-dashboard,
    .btn-light-dashboard {
      padding: 7px 12px !important;
      font-size: 0.8rem !important;
      gap: 5px !important;
    }
    .btn-dashboard svg,
    .btn-light-dashboard svg {
      width: 14px !important;
      height: 14px !important;
    }
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: rgba(10, 14, 28, 0.98);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 18px;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 99;
  }

  .nav-menu.mobile-active {
    display: flex !important;
  }

  .nav-menu .nav-link {
    width: 100%;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
  }

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

  .glow-cards-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px !important;
  }

  .hero-section {
    padding-top: 110px !important;
    padding-bottom: 40px !important;
  }

  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.18 !important;
    margin-bottom: 14px !important;
  }

  .hero-description {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    margin-bottom: 26px !important;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100% !important;
    padding: 12px 18px !important;
    justify-content: center !important;
  }

  .chip-tag {
    font-size: 0.72rem !important;
    padding: 5px 12px !important;
    white-space: normal !important;
  }

  .trust-badge {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  /* Hero Visual & Mobile Floating Badges Fix */
  .hero-visual {
    width: 100% !important;
  }

  .hero-glass-card {
    width: 100% !important;
    padding: 16px 12px !important;
    border-radius: 18px !important;
  }

  .equity-val {
    font-size: 1.5rem !important;
    flex-wrap: wrap;
  }

  /* Dock Floating Badges inside card flow so they don't break mobile viewport bounds */
  .floating-widget {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    margin-top: 10px !important;
    animation: none !important;
    justify-content: flex-start !important;
  }

  /* 2-COLUMN BOXY MOBILE STATS GRID */
  .stats-section {
    padding: 20px 0 !important;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 12px !important;
    border-radius: 18px !important;
  }

  .stat-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 12px 10px !important;
    border-radius: 14px !important;
  }

  .stat-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
  }

  .stat-number {
    font-size: 1.3rem !important;
  }

  .stat-label {
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
  }

  /* 2-COLUMN BOXY MOBILE CORE EVALUATION MODELS GRID */
  .features-section {
    padding: 40px 0 !important;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .feature-card {
    padding: 16px 12px !important;
    border-radius: 16px !important;
  }

  .feature-icon-wrapper {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
  }

  .feature-card h3 {
    font-size: 1rem !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }

  .feature-card p {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .feature-bullets li {
    font-size: 0.74rem !important;
    gap: 4px !important;
  }

  /* 2-COLUMN BOXY MOBILE TRADING RULES GRID */
  .rules-section {
    padding: 40px 0 !important;
  }

  .rules-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .rule-box {
    padding: 14px 12px !important;
    border-radius: 16px !important;
  }

  .rule-header {
    gap: 8px !important;
    margin-bottom: 6px !important;
  }

  .rule-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
  }

  .rule-header h4 {
    font-size: 0.88rem !important;
  }

  .rule-box p {
    font-size: 0.76rem !important;
    line-height: 1.4 !important;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 40px 0 !important;
  }

  .cta-card {
    padding: 50px 20px !important;
    border-radius: 20px !important;
  }

  .cta-title {
    font-size: 2.1rem !important;
    margin-bottom: 14px !important;
  }

  .cta-subtitle {
    font-size: 0.92rem !important;
    margin-bottom: 26px !important;
  }

  .cta-btn-glow {
    width: 100% !important;
    padding: 12px 20px !important;
    justify-content: center !important;
  }

  .cta-ring-left {
    width: 180px !important;
    height: 180px !important;
    left: -30px !important;
    bottom: -30px !important;
  }

  .cta-ring-right {
    width: 200px !important;
    height: 200px !important;
    right: -40px !important;
    top: -40px !important;
  }

  .cta-spark-top {
    display: none !important;
  }

  .cta-wave-bottom {
    width: 100% !important;
  }

  /* 2-COLUMN BOXY MOBILE FOOTER GRID */
  .footer {
    padding-top: 40px !important;
    padding-bottom: 24px !important;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    margin-bottom: 30px !important;
  }

  .footer-brand {
    grid-column: 1 / -1 !important;
    background: rgba(15, 20, 40, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 18px 14px !important;
    border-radius: 16px !important;
    backdrop-filter: blur(12px) !important;
  }

  .footer-column {
    background: rgba(15, 20, 40, 0.75) !important;
    border: 1px solid var(--border-glass) !important;
    padding: 16px 12px !important;
    border-radius: 16px !important;
    backdrop-filter: blur(12px) !important;
  }

  .footer-column:last-child {
    grid-column: 1 / -1 !important;
    background: rgba(0, 212, 170, 0.08) !important;
    border-color: rgba(0, 212, 170, 0.3) !important;
  }

  .footer-column h4 {
    font-size: 0.88rem !important;
    margin-bottom: 10px !important;
    color: var(--accent-primary) !important;
  }

  .footer-links {
    gap: 8px !important;
  }

  .footer-links a {
    font-size: 0.78rem !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .footer-legal-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  /* Glow Cards Mobile */
  .glow-steps-section {
    padding: 40px 0 !important;
  }

  .glow-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .glow-card {
    min-height: auto !important;
    padding: 20px 16px 24px 16px !important;
    border-radius: 18px !important;
  }

  .glow-card-title {
    font-size: 1.25rem !important;
  }

  .glow-pills-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  .glow-pill-item {
    font-size: 0.72rem !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 4px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 8px 6px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  /* Mobile Navigation Header Fix */
  .nav-right-group {
    gap: 8px !important;
  }

  .btn-dashboard {
    padding: 6px 14px !important;
    font-size: 0.78rem !important;
    gap: 5px !important;
  }

  .btn-dashboard svg {
    width: 14px !important;
    height: 14px !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 6px 8px !important;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: rgba(10, 14, 28, 0.98);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 18px;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 99;
  }

  .nav-menu.mobile-active {
    display: flex !important;
  }

  .nav-menu .nav-link {
    width: 100%;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
  }
}

/* ==========================================================================
   PERFORMANCE: Disable expensive backdrop-filter blur on mobile / low-power
   Saves significant GPU compositing on phones and tablets
   ========================================================================== */
@media (max-width: 640px) {

  .btn-login-icon,
  .btn-dashboard,
  .header,
  .nav-menu,
  .hero-big-bg-wrapper {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* Respect user's reduced motion preference — disable all animations */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-orb-body,
  .hero-orb-atmosphere,
  .hero-orb-rim,
  .hero-orb-color-group,
  .hero-orb-teal-overlay,
  .hero-shine-arc-1,
  .hero-shine-arc-2,
  .hero-shine-arc-3,
  .btn-login-icon::before {
    animation: none !important;
  }
}

/* ==========================================================================
   CONTACT US PAGE STYLES (MATCHES HOMEPAGE DESIGN SYSTEM)
   ========================================================================== */
.contact-page-main {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

/* Contact Hero Section */
.contact-hero-section {
  padding: 40px 0 30px;
  text-align: center;
}

.contact-hero-content {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted-darkbg);
  line-height: 1.6;
  max-width: 660px;
}

/* Spam / Messenger Notice Card */
.contact-notice-section {
  padding: 10px 0 30px;
}

.contact-notice-card {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.08);
  backdrop-filter: blur(12px);
}

.notice-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-text {
  font-size: 0.92rem;
  color: #FCA5A5;
  line-height: 1.5;
}

.notice-text strong {
  color: #FFFFFF;
}

.notice-text em {
  font-style: normal;
  color: #F87171;
  font-weight: 600;
}

/* Contact Channels Grid */
.contact-channels-section {
  padding: 10px 0 40px;
}

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

.contact-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 170, 0.4);
  box-shadow: var(--shadow-glass);
}

.contact-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.3);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent-primary);
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.badge-purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
  border-color: rgba(139, 92, 246, 0.3);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
  border-color: rgba(59, 130, 246, 0.3);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #FBBF24;
  border-color: rgba(245, 158, 11, 0.3);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-muted-darkbg);
  line-height: 1.5;
  margin-bottom: 16px;
}

.contact-channel-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  word-break: break-all;
}

.contact-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.contact-action-btn {
  padding: 9px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.contact-action-primary {
  background: var(--accent-primary);
  color: #0A0C16;
  box-shadow: 0 0 16px rgba(0, 212, 170, 0.3);
}

.contact-action-primary:hover {
  background: var(--accent-primary-hover);
  color: #FFFFFF;
}

.contact-action-purple {
  background: var(--accent-purple);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.3);
}

.contact-action-purple:hover {
  background: #7C3AED;
}

.contact-action-blue {
  background: #3B82F6;
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.3);
}

.contact-action-blue:hover {
  background: #2563EB;
}

.contact-action-amber {
  background: #F59E0B;
  color: #0A0C16;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.3);
}

.contact-action-amber:hover {
  background: #D97706;
  color: #FFFFFF;
}

.contact-action-copy {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-main-darkbg);
}

.contact-action-copy:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Physical Address Banner */
.contact-address-section {
  padding: 10px 0 40px;
}

.contact-address-box {
  background: linear-gradient(165deg, rgba(15, 20, 40, 0.9) 0%, rgba(22, 30, 58, 0.8) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-glass);
}

.address-icon-side {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.address-text-side h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 6px 0;
}

.address-text-side p {
  font-size: 0.9rem;
  color: var(--text-muted-darkbg);
  line-height: 1.5;
}

/* Support Ticket Form Section */
.contact-form-section {
  padding: 10px 0 50px;
}

.contact-form-wrapper {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
}

.contact-form-header {
  margin-bottom: 30px;
  text-align: center;
}

.contact-form-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 8px 0;
}

.contact-form-header p {
  font-size: 0.95rem;
  color: var(--text-muted-darkbg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main-darkbg);
}

.req-star {
  color: var(--accent-primary);
}

.form-input {
  width: 100%;
  background: rgba(10, 14, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #FFFFFF;
  outline: none;
  transition: all 0.25s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 16px rgba(0, 212, 170, 0.25);
  background: rgba(10, 14, 28, 0.9);
}

.form-select option {
  background: #0F1428;
  color: #FFFFFF;
}

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

/* Priority Pills */
.priority-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.priority-pill {
  cursor: pointer;
}

.priority-pill input {
  display: none;
}

.priority-pill span {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted-darkbg);
  transition: all 0.2s ease;
}

.priority-pill input:checked + span {
  background: rgba(0, 212, 170, 0.15);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.form-submit-row {
  display: flex;
  justify-content: center;
}

.form-submit-btn {
  padding: 12px 32px !important;
  font-size: 0.95rem !important;
}

/* FAQ Accordion Section */
.contact-faq-section {
  padding: 10px 0 60px;
}

.contact-accordion {
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.accordion-trigger {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.accordion-trigger:hover {
  color: var(--accent-primary);
}

.accordion-icon {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 0 22px 20px;
}

.accordion-content p {
  font-size: 0.9rem;
  color: var(--text-muted-darkbg);
  line-height: 1.6;
}

.accordion-content code {
  color: var(--accent-primary);
  background: rgba(0, 212, 170, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Toast Notification */
.contact-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(15, 20, 40, 0.95);
  border: 1px solid var(--accent-primary);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 212, 170, 0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  pointer-events: none;
}

.contact-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 820px) {
  .contact-hero-title { font-size: 2.2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-address-box { flex-direction: column; text-align: center; }
  .contact-form-wrapper { padding: 24px 18px; }
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */
.about-page-main {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

/* About Hero */
.about-hero-section {
  padding: 50px 0 40px;
  text-align: center;
}

.about-hero-content {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted-darkbg);
  line-height: 1.65;
  max-width: 760px;
}

/* Section 2: The Lynaro Edge Grid */
.about-edge-section {
  padding: 20px 0 50px;
}

.about-edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.about-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 170, 0.4);
  box-shadow: var(--shadow-glass);
}

.about-card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-card-amber .about-card-icon-box {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

.about-card-blue .about-card-icon-box {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.about-card-purple .about-card-icon-box {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted-darkbg);
  line-height: 1.6;
}

/* Section 3: Infrastructure Steps */
.about-steps-section {
  padding: 20px 0 50px;
}

.about-steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
}

.about-step-card {
  flex: 1;
  background: var(--bg-surface-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(16px);
}

.about-step-card:hover {
  border-color: rgba(0, 212, 170, 0.4);
  transform: translateY(-3px);
}

.step-num-badge {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 16px;
}

.about-step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.about-step-card p {
  font-size: 0.88rem;
  color: var(--text-muted-darkbg);
  line-height: 1.55;
}

.about-step-arrow {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Section 4: Core Principles Grid */
.about-principles-section {
  padding: 20px 0 50px;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.principle-item {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: blur(16px);
}

.principle-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.principle-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.principle-text p {
  font-size: 0.86rem;
  color: var(--text-muted-darkbg);
  line-height: 1.5;
}

/* Section 5: Notice Box */
.about-notice-section {
  padding: 20px 0 60px;
}

.about-notice-box {
  background: linear-gradient(165deg, rgba(15, 20, 40, 0.95) 0%, rgba(22, 30, 58, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(20px);
}

.notice-top-info {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.notice-top-info h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.notice-meta-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted-darkbg);
}

.notice-meta-pills strong {
  color: var(--accent-primary);
}

.notice-body-text {
  font-size: 0.88rem;
  color: var(--text-muted-darkbg);
  line-height: 1.65;
}

.notice-body-text strong {
  color: #FFFFFF;
}

/* Responsive Styles for About Page */
@media (max-width: 960px) {
  .about-hero-title { font-size: 2.2rem; }
  .about-edge-grid { grid-template-columns: 1fr; }
  .about-principles-grid { grid-template-columns: 1fr; }
  .about-steps-wrapper { flex-direction: column; }
  .about-step-arrow { transform: rotate(90deg); margin: 6px 0; }
  .notice-meta-pills { flex-direction: column; gap: 8px; }
}

/* ==========================================================================
   TEMPLOGIN LIGHT THEME & UPDATE 2.7.0 TELEMETRY STYLES
   ========================================================================== */
.templogin-light-body {
  background: #F8FAFC !important;
  color: #0F172A !important;
  min-height: 100vh;
}

.header-light {
  background: #FFFFFF !important;
  border-bottom: 1px solid #E2E8F0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

.nav-menu-light {
  background: #F1F5F9 !important;
  border-color: #CBD5E1 !important;
}

.nav-link-light {
  color: #475569 !important;
}

.nav-link-light:hover {
  color: #00A887 !important;
  background: rgba(0, 168, 135, 0.08) !important;
}

.btn-light-dashboard {
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #0F172A;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-light-dashboard:hover {
  background: #E2E8F0;
  border-color: #94A3B8;
  color: #000000;
}

.templogin-light-main {
  padding: 100px 0 60px;
}

.light-portal-container {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Light Portal Hero Header */
.light-portal-hero {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-status-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pill-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #DC2626;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.live-dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DC2626;
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
  position: relative;
}

.live-dot-red::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1px solid #DC2626;
  animation: pulseRedRing 1.8s infinite ease-out;
}

@keyframes pulseRedRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.pill-amber {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #D97706;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.pill-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

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

.portal-main-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.title-gradient-green {
  color: #059669;
}

.portal-main-subtitle {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
}

/* Section 2: Prominent Launch Waitlist Hero Card */
.launch-waitlist-hero-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FEF2F2 60%, #FFF5F5 100%);
  border: 2px solid #FCA5A5;
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  box-shadow: 0 12px 36px rgba(220, 38, 38, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.launch-waitlist-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #DC2626 0%, #F59E0B 50%, #059669 100%);
}

.waitlist-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #DC2626;
  background: #FFFFFF;
  border: 1px solid #FCA5A5;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
}

.waitlist-card-content h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.25;
}

.waitlist-card-content p {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 820px;
}

.prominent-waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prominent-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.prominent-input-wrapper {
  position: relative;
  flex: 1;
}

.prominent-input-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.prominent-waitlist-input {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-pill);
  padding: 14px 18px 14px 48px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #0F172A;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.prominent-waitlist-input:focus {
  border-color: #DC2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}

.btn-prominent-waitlist {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.28);
  white-space: nowrap;
}

.btn-prominent-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(220, 38, 38, 0.38);
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
}

.waitlist-privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #64748B;
  margin-top: 4px;
}

.prominent-success-banner {
  background: #ECFDF5;
  border: 1.5px solid #A7F3D0;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.1);
  animation: fadeIn 0.35s ease;
}

.success-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #A7F3D0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-text-box h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #047857;
  margin-bottom: 4px;
}

.success-text-box p {
  font-size: 0.88rem;
  color: #065F46;
  margin-bottom: 0;
}

/* Portal Grid Split */
.portal-grid-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Guidance Banners (Left Column) */
.portal-guidance-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.guidance-banner {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 26px 24px;
  display: flex;
  gap: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease;
}

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

.banner-green {
  border: 1px solid #A7F3D0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
}

.banner-amber {
  border: 1px solid #FDE68A;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBEB 100%);
}

.banner-red {
  border: 1px solid #FCA5A5;
  background: linear-gradient(180deg, #FFFFFF 0%, #FEF2F2 100%);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.06);
}

.banner-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-bg-green {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
}

.icon-bg-amber {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
}

.icon-bg-red {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
}

.banner-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.status-tag-live {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 8px;
}

.status-tag-amber {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #D97706;
  margin-bottom: 8px;
}

.status-tag-red {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #DC2626;
  margin-bottom: 8px;
}

.banner-body p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 12px;
}

.banner-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.banner-checklist span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Light Login Box (Right Column) */
.light-login-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ssl-shield-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.login-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.login-header p {
  font-size: 0.86rem;
  color: #64748B;
  margin-bottom: 22px;
}

.light-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
}

.light-forgot-link {
  font-size: 0.78rem;
  color: #059669;
  font-weight: 600;
}

.light-forgot-link:hover {
  text-decoration: underline;
}

.light-input-icon-wrapper {
  position: relative;
  width: 100%;
}

.input-svg-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: stroke 0.2s ease;
}

.light-input-styled {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-md);
  padding: 12px 14px 12px 42px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #0F172A;
  outline: none;
  transition: all 0.2s ease;
}

.light-input-styled:focus {
  background: #FFFFFF;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.light-input-styled:focus ~ .input-svg-icon,
.light-input-icon-wrapper:focus-within .input-svg-icon {
  stroke: #059669;
}

.pw-eye-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-eye-btn:hover svg {
  stroke: #0F172A;
}

.btn-light-submit-styled {
  width: 100%;
  background: #059669;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
  margin-top: 10px;
}

.btn-light-submit-styled:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}

/* Light 24h Telemetry Section */
.light-telemetry-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.telemetry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #F1F5F9;
  flex-wrap: wrap;
}

.telemetry-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.radar-pulse-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.telemetry-title-group h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
}

.telemetry-title-group p {
  font-size: 0.85rem;
  color: #64748B;
  margin-top: 2px;
}

.telemetry-live-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.live-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 6px #059669;
}

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

.telem-tile {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.telem-tile:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
}

.tile-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tile-svg-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.box-teal { background: #ECFDF5; border: 1px solid #A7F3D0; }
.box-blue { background: #EFF6FF; border: 1px solid #BFDBFE; }
.box-purple { background: #F5F3FF; border: 1px solid #DDD6FE; }
.box-indigo { background: #EEF2FF; border: 1px solid #C7D2FE; }

.tile-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
}

.tile-body {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.tile-number {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.val-emerald { color: #059669; }

.tile-status-tag {
  font-size: 0.72rem;
  font-weight: 700;
}

.tag-emerald { color: #059669; }

/* Wide Feature Banner Tile for Signups Availability */
.tile-wide-banner {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid #FCD34D;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.wide-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wide-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #FCD34D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wide-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wide-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #B45309;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wide-value {
  font-size: 0.95rem;
  color: #92400E;
}

.wide-value strong {
  color: #78350F;
}

.wide-tag-amber {
  font-size: 0.78rem;
  font-weight: 800;
  color: #B45309;
  background: #FFFFFF;
  border: 1px solid #FCD34D;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.tile-wide-red {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #FEF2F2 0%, #FEE2E2 100%);
  border: 1px solid #FCA5A5;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.icon-box-red {
  background: #FFFFFF;
  border: 1px solid #FCA5A5;
}

.label-red {
  color: #B91C1C;
}

.value-red {
  color: #991B1B;
}

.wide-tag-red {
  font-size: 0.78rem;
  font-weight: 800;
  color: #B91C1C;
  background: #FFFFFF;
  border: 1px solid #FCA5A5;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

/* Update 2.7.0 Waitlist Form Styles */
.waitlist-form-container {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(220, 38, 38, 0.15);
}

.waitlist-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #991B1B;
  margin-bottom: 8px;
}

.waitlist-input-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.waitlist-svg-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.waitlist-input {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #FCA5A5;
  border-radius: var(--radius-pill);
  padding: 9px 12px 9px 36px;
  font-size: 0.84rem;
  font-family: inherit;
  color: #0F172A;
  outline: none;
  transition: all 0.2s ease;
}

.waitlist-input:focus {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.btn-waitlist-submit {
  background: #DC2626;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-waitlist-submit:hover {
  background: #B91C1C;
}

.waitlist-success-badge {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  animation: fadeIn 0.3s ease;
}

.waitlist-success-badge strong {
  color: #047857;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Portal Layout */
@media (max-width: 900px) {
  .portal-grid-split {
    grid-template-columns: 1fr;
  }
  .telemetry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portal-main-title {
    font-size: 2rem;
  }
  .tile-wide-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .waitlist-input-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-waitlist-submit {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .telemetry-grid {
    grid-template-columns: 1fr;
  }
  .light-telemetry-card,
  .light-login-box,
  .guidance-banner,
  .launch-waitlist-hero-card {
    padding: 20px 16px;
  }
  .prominent-input-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-prominent-waitlist {
    justify-content: center;
    width: 100%;
  }
}