* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0f172a;
  background: #f8fafc;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-bar {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(6px);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 15px;
}

.nav-links a:hover {
  color: #38bdf8;
}

.cta-button {
  padding: 10px 20px;
  border-radius: 999px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.35);
}

.cta-button.secondary {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #f8fafc;
}

.cta-button.glow {
  background: linear-gradient(120deg, #38bdf8, #22d3ee, #6366f1, #38bdf8);
  background-size: 280% 280%;
  color: #0f172a;
  border: none;
  box-shadow: 0 18px 44px rgba(79, 70, 229, 0.35);
  animation: gradientFlow 6s ease infinite;
}

.cta-button.glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(56, 189, 248, 0.55);
}

.cta-button.primary {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  color: #0f172a;
}

.cta-button.large {
  padding: 14px 32px;
  font-size: 18px;
}

.hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.95)) no-repeat,
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.35), rgba(15, 23, 42, 0.95));
  color: #fff;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -30%;
  background-image:
    radial-gradient(rgba(56, 189, 248, 0.2) 0, rgba(56, 189, 248, 0) 55%),
    radial-gradient(rgba(45, 212, 191, 0.15) 0, rgba(45, 212, 191, 0) 60%),
    radial-gradient(rgba(99, 102, 241, 0.2) 0, rgba(99, 102, 241, 0) 65%);
  background-size: 420px 420px, 360px 360px, 520px 520px;
  background-position: 5% 12%, 75% 15%, 45% 75%;
  opacity: 0.7;
  filter: blur(0);
  animation: patternDrift 24s linear infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: '▲ ● ◆ △ ◇ ○';
  position: absolute;
  bottom: 12%;
  right: 8%;
  font-size: 64px;
  letter-spacing: 12px;
  color: rgba(241, 245, 249, 0.12);
  animation: floatSymbols 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.hero-text p {
  color: rgba(226, 232, 240, 0.85);
  margin-bottom: 24px;
}

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

.hero-metrics {
  display: grid;
  gap: 16px;
}

.metric-card {
  background: rgba(15, 23, 42, 0.65);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.metric-value {
  font-size: 32px;
  font-weight: 700;
  color: #38bdf8;
  display: block;
}

.metric-label {
  color: rgba(226, 232, 240, 0.7);
  font-size: 15px;
}

.section {
  padding: 88px 0;
}

.section.pattern {
  position: relative;
  overflow: hidden;
}

.section.pattern::before {
  content: '';
  position: absolute;
  inset: -25%;
  background-image:
    radial-gradient(rgba(148, 163, 184, 0.14) 0, rgba(148, 163, 184, 0) 60%),
    radial-gradient(rgba(45, 212, 191, 0.12) 0, rgba(45, 212, 191, 0) 65%),
    linear-gradient(135deg, rgba(14, 165, 233, 0.18) 0, rgba(125, 211, 252, 0) 65%),
    linear-gradient(225deg, rgba(99, 102, 241, 0.15) 0, rgba(99, 102, 241, 0) 65%);
  background-size: 380px 380px, 280px 280px, 220px 220px, 320px 320px;
  background-position: 12% 18%, 82% 22%, 18% 78%, 86% 72%;
  opacity: 0.18;
  animation: patternDrift 32s linear infinite;
  pointer-events: none;
}

.section.pattern::after {
  content: '✦ ▲ ● ◆ ✧';
  position: absolute;
  right: 6%;
  top: 12%;
  font-size: 54px;
  letter-spacing: 14px;
  color: rgba(100, 116, 139, 0.12);
  animation: floatSymbols 16s ease-in-out infinite;
  pointer-events: none;
}

.section.pattern > .container {
  position: relative;
  z-index: 1;
}

.section.highlight.pattern::before {
  opacity: 0.25;
  mix-blend-mode: screen;
}

.section.highlight.pattern::after {
  color: rgba(241, 245, 249, 0.25);
}

.section.feature h2 {
  font-size: clamp(30px, 3.2vw, 40px);
  margin-bottom: 18px;
}

.section.feature p {
  max-width: 720px;
  margin-top: 8px;
  color: rgba(15, 23, 42, 0.72);
}

.section.light {
  background: #fff;
}

.section.highlight {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #f0f9ff;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.card.accent {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(8, 145, 178, 0.08));
}

.card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.feature-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  color: #334155;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #38bdf8;
  position: absolute;
  left: 0;
  top: 9px;
}

.comparison {
  display: grid;
  gap: 18px;
}

.comparison .label {
  color: #475569;
  font-weight: 500;
}

.comparison .value {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
}

.comparison .highlight {
  color: #0284c7;
}

.pricing-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: stretch;
}

.analytics-intro p {
  margin-top: 16px;
  color: #1f2937;
}

