/* Fuel2Go landing — Seya-inspired detailed marketing page */
:root {
  --f2-purple: #6D28D9;
  --f2-purple-bright: #8E33FF;
  --f2-purple-soft: #F3E8FF;
  --f2-navy: #1E1B4B;
  --f2-ink: #0F172A;
  --f2-muted: #64748B;
  --f2-line: #E2E8F0;
  --f2-bg: #FFFFFF;
  --f2-alt: #F8FAFC;
  --f2-orange: #F97316;
  --f2-teal: #0D9488;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(30, 27, 75, 0.12);
  --shadow-sm: 0 8px 24px rgba(30, 27, 75, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lp {
  margin: 0;
  font-family: var(--font);
  color: var(--f2-ink);
  background: var(--f2-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: inherit; }

.sx-wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.sx-center { text-align: center; }
.sx-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--f2-navy);
}
.sx-lead {
  font-size: 1.05rem;
  color: var(--f2-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* NAV */
.sx-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.sx-nav.is-scrolled {
  border-bottom-color: var(--f2-line);
  box-shadow: 0 4px 20px rgba(15,23,42,0.04);
}
.sx-nav-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.sx-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--f2-purple);
  flex-shrink: 0;
}
.sx-logo-ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--f2-purple), var(--f2-purple-bright));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  overflow: hidden;
}
.sx-logo-ico img {
  width: 22px;
  height: 22px;
  display: block;
}
.sx-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}
.sx-links > a,
.sx-drop-btn {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--f2-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.sx-links > a:hover,
.sx-drop-btn:hover { background: var(--f2-purple-soft); color: var(--f2-purple); }
.sx-drop { position: relative; }
.sx-drop-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 0.5rem;
  z-index: 20;
}
.sx-drop:hover .sx-drop-panel,
.sx-drop:focus-within .sx-drop-panel { display: grid; gap: 2px; }
.sx-drop-panel a {
  display: grid;
  gap: 2px;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
}
.sx-drop-panel a:hover { background: var(--f2-alt); }
.sx-drop-panel strong { font-size: 0.88rem; }
.sx-drop-panel span { font-size: 0.78rem; color: var(--f2-muted); font-weight: 500; }
.sx-nav-cta { display: flex; align-items: center; gap: 0.6rem; margin-inline-start: auto; }
.sx-btn, .sx-btn-ghost, .sx-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.sx-btn {
  background: linear-gradient(135deg, var(--f2-purple), var(--f2-purple-bright));
  color: #fff;
  box-shadow: 0 8px 20px rgba(109,40,217,0.28);
}
.sx-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(109,40,217,0.35); }
.sx-btn-lg { padding: 0.95rem 1.6rem; font-size: 0.95rem; }
.sx-btn-ghost {
  background: transparent;
  border-color: var(--f2-line);
  color: var(--f2-ink);
}
.sx-btn-ghost:hover { border-color: var(--f2-purple); color: var(--f2-purple); }
.sx-btn-outline {
  background: #fff;
  border-color: var(--f2-line);
  color: var(--f2-ink);
  width: 100%;
}
.sx-btn-outline:hover { border-color: var(--f2-purple); color: var(--f2-purple); }
.sx-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.sx-burger span {
  display: block;
  height: 2px;
  background: var(--f2-ink);
  border-radius: 2px;
}
.sx-drawer {
  position: fixed;
  inset: 68px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--f2-line);
  padding: 1rem 1.25rem 1.5rem;
  display: grid;
  gap: 0.5rem;
  z-index: 99;
  box-shadow: var(--shadow-sm);
}
.sx-drawer[hidden] { display: none !important; }
.sx-drawer a {
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
}
.sx-drawer a:hover { background: var(--f2-purple-soft); }

/* HERO */
.sx-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4.5rem;
}
.sx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.sx-orb-1 {
  width: 420px; height: 420px;
  top: -80px; right: 10%;
  background: rgba(142,51,255,0.18);
}
.sx-orb-2 {
  width: 360px; height: 360px;
  bottom: -100px; left: -40px;
  background: rgba(99,102,241,0.14);
}
.sx-hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.sx-pill {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--f2-purple-soft);
  color: var(--f2-purple);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.sx-hero-copy h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 1.1rem;
  color: var(--f2-navy);
}
.sx-hero-copy h1 span {
  background: linear-gradient(135deg, var(--f2-purple-bright), #6366F1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .sx-hero-copy h1 span { color: var(--f2-purple-bright); }
}
.sx-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--f2-purple);
  margin-bottom: 0.65rem;
}
.sx-platform {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
.sx-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.sx-platform-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 148px;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--f2-line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sx-platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #DDD6FE;
}
.sx-platform-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--f2-purple-soft);
  color: var(--f2-purple);
  flex-shrink: 0;
}
.sx-platform-ico svg {
  width: 20px;
  height: 20px;
}
.sx-platform-card h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--f2-navy);
}
.sx-platform-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--f2-muted);
  line-height: 1.45;
}
.sx-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sx-flow-step {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--f2-line);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.sx-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--f2-purple-soft);
  color: var(--f2-purple);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.sx-flow-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--f2-navy);
}
.sx-flow-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--f2-muted);
  line-height: 1.5;
}
.sx-value-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.sx-globe-shot {
  border-radius: 20px;
  padding: 4px;
  background: linear-gradient(135deg, #1E1B4B, #4F46E5, #8E33FF);
  box-shadow: var(--shadow);
}
.sx-globe-sphere {
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(56, 189, 248, 0.15), transparent 55%),
    radial-gradient(circle at 35% 30%, rgba(167, 139, 250, 0.2), transparent 50%),
    radial-gradient(ellipse 85% 70% at 50% 50%, #1E293B 0%, #0F172A 55%, #020617 100%);
}
.sx-globe-sphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.55), transparent),
    radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,.45), transparent),
    radial-gradient(1px 1px at 65% 80%, rgba(255,255,255,.35), transparent),
    radial-gradient(1px 1px at 25% 70%, rgba(255,255,255,.4), transparent);
  pointer-events: none;
}
.sx-globe-sphere::after {
  content: "";
  position: absolute;
  inset: 12% 18% 18% 14%;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background:
    radial-gradient(circle at 40% 35%, rgba(52, 211, 153, 0.12), transparent 45%),
    radial-gradient(circle at 58% 48%, rgba(99, 102, 241, 0.18), transparent 50%);
  animation: sx-globe-spin 24s linear infinite;
}
@keyframes sx-globe-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.sx-globe-pin {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--f2-orange);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.75);
}
.sx-globe-pin-dim {
  background: #FB923C;
  opacity: 0.55;
  box-shadow: 0 0 6px rgba(249, 115, 22, 0.45);
}
.sx-globe-meta {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border-radius: 0 0 16px 16px;
}
.sx-globe-meta strong {
  font-size: 0.85rem;
  color: var(--f2-navy);
}
.sx-globe-meta span {
  font-size: 0.78rem;
  color: var(--f2-muted);
  font-weight: 600;
}
.sx-intel-mock {
  padding: 0;
  overflow: hidden;
}
.sx-intel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(90deg, #1E1B4B, #4338CA);
  color: #fff;
}
.sx-intel-head strong { font-size: 0.88rem; }
.sx-intel-live {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.2);
  color: #6EE7B7;
}
.sx-intel-scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem;
}
.sx-intel-score {
  padding: 0.65rem 0.5rem;
  border-radius: 12px;
  background: var(--f2-alt);
  border: 1px solid var(--f2-line);
  text-align: center;
}
.sx-intel-score.you {
  background: var(--f2-purple-soft);
  border-color: #DDD6FE;
}
.sx-intel-score b {
  display: block;
  font-size: 0.68rem;
  color: var(--f2-muted);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sx-intel-score strong {
  display: block;
  font-size: 1.35rem;
  color: var(--f2-navy);
  line-height: 1;
}
.sx-intel-score span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--f2-purple);
}
.sx-intel-insight {
  margin: 0 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: var(--f2-purple-soft);
  color: var(--f2-purple);
  font-size: 0.78rem;
  font-weight: 700;
}
.sx-intel-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem;
}
.sx-intel-actions span {
  flex: 1;
  text-align: center;
  padding: 0.55rem 0.5rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid var(--f2-line);
  background: #fff;
  color: var(--f2-navy);
}
.sx-intel-actions span.is-primary {
  background: linear-gradient(135deg, var(--f2-purple), var(--f2-purple-bright));
  color: #fff;
  border-color: transparent;
}
.sx-hero-copy > p {
  font-size: 1.05rem;
  color: var(--f2-muted);
  max-width: 520px;
  margin: 0 0 1.5rem;
}
.sx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.sx-link-play {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--f2-navy);
}
.sx-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--f2-line);
  display: grid;
  place-items: center;
  color: var(--f2-purple);
  box-shadow: var(--shadow-sm);
}
.sx-stats {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.sx-stats div { display: grid; gap: 0.15rem; }
.sx-stats strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--f2-navy);
}
.sx-stats span { font-size: 0.8rem; color: var(--f2-muted); font-weight: 600; }

