/* =================================================================
   Xeneta — Modern Homepage
   Blue + white, Poppins. Mixpanel-influenced layout / motion.
   ================================================================= */

:root {
  --x-ink:        #050B24;
  --x-ink-2:      #0B1638;
  --x-navy:       #081030;
  --x-blue:       #2E65FF;   /* primary */
  --x-blue-bright:#5A82FF;
  --x-blue-deep:  #002A88;
  --x-cyan:       #A4BBFF;
  --x-violet:     #9D7BFF;
  --x-lilac:      #C6B7FF;
  --x-pink:       #FFB6E0;
  --x-ice:        #F2F6FF;
  --x-haze:       #ECF2FF;
  --x-stroke:     #E3E8F4;
  --x-stroke-2:   #D6DDEF;
  --x-text:       #1F2748;
  --x-muted:      #5B6485;
  --x-soft:       #8C95B5;
  --x-card:       #FFFFFF;
  --x-bg:         #FFFFFF;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Reset design-system globals so our type system wins */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}

body {
  background: var(--x-bg);
  color: var(--x-text);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.material-symbols-rounded {
  font-family: 'Material Icons Round';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
  user-select: none;
}
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

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

/* ---- Typography ---- */
.x-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--x-blue);
}
.x-eyebrow--light { color: rgba(255,255,255,0.7); }
.x-eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--x-blue);
  box-shadow: 0 0 0 4px rgba(46,101,255,0.18);
}
.x-eyebrow--light .x-eyebrow__dot { background: var(--x-cyan); box-shadow: 0 0 0 4px rgba(164,187,255,0.2); }

