@charset "UTF-8";
/* ============================================================
   MOMO TERMINAL — Landing Page Styles
   ============================================================ */
:root {
  --bg-deep: #04070f;
  --bg-navy: #060b18;
  --bg-panel: #0a1226;
  --bg-panel-2: #0c1630;
  --border-blue: rgba(88, 152, 255, 0.25);
  --border-gold: rgba(255, 197, 92, 0.35);
  --blue-1: #3b7bff;
  --blue-2: #7ec8ff;
  --gold-1: #f2b84b;
  --gold-2: #ffd98a;
  --text-hi: #f3f6fc;
  --text-mid: #aab6cf;
  --text-dim: #6b7794;
  --green: #35d68a;
  --red: #ff5c72;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.momo {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-hi);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  position: relative;
}

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

.momo ::selection {
  background: rgba(59, 123, 255, 0.4);
  color: #fff;
}

.text-gradient {
  background: linear-gradient(92deg, var(--gold-2), var(--gold-1) 60%, #d99a34);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- background field ---------- */
.momo-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(1100px 700px at 82% 8%, rgba(59, 123, 255, 0.16), transparent 60%), radial-gradient(900px 600px at 10% 15%, rgba(242, 184, 75, 0.08), transparent 55%), linear-gradient(180deg, #04070f 0%, #060b18 40%, #05080f 100%);
}

.momo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(88, 152, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(88, 152, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 20%, black, transparent 75%);
  opacity: 0.5;
}

.momo-scanline {
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(126, 200, 255, 0.5), rgba(242, 184, 75, 0.5), transparent);
  filter: blur(1px);
  z-index: 1;
  animation: scan 9s linear infinite;
  opacity: 0.6;
}

@keyframes scan {
  0% {
    top: -2%;
    opacity: 0;
  }
  8% {
    opacity: 0.6;
  }
  92% {
    opacity: 0.6;
  }
  100% {
    top: 102%;
    opacity: 0;
  }
}
.momo-shell {
  position: relative;
  z-index: 2;
}

.container-x {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- header ---------- */
.momo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(4, 7, 15, 0.92), rgba(4, 7, 15, 0.65));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}

.momo-header.scrolled {
  padding: 12px 0;
  border-bottom-color: rgba(88, 152, 255, 0.15);
}

.momo-header .container-x {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark-img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 10px rgba(59, 123, 255, 0.35));
}

.brand-name-suffix {
  color: var(--gold-1);
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 13px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-1), var(--gold-1));
  transition: width 0.3s var(--ease);
}

.main-nav a:hover {
  color: var(--text-hi);
}

.main-nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-ghost {
  color: var(--text-hi);
  border-color: rgba(126, 200, 255, 0.3);
  background: rgba(126, 200, 255, 0.05);
}

.btn-ghost:hover {
  border-color: rgba(126, 200, 255, 0.6);
  background: rgba(126, 200, 255, 0.12);
}

.btn-primary {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #0b2e82 0%, #1657e0 45%, #3b8bff 100%);
  border-color: rgba(130, 190, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(59, 123, 255, 0.2), 0 0 22px rgba(47, 125, 255, 0.55), 0 10px 26px rgba(6, 14, 40, 0.5);
}

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

.btn-outline-gold {
  color: var(--gold-2);
  border-color: rgba(255, 197, 92, 0.5);
  background: rgba(255, 197, 92, 0.05);
}

.btn-outline-gold:hover {
  background: rgba(255, 197, 92, 0.14);
  transform: translateY(-2px);
}

.btn-outline-blue {
  color: #fff;
  border-color: rgba(126, 200, 255, 0.5);
  background: rgba(126, 200, 255, 0.05);
}

.btn-outline-blue:hover {
  background: rgba(126, 200, 255, 0.14);
  transform: translateY(-2px);
}

/* animated shine sweep */
.btn-primary::before,
.btn-outline-gold::before,
.btn-outline-blue::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-22deg);
  animation: btnShine 3.4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.btn-outline-gold::before {
  background: linear-gradient(115deg, transparent, rgba(255, 217, 138, 0.7), transparent);
}

@keyframes btnShine {
  0% {
    left: -60%;
  }
  18% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ---------- hero ---------- */
.hero {
  padding: 96px 0 60px;
  position: relative;
}

.hero h1 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 24px;
}

.hero p.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 0 18px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

/* ---------- pricing hero ---------- */
.text-gradient-silver {
  background: linear-gradient(100deg, #ffffff, #d6e2fb 45%, #9db8e8 75%, #6f92cf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav a.active {
  color: var(--gold-2);
}

.main-nav a.active::after {
  width: 100%;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
}

.pricing-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.pricing-eyebrow span {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-2);
  text-transform: uppercase;
}

.pricing-eyebrow i {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-1), transparent);
}

.pricing-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-hero-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.banner-right-images {
  position: absolute;
  top: 100px;
  right: 40px;
  z-index: 1;
}
.banner-right-images .banner-right-img-1-wrap {
  display: block;
  width: 550px;
  top: 0;
  position: absolute;
  right: 0;
  z-index: 1;
  border-radius: 10px;
}
.banner-right-images .banner-right-img-1 {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}
.banner-right-images .banner-right-img-2-wrap {
  display: block;
  width: 550px;
  top: 180px;
  position: absolute;
  right: 340px;
  z-index: 1;
  border-radius: 10px;
}
.banner-right-images .banner-right-img-2 {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}
.banner-right-images .banner-right-img-3 {
  width: 400px;
  top: 300px;
  position: absolute;
  right: 0;
}

.signal-badge {
  position: absolute;
  top: 196px;
  right: 560px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 14px;
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(20, 16, 8, 0.92), rgba(10, 8, 4, 0.95));
  border: 1.5px solid rgba(242, 184, 75, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 197, 92, 0.12), 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 20px rgba(242, 184, 75, 0.25);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.signal-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.banner-right-img-1-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--border-angle), transparent 0deg, transparent 296deg, rgba(126, 200, 255, 0.95) 322deg, #ffffff 344deg, rgba(126, 200, 255, 0.95) 358deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 4px rgba(234, 246, 255, 0.95)) drop-shadow(0 0 10px rgba(59, 123, 255, 0.75));
  animation: borderTravel 4s linear infinite;
  pointer-events: none;
  z-index: 3;
}

.banner-right-img-2-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--border-angle), transparent 0deg, transparent 296deg, rgba(255, 197, 92, 0.95) 322deg, #fffaf0 344deg, rgba(255, 197, 92, 0.95) 358deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 4px rgba(255, 236, 179, 0.9)) drop-shadow(0 0 10px rgba(242, 184, 75, 0.7));
  animation: borderTravel 4s linear infinite;
  pointer-events: none;
  z-index: 3;
}

.signal-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle), transparent 0deg, transparent 296deg, rgba(255, 197, 92, 0.95) 322deg, #fffaf0 344deg, rgba(255, 197, 92, 0.95) 358deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 4px rgba(255, 236, 179, 0.9)) drop-shadow(0 0 10px rgba(242, 184, 75, 0.7));
  animation: borderTravel 4s linear infinite;
  pointer-events: none;
}

#products-hero .container-x {
  z-index: 2;
  position: relative;
}

@media (max-width: 992px) {
  .pricing-hero-visual {
    margin-top: 40px;
  }
}
/* ---------- advanced technology / global infrastructure ---------- */
.text-gradient-blue {
  background: linear-gradient(92deg, var(--blue-2), var(--blue-1) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.at-head .at-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  padding: 9px 22px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: -10px 0 24px -14px rgba(59, 123, 255, 0.5), 10px 0 24px -14px rgba(242, 184, 75, 0.5);
}

.at-divider {
  display: flex;
  align-items: center;
  max-width: 920px;
  margin: 0 auto 56px;
}

.at-divider-line {
  flex: 1;
  height: 1px;
}

.at-divider-line.blue {
  background: linear-gradient(90deg, transparent, var(--blue-1));
}

.at-divider-line.gold {
  background: linear-gradient(90deg, var(--gold-1), transparent);
}

.at-divider-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin: 0 3px;
  background: linear-gradient(135deg, var(--blue-2), var(--gold-2));
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.65);
}

.at-icons-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.at-icons-row::before {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  top: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-1) 0%, var(--blue-1) 42%, var(--gold-1) 58%, var(--gold-1) 100%);
  opacity: 0.55;
  z-index: 0;
}

.at-icon-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
  background: none;
  border: none;
  transition: transform 0.35s var(--ease);
}

.at-icon-card:hover {
  transform: translateY(-6px);
}

.at-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 112px;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(12, 22, 48, 0.7), rgba(6, 10, 22, 0.8));
  transition: border-color 0.35s, box-shadow 0.35s;
}

.at-icon-card.blue .at-ico {
  border: 1px solid rgba(88, 152, 255, 0.45);
  box-shadow: 0 0 20px rgba(59, 123, 255, 0.12) inset;
}

.at-icon-card.gold .at-ico {
  border: 1px solid rgba(255, 197, 92, 0.5);
  box-shadow: 0 0 20px rgba(242, 184, 75, 0.12) inset;
}

.at-icon-card.blue:hover .at-ico {
  border-color: rgba(126, 200, 255, 0.8);
  box-shadow: 0 0 20px rgba(59, 123, 255, 0.12) inset, 0 16px 32px rgba(59, 123, 255, 0.18);
}

.at-icon-card.gold:hover .at-ico {
  border-color: rgba(255, 197, 92, 0.85);
  box-shadow: 0 0 20px rgba(242, 184, 75, 0.12) inset, 0 16px 32px rgba(242, 184, 75, 0.16);
}

.at-ico img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.at-icon-card.blue .at-ico img {
  filter: drop-shadow(0 0 12px rgba(59, 123, 255, 0.4));
}

.at-icon-card.gold .at-ico img {
  filter: drop-shadow(0 0 12px rgba(242, 184, 75, 0.4));
}

.at-icon-card:nth-child(6) .at-ico img {
  width: 118px;
  height: auto;
}

.at-icon-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.at-icon-card.blue h4 {
  color: var(--blue-2);
}

.at-icon-card.gold h4 {
  color: var(--gold-2);
}

.at-icon-card p {
  flex: 1 0 auto;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-mid);
  margin: 0 0 18px;
}

.at-card-line {
  display: block;
  width: 42px;
  height: 2px;
  border-radius: 2px;
  flex-shrink: 0;
}