/* Hero visual / dashboard — floats sit in padding, never clip tabs */
.sx-hero-visual {
  position: relative;
  min-height: 0;
  overflow: visible;
}
.sx-dash-stage {
  position: relative;
  padding: 2rem 1.75rem 2.25rem 1.5rem;
  overflow: visible;
}
.sx-float {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 12px;
  padding: 0.5rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--f2-navy);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  pointer-events: none;
  animation: sx-float 4s ease-in-out infinite;
}
.sx-float .sx-ico {
  flex-shrink: 0;
  color: var(--f2-purple);
}
.sx-float-a {
  top: 0.35rem;
  left: 0.25rem;
  animation-delay: 0s;
}
.sx-float-b {
  top: 42%;
  right: 0.15rem;
  animation-delay: 0.8s;
}
.sx-float-c {
  bottom: 0.35rem;
  left: 0.5rem;
  animation-delay: 1.4s;
}
@keyframes sx-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.sx-dash {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 0;
}
.sx-dash-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: var(--f2-alt);
  border-bottom: 1px solid var(--f2-line);
  font-size: 0.8rem;
}
.sx-dash-bar strong { margin-left: 0.5rem; font-weight: 700; color: var(--f2-navy); }
.sx-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.sx-dot.r { background: #F87171; }
.sx-dot.y { background: #FBBF24; }
.sx-dot.g { background: #34D399; }
.sx-dash-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0 0.5rem;
  border-bottom: 1px solid var(--f2-line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sx-dash-tabs::-webkit-scrollbar { display: none; }
.sx-dash-tabs button {
  border: 0;
  background: transparent;
  padding: 0.65rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--f2-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: default;
  white-space: nowrap;
  flex-shrink: 0;
}
.sx-dash-tabs button.is-on {
  color: var(--f2-purple);
  border-bottom-color: var(--f2-purple);
}
.sx-dash-list { padding: 0.75rem; display: grid; gap: 0.5rem; }
.sx-lead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: var(--f2-alt);
  min-width: 0;
}
.sx-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.sx-av-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  background: var(--f2-line);
}
.sx-lead > div { min-width: 0; }
.sx-lead-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.1rem;
}
.sx-lead-top time {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--f2-muted);
  flex-shrink: 0;
}
.sx-lead strong {
  display: block;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sx-lead span {
  font-size: 0.72rem;
  color: var(--f2-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sx-unread {
  font-style: normal;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #EF4444;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  align-self: center;
}
.sx-badge {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sx-badge.new { background: #EDE9FE; color: var(--f2-purple); }
.sx-badge.hot { background: #FFEDD5; color: #C2410C; }
.sx-badge.ok { background: #CCFBF1; color: #0F766E; }
.sx-dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 0.85rem 1rem;
}
.sx-chip {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
}
.sx-chip.purple { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.sx-chip.orange { background: linear-gradient(135deg, #F97316, #EA580C); }
.sx-chip.teal { background: linear-gradient(135deg, #0D9488, #14B8A6); }
.sx-disco-bar-hero {
  border-radius: 0;
}
.sx-rich-leads {
  padding: 0.55rem 0.65rem 0.7rem !important;
  gap: 0.45rem !important;
  max-height: 220px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.sx-rich-lead {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.6rem 0.65rem;
  border-radius: 12px;
  background: var(--f2-alt);
  border: 1px solid var(--f2-line);
}
.sx-rich-body { min-width: 0; }
.sx-rich-sum {
  margin: 0.15rem 0 0.4rem;
  font-size: 0.72rem;
  color: var(--f2-muted);
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sx-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  max-height: 2.6rem;
  overflow: hidden;
}
.sx-meta {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--f2-line);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--f2-navy);
  white-space: nowrap;
  max-width: calc(50% - 0.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
}
.sx-disco-cards {
  display: grid;
  gap: 0.45rem;
  padding: 0.65rem;
  background: #fff;
}
.sx-disco-card {
  border: 1px solid var(--f2-line);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  background: var(--f2-alt);
}
.sx-disco-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.sx-disco-card header strong {
  font-size: 0.82rem;
  color: var(--f2-navy);
}
.sx-disco-card header .ok { color: #059669; font-size: 0.72rem; font-weight: 800; }
.sx-disco-card header .muted { color: #DC2626; font-size: 0.72rem; font-weight: 700; }
.sx-disco-card .sx-rich-sum { white-space: normal; }
.sx-ai-tag {
  display: inline-block;
  margin-inline-end: 0.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  background: var(--f2-purple-soft);
  color: var(--f2-purple);
  font-size: 0.7rem;
  font-weight: 800;
}

/* Product map mock + system screenshots */
.sx-product-shot {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sx-map-frame { display: grid; }
.sx-map-canvas {
  position: relative;
  height: 210px;
  overflow: hidden;
  background-color: #CBD8E6;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px),
    radial-gradient(ellipse at 30% 20%, rgba(167, 139, 250, 0.3), transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(56, 189, 248, 0.25), transparent 50%),
    linear-gradient(145deg, #E2EAF3 0%, #CBD8E6 45%, #B7C8DA 100%);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
}
.sx-map-canvas::before {
  content: "";
  position: absolute;
  inset: 18% 8% 22% 12%;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  background: rgba(148, 163, 184, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.25);
  pointer-events: none;
}
.sx-map-lg {
  height: 300px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--f2-line);
}
.sx-route-shot {
  border-radius: 20px;
  padding: 4px;
  background: linear-gradient(135deg, #93C5FD, #C4B5FD, #6EE7B7);
}
.sx-route-shot .sx-map-lg {
  border: 0;
  border-radius: 16px;
}
.sx-route-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.sx-pin {
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  background: linear-gradient(145deg, #FB923C, #EA580C);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.45), 0 0 0 3px rgba(255,255,255,0.85);
  line-height: 1;
}
.sx-pin-cluster {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  font-size: 0.9rem;
  background: linear-gradient(145deg, #F97316, #C2410C);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.5), 0 0 0 4px rgba(255,255,255,0.9);
}
.sx-pin-dot {
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  background: #FB923C;
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.5), 0 0 0 2px #fff;
  font-size: 0;
}
.sx-pin-star {
  background: linear-gradient(145deg, #FDBA74, #F97316);
  font-size: 0.75rem;
}
.sx-map-info {
  position: absolute;
  z-index: 3;
  top: 12px;
  inset-inline-start: 12px;
  max-width: calc(100% - 100px);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226,232,240,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--f2-navy);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sx-map-exports {
  position: absolute;
  z-index: 3;
  top: 12px;
  inset-inline-end: 12px;
  display: flex;
  gap: 0.35rem;
}
.sx-map-exports span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--f2-line);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--f2-navy);
  box-shadow: var(--shadow-sm);
}
.sx-map-leads {
  padding: 0.65rem 0.75rem;
  display: grid;
  gap: 0.45rem;
  background: #fff;
  border-top: 1px solid var(--f2-line);
}
.sx-map-leads .sx-av { width: 40px; height: 40px; }
.sx-shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--f2-line);
  box-shadow: var(--shadow);
  background: #fff;
}
.sx-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  max-height: 360px;
}
.sx-shot figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--f2-muted);
  background: var(--f2-alt);
  border-top: 1px solid var(--f2-line);
}
.sx-grad {
  background: linear-gradient(90deg, #6366F1, #A855F7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sx-why-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--f2-purple-soft);
  color: var(--f2-purple);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}

/* SECTIONS */
.sx-section { padding: 4.5rem 0; }
.sx-section.sx-alt { background: var(--f2-alt); }
.sx-channel-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.sx-channel-row span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--f2-line);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--f2-navy);
}
.sx-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
  margin-top: 0.5rem;
}
.sx-value-grid article {
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.sx-value-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--f2-navy);
}
.sx-value-grid p { margin: 0; color: var(--f2-muted); font-size: 0.92rem; }

/* Feature rows */
.sx-feature {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.sx-feature.reverse { direction: rtl; }
.sx-feature.reverse > * { direction: ltr; }
.sx-num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--f2-purple);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.sx-feature-copy h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--f2-navy);
}
.sx-feature-copy > p {
  color: var(--f2-muted);
  margin: 0 0 1rem;
}
.sx-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.sx-checks li {
  position: relative;
  padding-inline-start: 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--f2-ink);
}
.sx-checks li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--f2-purple);
  font-weight: 800;
}

