:root {
  --blue: #6733da;
  --blue-2: #2e7dff;
  --blue-soft: #eaf1fe;
  --blue-line: #c8dcfb;
  --ink: #fff;
  --body: #a98ed3;
  --muted: #7089a8;
  --faint: #9fb2c9;
  --bg: #0a0414;
  --card: #150b28;
  --line: rgba(255, 255, 255, 0.06);
  --green: #0f9d58;
  --green-soft: #e7f6ee;
  --red: #e23d4d;
  --red-soft: #fdecee;
  --amber: #e08600;
  --amber-soft: #fff4e2;
  --violet: #6d3fe0;
  --gradient-primary: linear-gradient(
    135deg,
    #6422d6 0%,
    #6725d8 50%,
    #754cde 100%
  );
  --violet-soft: #f1ebfe;
  --teal: #0e9e8a;
  --teal-soft: #e6f6f3;
  --shadow: 0 1px 2px rgba(11, 27, 51, 0.04), 0 8px 24px rgba(11, 27, 51, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 100px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.tab-num {
  font-variant-numeric: tabular-nums;
}

a {
  color: inherit;
}

/* ---------- announcement ---------- */
.announce {
  background: linear-gradient(135deg, #6422d6 0%, #6725d8 50%, #754cde 100%);
  color: #fff;
  font-size: 13px;
  padding: 9px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.announce b {
  font-weight: 600;
}

.announce a {
  color: #cfe0ff;
  text-decoration: none;
  font-weight: 600;
}

/* ---------- hero ---------- */
.hero {
  /* background:
            radial-gradient(760px 320px at 88% -10%,
                rgba(109, 63, 224, 0.1),
                transparent 60%),
            radial-gradient(620px 300px at 4% 0%,
                rgba(46, 125, 255, 0.1),
                transparent 60%),
            #fff; */
  border-bottom: 1px solid var(--line);
  padding: 34px 0 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--violet-soft);
  border: 1px solid #e0d5fb;
  padding: 5px 12px;
  border-radius: 100px;
}

h1 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}

h1 span {
  color: var(--blue);
}

.viewline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  justify-content: center;
}

.viewline s {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  text-decoration: none;
  flex: 0 0 10px;
}

.viewline em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}

.hero .sub {
  color: var(--body);
  font-size: 14.5px;
  margin-top: 7px;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.livebadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid #c7ead7;
  padding: 7px 13px;
  border-radius: 100px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}

.tabsrow {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 24px;
  align-items: flex-start;
}

.tabset {
  display: flex;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 12px;
  flex-wrap: wrap;
}

.tabset button {
  border: 0;
  background: transparent;
  font: 600 13px "Inter";
  color: var(--body);
  padding: 8px 14px;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition:
    background 0.15s,
    color 0.15s;
}

.tabset button s {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  text-decoration: none;
}

/* .tabset button:hover {
  background: rgba(255, 255, 255, 0.65);
} */

.tabset button.on {
  background: var(--gradient-primary) !important;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(11, 27, 51, 0.12);
}

.cc2 {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--faint);
  background: #e1e9f6;
  padding: 2px 5px;
  border-radius: 5px;
}

.tabset button.on .cc2 {
  background: var(--blue-soft);
  color: var(--blue);
}

.tablabel {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: left;
}

/* ---------- generic ---------- */
section {
  padding: 26px 0;
}

.sechead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.sechead h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.sechead h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.sechead p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pad {
  padding: 20px 22px;
  background: #1c1035;
}

.chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
}

.chip.live {
  background: var(--red-soft);
  color: var(--red);
}

.chip.ok {
  background: var(--green-soft);
  color: var(--green);
}

.grid {
  display: grid;
  gap: 16px;
}

.up {
  color: var(--green);
  font-weight: 600;
}

.down {
  color: var(--red);
  font-weight: 600;
}

/* ---------- KPI ---------- */
.kpis {
  grid-template-columns: repeat(6, 1fr);
}

.kpi {
  padding: 16px 17px;
}