.at-icon-card.blue .at-card-line {
  background: linear-gradient(90deg, transparent, var(--blue-1), transparent);
}

.at-icon-card.gold .at-card-line {
  background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
}

@media (max-width: 1200px) {
  .at-icons-row {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 20px;
  }
  .at-icons-row::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .at-icons-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .at-icons-row {
    grid-template-columns: 1fr;
  }
}
/* ---------- two plans / pricing ---------- */
.plans-section {
  overflow: hidden;
}

.plans-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

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

.plans-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.plans-tag .line {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-1));
}

.plans-tag .line:last-child {
  background: linear-gradient(90deg, var(--gold-1), transparent);
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin-bottom: 56px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  max-width: 380px;
  position: relative;
  background: linear-gradient(160deg, rgba(12, 22, 48, 0.8), rgba(6, 10, 22, 0.85));
  border: 1.5px solid rgba(126, 200, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 38px 25px;
  box-shadow: 0 0 0 1px rgba(59, 123, 255, 0.1), 0 0 22px rgba(59, 123, 255, 0.2);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 200, 255, 0.75);
  box-shadow: 0 0 0 1px rgba(59, 123, 255, 0.16), 0 0 28px rgba(59, 123, 255, 0.3), 0 26px 60px rgba(59, 123, 255, 0.16);
}

.plan-card:not(.pro)::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--border-angle), transparent 0deg, transparent 296deg, rgba(126, 200, 255, 0.95) 322deg, #ffffff 344deg, rgba(126, 200, 255, 0.95) 358deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 4px rgba(234, 246, 255, 0.95)) drop-shadow(0 0 10px rgba(59, 123, 255, 0.75));
  animation: borderTravel 4s linear infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes borderTravel {
  to {
    --border-angle: 360deg;
  }
}
.plan-card.pro {
  overflow: hidden;
  border-color: rgba(255, 197, 92, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 197, 92, 0.18), 0 0 24px rgba(242, 184, 75, 0.3), 0 24px 60px rgba(242, 184, 75, 0.16);
}

.plan-card.pro:hover {
  border-color: rgba(255, 197, 92, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 197, 92, 0.24), 0 0 30px rgba(242, 184, 75, 0.38), 0 30px 70px rgba(242, 184, 75, 0.24);
}

.plan-card.pro::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--border-angle), transparent 0deg, transparent 296deg, rgba(255, 197, 92, 0.95) 322deg, #fffaf0 344deg, rgba(255, 197, 92, 0.95) 358deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 4px rgba(255, 236, 179, 0.95)) drop-shadow(0 0 10px rgba(242, 184, 75, 0.75));
  animation: borderTravel 4s linear infinite;
  animation-delay: -2s;
  pointer-events: none;
  z-index: 3;
}

.plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #2a1c02;
  background: linear-gradient(120deg, #ffd98a, #f2b84b 60%, #d99a34);
  padding: 13px 26px 13px 30px;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 8px 20px rgba(242, 184, 75, 0.35);
  z-index: 2;
}

.plan-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  padding: 4px;
  border: 1px solid rgba(42, 28, 2, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.plan-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.plan-ico {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.plan-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plan-head h3 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin: 0;
}

.plan-card.pro .plan-head h3 {
  background: linear-gradient(135deg, #FAE9B5, #CA9436);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan-divider {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 200, 255, 0.3), transparent);
  margin: 22px 0;
}

.plan-card.pro .plan-divider {
  background: linear-gradient(90deg, rgba(255, 197, 92, 0.35), transparent);
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
}

.plan-price .currency {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-mid);
}

.plan-price .period {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.plan-desc {
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.plan-features {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-hi);
  margin-bottom: 14px;
}

.plan-features li svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--blue-2);
}

.plan-card.pro .plan-features li svg {
  color: var(--gold-2);
}

.plan-cta {
  justify-content: center;
  width: 100%;
}

.plan-card:not(.pro) .plan-cta {
  color: #fff;
  font-weight: 700;
  border-color: rgba(126, 200, 255, 0.4);
  background: linear-gradient(180deg, #101d40 0%, #0c1836 55%, #0a1530 100%);
  box-shadow: inset 0 1px 0 rgba(180, 215, 255, 0.25), inset 0 -8px 14px rgba(4, 10, 28, 0.5), 0 0 16px rgba(59, 123, 255, 0.25);
}

.plan-card:not(.pro) .plan-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle), transparent 0deg, transparent 296deg, rgba(126, 200, 255, 0.95) 322deg, #ffffff 344deg, rgba(126, 200, 255, 0.95) 358deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 3px rgba(234, 246, 255, 0.95)) drop-shadow(0 0 7px rgba(59, 123, 255, 0.75));
  animation: borderTravel 4s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.plan-card:not(.pro) .plan-cta:hover {
  border-color: rgba(126, 200, 255, 0.6);
  background: linear-gradient(180deg, #13214a 0%, #0f1c3f 55%, #0b1834 100%);
  box-shadow: inset 0 1px 0 rgba(180, 215, 255, 0.35), inset 0 -8px 14px rgba(4, 10, 28, 0.45), 0 0 22px rgba(59, 123, 255, 0.35);
}

.plan-card.pro .plan-cta {
  color: #241a02;
  font-weight: 800;
  border-color: rgba(154, 109, 20, 0.4);
  background: linear-gradient(180deg, #ffe9a8 0%, #f6c765 42%, #e7ab3f 70%, #d99a34 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -10px 16px rgba(153, 101, 17, 0.35), 0 10px 26px rgba(242, 184, 75, 0.4);
}

.plan-card.pro .plan-cta:hover {
  background: linear-gradient(180deg, #ffefc0 0%, #f8d179 42%, #edb54c 70%, #dda23c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -10px 16px rgba(153, 101, 17, 0.3), 0 12px 30px rgba(242, 184, 75, 0.5);
}

.plans-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding-top: 40px;
  border-top: 1px solid rgba(126, 200, 255, 0.12);
}

.plans-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.plans-strip-item img {
  width: 30px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.plans-strip-item div {
  display: flex;
  flex-direction: column;
}

.plans-strip-item strong {
  font-size: 14.5px;
  font-weight: 700;
}

.plans-strip-item span {
  font-size: 12.5px;
  color: var(--text-dim);
}

.strip-divider {
  width: 1px;
  height: 34px;
  background: rgba(126, 200, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .plans-grid {
    flex-direction: column;
    align-items: center;
  }
  .plan-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
  }
  .plan-card.pro {
    order: -1;
  }
}
@media (max-width: 576px) {
  .plans-strip {
    gap: 26px;
  }
  .strip-divider {
    display: none;
  }
}
/* ---------- compare plans ---------- */
.compare-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-2);
  border: 1px solid rgba(88, 152, 255, 0.35);
  background: rgba(59, 123, 255, 0.08);
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.compare-eyebrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cmp-scroll {
  overflow-x: auto;
}

.cmp-scroll-hint {
  display: none;
}

@media (max-width: 860px) {
  .cmp-scroll {
    mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
  }
  .cmp-scroll-hint {
    display: block;
    text-align: center;
    font-size: 12.5px;
    color: var(--text-dim);
    margin-top: 14px;
  }
}
.cmp-card {
  position: relative;
  min-width: 760px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11, 19, 40, 0.85), rgba(6, 10, 22, 0.9));
}

.cmp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(120deg, rgba(126, 200, 255, 0.9) 0%, rgba(88, 152, 255, 0.25) 32%, rgba(255, 197, 92, 0.25) 68%, rgba(255, 197, 92, 0.9) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cmp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(140px 70px at 6% 0%, rgba(126, 200, 255, 0.4), transparent 70%), radial-gradient(160px 80px at 95% 100%, rgba(255, 197, 92, 0.4), transparent 70%);
}

.cmp-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  position: relative;
  z-index: 1;
}

.cmp-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cmp-row--head {
  border-bottom: 1px solid rgba(126, 200, 255, 0.2);
}

.cmp-row--head .cmp-cell {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-hi);
  padding: 22px 24px;
}

.cmp-row--head .cmp-ess {
  color: var(--blue-2);
}

.cmp-row--head .cmp-prof {
  color: var(--text-hi);
}

.cmp-row--head .cmp-adv {
  background: linear-gradient(100deg, #FBD76D, #FAAA1A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cmp-cell {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  font-size: 14.5px;
  color: var(--text-hi);
}

.cmp-feature {
  gap: 12px;
}

.cmp-ess, .cmp-adv, .cmp-prof {
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.cmp-text {
  color: var(--text-mid);
  font-size: 14px;
}

.cmp-adv.cmp-text, .cmp-prof.cmp-text {
  color: var(--text-hi);
}

.cmp-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-hi);
}

.cmp-highlight {
  font-weight: 800;
  margin-left: 5px;
  background: linear-gradient(100deg, #FBD76D, #FAAA1A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cmp-ico {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--text-hi);
}

.cmp-ico svg {
  width: 100%;
  height: 100%;
}

.cmp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cmp-check svg {
  width: 13px;
  height: 13px;
}

.cmp-check--std {
  background: linear-gradient(160deg, var(--blue-2), var(--blue-1));
  box-shadow: 0 0 12px rgba(59, 123, 255, 0.45);
}

.cmp-check--pro {
  color: #2a1c02;
  background: linear-gradient(160deg, #FBD76D, #FAAA1A);
  box-shadow: 0 0 16px rgba(250, 170, 26, 0.6);
}

.cmp-dash {
  color: var(--text-dim);
  font-size: 16px;
}

@media (max-width: 640px) {
  .cmp-row--head .cmp-cell, .cmp-cell {
    padding: 14px 16px;
  }
}
/* ---------- token packages ---------- */
.token-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(255, 197, 92, 0.35);
  background: rgba(242, 184, 75, 0.08);
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.token-eyebrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.token-table-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11, 19, 40, 0.85), rgba(6, 10, 22, 0.9));
  overflow: hidden;
}

.token-table-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(120deg, rgba(255, 197, 92, 0.9) 0%, rgba(242, 184, 75, 0.25) 35%, rgba(88, 152, 255, 0.25) 65%, rgba(126, 200, 255, 0.9) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.token-table-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(160px 80px at 4% 0%, rgba(255, 197, 92, 0.35), transparent 70%), radial-gradient(160px 80px at 96% 100%, rgba(126, 200, 255, 0.35), transparent 70%);
}