/* Mockups */
.sx-mock {
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.sx-mock.search { display: grid; gap: 0.65rem; }
.sx-mock-search {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--f2-alt);
  border: 1px solid var(--f2-line);
  font-weight: 600;
  font-size: 0.9rem;
}
.sx-mock-hit { font-size: 0.8rem; color: var(--f2-muted); }
.sx-mock-hit b { color: var(--f2-purple); }
.sx-mock-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: var(--f2-alt);
  font-size: 0.85rem;
  font-weight: 600;
}
.sx-mock-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--f2-purple);
}
.sx-mock.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 1.5rem 1rem;
}
.sx-pipe-col {
  background: var(--f2-alt);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  text-align: center;
  border: 1px solid var(--f2-line);
}
.sx-pipe-col.mid { background: var(--f2-purple-soft); border-color: #DDD6FE; }
.sx-pipe-col.ok { background: #CCFBF1; border-color: #99F6E4; }
.sx-pipe-col b { display: block; font-size: 0.75rem; margin-bottom: 0.4rem; }
.sx-pipe-col i {
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--f2-navy);
}
.sx-mock.chat { display: grid; gap: 0.55rem; }
.sx-bubble {
  max-width: 88%;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 500;
}
.sx-bubble.them {
  background: var(--f2-alt);
  border: 1px solid var(--f2-line);
  justify-self: start;
}
.sx-bubble.me {
  background: linear-gradient(135deg, var(--f2-purple), var(--f2-purple-bright));
  color: #fff;
  justify-self: end;
}
.sx-bubble.me.ai {
  background: #fff;
  color: var(--f2-navy);
  border: 1px dashed var(--f2-purple);
}
.sx-mock.reviews { display: grid; gap: 0.55rem; }
.sx-rv {
  padding: 0.75rem;
  border-radius: 12px;
  background: var(--f2-alt);
  font-size: 0.85rem;
  font-weight: 600;
}
.sx-rv.ai {
  background: var(--f2-purple-soft);
  color: var(--f2-purple);
}
.sx-mock.route { display: grid; justify-items: start; gap: 0; padding: 1.5rem; }
.sx-stop {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.sx-stop i {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--f2-purple);
  color: #fff;
  font-style: normal;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
}
.sx-line {
  width: 2px;
  height: 22px;
  background: var(--f2-line);
  margin-left: 13px;
}
.sx-mock.cal { display: grid; gap: 0.55rem; }
.sx-cal-chip {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--f2-purple);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.sx-cal-chip b { font-size: 1.25rem; line-height: 1; }
.sx-cal-ev {
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: var(--f2-alt);
  font-size: 0.85rem;
  font-weight: 600;
}
.sx-mock.api {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--f2-navy);
  color: #E9D5FF;
  display: grid;
  gap: 0.45rem;
}
.sx-mock.api code {
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Why */
.sx-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.sx-why-grid article {
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sx-why-grid h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.sx-why-grid p { margin: 0 0 1rem; color: var(--f2-muted); font-size: 0.92rem; }
.sx-why-stat {
  padding-top: 0.85rem;
  border-top: 1px solid var(--f2-line);
  font-size: 0.85rem;
  color: var(--f2-muted);
}
.sx-why-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--f2-purple);
  margin-bottom: 0.15rem;
}

/* Cards */
.sx-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sx-card {
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.sx-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.sx-card > p { margin: 0 0 1rem; color: var(--f2-muted); font-size: 0.92rem; }

/* Use-case cards with photos (Seya-style) */
.sx-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sx-usecase {
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.sx-usecase:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.sx-usecase-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--f2-alt);
}
.sx-usecase-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sx-usecase-media.u-fuel,
.sx-usecase-media.u-logistics,
.sx-usecase-media.u-service,
.sx-usecase-media.u-build,
.sx-usecase-media.u-fleet,
.sx-usecase-media.u-energy {
  background: linear-gradient(135deg, #6D28D9, #4F46E5);
}
.sx-usecase-ico { display: none; }
.sx-av-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  background: var(--f2-line);
}
.sx-map-leads .sx-av-img { width: 40px; height: 40px; }
.sx-quote-head .sx-av-img {
  width: 48px;
  height: 48px;
}
.sx-quote-head .sx-av-photo {
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}