.kpi .k {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.kpi .v {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 7px 0 4px;
}

.kpi .d {
  font-size: 12px;
}

.kpi .bar {
  height: 4px;
  border-radius: 3px;
  background: #edf2fa;
  margin-top: 11px;
  overflow: hidden;
}

.kpi .bar u {
  display: block;
  height: 100%;
  border-radius: 3px;
  text-decoration: none;
  transition: width 0.35s;
}

/* ---------- charts ---------- */
.two {
  grid-template-columns: 1.9fr 1fr;
}

.legend {
  display: flex;
  gap: 18px;
  font-size: 12.5px;
  color: var(--body);
  flex-wrap: wrap;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.legend s {
  width: 16px;
  height: 3px;
  border-radius: 2px;
  text-decoration: none;
}

.axisx {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--faint);
  margin-top: 8px;
}

.donutrow {
  display: flex;
  align-items: center;
  gap: 18px;
}

.donutrow svg text {
  color: white;
  fill: white;
}

.dleg {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 12.5px;
}

.dleg div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--body);
}

.dleg b {
  margin-left: auto;
  color: var(--ink);
  font-weight: 600;
}

.sw {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  flex: 0 0 9px;
}

/* ---------- heatmap ---------- */
.hm {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
  margin: 9px 0 4px;
}

.hm i {
  height: 34px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-style: normal;
  color: #fff;
  font-weight: 600;
}

.hmlabel {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 12px;
}

.hmscale {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--faint);
  margin-top: 10px;
}

.hmscale u {
  flex: 0 0 130px;
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e4edfb, #2e7dff, #0a3fa8);
  text-decoration: none;
}

/* ---------- AI agent ---------- */
.agent {
  grid-template-columns: repeat(4, 1fr);
}

.rec {
  padding: 16px 17px;
  border-left: 4px solid;
}

.rec .tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.rec h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 7px 0 5px;
  letter-spacing: -0.01em;
  min-height: 40px;
}

.rec p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
  min-height: 80px;
}

.rec .val {
  display: inline-block;
  margin-top: 11px;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
}

/* ---------- feed / health ---------- */
.feedrow {
  grid-template-columns: 1.25fr 1fr;
}

.fl {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.fl:last-child {
  border-bottom: 0;
}

.fl time {
  font-size: 11.5px;
  color: var(--faint);
  width: 44px;
  flex: 0 0 44px;
  font-weight: 600;
}

.fl .txt {
  color: var(--body);
}

.fl .txt b {
  color: var(--ink);
  font-weight: 600;
}

.fl .st {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}

.hl {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.hl:last-child {
  border-bottom: 0;
}

.hl .nm {
  font-size: 13px;
  font-weight: 600;
  width: 140px;
  flex: 0 0 140px;
}

.hl .nm em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--faint);
  font-weight: 500;
  margin-top: 2px;
}

.hl .t {
  flex: 1;
  height: 7px;
  background: #edf2fa;
  border-radius: 4px;
  overflow: hidden;
}

.hl .t u {
  display: block;
  height: 100%;
  border-radius: 4px;
  text-decoration: none;
}

.hl b {
  width: 42px;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
}

.hl.sel {
  background: #f4f8ff;
  margin: 0 -12px;
  padding: 11px 12px;
  border-radius: 11px;
  border-bottom: 0;
}

.hl.sel .nm {
  color: var(--blue);
}

/* ---------- delta cards ---------- */
.deltas {
  grid-template-columns: repeat(4, 1fr);
}

.dc {
  padding: 16px 17px;
}

.dc .k {
  font-size: 13px;
  font-weight: 700;
}

.dc .s {
  font-size: 11.5px;
  color: var(--faint);
  margin-top: 2px;
}

.dc .nums {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin: 14px 0 8px;
}

.dc .nums div span {
  display: block;
  font-size: 11px;
  color: var(--faint);
  font-weight: 600;
  margin-bottom: 2px;
}