.token-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px 30px;
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}

.token-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.token-row:not(.token-row--head):hover {
  background: rgba(255, 255, 255, 0.02);
}

.token-row--head {
  border-bottom: 1px solid rgba(255, 197, 92, 0.2) !important;
}

.token-row--head .token-cell {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.token-col-pkg {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-hi);
}

.token-col-price {
  flex-shrink: 0;
  font-size: 19px;
  font-weight: 800;
  color: var(--text-hi);
  white-space: nowrap;
}

.token-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--gold-2);
  background: linear-gradient(160deg, rgba(242, 184, 75, 0.16), rgba(242, 184, 75, 0.04));
  border: 1px solid rgba(255, 197, 92, 0.35);
}

.token-ico svg {
  width: 18px;
  height: 18px;
}

.token-row--best {
  background: linear-gradient(90deg, rgba(242, 184, 75, 0.08), transparent);
}

.token-row--best .token-ico {
  color: #2a1c02;
  background: linear-gradient(160deg, #FBD76D, #FAAA1A);
  box-shadow: 0 0 16px rgba(250, 170, 26, 0.5);
  border: none;
}

.token-row--best .token-col-price {
  background: linear-gradient(100deg, #FBD76D, #FAAA1A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.token-best-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2a1c02;
  background: linear-gradient(160deg, #FBD76D, #FAAA1A);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

.reveal-d5 {
  transition-delay: 0.4s;
}

.reveal-d6 {
  transition-delay: 0.48s;
}

/* ---------- generic section / section-head (shared) ---------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-head .tag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.section-head p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- responsive (pricing-relevant) ---------- */
@media (max-width: 1200px) {
  .container-x {
    padding: 0 26px;
  }
  .hero h1 {
    font-size: clamp(26px, 2.8vw, 36px);
  }
}
@media (max-width: 767px) {
  .main-nav {
    display: none;
  }
  .section {
    padding: 70px 0;
  }
}
@media (max-width: 576px) {
  .container-x {
    padding: 0 18px;
  }
  .hero {
    padding: 70px 0 40px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
.hero h1 {
  font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.btn-primary,
.btn-outline-gold {
  font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
  font-weight: 700;
  border-radius: 16px;
}

.btn-primary {
  background: linear-gradient(180deg, #3d7dff 0%, #2f66e0 55%, #234fc4 100%);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.45), inset 0 -6px 14px rgba(0, 0, 0, 0.16), 0 20px 42px rgba(47, 102, 224, 0.55);
}
.btn-primary::before {
  content: none;
  animation: none;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: -1;
  animation: btnShine 8s ease-in-out infinite;
  -webkit-animation: btnShine 8s ease-in-out infinite;
}

.btn-outline-gold {
  border: 1.5px solid transparent;
  background: linear-gradient(180deg, #090d1a, #05070d) padding-box, linear-gradient(135deg, #fff3d6 0%, #f2b84b 28%, #8a611f 50%, #f2b84b 72%, #fff3d6 100%) border-box;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero-visual {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .hero-banner-img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 60px rgba(59, 123, 255, 0.18));
  animation: heroBannerFloat 7s ease-in-out infinite;
}

@keyframes heroBannerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.feature-item .ico {
  background: none;
  border: none;
}
.feature-item .ico img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.green-text {
  color: #35d68a;
}

.pricing-hero {
  background: #01020b;
}

.pricing-hero-img {
  max-width: 100%;
}
@media (min-width: 992px) {
  .pricing-hero-img {
    transform: scale(1.5);
  }
}

.plan-head {
  margin: 0;
}

.plan-divider {
  margin: 10px 0 20px;
}

.plan-badge {
  top: 0;
  right: 0;
  padding: 4px 17px 6px 40px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 25px 100%);
  font-size: 9px;
}

@media (max-width: 992px) {
  .hero-visual .hero-banner-img {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .hero-visual .hero-banner-img {
    max-width: 100%;
  }
  .feature-item .ico img {
    width: 34px;
    height: 34px;
  }
}
.stats-band {
  border-top: none;
  border-bottom: none;
  background: transparent;
  padding: 56px 0;
}
.stats-band .container-x {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 20px 50px 0;
  border: 1px solid rgba(126, 200, 255, 0.25);
  background: #000924;
  background-size: 22px 22px, auto, auto, auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), -40px 0 70px rgba(59, 123, 255, 0.15), 40px 0 70px rgba(242, 184, 75, 0.1);
}
.stats-band .container-x::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(from var(--border-angle, 0deg), transparent 0deg, transparent 250deg, rgba(59, 123, 255, 0.35) 278deg, rgba(126, 200, 255, 0.8) 300deg, #eaf6ff 316deg, #ffffff 320deg, #eaf6ff 324deg, rgba(126, 200, 255, 0.8) 340deg, rgba(59, 123, 255, 0.35) 355deg, transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(126, 200, 255, 0.9)) drop-shadow(0 0 18px rgba(59, 123, 255, 0.6));
  animation: borderChase 5s linear infinite;
}
.stats-band .container-x::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: radial-gradient(circle 2.5px at 15% 50%, rgba(126, 200, 255, 0.8), transparent 65%), radial-gradient(circle 2px at 32% 50%, rgba(126, 200, 255, 0.55), transparent 65%), radial-gradient(circle 2.5px at 50% 50%, rgba(126, 200, 255, 0.8), transparent 65%), radial-gradient(circle 2px at 68% 50%, rgba(255, 197, 92, 0.55), transparent 65%), radial-gradient(circle 2.5px at 85% 50%, rgba(255, 197, 92, 0.8), transparent 65%), radial-gradient(circle 5px at 4% 50%, #f2b84b, transparent 65%), radial-gradient(circle 5px at 96% 50%, #7ec8ff, transparent 65%), linear-gradient(90deg, transparent 0%, rgba(255, 197, 92, 0.6) 8%, rgba(255, 197, 92, 0.12) 45%, rgba(126, 200, 255, 0.12) 55%, rgba(126, 200, 255, 0.6) 92%, transparent 100%);
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes borderChase {
  to {
    --border-angle: 360deg;
  }
}
@media (min-width: 992px) {
  .stats-title {
    border-right: 1px solid rgba(126, 200, 255, 0.15);
    padding-right: 24px;
  }
}
.stat-icowrap,
.stat-block:nth-child(3) .stat-icowrap,
.stat-block:nth-child(6) .stat-icowrap {
  background: none;
  border: none;
  border-radius: 0;
}
.stat-icowrap img,
.stat-block:nth-child(3) .stat-icowrap img,
.stat-block:nth-child(6) .stat-icowrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-num {
  color: var(--green);
}

.stat-block:nth-child(6) .stat-num {
  color: var(--gold-2);
}

.stat-icowrap {
  width: 65px;
  height: 65px;
}

@media (max-width: 992px) {
  .stats-band .container-x {
    border-radius: 28px;
    padding: 30px 32px;
  }
}
.tag.tag-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.tag.tag-orn::before, .tag.tag-orn::after {
  content: "";
  flex: 1 1 90px;
  max-width: 130px;
  height: 5px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 100% 1px;
  background-position: left center, right center;
}
.tag.tag-orn::before {
  background-image: radial-gradient(circle 2.5px at 0 50%, #f2b84b 0 100%, transparent 101%), linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.6));
}
.tag.tag-orn::after {
  background-image: radial-gradient(circle 2.5px at 100% 50%, #f2b84b 0 100%, transparent 101%), linear-gradient(90deg, rgba(242, 184, 75, 0.6), transparent);
  background-position: right center, left center;
}

.ps-frame {
  position: relative;
  padding: 0px;
  overflow: hidden;
}

.product-showcase {
  margin-bottom: 120px;
}
.product-showcase:last-child {
  margin-bottom: 0;
}

.ps-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 460px;
  background: linear-gradient(165deg, #ffffff, #f4f7fd);
  border-radius: 28px;
  padding: 44px 25px;
  border: 1px solid rgba(94, 158, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(94, 158, 255, 0.12), 0 0 50px rgba(59, 123, 255, 0.28), 0 30px 60px rgba(0, 0, 0, 0.4);
  color: #0b1220;
}
.ps-copy::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -30px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(242, 184, 75, 0.6), transparent 72%);
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}
.ps-copy.gold-card {
  border-color: rgba(242, 184, 75, 0.4);
  box-shadow: 0 0 0 1px rgba(242, 184, 75, 0.12), 0 0 50px rgba(242, 184, 75, 0.26), 0 30px 60px rgba(0, 0, 0, 0.4);
}
.ps-copy.gold-card::after {
  background: radial-gradient(ellipse at center, rgba(59, 123, 255, 0.55), transparent 72%);
}

.ps-num {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  color: #c7d6f5;
  margin-bottom: 2px;
}
.ps-num.gold {
  color: #f3ddb0;
}

.ps-copy h3 {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
  color: #0b1220;
}

.ps-tagline {
  font-size: 17px;
  font-weight: 700;
  color: #2f66e0;
  margin: 0 0 12px;
}

.ps-divider {
  position: relative;
  display: block;
  height: 1px;
  margin: 0 0 20px;
  background: linear-gradient(90deg, rgba(59, 123, 255, 0.55), rgba(59, 123, 255, 0.12) 46%, rgba(242, 184, 75, 0.12) 54%, rgba(242, 184, 75, 0.55));
}
.ps-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f2b84b;
  box-shadow: 0 0 8px rgba(242, 184, 75, 0.8);
  transform: translate(-50%, -50%);
}

.ps-desc {
  font-size: 14px;
  line-height: 1.45;
  color: #5b6884;
  margin: 0 0 15px;
}

.ps-checklist {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.ps-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: #1c2740;
}

.ck {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(150deg, #4c86ff, #2f66e0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(59, 123, 255, 0.35);
}
.ck.gold {
  background: linear-gradient(150deg, #f2b84b, #d99a34);
  box-shadow: 0 4px 10px rgba(242, 184, 75, 0.35);
}

.ps-copy .ps-cta.btn {
  width: 100%;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 18px 26px;
  margin-top: auto;
}

.ps-copy .ps-cta.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #033df0 0%, #02128c 100%);
}

.ps-copy .ps-cta.btn-outline-gold {
  color: var(--gold-2, #ffd98a);
}

.app-mock {
  position: relative;
  display: flex;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #070d1c;
  border: 1px solid rgba(94, 158, 255, 0.55);
}
.app-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--border-angle, 0deg), transparent 0deg, transparent 250deg, rgba(59, 123, 255, 0.35) 278deg, rgba(126, 200, 255, 0.85) 300deg, #eaf6ff 316deg, #ffffff 320deg, #eaf6ff 324deg, rgba(126, 200, 255, 0.85) 340deg, rgba(59, 123, 255, 0.35) 355deg, transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(126, 200, 255, 0.9)) drop-shadow(0 0 16px rgba(59, 123, 255, 0.6));
  animation: borderChase 5s linear infinite;
}

.app-mock-side {
  flex: 0 0 172px;
  background: #060a17;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 14px;
  display: none;
  flex-direction: column;
}
@media (min-width: 768px) {
  .app-mock-side {
    display: flex;
  }
}

.am-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
}

.am-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #f3f6fc;
}

.am-brand-mark {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #16233f, #0a1226);
  border: 1px solid rgba(126, 200, 255, 0.3);
  color: #7ec8ff;
}
.am-brand-mark svg {
  width: 15px;
  height: 15px;
}

.am-collapse {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #6b7794;
}

.am-live {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
  font-size: 8.5px;
  font-weight: 700;
  color: #6b7794;
  letter-spacing: 0.3px;
}
.am-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green, #35d68a);
  box-shadow: 0 0 6px var(--green, #35d68a);
}

.am-side-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #4a5674;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.am-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.am-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 11.5px;
  font-weight: 600;
  color: #8b96b3;
}
.am-nav a svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.am-nav a:nth-child(1) svg {
  color: #7ec8ff;
}
.am-nav a:nth-child(2) svg {
  color: var(--green, #35d68a);
}
.am-nav a:nth-child(3) svg {
  color: #4c86ff;
}
.am-nav a:nth-child(4) svg {
  color: #f2b84b;
}
.am-nav a.active {
  background: rgba(59, 123, 255, 0.16);
  color: #eaf3ff;
}
.am-nav a.active::after {
  content: "";
  margin-left: auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7ec8ff;
  box-shadow: 0 0 6px #7ec8ff;
}
.am-nav a.active.gold {
  background: rgba(242, 184, 75, 0.16);
  color: #ffe9bb;
}
.am-nav a.active.gold::after {
  background: #f2b84b;
  box-shadow: 0 0 6px #f2b84b;
}

.am-side-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.am-pin-btn {
  width: 100%;
  background: rgba(126, 200, 255, 0.08);
  border: 1px solid rgba(126, 200, 255, 0.18);
  border-radius: 9px;
  color: #9fb4dd;
  font-size: 9.5px;
  font-weight: 700;
  padding: 9px 6px;
  line-height: 1.3;
}

.am-settings {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #6b7794;
  border-top: 1px solid rgba(126, 200, 255, 0.18);
  padding-top: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.am-settings svg {
  width: 14px;
  height: 14px;
}

.app-mock-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.app-mock-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.am-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #f3f6fc;
  margin-right: 4px;
}

.am-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #ffffff, #f2f5fb);
  color: #0f1b33;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.am-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--green, #35d68a);
  box-shadow: 0 0 5px rgba(53, 214, 138, 0.8);
}
.am-pill.am-pill-blue i {
  border-radius: 2px;
  transform: rotate(45deg);
}

.am-spacer {
  flex: 1;
}

.am-icobtn {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #aab6cf;
}
@media (min-width: 1200px) {
  .am-icobtn {
    display: flex;
  }
}

.am-meta {
  font-size: 9.5px;
  font-weight: 600;
  color: #9fb0cf;
  white-space: nowrap;
  display: none;
}
@media (min-width: 1200px) {
  .am-meta {
    display: inline-block;
  }
}
.am-meta.am-meta-box {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 5px 10px;
  color: #d8e0f2;
}

.am-user {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  color: #eaf3ff;
  border: 1px solid rgba(59, 123, 255, 0.3);
  background: rgba(59, 123, 255, 0.1);
  padding: 3px 8px 3px 3px;
  border-radius: 999px;
  white-space: nowrap;
}
.am-user i {
  font-style: normal;
  color: #9fb4dd;
}

.am-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4c86ff, #2f66e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  flex: 0 0 auto;
}

.app-mock-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  font-size: 10px;
  font-weight: 600;
  color: #6b7794;
  white-space: nowrap;
}
.app-mock-ticker b {
  color: #aab6cf;
  font-weight: 700;
  margin-left: 3px;
}
.app-mock-ticker span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.18);
}

.app-mock-body {
  flex: 1;
  padding: 18px 20px;
  overflow: hidden;
}

.am-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.am-chat-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: #f3f6fc;
  margin: 0 0 3px;
}
.am-chat-head span {
  font-size: 11px;
  color: #6b7794;
}

.am-newconvo {
  flex: 0 0 auto;
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #eaf3ff;
  padding: 9px 14px;
  text-align: left;
}
@media (min-width: 992px) {
  .am-newconvo {
    display: flex;
  }
}

.am-newconvo-ico {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #aab6cf;
}

.am-newconvo-text {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
}
.am-newconvo-text small {
  display: block;
  font-size: 8.5px;
  font-weight: 500;
  color: #9fb4dd;
  margin-top: 2px;
}

.am-chat-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 16px;
  padding: 18px 20px;
}