/* Handcrafted discovery mock (no screenshots) */
.sx-disco {
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sx-disco-map {
  position: relative;
  height: 160px;
  background-color: #CBD8E6;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px),
    radial-gradient(ellipse at 35% 30%, rgba(167,139,250,0.28), transparent 55%),
    linear-gradient(145deg, #E2EAF3, #B7C8DA);
  background-size: 24px 24px, 24px 24px, auto, auto;
}
.sx-disco-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: linear-gradient(90deg, #5B21B6, #6D28D9);
  color: #fff;
  font-size: 0.78rem;
}
.sx-disco-bar strong { font-size: 0.85rem; }
.sx-disco-bar span { opacity: 0.85; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sx-disco-table { display: grid; }
.sx-disco-row {
  display: grid;
  grid-template-columns: 28px 1fr 52px 72px;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-bottom: 1px solid var(--f2-line);
  align-items: center;
}
.sx-disco-row.head {
  background: var(--f2-alt);
  color: var(--f2-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sx-disco-row .ok { color: #059669; }
.sx-disco-row .muted { color: #DC2626; font-size: 0.72rem; }
.sx-disco-foot {
  padding: 0.55rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--f2-muted);
  background: var(--f2-alt);
}
.sx-pipe-rich {
  align-items: stretch;
  min-height: 180px;
}
.sx-pipe-rich .sx-pipe-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0.45rem;
}
.sx-mini-card {
  display: block;
  margin-top: 0.15rem;
  padding: 0.35rem 0.4rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--f2-line);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--f2-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sx-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.sx-btn-on-dark {
  border-color: rgba(255,255,255,0.35) !important;
  color: #fff !important;
  background: transparent !important;
}
.sx-btn-on-dark:hover {
  border-color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
}
.sx-usecase-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--f2-purple);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.sx-usecase-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sx-usecase-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--f2-navy);
}
.sx-usecase-body > p {
  margin: 0 0 1rem;
  color: var(--f2-muted);
  font-size: 0.9rem;
  flex: 1;
}

.sx-quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.sx-quote-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.sx-quote-head .sx-av {
  width: 48px;
  height: 48px;
  font-size: 0.8rem;
}
.sx-quote-head strong {
  display: block;
  font-size: 0.92rem;
  color: var(--f2-navy);
}
.sx-quote-head span {
  display: block;
  font-size: 0.78rem;
  color: var(--f2-muted);
}
.sx-stars { color: #F59E0B; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.sx-quote p { margin: 0; font-size: 0.95rem; color: var(--f2-ink); }
.sx-quote footer { display: grid; gap: 0.15rem; }
.sx-quote footer strong { font-size: 0.9rem; }
.sx-quote footer span { font-size: 0.78rem; color: var(--f2-muted); }

/* Table */
.sx-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--f2-line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.sx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.sx-table th, .sx-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--f2-line);
}
.sx-table th {
  background: var(--f2-alt);
  font-weight: 800;
  color: var(--f2-navy);
}
.sx-table th.hi, .sx-table td.hi {
  background: #F5F3FF;
  color: var(--f2-purple);
  font-weight: 700;
}
.sx-table tbody tr:last-child td { border-bottom: 0; }

/* Pricing */
.sx-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.sx-price {
  position: relative;
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.sx-price.featured {
  border-color: var(--f2-purple);
  box-shadow: 0 16px 40px rgba(109,40,217,0.18);
  transform: scale(1.02);
}
.sx-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--f2-purple);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.sx-price h3 { margin: 0.25rem 0 0; font-size: 1.1rem; }
.sx-price-amt {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--f2-navy);
  letter-spacing: -0.02em;
}
.sx-price-amt span { font-size: 0.85rem; font-weight: 600; color: var(--f2-muted); }
.sx-price-note { margin: 0; font-size: 0.82rem; color: var(--f2-muted); }
.sx-price ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.4rem;
  flex: 1;
}
.sx-price ul li {
  font-size: 0.85rem;
  font-weight: 600;
  padding-inline-start: 1.2rem;
  position: relative;
}
.sx-price ul li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--f2-purple);
}

/* FAQ */
.sx-faq {
  max-width: 720px;
  display: grid;
  gap: 0.65rem;
}
.sx-faq details {
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 14px;
  padding: 0.25rem 1rem;
}
.sx-faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.9rem 0;
  list-style: none;
}
.sx-faq summary::-webkit-details-marker { display: none; }
.sx-faq summary::after {
  content: "+";
  float: right;
  color: var(--f2-purple);
  font-weight: 800;
}
.sx-faq details[open] summary::after { content: "−"; }
.sx-faq p {
  margin: 0 0 1rem;
  color: var(--f2-muted);
  font-size: 0.92rem;
}

/* Final CTA */
.sx-final {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(142,51,255,0.22), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(99,102,241,0.16), transparent 45%),
    linear-gradient(180deg, #1E1B4B 0%, #312E81 100%);
  color: #fff;
  text-align: center;
}
.sx-final h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}
.sx-final > .sx-wrap > p {
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}
.sx-final .sx-btn {
  background: #fff;
  color: var(--f2-purple);
  box-shadow: none;
}
.sx-final .sx-btn:hover { transform: translateY(-2px); }
.sx-mail { margin-top: 1.25rem !important; font-size: 0.9rem !important; }
.sx-mail a { color: #E9D5FF; text-decoration: underline; }

/* Footer */
.sx-footer {
  background: #0B1020;
  color: rgba(255,255,255,0.72);
  padding: 3rem 0 1.5rem;
}
.sx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.sx-footer .sx-logo { color: #fff; margin-bottom: 0.75rem; }
.sx-footer .sx-logo-ico {
  background: linear-gradient(135deg, var(--f2-purple), var(--f2-purple-bright));
  width: 28px; height: 28px; font-size: 0.6rem;
}
.sx-footer p { font-size: 0.88rem; max-width: 280px; margin: 0.5rem 0 0; }
.sx-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sx-footer a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  opacity: 0.8;
}
.sx-footer a:hover { opacity: 1; color: #E9D5FF; }
.sx-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 641px) {
  .sx-price-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .sx-hero-grid,
  .sx-feature,
  .sx-value-grid,
  .sx-value-grid-4,
  .sx-why-grid,
  .sx-platform-grid,
  .sx-flow-grid,
  .sx-cards-3,
  .sx-footer-grid {
    grid-template-columns: 1fr;
  }
  .sx-platform-grid { grid-template-columns: repeat(2, 1fr); }
  .sx-flow-grid { grid-template-columns: 1fr; }
  .sx-usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .sx-feature.reverse { direction: ltr; }
  .sx-price.featured { transform: none; }
  .sx-links { display: none; }
  .sx-burger { display: flex; }
  .sx-btn-ghost { display: none; }
  .sx-hero-visual { margin-top: 0.5rem; }
  .sx-dash-stage { padding: 1.75rem 1rem 2rem; }
  .sx-float-a { top: 0; left: 0; }
  .sx-float-b { right: 0; }
  .sx-float-c { left: 0.25rem; bottom: 0; }
  .sx-mock.pipeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .sx-usecase-grid { grid-template-columns: 1fr; }
  .sx-platform-grid { grid-template-columns: 1fr; }
  .sx-price-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sx-table th:first-child,
  .sx-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #fff;
    box-shadow: 2px 0 8px rgba(15, 23, 42, 0.06);
  }
  .sx-table th:first-child { background: var(--f2-alt); }
  .sx-table td.hi:first-child { background: #F5F3FF; }
}

@media (max-width: 560px) {
  .sx-nav-inner { height: 60px; }
  .sx-hero { padding: 2rem 0 3rem; }
  .sx-stats { gap: 1rem; }
  .sx-nav-cta .sx-btn { padding: 0.55rem 0.9rem; font-size: 0.75rem; }
  .sx-float-d,
  .sx-float-e,
  .sx-float-f { display: none; }
  .sx-meta { max-width: 100%; }
}

/* ===== Motion & Sliders ===== */
.sx-will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.sx-will-reveal.is-in {
  opacity: 1;
  transform: none;
}
.sx-reveal-delay { transition-delay: 0.15s; }
.sx-feature.sx-will-reveal:nth-of-type(even) { transform: translateY(28px) translateX(16px); }
.sx-feature.sx-will-reveal:nth-of-type(odd) { transform: translateY(28px) translateX(-16px); }
.sx-feature.sx-will-reveal.is-in { transform: none; }

.sx-hero-copy.sx-will-reveal { transform: translateX(-24px); }
.sx-hero-visual.sx-will-reveal { transform: translateX(24px) scale(0.98); }
.sx-hero-copy.is-in,
.sx-hero-visual.is-in { transform: none; }

.sx-orb-1 { animation: sx-orb-drift 12s ease-in-out infinite; }
.sx-orb-2 { animation: sx-orb-drift 14s ease-in-out infinite reverse; }
@keyframes sx-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.06); }
}