.dc .nums div b {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.dc .nums .old b {
  color: var(--faint);
  font-size: 18px;
}

.dc .msg {
  font-size: 12px;
  font-weight: 600;
}

/* ---------- tables ---------- */
table {
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 0 10px 10px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

td {
  padding: 12px 10px 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--body);
  vertical-align: middle;
}

tr:last-child td {
  border-bottom: 0;
}

td.pri {
  color: var(--ink);
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.p-miss {
  background: var(--red-soft);
  color: var(--red);
}

.p-weak {
  background: var(--amber-soft);
  color: var(--amber);
}

.p-won {
  background: var(--green-soft);
  color: var(--green);
}

.p-own {
  background: var(--blue-soft);
  color: var(--blue);
}

.p-3p {
  background: var(--violet-soft);
  color: var(--violet);
}

.rank {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #eef3fb;
  display: inline-grid;
  place-items: center;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--body);
}

tr.self td {
  background: transparent;
}

tr.self .rank {
  background: var(--blue);
  color: #fff;
}

.tnote {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}

.tnote b {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- distributions ---------- */
.dist {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}

.dist .n {
  width: 104px;
  flex: 0 0 104px;
  font-size: 12.5px;
  color: var(--body);
  font-weight: 500;
}

.dist .t {
  flex: 1;
  height: 22px;
  background: #f1f5fc;
  border-radius: 7px;
  overflow: hidden;
}

.dist .t u {
  display: block;
  height: 100%;
  border-radius: 7px;
  text-decoration: none;
  transition: width 0.35s;
}

.dist b {
  width: 62px;
  text-align: right;
  font-size: 12.5px;
  font-weight: 700;
}

/* ---------- feature tabs ---------- */
.featwrap {
  background: var(--card);
  border-radius: 20px;
  padding: 26px;
  color: #fff;
}

.featwrap .fh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.featwrap h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.featwrap .fh p {
  font-size: 13px;
  color: #a9c4ec;
  margin-top: 3px;
}

.ftabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
  border-radius: 12px;
  flex-wrap: wrap;
}

.ftabs span {
  font-size: 12.5px;
  font-weight: 600;
  color: #c6dbf7;
  padding: 8px 13px;
  border-radius: 9px;
  cursor: pointer;
  user-select: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.ftabs span:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ftabs span.on {
  background: #fff;
  color: #0b2e63;
}

.fpanel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px 22px;
  display: none;
}

.fpanel.on {
  display: block;
}

.fpanel h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.fpanel .fs {
  font-size: 12px;
  color: #a9c4ec;
  margin-bottom: 14px;
}

.vrow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12.5px;
}

.vrow:last-child {
  border-bottom: 0;
}

.vrow .no {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex: 0 0 24px;
}

.vrow .m {
  flex: 1;
}

.vrow .m b {
  display: block;
  font-weight: 600;
  font-size: 13px;
}

.vrow .m em {
  font-style: normal;
  font-size: 11.5px;
  color: #a9c4ec;
}

.vrow .val {
  font-weight: 700;
  font-size: 13px;
  text-align: right;
}

.vrow .val em {
  display: block;
  font-style: normal;
  font-size: 10.5px;
  color: #a9c4ec;
  font-weight: 500;
}

.warbox {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 13px 15px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.warbox .wt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
}

.warbox .wt b {
  font-size: 13.5px;
  font-weight: 700;
}

