.elementor-1239 .elementor-element.elementor-element-1bf2154{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1239 .elementor-element.elementor-element-ef51f86 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-1239 .elementor-element.elementor-element-c8e30d5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1239 .elementor-element.elementor-element-2eb79b0{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1239 .elementor-element.elementor-element-e754fee{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1239 .elementor-element.elementor-element-2597553{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1239 .elementor-element.elementor-element-2423de2{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-c8a8070 *//* CSS Separado para uso no Elementor */

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fm-hero-section {
  position: relative;
  min-height: 100vh;
  background: #000000;
  color: white;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Background Elements */
.fm-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fm-bg-gradient-1 {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.fm-bg-gradient-2 {
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

/* Header */
.fm-header {
  position: relative;
  z-index: 10;
  padding: 24px;
}

.fm-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fm-logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fm-logo-icon {
  width: 48px;
  height: 48px;
}

.fm-logo-text h1 {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 4px;
}

.fm-logo-text p {
  font-size: 14px;
  color: #9ca3af;
}

/* Main Content */
.fm-main-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 128px;
}

.fm-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

/* Authority Badge */
.fm-authority-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}

/* Headlines */
.fm-main-headline {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 24px;
}

.fm-gradient-text {
  display: block;
  background: linear-gradient(to right, #f97316, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.fm-subtitle {
  font-size: 20px;
  color: #d1d5db;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 32px;
}

/* Buttons */
.fm-primary-button {
  background: linear-gradient(to right, #f97316, #ea580c);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fm-primary-button:hover {
  background: linear-gradient(to right, #ea580c, #dc2626);
  transform: translateY(-2px);
}

.fm-secondary-button {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fm-secondary-button:hover {
  background: white;
  color: black;
}

/* Trust Indicators */
.fm-trust-indicators {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

.fm-trust-item {
  text-align: center;
}

.fm-trust-number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}

.fm-trust-number.orange {
  color: #f97316;
}

.fm-trust-number.purple {
  color: #a855f7;
}

.fm-trust-label {
  font-size: 14px;
  color: #9ca3af;
}

.fm-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

/* Dashboard */
.fm-dashboard {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.fm-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fm-dashboard-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.fm-status-indicator {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: fm-pulse 2s infinite;
}

@keyframes fm-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Metrics Grid */
.fm-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.fm-metric-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-metric-value {
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin: 12px 0 4px 0;
}

.fm-metric-label {
  font-size: 14px;
  color: #d1d5db;
}

.fm-metric-change {
  font-size: 14px;
  color: #10b981;
}

/* Live Activity */
.fm-live-activity {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-activity-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.fm-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fm-activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.fm-activity-dot.green {
  background: #10b981;
}
.fm-activity-dot.orange {
  background: #f97316;
}
.fm-activity-dot.purple {
  background: #a855f7;
}

.fm-activity-text {
  font-size: 14px;
  color: #d1d5db;
}

/* Responsive */
@media (min-width: 768px) {
  .fm-main-headline {
    font-size: 64px;
  }

  .fm-subtitle {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .fm-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .fm-main-headline {
    font-size: 80px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-39dd2f5 *//* CSS Separado para uso no Elementor */

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fm-hero-section {
  position: relative;
  min-height: 100vh;
  background: #000000;
  color: white;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Background Elements */
.fm-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fm-bg-gradient-1 {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.fm-bg-gradient-2 {
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

/* Header */
.fm-header {
  position: relative;
  z-index: 10;
  padding: 24px;
}

.fm-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fm-logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fm-logo-icon {
  width: 48px;
  height: 48px;
}

.fm-logo-text h1 {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 4px;
}

.fm-logo-text p {
  font-size: 14px;
  color: #9ca3af;
}

/* Main Content */
.fm-main-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 128px;
}

.fm-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

/* Authority Badge */
.fm-authority-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}

/* Headlines */
.fm-main-headline {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 24px;
}

.fm-gradient-text {
  display: block;
  background: linear-gradient(to right, #f97316, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.fm-subtitle {
  font-size: 20px;
  color: #d1d5db;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 32px;
}

/* Buttons */
.fm-primary-button {
  background: linear-gradient(to right, #f97316, #ea580c);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fm-primary-button:hover {
  background: linear-gradient(to right, #ea580c, #dc2626);
  transform: translateY(-2px);
}

.fm-secondary-button {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fm-secondary-button:hover {
  background: white;
  color: black;
}

/* Trust Indicators */
.fm-trust-indicators {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

.fm-trust-item {
  text-align: center;
}

.fm-trust-number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}

.fm-trust-number.orange {
  color: #f97316;
}

.fm-trust-number.purple {
  color: #a855f7;
}

.fm-trust-label {
  font-size: 14px;
  color: #9ca3af;
}

.fm-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

/* Dashboard */
.fm-dashboard {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.fm-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fm-dashboard-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.fm-status-indicator {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: fm-pulse 2s infinite;
}

@keyframes fm-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Metrics Grid */
.fm-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.fm-metric-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-metric-value {
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin: 12px 0 4px 0;
}

.fm-metric-label {
  font-size: 14px;
  color: #d1d5db;
}

.fm-metric-change {
  font-size: 14px;
  color: #10b981;
}

/* Live Activity */
.fm-live-activity {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-activity-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.fm-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fm-activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.fm-activity-dot.green {
  background: #10b981;
}
.fm-activity-dot.orange {
  background: #f97316;
}
.fm-activity-dot.purple {
  background: #a855f7;
}

.fm-activity-text {
  font-size: 14px;
  color: #d1d5db;
}

/* Responsive */
@media (min-width: 768px) {
  .fm-main-headline {
    font-size: 64px;
  }

  .fm-subtitle {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .fm-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .fm-main-headline {
    font-size: 80px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f92e9b0 *//* CSS Separado para uso no Elementor */

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fm-hero-section {
  position: relative;
  min-height: 100vh;
  background: #000000;
  color: white;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Background Elements */
.fm-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fm-bg-gradient-1 {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.fm-bg-gradient-2 {
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

/* Header */
.fm-header {
  position: relative;
  z-index: 10;
  padding: 24px;
}

.fm-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fm-logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fm-logo-icon {
  width: 48px;
  height: 48px;
}

.fm-logo-text h1 {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 4px;
}

.fm-logo-text p {
  font-size: 14px;
  color: #9ca3af;
}

/* Main Content */
.fm-main-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 128px;
}

.fm-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

/* Authority Badge */
.fm-authority-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}

/* Headlines */
.fm-main-headline {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 24px;
}

.fm-gradient-text {
  display: block;
  background: linear-gradient(to right, #f97316, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.fm-subtitle {
  font-size: 20px;
  color: #d1d5db;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 32px;
}

/* Buttons */
.fm-primary-button {
  background: linear-gradient(to right, #f97316, #ea580c);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fm-primary-button:hover {
  background: linear-gradient(to right, #ea580c, #dc2626);
  transform: translateY(-2px);
}

.fm-secondary-button {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fm-secondary-button:hover {
  background: white;
  color: black;
}

/* Trust Indicators */
.fm-trust-indicators {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

.fm-trust-item {
  text-align: center;
}

.fm-trust-number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}

.fm-trust-number.orange {
  color: #f97316;
}

.fm-trust-number.purple {
  color: #a855f7;
}

.fm-trust-label {
  font-size: 14px;
  color: #9ca3af;
}

.fm-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

/* Dashboard */
.fm-dashboard {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.fm-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fm-dashboard-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.fm-status-indicator {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: fm-pulse 2s infinite;
}

@keyframes fm-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Metrics Grid */
.fm-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.fm-metric-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-metric-value {
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin: 12px 0 4px 0;
}

.fm-metric-label {
  font-size: 14px;
  color: #d1d5db;
}

.fm-metric-change {
  font-size: 14px;
  color: #10b981;
}

/* Live Activity */
.fm-live-activity {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-activity-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.fm-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fm-activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.fm-activity-dot.green {
  background: #10b981;
}
.fm-activity-dot.orange {
  background: #f97316;
}
.fm-activity-dot.purple {
  background: #a855f7;
}

.fm-activity-text {
  font-size: 14px;
  color: #d1d5db;
}

/* Responsive */
@media (min-width: 768px) {
  .fm-main-headline {
    font-size: 64px;
  }

  .fm-subtitle {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .fm-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .fm-main-headline {
    font-size: 80px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-300f3e1 *//* CSS Separado para uso no Elementor */

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fm-hero-section {
  position: relative;
  min-height: 100vh;
  background: #000000;
  color: white;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Background Elements */
.fm-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fm-bg-gradient-1 {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.fm-bg-gradient-2 {
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

/* Header */
.fm-header {
  position: relative;
  z-index: 10;
  padding: 24px;
}

.fm-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fm-logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fm-logo-icon {
  width: 48px;
  height: 48px;
}

.fm-logo-text h1 {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 4px;
}

.fm-logo-text p {
  font-size: 14px;
  color: #9ca3af;
}

/* Main Content */
.fm-main-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 128px;
}

.fm-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

/* Authority Badge */
.fm-authority-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}

/* Headlines */
.fm-main-headline {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 24px;
}

.fm-gradient-text {
  display: block;
  background: linear-gradient(to right, #f97316, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.fm-subtitle {
  font-size: 20px;
  color: #d1d5db;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 32px;
}

/* Buttons */
.fm-primary-button {
  background: linear-gradient(to right, #f97316, #ea580c);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fm-primary-button:hover {
  background: linear-gradient(to right, #ea580c, #dc2626);
  transform: translateY(-2px);
}

.fm-secondary-button {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fm-secondary-button:hover {
  background: white;
  color: black;
}

/* Trust Indicators */
.fm-trust-indicators {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

.fm-trust-item {
  text-align: center;
}

.fm-trust-number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}

.fm-trust-number.orange {
  color: #f97316;
}

.fm-trust-number.purple {
  color: #a855f7;
}

.fm-trust-label {
  font-size: 14px;
  color: #9ca3af;
}

.fm-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

/* Dashboard */
.fm-dashboard {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.fm-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fm-dashboard-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.fm-status-indicator {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: fm-pulse 2s infinite;
}

@keyframes fm-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Metrics Grid */
.fm-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.fm-metric-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-metric-value {
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin: 12px 0 4px 0;
}

.fm-metric-label {
  font-size: 14px;
  color: #d1d5db;
}

.fm-metric-change {
  font-size: 14px;
  color: #10b981;
}

/* Live Activity */
.fm-live-activity {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-activity-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.fm-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fm-activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.fm-activity-dot.green {
  background: #10b981;
}
.fm-activity-dot.orange {
  background: #f97316;
}
.fm-activity-dot.purple {
  background: #a855f7;
}

.fm-activity-text {
  font-size: 14px;
  color: #d1d5db;
}

/* Responsive */
@media (min-width: 768px) {
  .fm-main-headline {
    font-size: 64px;
  }

  .fm-subtitle {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .fm-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .fm-main-headline {
    font-size: 80px;
  }
}/* End custom CSS */