.sx-map-canvas .sx-pin {
  animation: sx-pin-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--pin-delay, 0s);
}
.sx-world-canvas .sx-pin {
  animation: sx-pin-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both, sx-pin-pulse 2.4s ease-in-out infinite;
  animation-delay: var(--pin-delay, 0s), calc(var(--pin-delay, 0s) + 0.8s);
}
.sx-pin-cluster {
  animation: sx-pin-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both, sx-pin-pulse 2.4s ease-in-out infinite;
  animation-delay: var(--pin-delay, 0s), 0.8s;
}
@keyframes sx-pin-pop {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes sx-pin-pulse {
  0%, 100% { box-shadow: 0 6px 16px rgba(249, 115, 22, 0.5), 0 0 0 4px rgba(255,255,255,0.9); }
  50% { box-shadow: 0 8px 22px rgba(249, 115, 22, 0.65), 0 0 0 8px rgba(251, 146, 60, 0.28); }
}

.sx-route-line path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: sx-draw-route 2.2s ease forwards 0.35s;
}
@keyframes sx-draw-route {
  to { stroke-dashoffset: 0; }
}

.sx-rich-lead {
  animation: sx-card-in 0.55s ease both;
  animation-delay: var(--card-delay, 0.2s);
}
@keyframes sx-card-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.sx-btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.sx-btn:active { transform: translateY(1px) scale(0.98); }

.sx-usecase,
.sx-quote {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sx-usecase:hover,
.sx-quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Slider */
.sx-slider {
  position: relative;
  padding: 0 2.75rem 2rem;
}
.sx-slider-viewport {
  overflow: hidden;
}
.sx-slider-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
}
.sx-slider-track:active { cursor: grabbing; }
.sx-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  margin: 0;
  height: auto;
}
.sx-slider-quotes .sx-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
}
.sx-slider-btn {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--f2-line);
  background: #fff;
  color: var(--f2-navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, background 0.15s, opacity 0.15s;
}
.sx-slider-btn:hover:not(:disabled) {
  background: var(--f2-purple-soft);
  color: var(--f2-purple);
  transform: scale(1.05);
}
.sx-slider-btn:disabled { opacity: 0.35; cursor: default; }
.sx-slider-btn.prev { left: 0; }
.sx-slider-btn.next { right: 0; }
.sx-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
}
.sx-dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #CBD5E1;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.sx-dot-btn.is-active {
  width: 28px;
  background: linear-gradient(90deg, #6366F1, #8E33FF);
}

@media (max-width: 1024px) {
  .sx-slide,
  .sx-slider-quotes .sx-slide {
    flex: 0 0 calc((100% - 1rem) / 2);
  }
}
@media (max-width: 700px) {
  .sx-slider { padding: 0 2.4rem 1.5rem; }
  .sx-slide,
  .sx-slider-quotes .sx-slide {
    flex: 0 0 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sx-will-reveal,
  .sx-orb-1,
  .sx-orb-2,
  .sx-map-canvas .sx-pin,
  .sx-pin-cluster,
  .sx-route-line path,
  .sx-rich-lead,
  .sx-slider-track,
  .sx-globe-sphere::after,
  .sx-av-map-pin,
  .sx-globe-dot,
  .sx-globe-micro-pin,
  .sx-ask-ai-hero::before,
  .sx-ask-ai-hero::after,
  .sx-ai-chip:hover .sx-ai-ico svg {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* Use-cases: open audience (no sector lock) */
.sx-audience-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  max-width: 920px;
  margin: 0 auto 1.5rem;
}
.sx-audience-tags span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--f2-line);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--f2-navy);
  transition: border-color .15s, color .15s, background .15s;
}
.sx-audience-tags span:hover {
  border-color: var(--f2-purple);
  color: var(--f2-purple);
  background: var(--f2-purple-soft);
}
.sx-audience-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.sx-audience-stats div {
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 14px;
  padding: 0.85rem 0.5rem;
  box-shadow: var(--shadow-sm);
}
.sx-audience-stats strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--f2-purple);
  margin-bottom: 0.15rem;
}
.sx-audience-stats span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--f2-muted);
}
.sx-usecase-foot {
  text-align: center;
  margin: 0.5rem auto 0;
  max-width: 640px;
  font-size: 0.95rem;
  color: var(--f2-muted);
  font-weight: 500;
  line-height: 1.5;
}
.sx-usecase-foot a {
  display: inline-block;
  margin-inline-start: 0.25rem;
  color: var(--f2-purple);
  font-weight: 800;
}
.sx-usecase-body .sx-checks {
  margin-top: 0.25rem;
}
.sx-usecase-body > p {
  min-height: 3.6em;
}
@media (max-width: 700px) {
  .sx-audience-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Localization / RTL ───────────────────────────────────────── */
.sx-lang-slot,
.sx-drawer-lang {
    display: inline-flex;
    align-items: center;
}
html[dir="rtl"] .sx-nav-inner,
html[dir="rtl"] .sx-links,
html[dir="rtl"] .sx-hero-actions {
    direction: rtl;
}
html[dir="rtl"] body.lp {
    text-align: start;
    font-family: "Plus Jakarta Sans", "Noto Naskh Arabic", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}
html[dir="rtl"] .sx-drop-panel {
    inset-inline-end: 0;
    inset-inline-start: auto;
}
html[lang="ar"] body.lp,
html[lang="ar"] body.lp button,
html[lang="ar"] body.lp input {
    font-family: "Noto Sans Arabic", "Noto Naskh Arabic", "Plus Jakarta Sans", Tahoma, Arial, sans-serif;
}
html[dir="rtl"] .sx-nav-cta {
    margin-left: 0;
    margin-inline-start: auto;
}
html[dir="rtl"] .sx-checks li {
    padding-left: 0;
    padding-inline-start: 1.4rem;
}
html[dir="rtl"] .sx-checks li::before {
    left: auto;
    inset-inline-start: 0;
}
html[dir="rtl"] .sx-table th,
html[dir="rtl"] .sx-table td,
html[dir="rtl"] .sx-feature-copy,
html[dir="rtl"] .sx-usecase-body,
html[dir="rtl"] .sx-footer-grid {
    text-align: start;
}
html[dir="rtl"] main,
html[dir="rtl"] .sx-footer {
    direction: rtl;
}

/* ===== Premium LP overhaul ===== */
.sx-trust-band {
  background: linear-gradient(180deg, #fff 0%, var(--f2-alt) 100%);
  border-block: 1px solid var(--f2-line);
  padding: 1.1rem 0;
}
.sx-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem 2rem;
}
.sx-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--f2-navy);
}
.sx-trust-item svg {
  flex-shrink: 0;
  color: var(--f2-orange);
}