.warbox .brands {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.warbox .brands i {
  font-style: normal;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 9px;
  border-radius: 100px;
}

.warbox p {
  font-size: 12px;
  color: #b9d0f0;
  line-height: 1.45;
}

.hot {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(255, 92, 110, 0.22);
  color: #ffb3bc;
}

.mod {
  background: rgba(255, 176, 32, 0.2);
  color: #ffd79a;
}

.mgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mcell {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 13px 15px;
}

.mcell b {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.mcell .pct {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mcell .lab {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 7px;
}

/* ---------- deep dive ---------- */
.dd {
  grid-template-columns: 1.15fr 1fr;
}

.ddhead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.ddlogo {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
}

.ddhead h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ddhead p {
  font-size: 12.5px;
  color: var(--muted);
}

.ddstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.ddstats div {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 11px 13px;
}

.ddstats span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.ddstats b {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ins {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f5fb;
}

.ins:last-child {
  border-bottom: 0;
}

.ins .ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex: 0 0 30px;
}

.ins p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
}

.ins p b {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- CTA band ---------- */
.ctaband {
  background: var(--card);
  border-radius: 22px;
  padding: 36px 38px;
  color: #fff;
}

.ctaband h2 {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 22ch;
  line-height: 1.2;
}

.ctaband p {
  font-size: 14px;
  color: #d5e4ff;
  margin-top: 12px;
  max-width: 80ch;
  line-height: 1.6;
}

.ctalist {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
}

.ctalist div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #eaf2ff;
}

.ctalist i {
  font-style: normal;
  color: #8fe3c6;
  font-weight: 800;
}

.btns {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 11px;
}

.btn.w {
  background: #fff;
  color: var(--blue);
}

.btn.o {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.ctacols {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 34px;
  align-items: center;
}

.ctastat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.ctastat b {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.ctastat span {
  font-size: 12.5px;
  color: #c9ddff;
}

/* ---------- ROI ---------- */
.roi {
  grid-template-columns: 1.1fr 1fr;
}

.slider {
  margin-bottom: 20px;
}

.slider .sl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 9px;
}

.slider .sl span {
  font-size: 12.5px;
  color: white;
  font-weight: 500;
}

.slider .sl b {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}

.track {
  height: 6px;
  background: #2a1745;
  border-radius: 4px;
  position: relative;
}

.track u {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  text-decoration: none;
}

.track i {
  position: absolute;
  top: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  box-shadow: 0 2px 6px rgba(17, 82, 216, 0.3);
}

.ticks {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--faint);
  margin-top: 7px;
}

.hint {
  font-size: 11.5px;
  color: var(--faint);
  margin-top: 6px;
}

.roiout {
  background: #0a0414;
  border-radius: 16px;
  padding: 24px;
  color: #fff;
}

.roiout .rl {
  font-size: 12px;
  color: #a98ed3;
  font-weight: 600;
}

.roiout .big {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 6px 0 4px;
  background: #4b1e9b33;
  border: 1px solid #754cde;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.roiout .sm {
  font-size: 12.5px;
  color: #a9c4ec;
  margin-bottom: 20px;
}

.roiout .r3 {
  display: grid;
  gap: 10px;
}

.roiout .r3 div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1c1035;
  border-radius: 11px;
  padding: 11px 14px;
  font-size: 13px;
  border-left: 3px solid #754cde;
}

.roiout .r3 b {
  font-weight: 800;
}

/* ---------- case study ---------- */
.cs {
  grid-template-columns: 1.4fr 1fr;
  background: linear-gradient(135deg, #1c1035 0%, #2a1745 100%);
  border: 1px solid #ffffff1f;
  border-radius: 20px;
  padding: 36px;
}

.csquote {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 16px 0 14px;
}

.csbody {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.65;
}

.csmeta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.csav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, #6d3fe0, #1152d8);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}

.csmeta b {
  font-size: 13.5px;
  font-weight: 600;
}

.csmeta span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.csres {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.csres div {
  background: #1c1035;
  border: 1px solid #ffffff0f;
  border-radius: 14px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.csres div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #754cde;
}

.csres span {
  font-size: 12px;
  color: #a98ed3;
  font-weight: 600;
}

.csres b {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue);
  margin: 3px 0;
}

.csres em {
  font-style: normal;
  font-size: 12px;
  color: #c9c3dd;
}

/* ---------- report lead magnet ---------- */
.reportband {
  background: #0a0416;
  padding: 56px 0;
  margin-top: 26px;
}

.reportcard {
  border: 1px solid rgba(139, 92, 246, 0.42);
  border-radius: 26px;
  padding: 46px 48px;
  background:
    radial-gradient(
      700px 420px at 12% 0%,
      rgba(124, 77, 255, 0.2),
      transparent 62%
    ),
    linear-gradient(150deg, #180c31, #0e0620 62%, #140a28);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.1),
    0 30px 90px rgba(80, 30, 190, 0.28);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.rbadge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #c9b4ff;
  background: rgba(124, 77, 255, 0.16);
  border: 1px solid rgba(139, 92, 246, 0.45);
  padding: 8px 16px;
  border-radius: 100px;
}

.rbadge s {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  text-decoration: none;
  box-shadow: 0 0 10px #a78bfa;
}

.reportcard h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.14;
  color: #fff;
  margin: 20px 0 16px;
}

.reportcard h2 span {
  color: #9b6bff;
}

.rlead {
  font-size: 15px;
  line-height: 1.65;
  color: #b6a5d8;
  max-width: 56ch;
}

.rlist {
  display: grid;
  gap: 13px;
  margin: 24px 0 28px;
}

.rlist div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #b6a5d8;
  line-height: 1.5;
}

.rlist i {
  font-style: normal;
  color: #9b6bff;
  font-weight: 800;
  flex: 0 0 16px;
}

.rlist b {
  color: #fff;
  font-weight: 600;
}

.rform {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 18px;
  padding: 22px;
}

.rform input,
.rform textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font: 400 14px "Inter";
  margin-bottom: 12px;
  outline: none;
  resize: none;
}