.x-h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.x-h1 em { font-style: normal; font-weight: 500; }
.x-h1--light { color: #fff; }

.x-h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--x-ink);
  text-wrap: balance;
}
.x-h2--light { color: #fff; }
.x-h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--x-ink);
}
.x-h3--light { color: #fff; }
.x-lede {
  color: var(--x-muted);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 56ch;
  margin: 0 0 32px;
}
.x-lede--light { color: rgba(255,255,255,0.78); }
.x-lede--center { margin-left: auto; margin-right: auto; text-align: center; }
.x-body { color: var(--x-muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* Gradient text accent */
.x-grad-text {
  background: linear-gradient(100deg, #5A82FF 0%, #9D7BFF 50%, #FFB6E0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}
.x-grad-text--cool {
  background: linear-gradient(100deg, #A4BBFF 0%, #5A82FF 60%, #9D7BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Buttons ---- */
.x-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-decoration: none;
}
.x-btn--lg { padding: 15px 28px; font-size: 16px; }
.x-btn--primary {
  background: var(--x-ink);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 24px -10px rgba(8,16,48,0.4);
}
.x-btn--primary:hover { background: var(--x-blue); transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(46,101,255,0.55); }
.x-btn--primary--light { background: #fff; color: var(--x-ink); }
.x-btn--primary--light:hover { background: var(--x-ice); color: var(--x-blue); transform: translateY(-1px); }
.x-btn--ghost {
  background: transparent;
  color: var(--x-ink);
  border-color: var(--x-stroke);
}
.x-btn--ghost:hover { background: var(--x-haze); border-color: transparent; }
.x-btn--ghost-light {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
}
.x-btn--ghost-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }
.x-btn .material-symbols-rounded { font-size: 18px; }

/* small chips */
.x-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(46,101,255,0.1);
  color: var(--x-blue);
}
.x-chip--ocean { background: rgba(46,101,255,0.12); color: var(--x-blue); }
.x-chip--air   { background: rgba(157,123,255,0.15); color: #6D49E5; }
.x-chip--up    { background: rgba(48,180,108,0.12); color: #16895A; }
.x-chip--down  { background: rgba(255,128,128,0.14); color: #C04444; }
.x-chip--ghost-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}

/* Hero pill (top announcement) */
.x-promo {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  text-decoration: none;
  transition: background .18s, border-color .18s;
}
.x-promo:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.32); }
.x-promo__badge {
  background: linear-gradient(120deg, #A4BBFF, #5A82FF 60%, #9D7BFF);
  color: var(--x-ink);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.x-promo__chev { opacity: 0.7; font-size: 16px !important; }

/* Hero live counter — digital-clock reel, no chrome */
.x-fc {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1;
  color: rgba(255,255,255,0.78);
  background: transparent;
  padding: 0;
}
.x-fc__label {
  font-weight: 500;
  color: rgba(255,255,255,0.78);
}
.x-fc__num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: baseline;
}
.x-fc__sep-char {
  display: inline-block;
  padding: 0 1px;
}
.x-fc__digit {
  position: relative;
  display: inline-block;
  width: 0.62em;
  height: 1em;
  overflow: hidden;
  vertical-align: baseline;
}
.x-fc__reel {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  transition: transform 1.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.x-fc__cell {
  height: 1em;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HEADER
   ============================================================ */
.x-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .22s ease, backdrop-filter .22s ease, border-color .22s ease;
}
.x-header[data-scrolled="true"] {
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(8,16,48,0.06);
}
.x-header[data-theme="dark"] {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.x-header[data-theme="dark"][data-scrolled="true"] {
  background: rgba(8,16,48,0.65);
  backdrop-filter: saturate(140%) blur(20px);
  border-bottom-color: rgba(255,255,255,0.08);
}
.x-header__row {
  display: flex; align-items: center;
  gap: 28px;
  height: 56px;
  min-width: 0;
}
.x-header__brand {
  display: inline-flex; align-items: center;
  font-family: "Poppins"; font-weight: 700;
  font-size: 22px; letter-spacing: 0.04em;
  color: var(--x-ink);
}
.x-header[data-theme="dark"] .x-header__brand { color: #fff; }
.x-header__brand-mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #2E65FF 0%, #9D7BFF 100%);
  margin-right: 10px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(46,101,255,0.55);
}
.x-header__brand-mark::before, .x-header__brand-mark::after {
  content: ""; position: absolute;
  background: #fff;
  width: 2.6px; height: 8px; border-radius: 2px;
}
.x-header__brand-mark::before { transform: translate(-3.5px, -3px) rotate(20deg); }
.x-header__brand-mark::after  { transform: translate(3.5px, 3px) rotate(20deg); }
.x-header__nav {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.x-nav-item {
  background: transparent; border: 0;
  font-family: inherit;
  font-size: 14px; font-weight: 500;
  color: var(--x-ink);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.x-header[data-theme="dark"] .x-nav-item { color: rgba(255,255,255,0.86); }
.x-nav-item:hover { color: var(--x-blue); background: rgba(46,101,255,0.07); }
.x-header[data-theme="dark"] .x-nav-item:hover { color: #fff; background: rgba(255,255,255,0.08); }
.x-nav-item .material-symbols-rounded { font-size: 16px; opacity: 0.7; }
.x-header__cta { display: flex; align-items: center; gap: 12px; }
.x-header__login {
  font-size: 14px; font-weight: 500; color: inherit;
  padding: 8px 12px; border-radius: 8px;
  transition: background .15s;
}
.x-header[data-theme="dark"] .x-header__login { color: rgba(255,255,255,0.86); }
.x-header__demo { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.x-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 120px 0 140px;
  isolation: isolate;
}
.x-hero[data-grad="azure"] {
  background:
    radial-gradient(ellipse 80% 70% at 70% 25%, rgba(164,187,255,0.18), transparent 60%),
    radial-gradient(ellipse 90% 80% at 15% 90%, rgba(157,123,255,0.32), transparent 65%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(46,101,255,0.4), transparent 60%),
    linear-gradient(180deg, #050B24 0%, #0B1638 55%, #112055 100%);
}
.x-hero[data-grad="indigo"] {
  background:
    radial-gradient(ellipse 90% 70% at 30% 15%, rgba(157,123,255,0.28), transparent 60%),
    radial-gradient(ellipse 80% 70% at 85% 85%, rgba(46,101,255,0.4), transparent 60%),
    linear-gradient(180deg, #080A28 0%, #0E1146 60%, #1B1C5E 100%);
}
.x-hero[data-grad="cyan"] {
  background:
    radial-gradient(ellipse 70% 70% at 25% 80%, rgba(164,187,255,0.4), transparent 65%),
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(46,101,255,0.45), transparent 65%),
    linear-gradient(180deg, #051034 0%, #0E2360 60%, #163880 100%);
}
.x-hero__noise {
  position: absolute; inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.x-hero__grid {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.x-hero__shine {
  position: absolute;
  width: 600px; height: 600px;
  left: 50%; top: -200px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
  animation: hero-shine 12s ease-in-out infinite alternate;
}
@keyframes hero-shine {
  0%   { transform: translate(-60%, -10px) scale(1); opacity: 0.7; }
  100% { transform: translate(-40%, 30px) scale(1.1); opacity: 1; }
}
.x-hero__inner {
  position: relative;
  text-align: center;
  padding-top: 40px;
}
.x-hero__copy {
  max-width: 920px;
  margin: 0 auto;
}
.x-hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: 20px;
  line-height: 1.5;
  max-width: 56ch;
  margin: 0 auto 38px;
  font-weight: 400;
}
.x-hero__actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
}

/* The animated mock card under the hero */
.x-hero__mock {
  margin: 80px auto 0;
  max-width: 1080px;
  position: relative;
}
.x-hero__mock::before {
  content: "";
  position: absolute;
  inset: -40px -60px 60px -60px;
  background: radial-gradient(ellipse 60% 60% at 50% 60%, rgba(164,187,255,0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.x-mock-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 40px 80px -20px rgba(0,0,0,0.55),
    0 80px 160px -40px rgba(46,101,255,0.3);
  backdrop-filter: blur(20px);
}
.x-mock-card__inner {
  background: #06112E;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 540px;
}
.x-mock-card__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 0 0 12px 4px;
}
.x-mock-card__chrome span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.16);
}
.x-mock-card__chrome span:nth-child(1) { background: #FF6058; }
.x-mock-card__chrome span:nth-child(2) { background: #FFBC2D; }
.x-mock-card__chrome span:nth-child(3) { background: #29C53F; }
.x-mock-card__chrome-url {
  margin-left: auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 4px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 8px;
  min-width: 280px; justify-content: center;
}
.x-mock-card__chrome-url .material-symbols-rounded { font-size: 14px; }

/* Mock sidebar */
.x-mock-side {
  background: linear-gradient(180deg, #050C24, #07112B);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 18px 14px;
  font-size: 13px;
}
.x-mock-side__brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  padding: 6px 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 12px;
}
.x-mock-side__brand-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, #2E65FF, #9D7BFF);
}
.x-mock-side__sec {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 14px 8px 6px;
}
.x-mock-side__item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}
.x-mock-side__item .material-symbols-rounded { font-size: 17px; opacity: 0.75; }
.x-mock-side__item[data-active="true"] {
  background: rgba(46,101,255,0.18);
  color: #fff;
}
.x-mock-side__item[data-active="true"] .material-symbols-rounded { color: var(--x-cyan); opacity: 1; }

/* Mock main */
.x-mock-main { padding: 18px 22px 24px; color: rgba(255,255,255,0.88); }
.x-mock-main__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.x-mock-main__title { font-size: 15px; font-weight: 600; color: #fff; }
.x-mock-main__sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.x-mock-toolbar {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  padding: 4px;
  border-radius: 8px;
}
.x-mock-toolbar button {
  background: transparent; border: 0;
  color: rgba(255,255,255,0.5);
  font-family: inherit; font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.x-mock-toolbar button[data-active="true"] { background: rgba(255,255,255,0.1); color: #fff; }
.x-mock-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin: 16px 0;
}
.x-mock-kpi {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 14px;
}
.x-mock-kpi__l { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.x-mock-kpi__n { font-size: 22px; font-weight: 600; color: #fff; line-height: 1.1; margin-top: 4px; }
.x-mock-kpi__d { font-size: 11px; margin-top: 4px; display: inline-flex; align-items: center; gap: 4px; }
.x-mock-chart-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 16px;
}
.x-mock-chart-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.x-mock-chart-card__title { font-size: 13px; font-weight: 600; color: #fff; }
.x-mock-chart-card__sub { font-size: 11px; color: rgba(255,255,255,0.45); }
.x-mock-chart-card__legend {
  display: flex; gap: 14px;
}
.x-mock-chart-card__legend span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.x-mock-chart-card__legend i {
  width: 8px; height: 8px; border-radius: 2px; display: inline-block;
}

.x-mock-chart {
  width: 100%; height: 200px;
}
.x-mock-foot {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 12px;
}
.x-mock-mini {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
}
.x-mock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0;
}
.x-mock-row + .x-mock-row { border-top: 1px solid rgba(255,255,255,0.05); }
.x-mock-row__lane { color: rgba(255,255,255,0.85); }
.x-mock-row__lane small { display: block; font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.x-mock-row__rate { font-weight: 600; color: #fff; }
.x-mock-row__d { font-size: 11px; margin-left: 8px; }
.x-mock-up   { color: #A4BBFF; }
.x-mock-down { color: #FFAFAF; }

/* Floating chip animations near hero */
.x-hero__float {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  z-index: 2;
}
.x-hero__float .material-symbols-rounded { color: var(--x-cyan); font-size: 18px; }
.x-hero__float--a {
  left: 4%;
  top: 60%;
  animation: float-a 8s ease-in-out infinite alternate;
}
.x-hero__float--b {
  right: 4%;
  top: 75%;
  animation: float-b 9s ease-in-out infinite alternate;
}
@keyframes float-a {
  0% { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(-18px) rotate(0deg); }
}
@keyframes float-b {
  0% { transform: translateY(0) rotate(2deg); }
  100% { transform: translateY(-12px) rotate(-1deg); }
}

/* ============================================================
   TICKER
   ============================================================ */
.x-ticker {
  background: var(--x-ink);
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}
.x-ticker__track {
  display: flex;
  gap: 48px;
  animation: ticker 60s linear infinite;
  width: max-content;
}
.x-ticker__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.x-ticker__item .mono { font-weight: 500; }
.x-ticker__item small { color: rgba(255,255,255,0.45); }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   LOGO CLOUD
   ============================================================ */
.x-logos {
  background: #fff;
  padding: 64px 0 24px;
  text-align: center;
}
.x-logos__kicker {
  font-size: 13px;
  color: var(--x-soft);
  letter-spacing: 0.04em;
  margin: 0 0 26px;
}
.x-logos__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 48px;
  align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.x-logos__logo {
  height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: #6C7494;
  opacity: 0.85;
  filter: grayscale(1);
  transition: opacity .15s;
}
.x-logos__logo:hover { opacity: 1; }
.x-logos__logo svg { height: 100%; width: auto; }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.x-pain {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(46,101,255,0.06), transparent 70%),
    #fff;
}
.x-pain__head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.x-pain__head .x-eyebrow { margin-bottom: 16px; }
.x-pain__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.x-pain__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--x-stroke);
  border-radius: 18px;
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.x-pain__card:hover {
  transform: translateY(-3px);
  border-color: var(--x-blue);
  box-shadow: 0 22px 44px -22px rgba(46,101,255,0.35);
}
.x-pain__card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(46,101,255,0.18), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.x-pain__card:hover::after { opacity: 1; }
.x-pain__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--x-blue);
  margin: 0 0 22px;
  display: inline-flex; align-items: center; gap: 6px;
}
.x-pain__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--x-ice), #fff);
  border: 1px solid var(--x-stroke);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--x-blue);
  margin-bottom: 18px;
}
.x-pain__icon .material-symbols-rounded { font-size: 24px; }
.x-pain__cta-band {
  margin-top: 56px;
  background:
    radial-gradient(ellipse 70% 100% at 100% 50%, rgba(164,187,255,0.22), transparent 60%),
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(157,123,255,0.32), transparent 60%),
    linear-gradient(120deg, #0B1638 0%, #112055 100%);
  color: #fff;
  border-radius: 24px;
  padding: 48px 56px;
  display: grid; grid-template-columns: 1.6fr auto; gap: 32px;
  align-items: center;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}
.x-pain__cta-band::before {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(164,187,255,0.4), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.x-pain__cta-band h3 { font-size: 26px; line-height: 1.2; margin: 0; font-weight: 500; letter-spacing: -0.02em; }

/* ============================================================
   FEATURE SHOWCASES
   ============================================================ */
.x-features {
  padding: 120px 0;
  background:
    linear-gradient(180deg, #fff 0%, #F7F9FF 100%);
  position: relative;
}
.x-features__head {
  text-align: center; max-width: 800px; margin: 0 auto 80px;
}
.x-feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  position: relative;
}
.x-feature--reverse { grid-template-columns: 1.15fr 1fr; }
.x-feature--reverse .x-feature__visual { order: -1; }
.x-feature__index {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--x-blue);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.x-feature__title {
  font-family: "Poppins"; font-weight: 500;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1; letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--x-ink);
}
.x-feature__sub {
  color: var(--x-muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 50ch;
}
.x-feature__list {
  list-style: none; padding: 0; margin: 0 0 30px;
  display: flex; flex-direction: column; gap: 14px;
}
.x-feature__list li {
  display: flex; gap: 14px;
  align-items: flex-start;
  color: var(--x-text);
  font-size: 15px;
  line-height: 1.5;
}
.x-feature__check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E65FF, #9D7BFF);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  margin-top: 1px;
  box-shadow: 0 4px 10px -4px rgba(46,101,255,0.6);
}
.x-feature__check .material-symbols-rounded { font-size: 14px; }
.x-feature__cta { display: inline-flex; align-items: center; gap: 6px; color: var(--x-blue); font-weight: 500; font-size: 15px; }
.x-feature__cta:hover { gap: 10px; transition: gap .15s; }
.x-feature__cta .material-symbols-rounded { font-size: 18px; }

.x-feature__visual {
  position: relative;
}
.x-feature__visual::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(46,101,255,0.08), transparent 70%);
  pointer-events: none;
}

/* Feature mock cards (light) */
.x-pcard {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--x-stroke);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 30px 60px -20px rgba(8,16,48,0.18),
    0 80px 140px -60px rgba(46,101,255,0.18);
  z-index: 1;
}
.x-pcard__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px 14px;
  border-bottom: 1px solid var(--x-stroke);
  margin-bottom: 14px;
}
.x-pcard__title { font-size: 14px; font-weight: 600; color: var(--x-ink); display: flex; align-items: center; gap: 8px; }
.x-pcard__title .material-symbols-rounded { font-size: 18px; color: var(--x-blue); }

/* Benchmark widget */
.x-bench {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px;
  font-size: 13px;
}
.x-bench__rows {
  background: var(--x-ice);
  border-radius: 12px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.x-bench__row {
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid transparent;
  transition: border-color .15s, transform .15s;
}
.x-bench__row[data-active="true"] {
  border-color: var(--x-blue);
  box-shadow: 0 6px 16px -8px rgba(46,101,255,0.4);
}
.x-bench__lane { color: var(--x-ink); font-weight: 500; }
.x-bench__lane small { display: block; color: var(--x-soft); font-weight: 400; font-size: 11px; margin-top: 2px; }
.x-bench__rate { font-weight: 600; color: var(--x-ink); font-variant-numeric: tabular-nums; }
.x-bench__rate small { display: block; font-size: 11px; color: var(--x-soft); font-weight: 400; }
.x-bench__chart {
  background: linear-gradient(180deg, #F7F9FF, #fff);
  border: 1px solid var(--x-stroke);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; flex-direction: column;
}
.x-bench__chart-head {
  display: flex; justify-content: space-between; align-items: center;
}
.x-bench__chart-lane { font-weight: 600; color: var(--x-ink); font-size: 13px; }
.x-bench__chart-price {
  font-family: "JetBrains Mono", monospace; font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--x-ink);
}
.x-bench__chart-delta { font-size: 11px; color: var(--x-blue); margin-left: 6px; font-weight: 500; }
.x-bench__chart svg { width: 100%; height: 110px; }

/* AI insight callout */
.x-ai-callout {
  margin-top: 14px;
  background: linear-gradient(120deg, #EEF1FF, #F6EEFF);
  border: 1px solid #D8DBF0;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; gap: 12px;
  position: relative;
}
.x-ai-callout::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(46,101,255,0.04));
  border-radius: inherit;
}
.x-ai-callout__icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2E65FF, #9D7BFF);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -6px rgba(46,101,255,0.5);
}
.x-ai-callout__icon .material-symbols-rounded { font-size: 18px; }
.x-ai-callout__body { font-size: 13px; color: var(--x-ink); line-height: 1.5; position: relative; }
.x-ai-callout__body strong { color: var(--x-blue); }
.x-ai-callout__body small { color: var(--x-soft); display: block; margin-top: 3px; font-size: 11px; }

/* Tender widget */
.x-tender {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px;
}
.x-tender__step {
  display: grid; grid-template-columns: 28px 1fr auto auto; gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--x-stroke);
  border-radius: 10px;
  padding: 10px 14px;
}
.x-tender__step[data-state="done"] { background: linear-gradient(90deg, #F1F6FF, #fff); border-color: #C4D2FF; }
.x-tender__step[data-state="active"] {
  background: #fff;
  border-color: var(--x-blue);
  box-shadow: 0 6px 14px -8px rgba(46,101,255,0.4);
}
.x-tender__num {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--x-haze);
  color: var(--x-blue);
  font-size: 11px; font-weight: 600;
}
.x-tender__step[data-state="done"] .x-tender__num { background: var(--x-blue); color: #fff; }
.x-tender__step[data-state="active"] .x-tender__num { background: var(--x-blue); color: #fff; box-shadow: 0 0 0 4px rgba(46,101,255,0.18); }
.x-tender__lbl { color: var(--x-ink); font-weight: 500; }
.x-tender__meta { color: var(--x-soft); font-size: 11px; }
.x-tender__rate { font-family: "JetBrains Mono"; font-weight: 500; color: var(--x-ink); font-size: 13px; }
.x-tender__chip {
  font-size: 11px; padding: 2px 8px; border-radius: 999px;
  background: var(--x-haze); color: var(--x-blue); font-weight: 500;
}
.x-tender__chip--down { background: rgba(255,200,200,0.4); color: #C04444; }

.x-tender__summary {
  margin-top: 6px;
  background: linear-gradient(120deg, #06112E, #112055);
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.x-tender__summary strong { font-family: "JetBrains Mono"; font-size: 18px; }
.x-tender__summary small { color: rgba(255,255,255,0.7); font-size: 12px; }

/* Forecast widget */
.x-fore { display: flex; flex-direction: column; gap: 12px; }
.x-fore__tabs {
  display: inline-flex;
  background: var(--x-haze);
  border-radius: 8px;
  padding: 4px;
  align-self: flex-start;
  gap: 2px;
}
.x-fore__tabs button {
  background: transparent; border: 0;
  font-family: inherit; font-size: 12px;
  padding: 4px 10px;
  border-radius: 5px;
  color: var(--x-muted); cursor: pointer;
}
.x-fore__tabs button[data-active="true"] { background: #fff; color: var(--x-ink); box-shadow: 0 1px 3px rgba(8,16,48,0.08); }
.x-fore__chart-wrap {
  position: relative;
  background: linear-gradient(180deg, #F7F9FF 0%, #fff 100%);
  border: 1px solid var(--x-stroke);
  border-radius: 12px;
  padding: 16px;
}
.x-fore__legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 11px; color: var(--x-muted);
}
.x-fore__legend span { display: inline-flex; align-items: center; gap: 6px; }
.x-fore__legend i { width: 10px; height: 3px; border-radius: 2px; display: inline-block; }
.x-fore__chart { width: 100%; height: 180px; margin-top: 10px; }
.x-fore__band {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.x-fore__band-cell {
  background: #fff;
  border: 1px solid var(--x-stroke);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
}
.x-fore__band-cell small { color: var(--x-soft); display: block; }
.x-fore__band-cell strong {
  display: block;
  font-family: "JetBrains Mono"; font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--x-ink);
  margin-top: 2px;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.x-stats {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(164,187,255,0.18), transparent 60%),
    radial-gradient(ellipse 80% 100% at 0% 100%, rgba(157,123,255,0.32), transparent 60%),
    linear-gradient(120deg, #0B1638 0%, #112055 60%, #1A2C70 100%);
}
.x-stats__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.x-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.x-stat {
  text-align: left;
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.x-stat::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(164,187,255,0.6), transparent);
}
.x-stat__num {
  font-family: "Poppins"; font-weight: 500;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1; letter-spacing: -0.04em;
  margin: 0;
  background: linear-gradient(120deg, #fff 0%, #C6D2FF 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.x-stat__suffix { color: var(--x-cyan); font-weight: 400; }
.x-stat__lbl { margin: 12px 0 0; font-size: 16px; color: rgba(255,255,255,0.78); }
.x-stat__meta { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
.x-stat__meta .material-symbols-rounded { font-size: 14px; }

/* ============================================================
   OUR DATA — compact icon grid
   ============================================================ */
.x-data {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 96px 0;
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(157,123,255,0.22), transparent 60%),
    radial-gradient(ellipse 80% 80% at 0% 100%, rgba(46,101,255,0.32), transparent 60%),
    linear-gradient(180deg, #050B24 0%, #0B1638 60%, #112055 100%);
}
.x-data::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.x-data__head { position: relative; text-align: center; max-width: 760px; margin: 0 auto 48px; }

.x-data__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.x-data-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  grid-column: span 3;
}
.x-data-card:hover {
  transform: translateY(-2px);
  border-color: rgba(164,187,255,0.4);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}
/* 4 + 3 visual rhythm — second row centered */
.x-data-card:nth-child(5) { grid-column: 2 / span 3; }
.x-data-card:nth-child(6) { grid-column: span 3; }
.x-data-card:nth-child(7) { grid-column: span 3; }

.x-data-card__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px -10px rgba(46,101,255,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
  margin-bottom: 14px;
}
.x-data-card__tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.x-data-card__title {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.x-data-card__body {
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  line-height: 1.5;
  margin: 4px 0 0;
}
.x-data__foot { position: relative; margin-top: 32px; text-align: center; }

@media (max-width: 1100px) {
  .x-data__grid { grid-template-columns: repeat(2, 1fr); }
  .x-data-card { grid-column: span 1 !important; }
}
@media (max-width: 480px) {
  .x-data__grid { grid-template-columns: 1fr; }
}


.x-teams {
  padding: 120px 0;
  background: #fff;
}
.x-teams__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.x-teams__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.x-team {
  position: relative;
  background: #fff;
  border: 1px solid var(--x-stroke);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.x-team:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(8,16,48,0.25);
}
.x-team__art {
  height: 130px;
  margin: -28px -28px 24px;
  background: linear-gradient(135deg, #EEF2FF 0%, #F8F1FF 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--x-stroke);
}
.x-team__art--ocean { background: linear-gradient(135deg, #DFE9FF, #F1F6FF); }
.x-team__art--air   { background: linear-gradient(135deg, #ECE3FF, #F8F3FF); }
.x-team__art--air-bg { background: linear-gradient(135deg, #DDF6FF, #EDF6FF); }
.x-team__art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.x-team h3 { font-weight: 600; font-size: 20px; margin: 0 0 8px; color: var(--x-ink); }
.x-team__body { color: var(--x-muted); font-size: 14px; line-height: 1.55; flex: 1; }
.x-team__cta {
  margin-top: 18px;
  color: var(--x-blue); font-weight: 500; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.x-team__cta:hover { gap: 10px; transition: gap .15s; }
.x-team__cta .material-symbols-rounded { font-size: 16px; }

/* ============================================================
   CUSTOMER STORIES
   ============================================================ */
.x-stories {
  background: linear-gradient(180deg, #F4F7FF 0%, #fff 60%);
  padding: 120px 0;
}
.x-stories__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
}
.x-stories__head .x-h2 { margin-bottom: 0; max-width: 16ch; }
.x-stories__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.x-story {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid var(--x-stroke);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 320px;
}
.x-story:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -22px rgba(8,16,48,0.2);
}
.x-story__logo {
  font-family: "Poppins"; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--x-ink); font-size: 14px;
  height: 32px; display: flex; align-items: center;
}
.x-story__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  border-top: 1px solid var(--x-stroke);
  border-bottom: 1px solid var(--x-stroke);
  padding: 14px 0;
}
.x-story__stat-n {
  font-family: "Poppins"; font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #2E65FF, #9D7BFF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.x-story__stat-l { font-size: 11px; color: var(--x-soft); margin-top: 2px; line-height: 1.3; }
.x-story__title { font-size: 15px; font-weight: 500; color: var(--x-ink); line-height: 1.4; flex: 1; }
.x-story__cta {
  color: var(--x-blue); font-weight: 500; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.x-story__cta:hover { gap: 10px; transition: gap .15s; }
.x-story__cta .material-symbols-rounded { font-size: 16px; }

/* Quote */
.x-quote {
  margin-top: 56px;
  padding: 56px 56px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 100% at 100% 0%, rgba(164,187,255,0.18), transparent 60%),
    radial-gradient(ellipse 60% 100% at 0% 100%, rgba(157,123,255,0.28), transparent 60%),
    linear-gradient(120deg, #0B1638, #1A2C70);
  color: #fff;
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.x-quote__mark {
  font-family: "Poppins";
  font-size: 96px;
  font-weight: 600;
  color: var(--x-cyan);
  line-height: 0.7;
  margin-bottom: 12px;
  opacity: 0.7;
}
.x-quote p {
  font-family: "Poppins"; font-weight: 400;
  font-size: 26px; line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 28ch;
  margin: 0 0 22px;
}
.x-quote p em { color: var(--x-cyan); font-style: normal; font-weight: 500; }
.x-quote__cite { font-size: 14px; color: rgba(255,255,255,0.75); }
.x-quote__cite strong { color: #fff; font-weight: 500; display: block; }
.x-quote__metric {
  text-align: right;
}
.x-quote__metric-n {
  font-family: "Poppins"; font-weight: 500;
  font-size: 100px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff, #A4BBFF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.x-quote__metric-l { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 6px; }

/* ============================================================
   FAQ
   ============================================================ */
.x-faq { padding: 120px 0; background: #fff; }
.x-faq__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.x-faq__list { max-width: 820px; margin: 0 auto; }
.x-faq__item {
  border-top: 1px solid var(--x-stroke);
  padding: 22px 0;
}
.x-faq__item:last-child { border-bottom: 1px solid var(--x-stroke); }
.x-faq__q {
  width: 100%;
  background: transparent; border: 0;
  padding: 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  text-align: left;
  font-family: inherit;
  font-size: 18px; font-weight: 500;
  color: var(--x-ink);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.x-faq__q:hover { color: var(--x-blue); }
.x-faq__icon {
  width: 32px; height: 32px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--x-stroke);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--x-ink);
  transition: background .18s, color .18s, border-color .18s, transform .25s ease;
}
.x-faq__item[data-open="true"] .x-faq__icon {
  background: var(--x-ink);
  border-color: var(--x-ink);
  color: #fff;
  transform: rotate(45deg);
}
.x-faq__a {
  margin-top: 14px;
  color: var(--x-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.x-faq__item[data-open="true"] .x-faq__a { grid-template-rows: 1fr; }
.x-faq__a > div { overflow: hidden; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.x-final {
  position: relative;
  padding: 140px 0 120px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 60% at 50% 110%, rgba(164,187,255,0.32), transparent 60%),
    radial-gradient(ellipse 80% 70% at 10% 0%, rgba(157,123,255,0.32), transparent 60%),
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(46,101,255,0.4), transparent 60%),
    linear-gradient(180deg, #050B24 0%, #0B1638 60%, #112055 100%);
}
.x-final__grid {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 60%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 60%, #000 30%, transparent 80%);
}
.x-final__inner { position: relative; max-width: 820px; margin: 0 auto; }
.x-final__h {
  font-family: "Poppins"; font-weight: 500;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.02; letter-spacing: -0.035em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.x-final__actions { display: flex; gap: 12px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.x-footer {
  background: #050B24;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 28px;
}
.x-footer__top {
  display: grid; grid-template-columns: 1.3fr 2.7fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.x-footer__brand-mark {
  display: flex; align-items: center;
  font-family: "Poppins"; font-weight: 700;
  color: #fff; font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.x-footer__brand-mark .x-header__brand-mark { margin-right: 10px; }
.x-footer__address { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0 0 18px; }
.x-footer__email { color: rgba(255,255,255,0.85); font-size: 14px; }
.x-footer__iso {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin-top: 16px;
}
.x-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.x-footer__col h4 {
  color: rgba(255,255,255,0.5);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin: 0 0 18px;
}
.x-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.x-footer__col a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}
.x-footer__col a:hover { color: var(--x-cyan); }
.x-footer__bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}
.x-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.x-footer__legal a { color: inherit; }
.x-footer__legal a:hover { color: #fff; }
.x-footer__socials { display: flex; gap: 10px; }
.x-footer__socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  transition: background .18s, color .18s, border-color .18s;
}
.x-footer__socials a:hover { background: var(--x-blue); color: #fff; border-color: transparent; }
.x-footer__socials .material-symbols-rounded { font-size: 18px; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.x-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(0.2, 0, 0, 1), transform .8s cubic-bezier(0.2, 0, 0, 1);
  will-change: opacity, transform;
}
.x-reveal[data-in="true"] {
  opacity: 1;
  transform: translateY(0);
}
.x-reveal--delay-1 { transition-delay: 0.08s; }
.x-reveal--delay-2 { transition-delay: 0.16s; }
.x-reveal--delay-3 { transition-delay: 0.24s; }

/* Animated chart line */
.x-anim-line { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: draw 2.2s ease-out forwards; }
.x-anim-line--2 { animation-delay: 0.3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .x-mock-card__inner { grid-template-columns: 180px 1fr; }
  .x-mock-kpis { grid-template-columns: repeat(2, 1fr); }
  .x-stats__grid, .x-teams__grid, .x-stories__grid, .x-pain__grid { grid-template-columns: 1fr 1fr; }
  .x-quote { grid-template-columns: 1fr; }
  .x-quote__metric { text-align: left; }
}
@media (max-width: 820px) {
  .x-container, .x-container--tight { padding: 0 24px; }
  .x-header__nav { display: none; }
  .x-hero { padding: 100px 0 100px; }
  .x-mock-card__inner { grid-template-columns: 1fr; }
  .x-mock-side { display: none; }
  .x-mock-kpis { grid-template-columns: 1fr 1fr; }
  .x-feature, .x-feature--reverse { grid-template-columns: 1fr; gap: 40px; }
  .x-feature--reverse .x-feature__visual { order: 0; }
  .x-pain__grid, .x-stats__grid, .x-teams__grid, .x-stories__grid { grid-template-columns: 1fr; }
  .x-pain__cta-band, .x-quote, .x-final { padding-left: 28px; padding-right: 28px; }
  .x-pain__cta-band { grid-template-columns: 1fr; padding: 36px 28px; }
  .x-stories__head { flex-direction: column; align-items: flex-start; }
  .x-footer__top { grid-template-columns: 1fr; }
  .x-footer__cols { grid-template-columns: repeat(2, 1fr); }
}