.sx-section-nav {
  position: fixed;
  top: 68px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 95;
  display: none;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--f2-line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: calc(100% - 2rem);
  overflow-x: auto;
  scrollbar-width: none;
}
.sx-section-nav::-webkit-scrollbar { display: none; }
.sx-section-nav.is-visible { transform: translateX(-50%) translateY(0); }
.sx-section-nav a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--f2-muted);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.sx-section-nav a.is-active,
.sx-section-nav a:hover {
  background: var(--f2-purple-soft);
  color: var(--f2-purple);
}
@media (min-width: 1025px) {
  .sx-section-nav { display: flex; }
}

.sx-av-init {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.sx-av-init.sm { width: 40px; height: 40px; font-size: 0.68rem; }
.sx-av-init.c1 { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.sx-av-init.c2 { background: linear-gradient(135deg, #F97316, #EA580C); }
.sx-av-init.c3 { background: linear-gradient(135deg, #0D9488, #14B8A6); }
.sx-av-init.c4 { background: linear-gradient(135deg, #2563EB, #3B82F6); }
.sx-quote-head .sx-av-init { width: 48px; height: 48px; font-size: 0.78rem; }

.sx-float-d { top: 42%; right: -0.5rem; animation-delay: 0.6s; }
.sx-float-e { bottom: 18%; right: 0.5rem; animation-delay: 1s; }
.sx-float-f { top: 8%; right: 1rem; animation-delay: 1.2s; }

.sx-modules { padding-top: 2rem; }
.sx-module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .sx-module-grid { grid-template-columns: 1fr; }
}
.sx-module-card {
  border: 1px solid var(--f2-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sx-module-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.sx-module-head {
  padding: 1rem 1.1rem 0.65rem;
}
.sx-module-head h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--f2-navy);
}
.sx-module-head p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--f2-muted);
  line-height: 1.45;
}
.sx-module-mock {
  padding: 0 1rem 1rem;
}

/* Dashboard mock */
.sx-dash-mock {
  border: 1px solid var(--f2-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--f2-alt);
}
.sx-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.65rem;
}
.sx-dash-kpi {
  background: #fff;
  border: 1px solid var(--f2-line);
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
  text-align: center;
}
.sx-dash-kpi b {
  display: block;
  font-size: 1rem;
  color: var(--f2-navy);
}
.sx-dash-kpi span {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--f2-muted);
}
.sx-dash-pipe {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  padding: 0 0.65rem 0.65rem;
}
.sx-dash-pipe span {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.45rem 0.25rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--f2-line);
  color: var(--f2-navy);
}
.sx-dash-pipe span em {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--f2-purple);
}

/* AI Assistant mock */
.sx-assist-mock {
  border: 1px solid var(--f2-line);
  border-radius: 14px;
  background: #fff;
  padding: 0.75rem;
  display: grid;
  gap: 0.55rem;
}
.sx-assist-bubble {
  max-width: 92%;
  padding: 0.6rem 0.75rem;
  border-radius: 14px 14px 14px 4px;
  background: var(--f2-alt);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--f2-navy);
  line-height: 1.4;
}
.sx-assist-bubble.ai {
  border-radius: 14px 14px 4px 14px;
  background: var(--f2-purple-soft);
  color: var(--f2-purple);
  margin-inline-start: auto;
}
.sx-assist-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.sx-assist-chips span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  border: 1px solid var(--f2-line);
  background: #fff;
  color: var(--f2-navy);
}

/* Outreach Studio mock */
.sx-studio-mock {
  border: 1px solid var(--f2-line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.sx-studio-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--f2-line);
  background: var(--f2-alt);
}
.sx-studio-steps span {
  text-align: center;
  padding: 0.5rem 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--f2-muted);
  border-inline-end: 1px solid var(--f2-line);
}
.sx-studio-steps span:last-child { border-inline-end: 0; }
.sx-studio-steps span.is-on {
  background: #fff;
  color: var(--f2-purple);
}
.sx-studio-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--f2-line);
}
.sx-studio-tabs span {
  flex: 1;
  text-align: center;
  padding: 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--f2-muted);
  border-inline-end: 1px solid var(--f2-line);
}
.sx-studio-tabs span:last-child { border-inline-end: 0; }
.sx-studio-tabs span.is-on {
  color: var(--f2-purple);
  background: var(--f2-purple-soft);
}
.sx-studio-draft {
  padding: 0.65rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--f2-ink);
  line-height: 1.45;
  min-height: 4.5rem;
}

/* Export mock */
.sx-export-mock {
  border: 1px solid var(--f2-line);
  border-radius: 14px;
  background: #fff;
  padding: 0.75rem;
  display: grid;
  gap: 0.55rem;
}
.sx-export-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.sx-export-btns span {
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid var(--f2-line);
  background: var(--f2-alt);
  color: var(--f2-navy);
}
.sx-export-btns span.is-on {
  background: linear-gradient(135deg, var(--f2-purple), var(--f2-purple-bright));
  color: #fff;
  border-color: transparent;
}
.sx-export-history {
  border-top: 1px solid var(--f2-line);
  padding-top: 0.55rem;
  display: grid;
  gap: 0.35rem;
}
.sx-export-history div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: var(--f2-alt);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--f2-navy);
}
.sx-export-history div time {
  font-size: 0.65rem;
  color: var(--f2-muted);
  font-weight: 600;
}

/* Intel scrollable bars */
.sx-intel-bars {
  max-height: 132px;
  overflow-y: auto;
  padding: 0 0.85rem 0.65rem;
  display: grid;
  gap: 0.45rem;
  scrollbar-width: thin;
}
.sx-intel-hbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.65rem;
  align-items: center;
}
.sx-intel-hbar b {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--f2-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sx-intel-hbar em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--f2-purple);
}
.sx-intel-hbar-track {
  grid-column: 1 / -1;
  height: 6px;
  border-radius: 999px;
  background: var(--f2-line);
  overflow: hidden;
}
.sx-intel-hbar-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--f2-orange), #FB923C);
}
.sx-intel-bar-reveal {
  animation: sx-card-in 0.45s ease both;
  animation-delay: var(--card-delay, 0.1s);
}

.sx-logo-band {
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid var(--f2-line);
  margin-top: 1.5rem;
}
.sx-logo-band-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  opacity: 0.55;
}
.sx-logo-band span {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--f2-muted);
}

.sx-highlight-flash {
  animation: sx-section-flash 1.4s ease;
}
@keyframes sx-section-flash {
  0%, 100% { box-shadow: none; }
  40% { box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.28); border-radius: 18px; }
}

