:root {
  color-scheme: dark;
  --bg: #02050a;
  --bg-soft: #07111f;
  --panel: rgba(7, 18, 32, 0.78);
  --panel-strong: rgba(2, 10, 21, 0.92);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(0, 194, 255, 0.25);
  --primary: #00c2ff;
  --primary-strong: #2ad6ff;
  --text-muted: #94a3b8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: #f8fafc;
  background:
    radial-gradient(circle at top left, rgba(0, 194, 255, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 26%),
    linear-gradient(180deg, #010309 0%, #06111e 48%, #02050a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

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

a {
  text-decoration: none;
}

.page-shell {
  position: relative;
  overflow-x: hidden;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 194, 255, 0.25);
  background: rgba(0, 194, 255, 0.08);
  padding: 0.55rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8de9ff;
}

.section-label::before {
  content: "";
  height: 0.6rem;
  width: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 194, 255, 1), rgba(59, 130, 246, 1));
  box-shadow: 0 0 16px rgba(0, 194, 255, 0.55);
}

.glass-panel,
.glass-card,
.faq-item,
.pricing-card,
.contact-card,
.market-table-shell,
.cta-shell,
.device-frame {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.76), rgba(2, 10, 21, 0.92));
  backdrop-filter: blur(22px);
  box-shadow:
    0 24px 80px rgba(2, 6, 23, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-card,
.pricing-card,
.contact-card {
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.glass-card:hover,
.pricing-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 194, 255, 0.28);
  box-shadow:
    0 28px 80px rgba(0, 194, 255, 0.12),
    0 24px 70px rgba(2, 6, 23, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(2, 10, 21, 0.9));
  box-shadow:
    0 30px 90px rgba(2, 6, 23, 0.72),
    0 0 60px rgba(0, 194, 255, 0.08);
}

.hero-image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 8, 18, 0.12), rgba(2, 8, 18, 0.42)),
    linear-gradient(135deg, rgba(0, 194, 255, 0.12), transparent 32%);
}

.hero-image-shell::after {
  content: "";
  position: absolute;
  inset: auto 10% -18% auto;
  height: 14rem;
  width: 14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.18), transparent 68%);
  filter: blur(14px);
}

.hero-photo {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.88) contrast(1.06);
  transform: scale(1.015);
  transition:
    transform 0.8s ease,
    filter 0.4s ease;
}

.hero-image-shell:hover .hero-photo {
  transform: scale(1.04);
  filter: brightness(0.76) saturate(0.94) contrast(1.08);
}

.page-cover-photo {
  filter: brightness(0.42) saturate(0.78) contrast(1.04);
  transform: scale(1.03);
}

.hero-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(0, 194, 255, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(8, 11, 16, 0.98), rgba(5, 9, 15, 0.98));
  box-shadow:
    0 32px 90px rgba(2, 6, 23, 0.68),
    0 0 40px rgba(0, 194, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-banner-copy {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem;
}

.hero-banner-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.hero-banner-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.9) 0%, rgba(8, 11, 16, 0.28) 24%, rgba(8, 11, 16, 0.12) 100%),
    radial-gradient(circle at 25% 30%, rgba(0, 194, 255, 0.14), transparent 28%);
}

.hero-banner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.52) saturate(0.8) contrast(1.08);
  transform: scale(1.02);
}

.hero-banner-glow {
  position: absolute;
  inset: auto 10% -18% auto;
  z-index: 1;
  height: 14rem;
  width: 14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.22), transparent 68%);
  filter: blur(16px);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero-banner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 620px;
  }

  .hero-banner-copy {
    padding: 4.6rem 4.2rem;
  }

  .hero-banner-copy::after {
    content: "";
    position: absolute;
    top: 0;
    right: -6rem;
    height: 100%;
    width: 9rem;
    background: linear-gradient(90deg, rgba(8, 11, 16, 0.96), rgba(8, 11, 16, 0));
    transform: skewX(-12deg);
    pointer-events: none;
  }

  .hero-banner-media {
    min-height: 620px;
  }
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.92rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #02131f;
  background: linear-gradient(135deg, rgba(0, 194, 255, 1), rgba(88, 164, 255, 0.94));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 32px rgba(0, 194, 255, 0.34);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 42px rgba(0, 194, 255, 0.44);
}

.btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 194, 255, 0.28);
  box-shadow: 0 0 26px rgba(0, 194, 255, 0.16);
}

.site-header {
  transition: transform 0.25s ease;
}

.logo-mark {
  display: grid;
  height: 2.8rem;
  width: 2.8rem;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(135deg, rgba(0, 194, 255, 1), rgba(59, 130, 246, 0.8));
  box-shadow:
    0 0 24px rgba(0, 194, 255, 0.32),
    inset 0 0 24px rgba(255, 255, 255, 0.15);
  color: #02131f;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nav-link,
.submenu-link,
.mobile-link,
.footer-link {
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  color: #cbd5e1;
}

.nav-link:hover,
.nav-link.active {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.05);
}

.submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  padding: 0.78rem 0.95rem;
  color: #cbd5e1;
}

.submenu-link:hover,
.submenu-link.active {
  background: rgba(0, 194, 255, 0.08);
  color: #f8fafc;
}

.dropdown-panel {
  min-width: 15rem;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: #e2e8f0;
}