.am-chat-block {
  margin-bottom: 16px;
}
.am-chat-block:last-of-type {
  margin-bottom: 0;
}
.am-chat-block strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #f3f6fc;
  margin-bottom: 8px;
}
.am-chat-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.am-chat-block li {
  font-size: 11px;
  line-height: 1.7;
  color: #aab6cf;
}

.am-chat-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 9.5px;
  font-style: italic;
  color: #4a5674;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.am-note-ico {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-style: normal;
  color: #6b7794;
  margin-top: 1px;
}

.app-mock-input {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 20px 20px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(126, 200, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(126, 200, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(94, 158, 255, 0.06) inset, 0 10px 24px rgba(0, 0, 0, 0.35);
}
.app-mock-input span {
  flex: 1;
  font-size: 11px;
  color: #6b7794;
}

.am-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(165deg, #0044e9, #032181);
  color: #fff;
  flex: 0 0 auto;
  border: none;
}
.am-send svg {
  width: 16px;
  height: 16px;
}

.am-signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.am-signal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 14px;
}

.am-signal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.am-signal-top b {
  font-size: 12.5px;
  color: #f3f6fc;
}

.am-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 999px;
}
.am-badge.buy {
  background: rgba(53, 214, 138, 0.16);
  color: var(--green, #35d68a);
}
.am-badge.sell {
  background: rgba(255, 92, 114, 0.16);
  color: var(--red, #ff5c72);
}

.am-signal-levels {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
  font-size: 10px;
  color: #6b7794;
}
.am-signal-levels b {
  color: #aab6cf;
  font-weight: 700;
}

.am-conf {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.am-conf span {
  font-size: 9px;
  color: #6b7794;
  flex: 0 0 auto;
}
.am-conf::after {
  content: "";
}
.am-conf i {
  display: block;
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}
.am-conf i::before {
  content: "";
  position: absolute;
  inset: 0;
  width: inherit;
  border-radius: inherit;
  background: linear-gradient(90deg, #3b7bff, #7ec8ff);
}

.am-winrate {
  font-size: 9.5px;
  color: #6b7794;
}
.am-winrate b {
  color: var(--green, #35d68a);
  font-weight: 700;
}

.am-pulse-eyebrow {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}
.am-pulse-eyebrow svg {
  width: 11px;
  height: 11px;
}

.am-topics-row {
  margin-bottom: 16px;
}

.am-filter-pills button.active {
  background: linear-gradient(180deg, #3d7dff, #234fc4);
  border-color: transparent;
  color: #fff;
}

.am-chat-head .am-live-pill svg {
  width: 11px;
  height: 11px;
}

.am-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(190px, 1fr);
  align-items: stretch;
  gap: 14px;
  margin-top: 16px;
}

.am-feature-col {
  min-width: 0;
}

.am-feature-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #c7d2e8;
  margin-bottom: 10px;
}
.am-feature-eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-1, #3b7bff);
  box-shadow: 0 0 6px var(--blue-1, #3b7bff);
}

.am-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: calc(100% - 22px);
  padding: 16px 18px 18px;
  background: linear-gradient(100deg, rgba(6, 11, 22, 0.97) 0%, rgba(6, 11, 22, 0.88) 40%, rgba(6, 11, 22, 0.38) 72%, rgba(6, 11, 22, 0.12) 100%), url("../img/crypto-img.png");
  background-size: 250px;
  background-position: 100% 0px;
  background-repeat: no-repeat;
  background-color: rgb(5, 10, 21);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.am-feature-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.am-feature-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #eaf1ff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 9px;
  border-radius: 6px;
}

.am-feature-meta {
  font-size: 9.5px;
  font-weight: 600;
  color: #94a1c2;
}

.am-feature-title {
  max-width: 80%;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.35;
  color: #f3f6fc;
  margin: 0;
}

.am-feature-desc {
  max-width: 78%;
  font-size: 10.5px;
  line-height: 1.65;
  color: #aab6cf;
  margin: 0;
  flex: 1;
}

.am-feature-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #6b7794;
}

.am-feature-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #6B7FCE;
}
.am-feature-link svg {
  width: 10px;
  height: 10px;
}

.am-impact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.am-impact-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #aab6cf;
  margin-bottom: 14px;
}
.am-impact-head svg {
  width: 12px;
  height: 12px;
  color: #4a5674;
}

.am-impact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin-bottom: 14px;
}