.rform input::placeholder,
.rform textarea::placeholder {
  color: #7c6ba0;
}

.rform input:focus,
.rform textarea:focus {
  border-color: #9b6bff;
  background: rgba(124, 77, 255, 0.08);
}

.phonerow {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.cc {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 12px;
  padding: 0 14px;
  color: #c9b4ff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.cc i {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  background: rgba(124, 77, 255, 0.22);
  padding: 2px 5px;
  border-radius: 5px;
}

.phonerow input {
  margin-bottom: 0;
}

.lead-submit {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 15px;
  font: 800 15px "Inter";
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #7c4dff, #a855f7);
  box-shadow: 0 10px 26px rgba(124, 77, 255, 0.4);
}

.rtrust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #8a79b0;
  margin-top: 14px;
}

.rtrust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rtrust s {
  color: #9b6bff;
  text-decoration: none;
}

.rmock {
  perspective: 1200px;
  position: relative;
  z-index: 2;
}

.rmockcard {
  background: linear-gradient(135deg, #2a1a4a, #1a0e2e);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(75, 30, 155, 0.3);
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  overflow: hidden;
  height: 100%;
  position: relative;
  transform: rotateY(-15deg) rotateX(8deg);
  transform-style: preserve-3d;
}

.rmockchip {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9b4ff;
  background: rgba(124, 77, 255, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.4);
  padding: 6px 12px;
  border-radius: 8px;
  align-self: flex-start;
}

.rmocktitle {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #fff;
  margin-top: auto;
}

.rmocktitle em {
  font-style: normal;
  color: #9b6bff;
  display: block;
}

.rmockfoot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
  padding-top: 34px;
}

.rmockfoot div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 11px;
  padding: 12px 6px;
  text-align: center;
}

.rmockfoot b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.rmockfoot span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a79b0;
}

.rpages {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a79b0;
  margin-top: 16px;
}

/* ---------- stats strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}

.strip div b {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue);
}

.strip div span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.hero-top-inner {
  text-align: center;
}

/* ---------- faq ---------- */
.faq {
  display: grid;
  gap: 12px;
}

.q {
  padding: 17px 20px;
}

.q b {
  font-size: 14.5px;
  font-weight: 700;
  display: block;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.q p {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .kpis {
    grid-template-columns: repeat(3, 1fr);
  }

  .two,
  .feedrow,
  .dd,
  .roi,
  .cs,
  .ctacols,
  .reportcard {
    grid-template-columns: 1fr !important;
  }

  .agent,
  .deltas {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip,
  .mgrid {
    grid-template-columns: repeat(3, 1fr);
  }

  h1 {
    font-size: 30px;
  }

  .reportcard {
    padding: 32px 26px;
    gap: 34px;
  }

  .reportcard h2 {
    font-size: 30px;
  }

  .rmockcard {
    transform: none;
    min-height: 340px;
  }
}

@media (max-width: 500px) {
  .pad {
    overflow-x: auto;
  }

  .agent,
  .deltas,
  .kpis {
    grid-template-columns: repeat(1, 1fr);
  }
  .announce {
    display: none;
  }
  .donutrow {
    flex-direction: column;
  }
  .navfix {
    top: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse {
    animation: none;
  }
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2a1745;
  border: 1px solid #754cde;
  border-left: 4px solid #754cde;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  z-index: 999999;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transform: translateX(110%);
  transition: transform 0.3s ease;
}
.toast.error {
  border-left-color: #d32f2f;
}

.toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #4b1e9b33;
  color: #754cde;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast.error .toast-icon {
  background: #d32f2f26;
  color: #d32f2f;
}

.toast.show {
  transform: translateX(0);
}

.roiout .big::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(117, 76, 222, 0.15),
    transparent
  );
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