.sx-footer .sx-logo-ico img {
  display: block;
  width: 22px;
  height: 22px;
}

@media (max-width: 640px) {
  .sx-section-nav { display: none !important; }
  .sx-trust-inner { gap: 0.65rem 1.25rem; }
  .sx-dash-kpis { grid-template-columns: repeat(3, 1fr); }
  .sx-dash-pipe { grid-template-columns: repeat(2, 1fr); }
  .sx-ai-grid { gap: 0.55rem; }
  .sx-ai-chip { min-width: calc(50% - 0.35rem); justify-content: center; }
  .sx-world-legend { max-width: calc(100% - 1rem); font-size: 0.68rem; }
  .sx-av-map-pin { width: 28px; height: 28px; margin: -14px 0 0 -14px; }
}

/* ===== Global spotlight (top of page) ===== */
.sx-global-spotlight {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
  border-block: 1px solid var(--f2-line);
}
.sx-global-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: center;
}
.sx-global-spotlight-copy .sx-h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  margin-bottom: 0.85rem;
}
.sx-global-spotlight-copy p {
  color: var(--f2-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
@media (max-width: 900px) {
  .sx-global-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .sx-global-spotlight-art { order: -1; }
}

/* ===== Live 3D globe (NASA night texture) ===== */
.sx-globe-live {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(8, 12, 28, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.sx-globe-live-stage {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 42%, rgba(30, 58, 95, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 120%, rgba(15, 23, 42, 0.9) 0%, #050810 70%);
}
.sx-globe-live-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.85), transparent),
    radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 42% 12%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 68% 22%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1px 1px at 82% 45%, rgba(255,255,255,0.65), transparent),
    radial-gradient(1px 1px at 15% 68%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 55% 78%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 88% 72%, rgba(255,255,255,0.55), transparent);
  opacity: 0.75;
  pointer-events: none;
}
.sx-globe-live-orbit {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(78%, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    inset -24px -28px 70px rgba(0, 0, 0, 0.72),
    inset 12px 12px 40px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 80px rgba(56, 189, 248, 0.1),
    0 32px 64px rgba(0, 0, 0, 0.55);
}
.sx-globe-live-img {
  display: block;
  width: 108%;
  height: 108%;
  margin: -4%;
  object-fit: cover;
  object-position: 61.5% 43%;
  filter: brightness(0.95) contrast(1.08) saturate(1.05);
}
.sx-globe-live-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 24%, rgba(255,255,255,0.22) 0%, transparent 42%);
  pointer-events: none;
}
.sx-globe-live-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.sx-globe-live-markers {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(78%, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}
.sx-globe-live-markers .sx-globe-dot,
.sx-globe-live-markers .sx-pin,
.sx-globe-live-markers .sx-globe-micro-pin {
  position: absolute;
}
.sx-globe-micro-pin {
  z-index: 4;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: linear-gradient(145deg, #FB923C, #EA580C);
  box-shadow:
    0 0 5px rgba(249, 115, 22, 0.75),
    0 0 0 1.5px rgba(255, 255, 255, 0.92);
  animation: sx-globe-micro-pulse 2.4s ease-in-out infinite;
  animation-delay: var(--pin-delay, 0s);
}
@keyframes sx-globe-micro-pulse {
  0%, 100% { opacity: 0.82; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); box-shadow: 0 0 8px rgba(249, 115, 22, 0.9), 0 0 0 1.5px rgba(255, 255, 255, 1); }
}
.sx-globe-live-markers .sx-globe-dot:nth-child(odd) { --dot-delay: 0.25s; }
.sx-globe-live-markers .sx-globe-dot:nth-child(3n) { --dot-delay: 0.55s; }
.sx-globe-live-markers .sx-globe-dot:nth-child(5n) { --dot-delay: 0.85s; }
.sx-globe-live-markers .sx-pin:nth-child(n) { --pin-delay: calc(var(--i, 0) * 0.08s); }
.sx-globe-dot {
  position: absolute;
  z-index: 3;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px #34D399, 0 0 18px rgba(52, 211, 153, 0.55);
  animation: sx-globe-dot-pulse 2.2s ease-in-out infinite;
  animation-delay: var(--dot-delay, 0s);
}
.sx-globe-dot:nth-child(odd) { --dot-delay: 0.3s; }
.sx-globe-dot:nth-child(3n) { --dot-delay: 0.7s; }
@keyframes sx-globe-dot-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); box-shadow: 0 0 12px #34D399, 0 0 24px rgba(52, 211, 153, 0.75); }
}
.sx-globe-live-pin {
  z-index: 4;
}
.sx-globe-live-info {
  z-index: 5;
  bottom: 14px;
  top: auto !important;
  background: rgba(15, 23, 42, 0.82) !important;
  color: #E2E8F0 !important;
  border-color: rgba(148, 163, 184, 0.25) !important;
  backdrop-filter: blur(8px);
}
.sx-world-legend-glass {
  background: rgba(15, 23, 42, 0.88) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  color: #F1F5F9 !important;
  backdrop-filter: blur(10px);
}
.sx-world-legend-glass em {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #A5B4FC !important;
}
.sx-globe-live-meta {
  background: #0F172A;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}
.sx-globe-live-meta strong { color: #F8FAFC; }
.sx-globe-live-meta span { color: #94A3B8; }

.sx-world-canvas {
  background: #0c1929;
}
.sx-world-map-img {
  object-position: center center;
  filter: saturate(1.05) contrast(1.02);
}

/* ===== World map · avatar pins ===== */
.sx-world-shot {
  border-radius: 22px;
  padding: 5px;
  background: linear-gradient(135deg, #8E33FF 0%, #3B82F6 50%, #14B8A6 100%);
  box-shadow: 0 24px 60px rgba(30, 27, 75, 0.16);
}
.sx-world-canvas {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #A8C4E6;
  aspect-ratio: 1000 / 520;
  min-height: 280px;
}
.sx-world-map-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sx-world-shot-feature {
  display: flex;
  flex-direction: column;
}
.sx-world-shot-feature .sx-world-canvas {
  border-radius: 18px 18px 0 0;
  min-height: 300px;
}
.sx-world-meta {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border-top: 1px solid var(--f2-line);
}
.sx-world-meta strong {
  font-size: 0.85rem;
  color: var(--f2-navy);
}
.sx-world-meta span {
  font-size: 0.78rem;
  color: var(--f2-muted);
  font-weight: 600;
}
.sx-world-canvas .sx-pin,
.sx-world-canvas .sx-av-map-pin {
  position: absolute;
}
.sx-world-map-info {
  z-index: 4;
  top: auto !important;
  bottom: 12px;
  inset-inline-start: 12px;
  max-width: calc(100% - 24px);
}
.sx-av-map-pin-sm {
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
}
.sx-av-map-pin-sm::after {
  width: 8px;
  height: 8px;
  bottom: -4px;
}
.sx-world-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.sx-world-legend {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--f2-navy);
}
.sx-world-legend div {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.sx-world-legend em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: var(--f2-alt);
  color: var(--f2-purple);
}
.sx-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sx-legend-dot.z1 { background: #8B5CF6; }
.sx-legend-dot.z2 { background: #3B82F6; }
.sx-legend-dot.z3 { background: #10B981; }

.sx-av-map-pin {
  position: absolute;
  z-index: 3;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.22);
  overflow: visible;
  animation: sx-av-pin-float 3.6s ease-in-out infinite;
  animation-delay: var(--pin-float-delay, 0s);
}
.sx-av-map-pin:nth-child(odd) { --pin-float-delay: 0.4s; }
.sx-av-map-pin:nth-child(3n) { --pin-float-delay: 0.9s; }
.sx-av-map-pin img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.sx-av-map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #FB923C, #EA580C);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.45);
}
.sx-av-map-pin-lg {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  z-index: 4;
}
@keyframes sx-av-pin-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

#territory .sx-feature { margin-bottom: 0; }

/* ===== Ask AI ===== */
.sx-ask-ai {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}
.sx-ask-ai-hero {
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-block: 1px solid var(--f2-line);
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(59, 130, 246, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 65% 50% at 88% 8%, rgba(142, 51, 255, 0.08) 0%, transparent 52%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(142, 51, 255, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #FAFAFF 0%, #F8FAFC 100%);
}
.sx-ask-ai-hero::before,
.sx-ask-ai-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.45;
  animation: sx-ask-ai-orb 14s ease-in-out infinite;
}
.sx-ask-ai-hero::before {
  width: 280px;
  height: 280px;
  left: -80px;
  top: 10%;
  background: rgba(142, 51, 255, 0.18);
}
.sx-ask-ai-hero::after {
  width: 240px;
  height: 240px;
  right: -60px;
  top: 20%;
  background: rgba(59, 130, 246, 0.16);
  animation-delay: -7s;
}
@keyframes sx-ask-ai-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -16px) scale(1.06); }
}
.sx-ask-ai-hero .sx-wrap {
  position: relative;
  z-index: 1;
}
.sx-ask-ai-hero .sx-eyebrow {
  letter-spacing: 0.14em;
  background: linear-gradient(90deg, #7C3AED, #3B82F6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sx-ask-ai-hero .sx-h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  letter-spacing: -0.02em;
}
.sx-ask-ai-hero .sx-lead {
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.65;
}
.sx-grad-title span {
  background: linear-gradient(90deg, #8E33FF 0%, #3B82F6 55%, #14B8A6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sx-ai-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  max-width: 1020px;
  margin: 2rem auto 1.5rem;
  padding: 1.35rem 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 50px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.sx-ai-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #FAFBFC 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--f2-navy);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.35, 0.64, 1),
    box-shadow 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}
.sx-ai-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.65) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
  z-index: 0;
}
.sx-ai-chip::after {
  content: "↗";
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #94A3B8;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.sx-ai-chip:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow:
    0 14px 32px rgba(124, 58, 237, 0.14),
    0 4px 12px rgba(59, 130, 246, 0.08),
    0 0 0 1px rgba(167, 139, 250, 0.25);
  background: linear-gradient(180deg, #fff 0%, #F5F3FF 100%);
}
.sx-ai-chip:hover::before {
  transform: translateX(120%);
}
.sx-ai-chip:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}
.sx-ai-chip.is-in:hover {
  transform: translateY(-5px) scale(1.02);
}
.sx-ai-chip.sx-will-reveal:nth-child(1) { transition-delay: 0.04s; }
.sx-ai-chip.sx-will-reveal:nth-child(2) { transition-delay: 0.08s; }
.sx-ai-chip.sx-will-reveal:nth-child(3) { transition-delay: 0.12s; }
.sx-ai-chip.sx-will-reveal:nth-child(4) { transition-delay: 0.16s; }
.sx-ai-chip.sx-will-reveal:nth-child(5) { transition-delay: 0.2s; }
.sx-ai-chip.sx-will-reveal:nth-child(6) { transition-delay: 0.24s; }
.sx-ai-chip.sx-will-reveal:nth-child(7) { transition-delay: 0.28s; }
.sx-ai-chip.sx-will-reveal:nth-child(8) { transition-delay: 0.32s; }
.sx-ai-chip.sx-will-reveal:nth-child(9) { transition-delay: 0.36s; }
.sx-ai-chip.sx-will-reveal:nth-child(10) { transition-delay: 0.4s; }
.sx-ai-chip.sx-will-reveal:nth-child(11) { transition-delay: 0.44s; }
.sx-ai-chip.sx-will-reveal:nth-child(12) { transition-delay: 0.48s; }
.sx-ai-chip.sx-will-reveal:nth-child(13) { transition-delay: 0.52s; }
.sx-ai-ico {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  perspective: 520px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.35, 0.64, 1),
    box-shadow 0.45s ease;
}
.sx-ai-chip:hover .sx-ai-ico {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}
.sx-ai-ico svg {
  width: 20px;
  height: 20px;
  display: block;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}
.sx-ai-chip:hover .sx-ai-ico svg {
  animation: sx-ai-icon-spin 0.75s cubic-bezier(0.34, 1.15, 0.64, 1) 1;
}
@keyframes sx-ai-icon-spin {
  0% { transform: rotateY(0deg) rotateZ(0deg) scale(1); }
  35% { transform: rotateY(180deg) rotateZ(8deg) scale(1.08); }
  70% { transform: rotateY(300deg) rotateZ(-4deg) scale(1.04); }
  100% { transform: rotateY(360deg) rotateZ(0deg) scale(1); }
}
.sx-ai-gpt {
  background: linear-gradient(145deg, #12B886, #10A37F);
  color: #fff;
}
.sx-ai-claude {
  background: linear-gradient(145deg, #E07A5F, #D97757);
  color: #fff;
}
.sx-ai-px {
  background: linear-gradient(145deg, #2A969E, #20808D);
  color: #fff;
}
.sx-ai-grok {
  background: linear-gradient(145deg, #1E293B, #0F172A);
  color: #fff;
}
.sx-ai-gemini {
  background: #fff;
  border: 1px solid var(--f2-line);
}
.sx-ai-gemini svg {
  width: 22px;
  height: 22px;
}
.sx-ai-copilot {
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #fff;
}
.sx-ai-deepseek {
  background: linear-gradient(135deg, #1D4ED8, #0EA5E9);
  color: #fff;
}
.sx-ai-meta {
  background: linear-gradient(135deg, #1877F2, #0668E1);
  color: #fff;
}
.sx-ai-mistral {
  background: linear-gradient(135deg, #FF7000, #FF4F00);
  color: #fff;
}
.sx-ai-cohere {
  background: linear-gradient(145deg, #39594D, #2D453B);
  color: #DFF64E;
}
.sx-ai-you {
  background: linear-gradient(135deg, #5B21B6, #7C3AED);
  color: #fff;
}
.sx-ai-poe {
  background: linear-gradient(135deg, #4F46E5, #9333EA);
  color: #fff;
}
.sx-ai-hf {
  background: linear-gradient(145deg, #FFD21E, #FBBF24);
  color: #1F2937;
}
.sx-askai-note {
  max-width: 720px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--f2-muted);
  line-height: 1.55;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
@media (max-width: 640px) {
  .sx-ai-grid {
    padding: 1rem 0.75rem;
    gap: 0.65rem;
    border-radius: 20px;
  }
  .sx-ai-chip {
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
  }
  .sx-ai-ico {
    width: 36px;
    height: 36px;
  }
  .sx-askai-note {
    border-radius: 16px;
    padding: 0.85rem 1rem;
  }
}