.am-impact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.am-impact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.am-impact-icon.btc {
  background: rgba(242, 184, 75, 0.18);
  color: var(--gold-1, #f2b84b);
}
.am-impact-icon.eth {
  background: rgba(126, 163, 255, 0.18);
  color: #7ea3ff;
}
.am-impact-icon.xau, .am-impact-icon.spx {
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.am-impact-pair {
  flex: 0 0 auto;
  min-width: 62px;
  font-size: 11.5px;
  font-weight: 700;
  color: #f3f6fc;
}

.am-impact-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.am-impact-arrow {
  flex: 0 0 auto;
  width: 14px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.am-impact-arrow.up {
  color: var(--green, #35d68a);
}
.am-impact-arrow.down {
  color: var(--red, #ff5c72);
}

.am-impact-level {
  flex: 1;
  text-align: right;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.am-impact-level.high {
  color: var(--green, #35d68a);
}
.am-impact-level.medium {
  color: var(--gold-1, #f2b84b);
}
.am-impact-level.low {
  color: var(--blue-2, #7ec8ff);
}

.am-impact-viewall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #eaf3ff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
}
.am-impact-viewall svg {
  width: 12px;
  height: 12px;
}

.am-signal-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.am-dash-status {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.am-live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--green, #35d68a);
  background: rgba(53, 214, 138, 0.1);
  border: 1px solid rgba(53, 214, 138, 0.3);
  white-space: nowrap;
}
.am-live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green, #35d68a);
  box-shadow: 0 0 6px var(--green, #35d68a);
}

.am-dash-updated {
  font-size: 9.5px;
  font-weight: 600;
  color: #6b7794;
  white-space: nowrap;
}

.am-dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 700;
  color: #aab6cf;
  text-transform: capitalize;
}
.am-dash-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green, #35d68a);
  box-shadow: 0 0 6px var(--green, #35d68a);
}

.am-dash-window-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #4a5674;
  text-transform: uppercase;
  white-space: nowrap;
}

.am-chart-btns {
  display: flex;
  gap: 3px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 3px;
}
.am-chart-btns button {
  border: none;
  background: transparent;
  color: #6b7794;
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
}
.am-chart-btns button.active {
  background: linear-gradient(180deg, #3d7dff, #234fc4);
  color: #fff;
}

.am-dash-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.am-tabgroup {
  display: flex;
  gap: 4px;
}
.am-tabgroup button {
  border: none;
  background: transparent;
  color: #6b7794;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 10px;
}
.am-tabgroup button.active {
  background: linear-gradient(180deg, #3d7dff, #234fc4);
  color: #fff;
}

.am-refresh-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #aab6cf;
  font-size: 10.5px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 10px;
  white-space: nowrap;
}
.am-refresh-btn svg {
  width: 12px;
  height: 12px;
}

.am-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.am-search-box {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 9px 12px;
  color: #4a5674;
  min-width: 0;
}
.am-search-box svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}
.am-search-box span {
  font-size: 10.5px;
  font-weight: 600;
  color: #576284;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.am-seg {
  display: flex;
  gap: 3px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 3px;
  flex: 0 0 auto;
}
.am-seg button {
  border: none;
  background: transparent;
  color: #6b7794;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 8px;
}
.am-seg button.active {
  background: linear-gradient(180deg, #3d7dff, #234fc4);
  color: #fff;
}

.am-showing {
  font-size: 9.5px;
  font-weight: 600;
  color: #4a5674;
  white-space: nowrap;
  display: none;
}
@media (min-width: 1100px) {
  .am-showing {
    display: inline-block;
  }
}

.am-csv-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #aab6cf;
  font-size: 10.5px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 10px;
  white-space: nowrap;
}
.am-csv-btn svg {
  width: 12px;
  height: 12px;
}

.am-filters-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.am-filters-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #4a5674;
  white-space: nowrap;
}

.am-filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
}
.am-filter-pills button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: #9fb0cf;
  font-size: 9.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.am-sort {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  white-space: nowrap;
  margin-left: auto;
}
.am-sort span {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #4a5674;
}
.am-sort b {
  font-weight: 700;
  color: #eaf3ff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 5px 10px;
}

.am-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.am-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 14px;
}

.am-stat-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #aab6cf;
  margin-bottom: 12px;
}
.am-stat-head svg {
  width: 13px;
  height: 13px;
  color: #7ec8ff;
  flex: 0 0 auto;
}

.am-sessions-card .am-stat-head svg {
  color: #70e6ae;
}

.am-stat-meta {
  margin-left: auto;
  font-size: 9px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #4a5674;
  white-space: nowrap;
}

.am-session-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 10.5px;
}
.am-session-row b {
  color: #f3f6fc;
  font-weight: 700;
}
.am-session-row span {
  color: #6b7794;
}

.am-session-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a5674;
  flex: 0 0 auto;
}
.am-session-dot.open {
  background: #70e6ae;
  box-shadow: 0 0 6px #70e6ae;
}

.am-session-open {
  color: #70e6ae !important;
  font-weight: 700 !important;
}

.am-session-time {
  margin-left: auto;
  color: #4a5674 !important;
  white-space: nowrap;
  font-size: 9.5px;
}

.am-breadth-card .am-stat-head svg {
  color: #a3e635;
}

.am-breadth-big {
  font-size: 22px;
  font-weight: 800;
  color: #4ade80;
  margin-bottom: 10px;
}
.am-breadth-big span {
  font-size: 12px;
  font-weight: 700;
  color: #aab6cf;
  margin-left: 4px;
}

.am-breadth-bar {
  height: 9px;
  border-radius: 999px;
  margin-bottom: 12px;
  display: flex;
  overflow: hidden;
}

.am-breadth-long {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #86efac);
}

.am-breadth-short {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ff9d9d, #ff5c72);
}

.am-breadth-legend {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 700;
}
.am-breadth-legend .arrow {
  font-style: normal;
}
.am-breadth-legend .long {
  color: #9fb0cf;
}
.am-breadth-legend .long .arrow {
  color: #4ade80;
}
.am-breadth-legend .short {
  color: var(--red, #ff5c72);
}
.am-breadth-legend .short .arrow {
  color: var(--red, #ff5c72);
}

.am-quality-card .am-stat-head svg {
  color: #4ade80;
}

.am-quality-big {
  font-size: 26px;
  font-weight: 800;
  color: #70e6ae;
  margin-bottom: 6px;
}
.am-quality-big span {
  font-size: 12px;
  font-weight: 700;
  color: #d8e0f2;
  margin-left: 6px;
}

.am-quality-sub {
  font-size: 12px;
  font-weight: 700;
  color: #ff9a62;
  margin-bottom: 12px;
}

.am-quality-bar {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  overflow: hidden;
}
.am-quality-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #70e6ae;
}

.am-quality-legend {
  display: flex;
  gap: 9px;
  font-size: 9.5px;
  font-weight: 600;
  color: #d8e0f2;
  flex-wrap: wrap;
}
.am-quality-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.am-quality-legend .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.am-quality-legend .dot.strong {
  background: #70e6ae;
}
.am-quality-legend .dot.okay {
  background: #f2b84b;
}
.am-quality-legend .dot.weak {
  background: #64748b;
}

.am-top-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.am-top-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(53, 214, 138, 0.3);
  border-radius: 16px;
  padding: 14px 16px;
}
.am-top-card.short {
  border-color: rgba(255, 92, 114, 0.3);
}

.am-top-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--green, #35d68a);
  background: rgba(53, 214, 138, 0.14);
  border: 1px solid rgba(53, 214, 138, 0.35);
  border-radius: 8px;
  padding: 7px 10px;
  white-space: nowrap;
}
.am-top-badge svg {
  width: 12px;
  height: 12px;
}

.am-top-card.short .am-top-badge {
  color: var(--red, #ff5c72);
  background: rgba(255, 92, 114, 0.14);
  border-color: rgba(255, 92, 114, 0.35);
}

.am-top-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.am-top-info b {
  font-size: 16px;
  font-weight: 800;
  color: #f3f6fc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.am-top-sub {
  font-size: 10px;
  color: #6b7794;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.am-top-conf {
  flex: 0 0 auto;
  text-align: right;
}
.am-top-conf b {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--green, #35d68a);
}
.am-top-conf small {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #6b7794;
  margin-top: 2px;
}

.am-top-card.short .am-top-conf b {
  color: var(--red, #ff5c72);
}

.am-news-card {
  background: #001421;
  border: 1px solid #064c5e;
  border-radius: 14px;
  padding: 16px;
}

.am-news-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.am-news-title {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #8ea2ff;
  white-space: nowrap;
}
.am-news-title svg {
  width: 14px;
  height: 14px;
  color: #8ea2ff;
  flex: 0 0 auto;
}

.am-news-head .am-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.4px;
  color: #ffb4b4;
  background: linear-gradient(90deg, #3a1620, #5a2230);
  border: 1px solid rgba(255, 150, 150, 0.35);
}
.am-news-head .am-badge svg {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
}

.am-news-text {
  font-size: 10.5px;
  line-height: 1.7;
  color: #aab6cf;
  margin: 0 0 12px;
}

.am-news-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.am-news-tags span {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #020b1b;
  border-radius: 999px;
  padding: 6px 14px;
}

.am-dash-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 600;
  color: #4a5674;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.am-dash-footer b {
  color: #9fb0cf;
}
.am-dash-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green, #35d68a);
  box-shadow: 0 0 6px var(--green, #35d68a);
}

@media (max-width: 992px) {
  .ps-copy {
    padding: 36px 28px;
  }
  .app-mock {
    min-height: 0;
  }
}
.tech-section .section-head .gold {
  background: linear-gradient(135deg, #fff3d6 0%, #f2b84b 45%, #d99a34 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-section .tag.tag-orn {
  position: relative;
  width: 100%;
  justify-content: center;
  gap: 8px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  background-image: linear-gradient(90deg, #6fa0ff 0%, #bcd6ff 55%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tech-section .tag.tag-orn::before {
  content: none;
}
.tech-section .tag.tag-orn::after {
  content: "";
  flex: 0 0 auto;
  width: 70px;
  max-width: 40vw;
  height: 22px;
  filter: drop-shadow(0 0 5px rgba(255, 214, 140, 0.55));
  background-repeat: no-repeat;
  background-image: linear-gradient(180deg, transparent, #fff8e0 42%, #ffd98a 50%, #fff8e0 58%, transparent), linear-gradient(90deg, transparent, #fff8e0 42%, #ffd98a 50%, #fff8e0 58%, transparent), radial-gradient(circle 4px at 64% 50%, #fffdf5 0%, #ffd98a 60%, transparent 100%), linear-gradient(90deg, rgba(126, 200, 255, 0.85) 0%, #eaf6ff 30%, rgba(255, 214, 140, 0.9) 64%, rgba(126, 200, 255, 0.4) 82%, transparent 100%);
  background-size: 2px 18px, 26px 2px, 100% 100%, 100% 2px;
  background-position: 64% 50%, 64% 50%, 0 0, 0 50%;
  border-radius: 100px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 22px;
}
@media (min-width: 992px) {
  .tech-grid {
    grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr) 96px minmax(0, 1fr);
    gap: 0;
  }
}

.tech-connector {
  display: none;
}
@media (min-width: 992px) {
  .tech-connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 60px;
    height: 60px;
    z-index: 5;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 123, 255, 0.3) 0%, rgba(7, 12, 24, 0.95) 68%);
    border: 1.5px solid rgba(160, 215, 255, 0.95);
    color: #eaf6ff;
    box-shadow: 0 0 0 1px rgba(126, 200, 255, 0.18), 0 0 18px rgba(59, 123, 255, 0.9), 0 0 44px rgba(59, 123, 255, 0.6), 0 0 90px rgba(59, 123, 255, 0.35);
  }
  .tech-connector svg {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 6px rgba(126, 200, 255, 0.95));
  }
  .tech-connector::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 92px;
    height: 2px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, transparent, rgba(126, 200, 255, 0.85) 32%, #eaf6ff 50%, rgba(126, 200, 255, 0.85) 68%, transparent);
    filter: blur(0.4px);
    pointer-events: none;
    z-index: 1;
  }
  .tech-connector::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 46px;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, transparent, rgba(126, 200, 255, 0.6), transparent);
    pointer-events: none;
    z-index: 1;
  }
}