.stats-list {
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.stats-list li {
  background: rgba(241, 245, 249, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  padding: 18px 20px;
  display: grid;
  gap: 6px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.stat-value {
  font-size: 30px;
  font-weight: 700;
  color: #0284c7;
}

.stat-label {
  font-size: 14px;
  color: #475569;
}

.analytics-cards {
  display: grid;
  gap: 24px;
}

.insight-card {
  position: relative;
  background: rgba(8, 145, 178, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.22);
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  inset: -20% auto 40% -10%;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.28), rgba(14, 165, 233, 0));
  transform: rotate(25deg);
  opacity: 0.9;
}

.icon-burst {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.3));
  font-size: 22px;
  margin-bottom: 18px;
  z-index: 1;
}

.insight-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 20px;
  color: #0f172a;
}

.insight-card p {
  position: relative;
  z-index: 1;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.7;
}

.card-highlight {
  position: relative;
  z-index: 1;
  background: rgba(14, 165, 233, 0.12);
  border-radius: 14px;
  padding: 12px 16px;
  display: inline-grid;
  gap: 4px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
}

.card-highlight strong {
  font-size: 22px;
  color: #075985;
}

.section.ticker {
  background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.95));
  color: rgba(241, 245, 249, 0.92);
  position: relative;
  overflow: hidden;
}

.section.ticker::before {
  content: '';
  position: absolute;
  inset: -25%;
  background-image: radial-gradient(rgba(59, 130, 246, 0.18) 0, rgba(59, 130, 246, 0) 65%), linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(14, 165, 233, 0));
  background-size: 320px 320px, 260px 260px;
  background-position: 26% 20%, 74% 72%;
  opacity: 0.35;
  animation: patternDrift 30s linear infinite reverse;
}

.section.ticker .container {
  position: relative;
  z-index: 1;
}

.section.ticker p {
  color: rgba(226, 232, 240, 0.82);
}

.tradingview-widget-container {
  margin-top: 28px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.35);
}

.tradingview-widget-container__copyright {
  font-size: 12px;
  text-align: right;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.72);
}

.tradingview-widget-container__copyright a {
  color: rgba(248, 250, 252, 0.8);
}

.markets-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.market-card {
  background: rgba(248, 250, 252, 0.94);
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  padding: 26px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 14px;
}

.market-card ul {
  display: grid;
  gap: 10px;
  color: #475569;
  font-size: 14px;
}

.market-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
  letter-spacing: 1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(14, 165, 233, 0.08));
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
}

.market-icon.btc {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.35), rgba(249, 115, 22, 0.25));
}

.market-icon.gold {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.38), rgba(236, 179, 101, 0.25));
}

.market-icon.eth {
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.35), rgba(99, 102, 241, 0.22));
}

.market-icon.index {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.32), rgba(59, 130, 246, 0.18));
}

.market-icon.energy {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.32), rgba(244, 63, 94, 0.18));
}

.market-icon.forex {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.32), rgba(14, 116, 144, 0.2));
}

.pricing-grid ul {
  display: grid;
  gap: 12px;
  color: #334155;
}

.highlight-box {
  margin-top: 28px;
  background: rgba(56, 189, 248, 0.12);
  border-radius: 16px;
  padding: 20px;
  display: inline-grid;
  gap: 6px;
  color: #0f172a;
}

.highlight-box strong {
  font-size: 26px;
  color: #0284c7;
}

.case-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.case-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: grid;
  gap: 12px;
}

.case-card h3 {
  font-size: 18px;
}

.case-card .tag {
  justify-self: flex-start;
  background: rgba(14, 165, 233, 0.15);
  color: #0284c7;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.contact-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  color: #334155;
}

.social-list {
  display: grid;
  gap: 10px;
  color: #1e293b;
}

.badge {
  background: rgba(56, 189, 248, 0.18);
  color: #0f172a;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.qr-placeholder {
  margin-top: 18px;
  border: 2px dashed rgba(148, 163, 184, 0.5);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  color: #475569;
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  font-weight: 600;
  font-size: 14px;
  color: #0f172a;
}

.lead-form input,
.lead-form textarea {
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(248, 250, 252, 0.8);
  font-size: 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border: 1px solid #38bdf8;
  outline: none;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.footer {
  background: #0f172a;
  color: rgba(226, 232, 240, 0.8);
  padding: 56px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.footer h4 {
  margin-bottom: 12px;
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

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

.footer-links a {
  color: rgba(226, 232, 240, 0.7);
}

.footer-links a:hover {
  color: #38bdf8;
}

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

@keyframes patternDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(2%, -3%, 0) rotate(2deg);
  }
  100% {
    transform: translate3d(-2%, 3%, 0) rotate(-2deg);
  }
}

@keyframes floatSymbols {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.18;
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
    opacity: 0.35;
  }
}

@media (max-width: 720px) {
  .top-bar .container {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 96px 0 72px;
  }

  .hero::after {
    font-size: 40px;
    right: 4%;
    bottom: 6%;
  }

  .section {
    padding: 64px 0;
  }

  .analytics-grid {
    gap: 28px;
  }

  .stats-list {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .markets-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