.mobile-link:hover,
.mobile-link.active {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.mobile-submenu.open {
  max-height: 600px;
}

.payment-strip {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(2, 10, 21, 0.96));
  padding: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.market-table-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 0.85rem;
  border-color: rgba(0, 194, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(0, 194, 255, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.12), transparent 28%),
    linear-gradient(160deg, rgba(8, 18, 32, 0.96), rgba(2, 8, 18, 0.98));
  box-shadow:
    0 28px 84px rgba(2, 6, 23, 0.62),
    0 0 44px rgba(0, 194, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.market-table {
  width: 100%;
  border-collapse: collapse;
}

.market-widget-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(8, 16, 29, 0.98), rgba(3, 9, 18, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.market-widget-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(0, 194, 255, 0.08), transparent 24%);
}

.market-widget-container {
  --market-widget-height: 520px;
  display: flex;
  height: auto;
  width: 100%;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(0, 194, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #08111f 0%, #040b15 100%);
}

.market-widget-body {
  flex: 0 0 auto;
  height: var(--market-widget-height);
  min-height: 360px;
  width: 100%;
}

.market-widget-body,
.market-widget-body > div,
.market-widget-body > iframe,
.market-widget-body iframe {
  width: 100% !important;
  height: 100% !important;
}

.market-widget-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.market-table thead th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
}

.market-table tbody td {
  padding: 1.05rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

.market-table tbody tr:last-child td {
  border-bottom: none;
}

.market-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.feature-icon {
  display: grid;
  height: 3.25rem;
  width: 3.25rem;
  place-items: center;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 194, 255, 0.14), rgba(59, 130, 246, 0.08));
  color: #8de9ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.faq-item {
  overflow: hidden;
  border-radius: 1.4rem;
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  color: #f8fafc;
}

.faq-trigger:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  display: grid;
  height: 2rem;
  width: 2rem;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #8de9ff;
  transition: transform 0.25s ease;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel-inner {
  padding: 0 1.25rem 1.25rem;
  color: #94a3b8;
}

.faq-item.open {
  border-color: rgba(0, 194, 255, 0.28);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.pricing-card.featured {
  position: relative;
  border-color: rgba(0, 194, 255, 0.35);
  box-shadow:
    0 28px 90px rgba(0, 194, 255, 0.12),
    0 26px 70px rgba(2, 6, 23, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.12);
  padding: 0.38rem 0.72rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8de9ff;
}

.device-frame {
  overflow: hidden;
  border-radius: 2rem;
  padding: 0.8rem;
}

.device-frame.mobile {
  max-width: 17rem;
  margin-inline: auto;
  border-radius: 2.2rem;
}

.timeline-step {
  position: relative;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 3.5rem;
  bottom: -1.5rem;
  width: 1px;
  background: linear-gradient(rgba(0, 194, 255, 0.3), transparent);
}

.timeline-step:last-child::before {
  display: none;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.check-item i {
  color: #8de9ff;
}

.input-control {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.95rem 1rem;
  color: #f8fafc;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.input-control::placeholder {
  color: #64748b;
}

.input-control:focus {
  outline: none;
  border-color: rgba(0, 194, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.15);
}

textarea.input-control {
  min-height: 11rem;
  resize: vertical;
}

.social-link {
  display: grid;
  height: 2.9rem;
  width: 2.9rem;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: #f8fafc;
  border-color: rgba(0, 194, 255, 0.28);
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.promo-modal.open {
  opacity: 1;
  visibility: visible;
}

.promo-modal-card {
  position: relative;
  width: min(100%, 940px);
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(0, 194, 255, 0.2);
  background:
    radial-gradient(circle at top right, rgba(0, 194, 255, 0.18), transparent 26%),
    linear-gradient(155deg, rgba(7, 18, 32, 0.98), rgba(2, 8, 18, 0.99));
  box-shadow:
    0 32px 100px rgba(2, 6, 23, 0.75),
    0 0 44px rgba(0, 194, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s ease;
}

.promo-modal.open .promo-modal-card {
  transform: translateY(0) scale(1);
}

.promo-modal-image {
  display: block;
  width: 100%;
  height: auto;
}

.promo-modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 2;
  display: grid;
  height: 2.8rem;
  width: 2.8rem;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.7);
  color: #f8fafc;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.promo-modal-close:hover {
  transform: scale(1.04);
  border-color: rgba(0, 194, 255, 0.3);
  background: rgba(10, 19, 34, 0.9);
}

.body-modal-open {
  overflow: hidden;
}

.footer-link {
  color: #cbd5e1;
}

.footer-link:hover {
  color: #f8fafc;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-orb.one {
  left: -4rem;
  top: -3rem;
  height: 9rem;
  width: 9rem;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.34), transparent 68%);
}

.hero-orb.two {
  right: -4rem;
  bottom: -3rem;
  height: 12rem;
  width: 12rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 68%);
}

.cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  height: 16rem;
  width: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.18), transparent 68%);
  filter: blur(12px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.65rem 0.9rem;
  color: #cbd5e1;
}

.status-pill i {
  color: #8de9ff;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #8de9ff 45%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 1279px) {
  .dropdown-panel {
    display: none;
  }
}

@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
  }

  .timeline-step::before {
    left: 1.25rem;
  }

  .market-table-shell {
    padding: 0.7rem;
    border-radius: 1.6rem;
  }

  .market-widget-frame {
    border-radius: 1.2rem;
  }

  .market-widget-container {
    --market-widget-height: 460px;
  }

  .promo-modal-card {
    border-radius: 1.4rem;
  }
}