.tech-card {
  position: relative;
  height: 100%;
  background: radial-gradient(circle 1px, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0/26px 26px, linear-gradient(165deg, rgba(16, 28, 56, 0.8), rgba(6, 10, 22, 0.95));
  border: 1px solid rgba(94, 158, 255, 0.3);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 0 0 1px rgba(94, 158, 255, 0.06) inset, 0 30px 60px rgba(0, 0, 0, 0.45);
}
.tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--border-angle, 0deg), transparent 0deg, transparent 250deg, rgba(59, 123, 255, 0.35) 278deg, rgba(126, 200, 255, 0.85) 300deg, #eaf6ff 316deg, #ffffff 320deg, #eaf6ff 324deg, rgba(126, 200, 255, 0.85) 340deg, rgba(59, 123, 255, 0.35) 355deg, transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(126, 200, 255, 0.9)) drop-shadow(0 0 16px rgba(59, 123, 255, 0.6));
  animation: borderChase 5s linear infinite;
}

.tech-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-num {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #0445cb, #011036);
  box-shadow: 0 6px 16px rgba(59, 123, 255, 0.4);
}

.tech-card-title {
  flex: 1;
  min-width: 0;
}
.tech-card-title h3 {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #eaf3ff;
  margin: 0 0 4px;
}
.tech-card-title p {
  font-size: 12.5px;
  line-height: 1.5;
  color: #8b96b3;
  margin: 0;
}

.tech-head-ico {
  flex: 0 0 auto;
  width: 55px;
}
.tech-head-ico img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tech-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tech-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: #000b28;
  border: 1px solid #05173d;
  border-radius: 14px;
}

.tech-ico {
  flex: 0 0 auto;
  width: 55px;
  margin-top: 2px;
}
.tech-ico img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(59, 123, 255, 0.75)) drop-shadow(0 0 14px rgba(59, 123, 255, 0.45));
}

.tech-item-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tech-item-copy strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #f3f6fc;
}
.tech-item-copy span {
  font-size: 12px;
  line-height: 1.5;
  color: #8b96b3;
}

@media (max-width: 576px) {
  .tech-card {
    padding: 22px 20px;
  }
}
.tech-strip {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  background: linear-gradient(165deg, rgba(16, 28, 56, 0.8), rgba(6, 10, 22, 0.95));
  border: 1px solid rgba(94, 158, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(94, 158, 255, 0.06) inset, 0 20px 45px rgba(0, 0, 0, 0.4);
}
@media (min-width: 992px) {
  .tech-strip {
    flex-direction: row;
  }
}

.tech-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tech-strip-item:last-child {
  border-bottom: none;
}
@media (min-width: 992px) {
  .tech-strip-item {
    flex: 1;
    padding: 22px 24px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .tech-strip-item:last-child {
    border-right: none;
  }
}

.tech-strip-ico {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
}
.tech-strip-ico img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(59, 123, 255, 0.75)) drop-shadow(0 0 14px rgba(59, 123, 255, 0.45));
}

.tech-strip-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.tech-strip-copy strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #f3f6fc;
}
.tech-strip-copy span {
  font-size: 12px;
  line-height: 1.45;
  color: #8b96b3;
}

.cta-banner-section {
  padding-bottom: 60px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  padding: 90px 40px;
  text-align: center;
  background: radial-gradient(60% 90% at 6% 20%, rgba(59, 123, 255, 0.22), transparent 60%), radial-gradient(60% 90% at 94% 85%, rgba(242, 184, 75, 0.16), transparent 60%), linear-gradient(180deg, #0a0f24 0%, #05070f 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 40px 90px rgba(0, 0, 0, 0.55);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 123, 255, 0.55), rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.08) 70%, rgba(242, 184, 75, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-banner-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  height: 100%;
  width: 40%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.8;
}

.cta-banner-bg-left {
  left: 0;
  -webkit-mask-image: linear-gradient(to right, #000 20%, transparent 92%);
  mask-image: linear-gradient(to right, #000 20%, transparent 92%);
}

.cta-banner-bg-right {
  right: 0;
  -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 92%);
  mask-image: linear-gradient(to left, #000 30%, transparent 92%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 20px;
}
.cta-banner-eyebrow i {
  display: block;
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--gold-1);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(242, 184, 75, 0.8);
}

.cta-banner-content h2 {
  font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
  color: #f3f6fc;
}

.cta-banner-content p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 36px;
}

.cta-banner-ctas {
  justify-content: center;
  margin-bottom: 0;
}
.cta-banner-ctas .btn-ico {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.cta-banner-ctas .btn-primary {
  background: linear-gradient(180deg, #2c56ad 0%, #163374 55%, #0d2154 100%);
  border: 1px solid rgba(210, 232, 255, 0.85);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.75), inset 0 -16px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 123, 255, 0.25), 0 0 1px rgba(65, 133, 255, 0.75), 0 0 6px rgba(65, 133, 255, 0.5), 0 0 60px rgba(65, 133, 255, 0.25);
}
.cta-banner-ctas .btn-primary:hover {
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.85), inset 0 -16px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 123, 255, 0.35), 0 0 30px rgba(65, 133, 255, 0.9), 0 0 65px rgba(65, 133, 255, 0.6), 0 0 100px rgba(65, 133, 255, 0.3);
}
.cta-banner-ctas .btn-primary .btn-ico {
  filter: drop-shadow(0 0 6px rgba(210, 232, 255, 0.9));
}
.cta-banner-ctas .btn-outline-gold {
  color: #fff;
  background: #040B20;
  box-shadow: inset 0 1.5px 0 rgba(255, 224, 130, 0.4), 0 0 0 1px rgba(242, 184, 75, 0.15), 0 0 1px rgba(242, 184, 75, 0.6), 0 0 20px rgba(242, 184, 75, 0.32);
}
.cta-banner-ctas .btn-outline-gold:hover {
  box-shadow: inset 0 1.5px 0 rgba(255, 224, 130, 0.55), 0 0 0 1px rgba(242, 184, 75, 0.25), 0 0 28px rgba(242, 184, 75, 0.8), 0 0 60px rgba(242, 184, 75, 0.42);
}
.cta-banner-ctas .btn-outline-gold .btn-ico {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

@media (max-width: 767px) {
  .cta-banner {
    padding: 60px 22px;
    border-radius: 20px;
  }
  .cta-banner-bg {
    width: 62%;
    opacity: 0.45;
  }
}
@media (max-width: 480px) {
  .cta-banner-bg {
    display: none;
  }
}
.highlights-section {
  padding-bottom: 20px;
}

.highlights-strip {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(16, 28, 56, 0.8), rgba(6, 10, 22, 0.95));
  border: 1px solid rgba(94, 158, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(94, 158, 255, 0.06) inset, 0 20px 45px rgba(0, 0, 0, 0.4);
}
@media (min-width: 992px) {
  .highlights-strip {
    flex-direction: row;
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.highlight-item:last-child {
  border-bottom: none;
}
@media (min-width: 992px) {
  .highlight-item {
    flex: 1;
    min-width: 0;
    padding: 24px 20px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .highlight-item:last-child {
    border-right: none;
  }
}

.highlight-badge {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.highlight-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.highlight-value {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--blue-2);
}

.highlight-item.gold .highlight-value {
  color: var(--gold-2);
}

.highlight-title {
  font-size: 15px;
  font-weight: 400;
  color: #f3f6fc;
  margin-top: -1px;
}

.highlight-cap {
  font-size: 12px;
  line-height: 1.45;
  color: #8b96b3;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .highlights-strip {
    border-radius: 16px;
  }
  .highlight-item {
    padding: 18px 22px;
  }
}
.momo-footer {
  padding: 60px 0 0;
}

.momo-footer .foot-brand-img {
  height: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 44px;
}

.footer-brand-col .foot-brand {
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dim, #8b96b3);
  margin: 0 0 22px;
  max-width: 240px;
}

.footer-col {
  min-width: 0;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-hi, #f3f6fc);
  margin: 0 0 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--text-dim, #8b96b3);
  margin-bottom: 13px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--blue-2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
  color: #6b7794;
}

.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal a {
  color: #6b7794;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--blue-2);
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand-col {
    grid-column: span 3;
  }
}
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
  .footer-brand-col {
    grid-column: span 3;
  }
  .footer-tagline {
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
.momo-header {
  background: transparent;
  backdrop-filter: none;
}
.momo-header.scrolled {
  background: linear-gradient(180deg, rgba(4, 7, 15, 0.92), rgba(4, 7, 15, 0.75));
  backdrop-filter: blur(14px);
}

.brand-mark-img {
  height: 56px;
}

.brand-name-suffix {
  font-size: 15px;
  letter-spacing: 5px;
}

.btn-ghost {
  position: relative;
  color: #fff;
  font-weight: 700;
  background: none;
  border-color: rgba(147, 197, 253, 0.5);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.5), inset 0 -8px 14px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(59, 123, 255, 0.18), 0 0 18px rgba(65, 133, 255, 0.6), 0 0 38px rgba(65, 133, 255, 0.3);
}
.btn-ghost svg,
.btn-ghost .btn-label {
  position: relative;
  z-index: 2;
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle, 0deg), transparent 0deg, transparent 250deg, rgba(59, 123, 255, 0.35) 278deg, rgba(126, 200, 255, 0.9) 300deg, #eaf6ff 316deg, #ffffff 320deg, #eaf6ff 324deg, rgba(126, 200, 255, 0.9) 340deg, rgba(59, 123, 255, 0.35) 355deg, transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: borderChase 4s linear infinite;
}
.btn-ghost:hover {
  border-color: rgba(147, 197, 253, 0.7);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.6), inset 0 -8px 14px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(59, 123, 255, 0.28), 0 0 24px rgba(65, 133, 255, 0.8), 0 0 50px rgba(65, 133, 255, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-actions .btn-ghost {
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(126, 200, 255, 0.25);
  background: rgba(126, 200, 255, 0.05);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.6px;
  border-radius: 2px;
  background: var(--text-hi, #f3f6fc);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

@media (max-width: 767px) {
  .momo-header {
    position: relative;
  }
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    background: #060911;
    border-bottom: 1px solid rgba(126, 200, 255, 0.15);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  }
  .main-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
  }
  .main-nav a:last-child {
    border-bottom: none;
  }
  .momo-header.nav-open .main-nav {
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
    padding: 10px 22px 18px;
  }
  .momo-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6.6px) rotate(45deg);
  }
  .momo-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .momo-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6.6px) rotate(-45deg);
  }
}
@media (max-width: 420px) {
  .brand-name-suffix {
    display: none;
  }
  .brand-mark-img {
    height: 32px;
  }
  .header-actions .btn-ghost {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }
  .header-actions .btn-ghost .btn-label {
    display: none;
  }
  .header-actions .btn-ghost svg {
    width: 18px;
    height: 18px;
  }
}
.sd-footer {
  position: relative;
  padding-bottom: 48px;
  overflow: hidden;
}

.sd-footer-hero {
  position: relative;
  padding: 96px 0 64px;
  text-align: center;
  overflow: hidden;
}

.sd-footer-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}
.sd-footer-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 15, 0.15) 0%, rgba(4, 7, 15, 0.55) 78%, var(--bg-deep) 100%);
}

.sd-footer-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.sd-footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 22px;
}
.sd-footer-eyebrow i {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-1));
}
.sd-footer-eyebrow i:last-child {
  background: linear-gradient(90deg, var(--gold-1), transparent);
}

.sd-footer-hero-content h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 22px;
  color: #f3f6fc;
}

.sd-footer-hero-content > p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 18px;
}

.sd-footer-tagline {
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 36px;
}
.sd-footer-tagline span {
  margin: 0 4px;
}
.sd-footer-tagline .blue {
  color: var(--blue-2);
}
.sd-footer-tagline .white {
  color: var(--text-hi);
}
.sd-footer-tagline .gold {
  color: var(--gold-2);
}

.sd-footer-ctas {
  justify-content: center;
  margin-bottom: 44px;
}
.sd-footer-ctas .btn-primary {
  background: linear-gradient(180deg, #2c56ad 0%, #163374 55%, #0d2154 100%);
  border: 1px solid rgba(210, 232, 255, 0.85);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.75), inset 0 -16px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 123, 255, 0.25), 0 0 1px rgba(65, 133, 255, 0.75), 0 0 6px rgba(65, 133, 255, 0.5), 0 0 60px rgba(65, 133, 255, 0.25);
}
.sd-footer-ctas .btn-primary:hover {
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.85), inset 0 -16px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 123, 255, 0.35), 0 0 30px rgba(65, 133, 255, 0.9), 0 0 65px rgba(65, 133, 255, 0.6), 0 0 100px rgba(65, 133, 255, 0.3);
}
.sd-footer-ctas .btn-outline-gold {
  color: var(--gold-2);
  background: #040B20;
  box-shadow: inset 0 1.5px 0 rgba(255, 224, 130, 0.4), 0 0 0 1px rgba(242, 184, 75, 0.15), 0 0 1px rgba(242, 184, 75, 0.6), 0 0 20px rgba(242, 184, 75, 0.32);
}
.sd-footer-ctas .btn-outline-gold:hover {
  box-shadow: inset 0 1.5px 0 rgba(255, 224, 130, 0.55), 0 0 0 1px rgba(242, 184, 75, 0.25), 0 0 28px rgba(242, 184, 75, 0.8), 0 0 60px rgba(242, 184, 75, 0.42);
}

.sd-footer-logo {
  width: 100%;
  max-width: 190px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(59, 123, 255, 0.25));
}

/* ---------- feature row (5-up, single strip) ---------- */
.sd-features-row {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(16, 28, 56, 0.6), rgba(6, 10, 22, 0.75));
  border: 1px solid rgba(120, 150, 220, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  margin-bottom: 56px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .sd-features-row {
    flex-direction: row;
  }
}
.sd-features-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle, 0deg), transparent 0deg, transparent 255deg, rgba(59, 123, 255, 0.4) 280deg, rgba(126, 200, 255, 0.95) 296deg, #ffffff 305deg, rgba(255, 217, 138, 0.95) 314deg, rgba(242, 184, 75, 0.4) 330deg, transparent 348deg, transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: borderChase 7s linear infinite;
}

.sd-feature-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sd-feature-item:last-child {
  border-bottom: none;
}
@media (min-width: 992px) {
  .sd-feature-item {
    flex: 1;
    min-width: 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sd-feature-item:last-child {
    border-right: none;
  }
}

.sd-feature-ico {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
}
.sd-feature-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sd-feature-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.sd-feature-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--text-hi);
  white-space: pre-wrap;
}

.sd-feature-item p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0;
}

/* ---------- stat strip (6-up) ---------- */
.sd-stats-strip {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(16, 28, 56, 0.8), rgba(6, 10, 22, 0.95));
  border: 1px solid rgba(94, 158, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(94, 158, 255, 0.06) inset, 0 20px 45px rgba(0, 0, 0, 0.4);
  margin-bottom: 56px;
}
@media (min-width: 992px) {
  .sd-stats-strip {
    flex-direction: row;
  }
}

.sd-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sd-stat-item:last-child {
  border-bottom: none;
}
@media (min-width: 992px) {
  .sd-stat-item {
    flex: 1;
    min-width: 0;
    padding: 24px 14px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sd-stat-item:last-child {
    border-right: none;
  }
}

.sd-stat-ico {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
}
.sd-stat-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sd-stat-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.sd-stat-copy strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--text-hi);
}
.sd-stat-copy span {
  font-size: 11.5px;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ---------- legal bottom bar ---------- */
.sd-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sd-footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 460px;
  min-width: 0;
}

.sd-footer-brand-img {
  flex: 0 0 auto;
  width: 54px;
  height: auto;
}

.sd-footer-brand p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}

.sd-footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 0 0 auto;
}

.sd-footer-meta-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-mid);
  white-space: nowrap;
  transition: color 0.2s;
}
.sd-footer-meta-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--blue-2);
}
.sd-footer-meta-link:hover {
  color: var(--text-hi);
}

.sd-footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sd-footer-legal a {
  color: var(--text-mid);
  transition: color 0.2s;
}
.sd-footer-legal a:hover {
  color: var(--blue-2);
}
.sd-footer-legal i {
  font-style: normal;
  color: var(--text-dim);
}

@media (max-width: 767px) {
  .sd-footer-hero {
    padding: 64px 0 44px;
  }
  .sd-footer-tagline span {
    display: block;
    margin: 4px 0;
  }
  .sd-features-row {
    border-radius: 16px;
    margin-bottom: 40px;
  }
  .sd-feature-item {
    padding: 20px 22px;
  }
  .sd-feature-item h4 {
    white-space: normal;
  }
  .sd-stats-strip {
    border-radius: 16px;
    margin-bottom: 40px;
  }
  .sd-stat-item {
    justify-content: flex-start;
  }
  .sd-footer-bottom {
    flex-direction: column;
    gap: 24px;
  }
  .sd-footer-brand {
    flex-basis: auto;
  }
  .sd-footer-meta {
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .sd-footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.products-hero {
  padding: 90px 0 40px;
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-2);
  border: 1px solid rgba(88, 152, 255, 0.4);
  background: rgba(59, 123, 255, 0.08);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.ph-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 8px var(--blue-2);
}

.products-hero .hero-copy h1 {
  font-size: clamp(32px, 3.6vw, 46px);
}

.ph-feature-row {
  display: flex;
  gap: 34px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.ph-feature-item {
  flex: 1 1 140px;
  min-width: 140px;
}

.ph-feature-ico {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 34px;
  margin-bottom: 10px;
}
.ph-feature-ico img {
  height: 100%;
  width: auto;
}

.ph-feature-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-hi);
  margin: 0 0 5px;
}

.ph-feature-item p {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0;
}

.ph-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 620px;
  margin: 0 0 0 auto;
}

/* ---------- product detail section (MOMO Chat, MOMO Signal, MOMO Radar) ---------- */
.pd-section {
  position: relative;
  z-index: 1;
  padding: 40px 0 100px;
  background: #000936;
}

.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--gold-2);
}
.pd-badge i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 15px;
  border-radius: 20px;
  border: 2px solid var(--gold-1);
  background: rgba(6, 10, 24, 0.55);
  box-shadow: 0 0 14px rgba(242, 184, 75, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--gold-2);
  font-style: normal;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
}

.pd-copy h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.11;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
  color: var(--text-hi);
}

.pd-copy > p.lead {
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 10px;
}

.pd-eyebrow {
  text-align: center;
  margin: 0 0 10px;
}
.pd-eyebrow span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  white-space: nowrap;
}

.pd-eyebrow-divider.hero-divider {
  max-width: 220px !important;
  height: 16px !important;
  margin: 0 auto 14px !important;
}
.pd-eyebrow-divider.hero-divider .spark {
  background-image: linear-gradient(180deg, transparent, #fff8e0 42%, #ffd98a 50%, #fff8e0 58%, transparent), linear-gradient(90deg, transparent, #fff8e0 42%, #ffd98a 50%, #fff8e0 58%, transparent), radial-gradient(circle 3px at 50% 50%, #fffdf5 0%, #ffd98a 55%, transparent 100%), linear-gradient(90deg, transparent 0%, rgba(242, 184, 75, 0.8) 18%, #f2b84b 50%, rgba(242, 184, 75, 0.8) 82%, transparent 100%) !important;
  background-size: 2px 100%, 50px 2px, 100% 100%, 100% 2px !important;
  background-position: 50% 50%, 50% 50%, 0 0, 0 50% !important;
}

.pd-capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.pd-cap-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(88, 152, 255, 0.45);
  background: linear-gradient(135deg, rgba(30, 60, 140, 0.5), rgba(8, 14, 34, 0.85));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s, transform 0.3s;
}

.pd-cap-card:hover {
  border-color: rgba(126, 200, 255, 0.75);
  transform: translateY(-2px);
}

.pd-cap-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--gold-2);
  filter: drop-shadow(0 0 6px rgba(242, 184, 75, 0.5));
}
.pd-cap-ico svg, .pd-cap-ico img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.pd-cap-card h4 {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-hi);
  margin: 0 0 3px;
  line-height: 1.25;
}

.pd-cap-card p {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-dim);
  margin: 0;
}

.pd-tech-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  padding: 7px 10px 10px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(126, 200, 255, 0.55);
  background: linear-gradient(180deg, rgba(20, 40, 90, 0.55), rgba(6, 12, 28, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(59, 123, 255, 0.12), 0 0 30px rgba(59, 123, 255, 0.25);
}

.pd-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1 1 0;
}

.pd-tech-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--blue-2);
  filter: drop-shadow(0 0 6px rgba(59, 123, 255, 0.65));
}
.pd-tech-ico svg, .pd-tech-ico img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.pd-tech-item span {
  font-size: 9.5px;
  color: var(--text-mid);
  line-height: 1.3;
}

.pd-tech-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 12px 16px;
  margin: 0 0 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(126, 200, 255, 0.55);
  background: radial-gradient(480px 140px at 10% 0%, rgba(255, 197, 92, 0.16), transparent 60%), radial-gradient(480px 140px at 90% 0%, rgba(59, 123, 255, 0.2), transparent 60%), linear-gradient(115deg, #061C62, #010E47);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(59, 123, 255, 0.12), 0 0 30px rgba(59, 123, 255, 0.25);
}

.pd-tech-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.pd-tech-strip-item:first-child {
  padding-left: 0;
  border-left: none;
}

.pd-tech-strip-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--blue-2);
  filter: drop-shadow(0 0 6px rgba(59, 123, 255, 0.65));
}
.pd-tech-strip-ico svg, .pd-tech-strip-ico img {
  -webkit-filter: drop-shadow(0 0 6px rgba(59, 123, 255, 0.65));
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.pd-tech-strip-item h4 {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-hi);
  margin: 0 0 2px;
  line-height: 1.2;
}

.pd-tech-strip-item p {
  font-size: 9.5px;
  line-height: 1.3;
  color: var(--text-dim);
  margin: 0;
}

/* ---- visual column ---- */
.pd-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pd-visual-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.pd-frame-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4/3.1;
  border-radius: 22px;
}
.pd-frame-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}

.right_cards {
  display: flex;
  gap: 15px;
  flex-direction: column;
  position: absolute;
  right: 20px;
  top: 25%;
}

.pd-callout {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  width: 210px;
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-blue);
  background: linear-gradient(160deg, rgba(12, 22, 48, 0.96), rgba(6, 10, 22, 0.98));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  z-index: 4;
}

.pd-callout.gold {
  border-color: rgba(255, 197, 92, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 197, 92, 0.15), 0 16px 34px rgba(0, 0, 0, 0.4), 0 0 20px rgba(242, 184, 75, 0.2);
}

.pd-callout-1 {
  top: 4%;
}

.pd-callout-2 {
  top: 40%;
}

.pd-callout-3 {
  top: 76%;
}

.pd-callout-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  border-radius: 9px;
  background: none;
  color: var(--blue-2);
}
.pd-callout-ico svg {
  width: 17px;
  height: 17px;
}
.pd-callout-ico img {
  width: 85%;
  object-fit: contain;
}

.pd-callout.gold .pd-callout-ico {
  color: var(--gold-2);
}

.pd-callout h5 {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-hi);
  margin: 0 0 4px;
}

.pd-callout p {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0;
}

/* ---- bottom banner ---- */
.pd-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 22px 34px;
  border: 1px solid rgba(255, 197, 92, 0.35);
  background: radial-gradient(480px 140px at 10% 0%, rgba(255, 197, 92, 0.16), transparent 60%), radial-gradient(480px 140px at 90% 0%, rgba(59, 123, 255, 0.2), transparent 60%), linear-gradient(115deg, #061C62, #010E47);
  box-shadow: 0 0 0 1px rgba(59, 123, 255, 0.12), 0 20px 50px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.pd-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle), transparent 0deg, transparent 296deg, rgba(255, 197, 92, 0.95) 322deg, #fffaf0 344deg, rgba(255, 197, 92, 0.95) 358deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 4px rgba(255, 236, 179, 0.9)) drop-shadow(0 0 10px rgba(242, 184, 75, 0.7));
  animation: borderTravel 4s linear infinite;
  pointer-events: none;
}

.pd-banner-ico {
  display: flex;
  align-items: center;
  color: var(--gold-2);
  filter: drop-shadow(0 0 8px rgba(242, 184, 75, 0.6));
}
.pd-banner-ico img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  animation: pdIconFloat 3.2s ease-in-out infinite;
}

.pd-banner > p {
  flex: 1 1 260px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-hi);
  margin: 0;
}

.pd-banner-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.pd-banner-stats > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.pd-banner-stats > div:first-child {
  padding-left: 0;
  border-left: none;
}

.pd-banner-stat-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: none;
  color: var(--gold-2);
  transition: transform 0.25s ease, background 0.25s ease;
  -webkit-transition: transform 0.25s ease, background 0.25s ease;
  -moz-transition: transform 0.25s ease, background 0.25s ease;
  -ms-transition: transform 0.25s ease, background 0.25s ease;
  -o-transition: transform 0.25s ease, background 0.25s ease;
}
.pd-banner-stat-ico img {
  width: 25px;
  object-fit: contain;
}
.pd-banner-stat-ico svg {
  width: 22px;
  height: 22px;
}

.pd-banner-stat-ico-lg {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 0 8px rgba(242, 184, 75, 0.6));
}
.pd-banner-stat-ico-lg svg {
  width: 38px;
  height: 38px;
  animation: pdIconFloat 3.2s ease-in-out infinite;
}

.pd-banner-stats > div:hover .pd-banner-stat-ico {
  transform: scale(1.12);
  background: rgba(242, 184, 75, 0.22);
}

.pd-banner-stats b {
  display: block;
  font-size: 12.5px;
  color: var(--text-hi);
  font-weight: 400;
}

.pd-banner-stats span {
  font-size: 11px;
  color: var(--text-dim);
}

.pd-banner-wide {
  padding: 18px 34px;
}

.pd-banner-stats-wide {
  flex: 1 1 100%;
  justify-content: space-between;
  gap: 0;
}
.pd-banner-stats-wide > div {
  flex: 1 1 0;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.pd-banner-stats-wide > div:first-child {
  padding-left: 0;
  border-left: none;
}
.pd-banner-stats-wide b {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.pd-banner-stats-wide span {
  font-size: 12px;
  line-height: 1.2;
}

@keyframes pdIconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.pd-cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 90px 0 64px;
  text-align: center;
  background: #05070f;
}

.pd-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pd-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 15, 0.05) 0%, rgba(4, 7, 15, 0.35) 72%, rgba(2, 4, 10, 0.6) 100%);
}

.pd-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.pd-cta-divider {
  margin: 0 auto 18px;
}
.pd-cta-divider .spark {
  background-image: linear-gradient(180deg, transparent, #fff8e0 42%, #ffd98a 50%, #fff8e0 58%, transparent), linear-gradient(90deg, transparent, #fff8e0 42%, #ffd98a 50%, #fff8e0 58%, transparent), radial-gradient(circle 4px at 50% 50%, #fffdf5 0%, #ffd98a 55%, transparent 100%), linear-gradient(90deg, transparent 0%, rgba(242, 184, 75, 0.8) 18%, #f2b84b 50%, rgba(242, 184, 75, 0.8) 82%, transparent 100%) !important;
  background-size: 2px 100%, 60px 2px, 100% 100%, 100% 2px !important;
  background-position: 50% 50%, 50% 50%, 0 0, 0 50% !important;
}

.pd-cta-eyebrow {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}

.pd-cta-content h2 {
  font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.22;
  margin: 0 0 20px;
  color: #f3f6fc;
}

.pd-cta-dot {
  color: var(--blue-2);
}

.pd-cta-content > p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 10px;
}

.pd-cta-tagline {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-hi);
  margin: 0 0 36px;
}
.pd-cta-tagline .blue {
  color: var(--blue-2);
}
.pd-cta-tagline .green {
  color: var(--green);
}
.pd-cta-tagline .gold {
  color: var(--gold-2);
}

.pd-cta-ctas {
  justify-content: center;
  margin-bottom: 28px;
}
.pd-cta-ctas .btn-primary {
  color: #241a06;
  background: linear-gradient(135deg, #fff3d6 0%, #f2c369 22%, #f2b84b 60%, #d99a34 100%);
  border-color: rgba(255, 224, 130, 0.85);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.7), 0 0 0 1px rgba(242, 184, 75, 0.3), 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(242, 184, 75, 0.35);
}
.pd-cta-ctas .btn-primary:hover {
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.85), 0 0 0 1px rgba(242, 184, 75, 0.4), 0 0 34px rgba(242, 184, 75, 0.7), 0 0 70px rgba(242, 184, 75, 0.4);
}
.pd-cta-ctas .btn-outline-blue {
  background: #040B20;
  box-shadow: inset 0 1.5px 0 rgba(180, 220, 255, 0.4), 0 0 0 1px rgba(126, 200, 255, 0.2), 0 0 1px rgba(65, 133, 255, 0.6), 0 0 20px rgba(65, 133, 255, 0.32);
}
.pd-cta-ctas .btn-outline-blue:hover {
  box-shadow: inset 0 1.5px 0 rgba(180, 220, 255, 0.55), 0 0 0 1px rgba(126, 200, 255, 0.3), 0 0 28px rgba(65, 133, 255, 0.8), 0 0 60px rgba(65, 133, 255, 0.42);
}

.pd-cta-btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.pd-cta-btn-ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transform: none !important;
}

.pd-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-hi);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 20px;
  border-radius: 999px;
}

.pd-cta-pill-ico {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.sec-pad {
  padding: 70px 0 0;
}

/*# sourceMappingURL=ann_style.css.map */
