/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

html { scroll-behavior: auto !important; overflow-x: clip; } /* Lenis maneja el smooth */

section[id] { scroll-margin-top: 60px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: #0a0a0a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition:
    opacity 0.65s cubic-bezier(0, 0.5, 0.5, 1),
    transform 0.65s cubic-bezier(0, 0.5, 0.5, 1);
}

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

/* ===========================
   WORD-BY-WORD TITLE REVEAL
   =========================== */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.07em;
}

/* anime.js ml11 — line sweep revealing the title behind it */
.ml11 {
  position: relative;
}

.ml11 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.1em;
  padding-right: 0.05em;
  padding-bottom: 0.15em;
}

.ml11 .line {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #fff;
  transform-origin: 0 50%;
  will-change: transform;
}

.ml11 .line1 {
  top: 0;
  left: 0;
}

.ml11 .letters {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

.word-inner {
  display: inline-block;
  transform: translateY(68%) skewY(5deg);
  opacity: 0;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.55s ease;
}

.word-inner.visible {
  transform: translateY(0) skewY(0deg);
  opacity: 1;
}

/* ===========================
   TYPING CURSOR (eyebrow)
   =========================== */
.typing-cursor {
  display: inline-block;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  animation: blink-cursor 0.7s steps(1) infinite;
  margin-left: 1px;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ===========================
   TYPOGRAPHY — SPACE GROTESK HEADINGS
   =========================== */
.hero-title,
.section-header h2,
.cta-box h2,
.step-content h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

/* ===========================
   SKY ACCENT TEXT
   =========================== */
.rainbow-text {
  background: linear-gradient(90deg,
    #27bcf6,
    #96e7ff,
    #1598dc,
    #27bcf6
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: rainbow-flow 5s linear infinite;
}

@keyframes rainbow-flow {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   LEGAL PAGE
   =========================== */
.legal-page {
  min-height: 70vh;
  background: #fff;
}

.legal-hero {
  padding: 150px 0 54px;
  background: #07131d;
  color: #fff;
}

.legal-hero h1 {
  max-width: 760px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  margin-bottom: 18px;
}

.legal-hero p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.legal-content {
  padding: 64px 0 84px;
}

.legal-container {
  max-width: 780px;
}

.legal-content h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  margin: 34px 0 12px;
}

.legal-content p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
}

.label.light {
  color: rgba(255, 255, 255, 0.45);
}

.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0a0a0a;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.btn-primary.white {
  background: #fff;
  color: #0a0a0a;
}

.btn-primary.white:hover { opacity: 0.9; }

.btn-primary.accent {
  background: #32c7ff;
  color: #07131c;
  box-shadow: 0 10px 28px rgba(50, 199, 255, 0.25);
}

.btn-primary.accent:hover {
  opacity: 1;
  background: #74ddff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 27px;
  border-radius: 100px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover { transform: translateY(-1px); }

.btn-secondary.ghost {
  color: #fff;
  border: 1px solid rgba(50, 199, 255, 0.6);
  background: rgba(50, 199, 255, 0.04);
}

.btn-secondary.ghost:hover {
  border-color: #32c7ff;
  background: rgba(50, 199, 255, 0.12);
}

.btn-secondary.dark-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary.dark-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #062b16;
  font-size: 13.5px;
  font-weight: 500;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.24);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav:hover {
  background: transparent;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.34);
}

.btn-nav img {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.nav-cta-mobile { display: none; }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 720;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  flex-shrink: 0;
}

.brand-mark-img {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(7, 19, 29, 0.12);
}

.footer-brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 450;
  color: #555;
  transition: color 0.2s;
}

.nav-links a:hover { color: #0a0a0a; }

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  padding: 7px 18px;
  transition: background 0.18s, border-color 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #0a0a0a;
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  padding: 120px 24px 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.hero::after {
  display: none;
}

/* Star field layers */
.star-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.74;
}

#star-sm {
  width: 1px; height: 1px;
  background: transparent;
  box-shadow:
    501px 811px #fff, 1450px 1324px #fff, 1093px 1780px #fff, 1469px 678px #fff,
    904px 741px #fff, 1160px 781px #fff, 1841px 1962px #fff, 1630px 1667px #fff,
    1788px 676px #fff, 367px 1734px #fff, 1343px 156px #fff, 1283px 1142px #fff,
    1062px 378px #fff, 1395px 467px #fff, 1017px 1891px #fff, 137px 1114px #fff,
    1767px 1403px #fff, 1543px 11px #fff, 1078px 181px #fff, 1189px 1574px #fff,
    1697px 1551px #fff, 439px 472px #fff, 1491px 677px #fff, 1364px 599px #fff,
    34px 382px #fff, 1221px 1584px #fff, 1266px 1499px #fff, 169px 1907px #fff,
    1219px 1125px #fff, 659px 18px #fff, 1731px 1959px #fff, 332px 1216px #fff,
    1913px 788px #fff, 80px 712px #fff, 326px 1605px #fff, 574px 1502px #fff,
    473px 1653px #fff, 404px 975px #fff, 322px 1797px #fff, 425px 1321px #fff,
    1121px 1797px #fff, 731px 647px #fff, 891px 1584px #fff, 1523px 109px #fff,
    1379px 244px #fff, 865px 1064px #fff, 493px 956px #fff, 624px 1380px #fff,
    440px 619px #fff, 1630px 767px #fff, 955px 1196px #fff, 62px 729px #fff,
    126px 946px #fff, 1256px 896px #fff, 1444px 256px #fff, 661px 1628px #fff,
    1078px 1716px #fff, 300px 737px #fff, 1734px 413px #fff, 1296px 129px #fff,
    1771px 1678px #fff, 977px 1764px #fff, 1879px 549px #fff, 665px 1531px #fff,
    89px 701px #fff, 1084px 1183px #fff, 1597px 1576px #fff, 1354px 1774px #fff,
    554px 1471px #fff, 1469px 287px #fff, 887px 106px #fff, 1962px 766px #fff,
    638px 805px #fff, 1651px 741px #fff, 1517px 1826px #fff, 24px 1152px #fff,
    507px 558px #fff, 1262px 652px #fff, 246px 1048px #fff, 1077px 421px #fff,
    1866px 1847px #fff, 1986px 1561px #fff, 704px 632px #fff, 1991px 1875px #fff,
    1227px 395px #fff, 45px 1116px #fff, 247px 786px #fff, 890px 607px #fff,
    787px 1235px #fff, 557px 524px #fff, 1582px 1285px #fff, 1725px 1366px #fff,
    952px 747px #fff, 251px 458px #fff, 1500px 1250px #fff, 1999px 1734px #fff,
    1336px 1955px #fff, 1705px 1464px #fff, 728px 697px #fff, 594px 510px #fff,
    1345px 1990px #fff, 1919px 1803px #fff, 1117px 966px #fff, 1629px 97px #fff,
    1046px 1196px #fff, 810px 1092px #fff, 722px 976px #fff, 406px 18px #fff,
    1665px 1860px #fff, 1758px 1628px #fff, 1183px 463px #fff, 564px 239px #fff,
    13px 1767px #fff, 1482px 1472px #fff, 1700px 347px #fff, 1362px 244px #fff,
    1141px 1708px #fff, 22px 885px #fff, 374px 1309px #fff, 1034px 1037px #fff,
    1725px 1086px #fff, 1343px 1921px #fff, 596px 903px #fff, 1061px 478px #fff,
    18px 1409px #fff, 729px 1364px #fff, 264px 911px #fff, 677px 1442px #fff,
    123px 33px #fff, 1303px 646px #fff, 1945px 792px #fff, 1305px 938px #fff,
    918px 1536px #fff, 620px 948px #fff, 183px 646px #fff, 695px 687px #fff,
    881px 272px #fff, 1521px 1212px #fff, 1423px 1022px #fff, 1545px 1271px #fff,
    1393px 348px #fff, 685px 1910px #fff, 1446px 856px #fff, 73px 1201px #fff,
    736px 999px #fff, 673px 796px #fff, 469px 850px #fff, 1912px 142px #fff,
    1278px 664px #fff, 184px 1990px #fff, 1173px 1312px #fff, 782px 1879px #fff,
    323px 1035px #fff, 611px 908px #fff, 565px 1449px #fff, 748px 1713px #fff,
    1047px 490px #fff, 1040px 1872px #fff, 1818px 1659px #fff, 1806px 1327px #fff,
    386px 575px #fff, 1550px 463px #fff, 148px 687px #fff, 651px 1683px #fff,
    1588px 1194px #fff, 1831px 2px #fff, 581px 876px #fff, 1396px 1743px #fff,
    1212px 1810px #fff, 421px 1920px #fff, 658px 1461px #fff, 1859px 1809px #fff,
    1456px 388px #fff, 186px 1627px #fff, 1528px 1145px #fff, 171px 97px #fff,
    674px 1072px #fff, 676px 1052px #fff, 1165px 1131px #fff, 1088px 781px #fff,
    1231px 948px #fff, 330px 257px #fff, 426px 1046px #fff, 549px 652px #fff,
    1338px 74px #fff, 1749px 364px #fff, 931px 369px #fff, 383px 1428px #fff,
    1558px 389px #fff, 927px 133px #fff, 234px 1888px #fff, 1785px 1617px #fff,
    556px 643px #fff, 401px 275px #fff, 406px 1644px #fff, 1253px 1852px #fff,
    1599px 883px #fff, 744px 1721px #fff, 524px 1297px #fff, 1226px 1177px #fff,
    1679px 55px #fff, 874px 1811px #fff, 838px 790px #fff, 1241px 430px #fff,
    1676px 652px #fff, 1191px 568px #fff, 53px 1990px #fff, 1163px 237px #fff,
    61px 223px #fff, 592px 456px #fff, 1844px 271px #fff, 1324px 1488px #fff,
    1373px 717px #fff, 1822px 709px #fff, 1464px 941px #fff, 1445px 1118px #fff,
    991px 1414px #fff, 1964px 1076px #fff, 108px 172px #fff, 641px 1722px #fff,
    1539px 427px #fff, 1697px 45px #fff, 1301px 1353px #fff, 1060px 329px #fff,
    967px 1396px #fff, 493px 301px #fff, 1228px 1406px #fff, 1211px 1653px #fff,
    444px 1822px #fff, 1746px 353px #fff, 1449px 381px #fff, 671px 887px #fff,
    650px 138px #fff, 30px 1839px #fff, 1094px 1405px #fff, 273px 796px #fff,
    1618px 1964px #fff, 1045px 1849px #fff, 1472px 1155px #fff, 1529px 1312px #fff,
    728px 448px #fff, 44px 1908px #fff, 691px 818px #fff, 254px 293px #fff,
    1981px 1133px #fff, 1307px 375px #fff, 196px 316px #fff, 1241px 1975px #fff,
    1138px 1706px #fff, 1769px 463px #fff, 1768px 1428px #fff, 1730px 590px #fff,
    1780px 523px #fff, 1862px 1526px #fff, 1613px 909px #fff, 1266px 1781px #fff,
    470px 352px #fff, 699px 1682px #fff, 1002px 614px #fff, 1209px 133px #fff,
    1842px 518px #fff, 1422px 1836px #fff, 1720px 1901px #fff, 470px 1788px #fff,
    1355px 1387px #fff, 146px 1162px #fff, 933px 80px #fff, 681px 1063px #fff,
    313px 1341px #fff, 740px 1498px #fff, 168px 1014px #fff, 345px 1355px #fff,
    1498px 1562px #fff, 1626px 1358px #fff, 890px 403px #fff, 663px 562px #fff,
    1481px 168px #fff, 22px 719px #fff, 774px 1041px #fff, 1899px 829px #fff,
    430px 158px #fff, 430px 361px #fff, 1592px 1334px #fff, 224px 323px #fff,
    1639px 1131px #fff, 7px 271px #fff, 1646px 1514px #fff, 1605px 1444px #fff,
    1820px 1665px #fff, 1549px 1641px #fff, 1609px 1377px #fff, 486px 1098px #fff,
    229px 613px #fff, 542px 1694px #fff, 318px 256px #fff, 1861px 918px #fff,
    889px 892px #fff, 442px 1524px #fff, 19px 422px #fff, 1935px 1908px #fff,
    828px 109px #fff, 862px 1248px #fff, 1275px 560px #fff, 906px 63px #fff,
    337px 1605px #fff, 1691px 918px #fff, 1414px 679px #fff, 1726px 749px #fff,
    1540px 1149px #fff, 1337px 1466px #fff, 446px 430px #fff, 676px 1616px #fff,
    840px 326px #fff, 976px 977px #fff, 1840px 642px #fff, 1273px 804px #fff,
    1071px 928px #fff, 1292px 1675px #fff, 29px 1148px #fff, 1585px 135px #fff,
    1007px 563px #fff, 1035px 78px #fff, 1174px 574px #fff, 120px 1304px #fff,
    845px 1292px #fff, 861px 540px #fff, 234px 232px #fff, 1940px 1367px #fff,
    759px 639px #fff, 1775px 1381px #fff, 906px 372px #fff, 1104px 1165px #fff,
    1524px 911px #fff, 1882px 330px #fff, 1389px 700px #fff, 300px 1629px #fff,
    220px 1614px #fff, 563px 140px #fff, 1611px 1586px #fff, 793px 1316px #fff,
    325px 1070px #fff, 1722px 1462px #fff, 1406px 1120px #fff, 1169px 1768px #fff,
    1956px 1053px #fff, 959px 1587px #fff, 585px 1566px #fff, 370px 204px #fff,
    1606px 1416px #fff, 443px 1606px #fff, 1499px 1102px #fff, 1943px 105px #fff,
    1121px 1594px #fff, 1512px 32px #fff, 871px 1425px #fff, 433px 100px #fff,
    294px 1471px #fff, 1688px 1755px #fff, 1666px 591px #fff, 1034px 300px #fff,
    734px 1178px #fff, 1342px 313px #fff, 1616px 1590px #fff, 1763px 1472px #fff,
    632px 1935px #fff, 1708px 872px #fff, 1871px 915px #fff, 1829px 1020px #fff,
    1599px 578px #fff, 42px 585px #fff, 1163px 1382px #fff, 1744px 1272px #fff,
    984px 1426px #fff, 1786px 1584px #fff, 1813px 379px #fff, 1867px 1127px #fff,
    97px 567px #fff, 626px 988px #fff, 1178px 79px #fff, 1703px 211px #fff,
    961px 1785px #fff, 110px 975px #fff, 953px 1941px #fff, 1027px 1790px #fff,
    1665px 107px #fff, 11px 964px #fff, 1718px 1147px #fff, 21px 1728px #fff,
    1358px 1922px #fff, 872px 65px #fff, 1191px 1635px #fff, 762px 681px #fff,
    1519px 1033px #fff, 906px 566px #fff, 1074px 657px #fff, 1093px 415px #fff,
    51px 198px #fff, 1075px 1418px #fff, 1547px 1070px #fff, 225px 920px #fff,
    850px 1974px #fff, 981px 595px #fff, 1425px 131px #fff, 460px 917px #fff,
    56px 495px #fff, 714px 428px #fff, 920px 493px #fff, 470px 1521px #fff,
    532px 821px #fff, 1905px 71px #fff, 883px 1501px #fff, 294px 196px #fff,
    381px 1999px #fff, 332px 793px #fff, 1246px 408px #fff, 233px 149px #fff,
    315px 231px #fff, 1594px 1302px #fff, 696px 1585px #fff, 791px 136px #fff,
    479px 199px #fff, 1627px 1413px #fff, 1824px 924px #fff, 1631px 342px #fff,
    1251px 1151px #fff, 284px 1781px #fff, 497px 1052px #fff, 204px 1161px #fff,
    646px 1499px #fff, 1762px 558px #fff, 854px 1833px #fff, 883px 945px #fff,
    44px 982px #fff, 1101px 834px #fff, 515px 1748px #fff, 1578px 1435px #fff,
    819px 1258px #fff, 776px 670px #fff, 115px 385px #fff, 1478px 434px #fff,
    885px 20px #fff, 192px 1513px #fff, 78px 1129px #fff, 1774px 1105px #fff,
    955px 1149px #fff, 1817px 1929px #fff, 1106px 1832px #fff, 1107px 1997px #fff,
    94px 23px #fff, 243px 982px #fff, 43px 1972px #fff, 1798px 673px #fff,
    1131px 1589px #fff, 841px 14px #fff, 826px 345px #fff, 687px 56px #fff,
    1084px 32px #fff, 1887px 1878px #fff, 153px 526px #fff, 1828px 253px #fff,
    1947px 1105px #fff, 886px 700px #fff, 1307px 1723px #fff, 1274px 651px #fff,
    1530px 837px #fff, 1699px 1637px #fff, 1703px 1331px #fff, 1929px 1557px #fff,
    1763px 737px #fff, 1118px 1680px #fff, 1545px 692px #fff, 1462px 1092px #fff,
    208px 1667px #fff, 1393px 859px #fff, 186px 1794px #fff, 351px 1199px #fff,
    642px 1995px #fff, 1061px 1726px #fff, 1708px 115px #fff, 1233px 1305px #fff,
    637px 1786px #fff, 1730px 603px #fff, 75px 1240px #fff, 1704px 1326px #fff,
    584px 346px #fff, 438px 1554px #fff, 561px 513px #fff, 1382px 225px #fff,
    467px 1674px #fff, 1403px 815px #fff, 1546px 1835px #fff, 127px 1119px #fff,
    276px 591px #fff, 688px 1458px #fff, 765px 646px #fff, 474px 984px #fff,
    171px 361px #fff, 94px 1480px #fff, 1962px 1666px #fff, 909px 1037px #fff,
    1725px 222px #fff, 253px 1355px #fff, 1892px 1901px #fff, 275px 1847px #fff,
    28px 1184px #fff, 1725px 1382px #fff, 882px 647px #fff, 1935px 1046px #fff,
    10px 344px #fff, 292px 1328px #fff, 127px 1352px #fff, 752px 929px #fff,
    1589px 384px #fff, 284px 1829px #fff, 381px 820px #fff, 1229px 1125px #fff,
    777px 429px #fff, 1811px 1499px #fff, 1573px 287px #fff, 295px 756px #fff,
    389px 616px #fff, 781px 41px #fff, 1092px 333px #fff, 794px 1588px #fff,
    386px 1847px #fff, 1802px 710px #fff, 662px 60px #fff, 640px 264px #fff,
    463px 746px #fff, 1859px 799px #fff, 763px 37px #fff, 639px 396px #fff,
    357px 1071px #fff, 1190px 1430px #fff, 1814px 257px #fff, 1382px 235px #fff,
    606px 1304px #fff, 1939px 1470px #fff, 1124px 349px #fff, 307px 1567px #fff,
    310px 1323px #fff, 1145px 922px #fff, 1196px 1922px #fff, 1647px 544px #fff,
    788px 1337px #fff, 257px 632px #fff, 1413px 414px #fff, 590px 620px #fff,
    582px 794px #fff, 1702px 1481px #fff, 1055px 53px #fff, 157px 346px #fff,
    50px 1901px #fff, 1038px 1369px #fff, 796px 1941px #fff, 215px 194px #fff,
    1567px 1538px #fff, 367px 800px #fff, 1044px 489px #fff, 1109px 1712px #fff,
    524px 327px #fff, 525px 1252px #fff, 1475px 1240px #fff, 529px 436px #fff,
    795px 834px #fff, 122px 1371px #fff, 79px 482px #fff, 520px 1249px #fff,
    336px 1878px #fff, 188px 944px #fff, 325px 1259px #fff, 1491px 1942px #fff,
    620px 1054px #fff, 1606px 1153px #fff, 1448px 502px #fff, 53px 1381px #fff,
    107px 1670px #fff, 1380px 618px #fff, 967px 1557px #fff, 1116px 1722px #fff,
    1174px 1044px #fff, 1805px 717px #fff, 663px 394px #fff, 1848px 1007px #fff,
    389px 802px #fff, 49px 392px #fff, 1650px 852px #fff, 1678px 1012px #fff,
    335px 1009px #fff, 1818px 1631px #fff, 1568px 742px #fff, 1162px 1991px #fff,
    52px 1190px #fff, 1401px 928px #fff, 119px 1549px #fff, 537px 1529px #fff,
    2px 1709px #fff, 122px 387px #fff, 543px 2px #fff, 27px 1971px #fff,
    507px 1377px #fff, 1362px 1080px #fff, 1031px 1544px #fff, 1631px 1174px #fff,
    1603px 312px #fff, 1626px 1422px #fff, 1430px 615px #fff, 1958px 1431px #fff,
    1946px 1412px #fff, 1848px 247px #fff, 984px 1808px #fff, 1396px 225px #fff,
    319px 717px #fff, 1252px 875px #fff, 1619px 156px #fff, 951px 1971px #fff,
    386px 355px #fff, 1406px 1151px #fff, 273px 1538px #fff, 844px 1570px #fff,
    947px 151px #fff, 1363px 525px #fff, 209px 307px #fff, 1923px 1718px #fff,
    993px 1741px #fff, 1513px 353px #fff, 1353px 61px #fff, 664px 352px #fff,
    1382px 359px #fff, 1487px 1707px #fff, 657px 1045px #fff, 1107px 490px #fff,
    1834px 1176px #fff, 837px 1438px #fff, 1947px 448px #fff, 1196px 333px #fff,
    151px 555px #fff, 18px 992px #fff, 458px 748px #fff, 1801px 890px #fff,
    1093px 1012px #fff, 315px 1101px #fff, 194px 323px #fff, 754px 292px #fff,
    1737px 7px #fff, 40px 840px #fff, 1170px 805px #fff, 176px 1753px #fff,
    805px 1148px #fff, 1578px 1271px #fff, 367px 1494px #fff, 363px 1111px #fff,
    1955px 243px #fff, 1451px 1093px #fff, 375px 617px #fff, 1223px 720px #fff,
    1178px 13px #fff, 1456px 865px #fff, 1440px 49px #fff, 186px 1569px #fff,
    320px 1853px #fff, 300px 539px #fff, 1559px 509px #fff, 1985px 1108px #fff,
    1588px 828px #fff, 525px 1432px #fff, 831px 363px #fff, 141px 281px #fff,
    1319px 402px #fff, 40px 456px #fff, 1955px 478px #fff, 1758px 818px #fff,
    1924px 688px #fff, 1030px 953px #fff, 1982px 210px #fff, 917px 1401px #fff,
    1051px 1837px #fff, 1045px 463px #fff, 1744px 573px #fff, 529px 1530px #fff,
    542px 469px #fff, 1982px 324px #fff, 1902px 1422px #fff, 1968px 782px #fff,
    1666px 1561px #fff, 955px 304px #fff, 323px 778px #fff, 272px 443px #fff,
    485px 581px #fff, 1353px 1058px #fff, 1257px 131px #fff, 434px 98px #fff,
    1587px 1953px #fff, 1749px 68px #fff, 1984px 839px #fff, 1518px 183px #fff,
    1071px 855px #fff, 1662px 1994px #fff, 1111px 106px #fff, 1954px 838px #fff;
  animation: starDrift 50s linear infinite;
}
#star-sm::after {
  content: '';
  position: absolute;
  top: 2000px;
  width: 1px; height: 1px;
  background: transparent;
  box-shadow:
    501px 811px #fff, 1450px 1324px #fff, 1093px 1780px #fff, 1469px 678px #fff,
    904px 741px #fff, 1160px 781px #fff, 1841px 1962px #fff, 1630px 1667px #fff,
    1788px 676px #fff, 367px 1734px #fff, 1343px 156px #fff, 1283px 1142px #fff,
    1062px 378px #fff, 1395px 467px #fff, 1017px 1891px #fff, 137px 1114px #fff,
    1767px 1403px #fff, 1543px 11px #fff, 1078px 181px #fff, 1189px 1574px #fff,
    1697px 1551px #fff, 439px 472px #fff, 1491px 677px #fff, 1364px 599px #fff,
    34px 382px #fff, 1221px 1584px #fff, 1266px 1499px #fff, 169px 1907px #fff,
    1219px 1125px #fff, 659px 18px #fff, 1731px 1959px #fff, 332px 1216px #fff,
    1913px 788px #fff, 80px 712px #fff, 326px 1605px #fff, 574px 1502px #fff,
    473px 1653px #fff, 404px 975px #fff, 322px 1797px #fff, 425px 1321px #fff,
    1121px 1797px #fff, 731px 647px #fff, 891px 1584px #fff, 1523px 109px #fff,
    1379px 244px #fff, 865px 1064px #fff, 493px 956px #fff, 624px 1380px #fff,
    440px 619px #fff, 1630px 767px #fff, 955px 1196px #fff, 62px 729px #fff,
    126px 946px #fff, 1256px 896px #fff, 1444px 256px #fff, 661px 1628px #fff,
    1078px 1716px #fff, 300px 737px #fff, 1734px 413px #fff, 1296px 129px #fff,
    1771px 1678px #fff, 977px 1764px #fff, 1879px 549px #fff, 665px 1531px #fff,
    89px 701px #fff, 1084px 1183px #fff, 1597px 1576px #fff, 1354px 1774px #fff,
    554px 1471px #fff, 1469px 287px #fff, 887px 106px #fff, 1962px 766px #fff,
    638px 805px #fff, 1651px 741px #fff, 1517px 1826px #fff, 24px 1152px #fff,
    507px 558px #fff, 1262px 652px #fff, 246px 1048px #fff, 1077px 421px #fff,
    1866px 1847px #fff, 1986px 1561px #fff, 704px 632px #fff, 1991px 1875px #fff,
    1227px 395px #fff, 45px 1116px #fff, 247px 786px #fff, 890px 607px #fff,
    787px 1235px #fff, 557px 524px #fff, 1582px 1285px #fff, 1725px 1366px #fff,
    952px 747px #fff, 251px 458px #fff, 1500px 1250px #fff, 1999px 1734px #fff,
    1336px 1955px #fff, 1705px 1464px #fff, 728px 697px #fff, 594px 510px #fff,
    1345px 1990px #fff, 1919px 1803px #fff, 1117px 966px #fff, 1629px 97px #fff,
    1046px 1196px #fff, 810px 1092px #fff, 722px 976px #fff, 406px 18px #fff,
    1665px 1860px #fff, 1758px 1628px #fff, 1183px 463px #fff, 564px 239px #fff,
    13px 1767px #fff, 1482px 1472px #fff, 1700px 347px #fff, 1362px 244px #fff,
    1141px 1708px #fff, 22px 885px #fff, 374px 1309px #fff, 1034px 1037px #fff,
    1725px 1086px #fff, 1343px 1921px #fff, 596px 903px #fff, 1061px 478px #fff,
    18px 1409px #fff, 729px 1364px #fff, 264px 911px #fff, 677px 1442px #fff,
    123px 33px #fff, 1303px 646px #fff, 1945px 792px #fff, 1305px 938px #fff,
    918px 1536px #fff, 620px 948px #fff, 183px 646px #fff, 695px 687px #fff,
    881px 272px #fff, 1521px 1212px #fff, 1423px 1022px #fff, 1545px 1271px #fff,
    1393px 348px #fff, 685px 1910px #fff, 1446px 856px #fff, 73px 1201px #fff,
    736px 999px #fff, 673px 796px #fff, 469px 850px #fff, 1912px 142px #fff,
    1278px 664px #fff, 184px 1990px #fff, 1173px 1312px #fff, 782px 1879px #fff,
    323px 1035px #fff, 611px 908px #fff, 565px 1449px #fff, 748px 1713px #fff,
    1047px 490px #fff, 1040px 1872px #fff, 1818px 1659px #fff, 1806px 1327px #fff,
    386px 575px #fff, 1550px 463px #fff, 148px 687px #fff, 651px 1683px #fff,
    1588px 1194px #fff, 1831px 2px #fff, 581px 876px #fff, 1396px 1743px #fff,
    1212px 1810px #fff, 421px 1920px #fff, 658px 1461px #fff, 1859px 1809px #fff,
    1456px 388px #fff, 186px 1627px #fff, 1528px 1145px #fff, 171px 97px #fff,
    674px 1072px #fff, 676px 1052px #fff, 1165px 1131px #fff, 1088px 781px #fff,
    1231px 948px #fff, 330px 257px #fff, 426px 1046px #fff, 549px 652px #fff,
    1338px 74px #fff, 1749px 364px #fff, 931px 369px #fff, 383px 1428px #fff,
    1558px 389px #fff, 927px 133px #fff, 234px 1888px #fff, 1785px 1617px #fff,
    556px 643px #fff, 401px 275px #fff, 406px 1644px #fff, 1253px 1852px #fff,
    1599px 883px #fff, 744px 1721px #fff, 524px 1297px #fff, 1226px 1177px #fff,
    1679px 55px #fff, 874px 1811px #fff, 838px 790px #fff, 1241px 430px #fff,
    1676px 652px #fff, 1191px 568px #fff, 53px 1990px #fff, 1163px 237px #fff,
    61px 223px #fff, 592px 456px #fff, 1844px 271px #fff, 1324px 1488px #fff,
    1373px 717px #fff, 1822px 709px #fff, 1464px 941px #fff, 1445px 1118px #fff,
    991px 1414px #fff, 1964px 1076px #fff, 108px 172px #fff, 641px 1722px #fff,
    1539px 427px #fff, 1697px 45px #fff, 1301px 1353px #fff, 1060px 329px #fff,
    967px 1396px #fff, 493px 301px #fff, 1228px 1406px #fff, 1211px 1653px #fff,
    444px 1822px #fff, 1746px 353px #fff, 1449px 381px #fff, 671px 887px #fff,
    650px 138px #fff, 30px 1839px #fff, 1094px 1405px #fff, 273px 796px #fff,
    1618px 1964px #fff, 1045px 1849px #fff, 1472px 1155px #fff, 1529px 1312px #fff,
    728px 448px #fff, 44px 1908px #fff, 691px 818px #fff, 254px 293px #fff,
    1981px 1133px #fff, 1307px 375px #fff, 196px 316px #fff, 1241px 1975px #fff,
    1138px 1706px #fff, 1769px 463px #fff, 1768px 1428px #fff, 1730px 590px #fff,
    1780px 523px #fff, 1862px 1526px #fff, 1613px 909px #fff, 1266px 1781px #fff,
    470px 352px #fff, 699px 1682px #fff, 1002px 614px #fff, 1209px 133px #fff,
    1842px 518px #fff, 1422px 1836px #fff, 1720px 1901px #fff, 470px 1788px #fff,
    1355px 1387px #fff, 146px 1162px #fff, 933px 80px #fff, 681px 1063px #fff,
    313px 1341px #fff, 740px 1498px #fff, 168px 1014px #fff, 345px 1355px #fff,
    1498px 1562px #fff, 1626px 1358px #fff, 890px 403px #fff, 663px 562px #fff,
    1481px 168px #fff, 22px 719px #fff, 774px 1041px #fff, 1899px 829px #fff,
    430px 158px #fff, 430px 361px #fff, 1592px 1334px #fff, 224px 323px #fff,
    1639px 1131px #fff, 7px 271px #fff, 1646px 1514px #fff, 1605px 1444px #fff,
    1820px 1665px #fff, 1549px 1641px #fff, 1609px 1377px #fff, 486px 1098px #fff,
    229px 613px #fff, 542px 1694px #fff, 318px 256px #fff, 1861px 918px #fff,
    889px 892px #fff, 442px 1524px #fff, 19px 422px #fff, 1935px 1908px #fff,
    828px 109px #fff, 862px 1248px #fff, 1275px 560px #fff, 906px 63px #fff,
    337px 1605px #fff, 1691px 918px #fff, 1414px 679px #fff, 1726px 749px #fff,
    1540px 1149px #fff, 1337px 1466px #fff, 446px 430px #fff, 676px 1616px #fff,
    840px 326px #fff, 976px 977px #fff, 1840px 642px #fff, 1273px 804px #fff,
    1071px 928px #fff, 1292px 1675px #fff, 29px 1148px #fff, 1585px 135px #fff,
    1007px 563px #fff, 1035px 78px #fff, 1174px 574px #fff, 120px 1304px #fff,
    845px 1292px #fff, 861px 540px #fff, 234px 232px #fff, 1940px 1367px #fff,
    759px 639px #fff, 1775px 1381px #fff, 906px 372px #fff, 1104px 1165px #fff,
    1524px 911px #fff, 1882px 330px #fff, 1389px 700px #fff, 300px 1629px #fff,
    220px 1614px #fff, 563px 140px #fff, 1611px 1586px #fff, 793px 1316px #fff,
    325px 1070px #fff, 1722px 1462px #fff, 1406px 1120px #fff, 1169px 1768px #fff,
    1956px 1053px #fff, 959px 1587px #fff, 585px 1566px #fff, 370px 204px #fff,
    1606px 1416px #fff, 443px 1606px #fff, 1499px 1102px #fff, 1943px 105px #fff,
    1121px 1594px #fff, 1512px 32px #fff, 871px 1425px #fff, 433px 100px #fff,
    294px 1471px #fff, 1688px 1755px #fff, 1666px 591px #fff, 1034px 300px #fff,
    734px 1178px #fff, 1342px 313px #fff, 1616px 1590px #fff, 1763px 1472px #fff,
    632px 1935px #fff, 1708px 872px #fff, 1871px 915px #fff, 1829px 1020px #fff,
    1599px 578px #fff, 42px 585px #fff, 1163px 1382px #fff, 1744px 1272px #fff,
    984px 1426px #fff, 1786px 1584px #fff, 1813px 379px #fff, 1867px 1127px #fff,
    97px 567px #fff, 626px 988px #fff, 1178px 79px #fff, 1703px 211px #fff,
    961px 1785px #fff, 110px 975px #fff, 953px 1941px #fff, 1027px 1790px #fff,
    1665px 107px #fff, 11px 964px #fff, 1718px 1147px #fff, 21px 1728px #fff,
    1358px 1922px #fff, 872px 65px #fff, 1191px 1635px #fff, 762px 681px #fff,
    1519px 1033px #fff, 906px 566px #fff, 1074px 657px #fff, 1093px 415px #fff,
    51px 198px #fff, 1075px 1418px #fff, 1547px 1070px #fff, 225px 920px #fff,
    850px 1974px #fff, 981px 595px #fff, 1425px 131px #fff, 460px 917px #fff,
    56px 495px #fff, 714px 428px #fff, 920px 493px #fff, 470px 1521px #fff,
    532px 821px #fff, 1905px 71px #fff, 883px 1501px #fff, 294px 196px #fff,
    381px 1999px #fff, 332px 793px #fff, 1246px 408px #fff, 233px 149px #fff,
    315px 231px #fff, 1594px 1302px #fff, 696px 1585px #fff, 791px 136px #fff,
    479px 199px #fff, 1627px 1413px #fff, 1824px 924px #fff, 1631px 342px #fff,
    1251px 1151px #fff, 284px 1781px #fff, 497px 1052px #fff, 204px 1161px #fff,
    646px 1499px #fff, 1762px 558px #fff, 854px 1833px #fff, 883px 945px #fff,
    44px 982px #fff, 1101px 834px #fff, 515px 1748px #fff, 1578px 1435px #fff,
    819px 1258px #fff, 776px 670px #fff, 115px 385px #fff, 1478px 434px #fff,
    885px 20px #fff, 192px 1513px #fff, 78px 1129px #fff, 1774px 1105px #fff,
    955px 1149px #fff, 1817px 1929px #fff, 1106px 1832px #fff, 1107px 1997px #fff,
    94px 23px #fff, 243px 982px #fff, 43px 1972px #fff, 1798px 673px #fff,
    1131px 1589px #fff, 841px 14px #fff, 826px 345px #fff, 687px 56px #fff,
    1084px 32px #fff, 1887px 1878px #fff, 153px 526px #fff, 1828px 253px #fff,
    1947px 1105px #fff, 886px 700px #fff, 1307px 1723px #fff, 1274px 651px #fff,
    1530px 837px #fff, 1699px 1637px #fff, 1703px 1331px #fff, 1929px 1557px #fff,
    1763px 737px #fff, 1118px 1680px #fff, 1545px 692px #fff, 1462px 1092px #fff,
    208px 1667px #fff, 1393px 859px #fff, 186px 1794px #fff, 351px 1199px #fff,
    642px 1995px #fff, 1061px 1726px #fff, 1708px 115px #fff, 1233px 1305px #fff,
    637px 1786px #fff, 1730px 603px #fff, 75px 1240px #fff, 1704px 1326px #fff,
    584px 346px #fff, 438px 1554px #fff, 561px 513px #fff, 1382px 225px #fff,
    467px 1674px #fff, 1403px 815px #fff, 1546px 1835px #fff, 127px 1119px #fff,
    276px 591px #fff, 688px 1458px #fff, 765px 646px #fff, 474px 984px #fff,
    171px 361px #fff, 94px 1480px #fff, 1962px 1666px #fff, 909px 1037px #fff,
    1725px 222px #fff, 253px 1355px #fff, 1892px 1901px #fff, 275px 1847px #fff,
    28px 1184px #fff, 1725px 1382px #fff, 882px 647px #fff, 1935px 1046px #fff,
    10px 344px #fff, 292px 1328px #fff, 127px 1352px #fff, 752px 929px #fff,
    1589px 384px #fff, 284px 1829px #fff, 381px 820px #fff, 1229px 1125px #fff,
    777px 429px #fff, 1811px 1499px #fff, 1573px 287px #fff, 295px 756px #fff,
    389px 616px #fff, 781px 41px #fff, 1092px 333px #fff, 794px 1588px #fff,
    386px 1847px #fff, 1802px 710px #fff, 662px 60px #fff, 640px 264px #fff,
    463px 746px #fff, 1859px 799px #fff, 763px 37px #fff, 639px 396px #fff,
    357px 1071px #fff, 1190px 1430px #fff, 1814px 257px #fff, 1382px 235px #fff,
    606px 1304px #fff, 1939px 1470px #fff, 1124px 349px #fff, 307px 1567px #fff,
    310px 1323px #fff, 1145px 922px #fff, 1196px 1922px #fff, 1647px 544px #fff,
    788px 1337px #fff, 257px 632px #fff, 1413px 414px #fff, 590px 620px #fff,
    582px 794px #fff, 1702px 1481px #fff, 1055px 53px #fff, 157px 346px #fff,
    50px 1901px #fff, 1038px 1369px #fff, 796px 1941px #fff, 215px 194px #fff,
    1567px 1538px #fff, 367px 800px #fff, 1044px 489px #fff, 1109px 1712px #fff,
    524px 327px #fff, 525px 1252px #fff, 1475px 1240px #fff, 529px 436px #fff,
    795px 834px #fff, 122px 1371px #fff, 79px 482px #fff, 520px 1249px #fff,
    336px 1878px #fff, 188px 944px #fff, 325px 1259px #fff, 1491px 1942px #fff,
    620px 1054px #fff, 1606px 1153px #fff, 1448px 502px #fff, 53px 1381px #fff,
    107px 1670px #fff, 1380px 618px #fff, 967px 1557px #fff, 1116px 1722px #fff,
    1174px 1044px #fff, 1805px 717px #fff, 663px 394px #fff, 1848px 1007px #fff,
    389px 802px #fff, 49px 392px #fff, 1650px 852px #fff, 1678px 1012px #fff,
    335px 1009px #fff, 1818px 1631px #fff, 1568px 742px #fff, 1162px 1991px #fff,
    52px 1190px #fff, 1401px 928px #fff, 119px 1549px #fff, 537px 1529px #fff,
    2px 1709px #fff, 122px 387px #fff, 543px 2px #fff, 27px 1971px #fff,
    507px 1377px #fff, 1362px 1080px #fff, 1031px 1544px #fff, 1631px 1174px #fff,
    1603px 312px #fff, 1626px 1422px #fff, 1430px 615px #fff, 1958px 1431px #fff,
    1946px 1412px #fff, 1848px 247px #fff, 984px 1808px #fff, 1396px 225px #fff,
    319px 717px #fff, 1252px 875px #fff, 1619px 156px #fff, 951px 1971px #fff,
    386px 355px #fff, 1406px 1151px #fff, 273px 1538px #fff, 844px 1570px #fff,
    947px 151px #fff, 1363px 525px #fff, 209px 307px #fff, 1923px 1718px #fff,
    993px 1741px #fff, 1513px 353px #fff, 1353px 61px #fff, 664px 352px #fff,
    1382px 359px #fff, 1487px 1707px #fff, 657px 1045px #fff, 1107px 490px #fff,
    1834px 1176px #fff, 837px 1438px #fff, 1947px 448px #fff, 1196px 333px #fff,
    151px 555px #fff, 18px 992px #fff, 458px 748px #fff, 1801px 890px #fff,
    1093px 1012px #fff, 315px 1101px #fff, 194px 323px #fff, 754px 292px #fff,
    1737px 7px #fff, 40px 840px #fff, 1170px 805px #fff, 176px 1753px #fff,
    805px 1148px #fff, 1578px 1271px #fff, 367px 1494px #fff, 363px 1111px #fff,
    1955px 243px #fff, 1451px 1093px #fff, 375px 617px #fff, 1223px 720px #fff,
    1178px 13px #fff, 1456px 865px #fff, 1440px 49px #fff, 186px 1569px #fff,
    320px 1853px #fff, 300px 539px #fff, 1559px 509px #fff, 1985px 1108px #fff,
    1588px 828px #fff, 525px 1432px #fff, 831px 363px #fff, 141px 281px #fff,
    1319px 402px #fff, 40px 456px #fff, 1955px 478px #fff, 1758px 818px #fff,
    1924px 688px #fff, 1030px 953px #fff, 1982px 210px #fff, 917px 1401px #fff,
    1051px 1837px #fff, 1045px 463px #fff, 1744px 573px #fff, 529px 1530px #fff,
    542px 469px #fff, 1982px 324px #fff, 1902px 1422px #fff, 1968px 782px #fff,
    1666px 1561px #fff, 955px 304px #fff, 323px 778px #fff, 272px 443px #fff,
    485px 581px #fff, 1353px 1058px #fff, 1257px 131px #fff, 434px 98px #fff,
    1587px 1953px #fff, 1749px 68px #fff, 1984px 839px #fff, 1518px 183px #fff,
    1071px 855px #fff, 1662px 1994px #fff, 1111px 106px #fff, 1954px 838px #fff;
}

#star-md {
  width: 2px; height: 2px;
  background: transparent;
  box-shadow:
    1925px 1320px #fff, 693px 1778px #fff, 1016px 711px #fff, 1171px 563px #fff,
    661px 1919px #fff, 1610px 44px #fff, 1275px 140px #fff, 1208px 1802px #fff,
    1473px 1587px #fff, 11px 1117px #fff, 853px 1757px #fff, 1149px 937px #fff,
    1353px 428px #fff, 270px 279px #fff, 258px 1404px #fff, 417px 1188px #fff,
    286px 561px #fff, 393px 1765px #fff, 147px 881px #fff, 666px 1097px #fff,
    1425px 1278px #fff, 806px 156px #fff, 1252px 561px #fff, 218px 52px #fff,
    1371px 1980px #fff, 171px 745px #fff, 1424px 89px #fff, 137px 244px #fff,
    939px 1922px #fff, 137px 1080px #fff, 1757px 50px #fff, 904px 536px #fff,
    1938px 1001px #fff, 1172px 440px #fff, 72px 1475px #fff, 102px 121px #fff,
    804px 1671px #fff, 1314px 270px #fff, 440px 1341px #fff, 1216px 511px #fff,
    1061px 1523px #fff, 97px 274px #fff, 704px 1318px #fff, 52px 1872px #fff,
    1962px 296px #fff, 111px 289px #fff, 1157px 1236px #fff, 1347px 1451px #fff,
    820px 286px #fff, 1389px 1169px #fff, 644px 841px #fff, 1286px 522px #fff,
    955px 659px #fff, 428px 1805px #fff, 237px 557px #fff, 1689px 1058px #fff,
    636px 1882px #fff, 1349px 1664px #fff, 1548px 432px #fff, 1841px 504px #fff,
    302px 252px #fff, 827px 1765px #fff, 620px 123px #fff, 207px 748px #fff,
    1454px 1234px #fff, 1967px 1790px #fff, 542px 33px #fff, 742px 1214px #fff,
    255px 1402px #fff, 74px 1772px #fff, 699px 475px #fff, 980px 1253px #fff,
    534px 1676px #fff, 909px 202px #fff, 1498px 1251px #fff, 1796px 120px #fff,
    1409px 1263px #fff, 1627px 995px #fff, 969px 710px #fff, 1674px 676px #fff,
    1832px 759px #fff, 1623px 563px #fff, 251px 1790px #fff, 96px 1688px #fff,
    886px 239px #fff, 778px 150px #fff, 1767px 430px #fff, 765px 1259px #fff,
    1189px 877px #fff, 444px 1629px #fff, 1560px 324px #fff, 1952px 1097px #fff,
    712px 1173px #fff, 541px 911px #fff, 827px 1420px #fff, 1233px 285px #fff,
    784px 546px #fff, 645px 285px #fff, 1273px 1255px #fff, 1821px 174px #fff,
    221px 1795px #fff, 1004px 456px #fff, 1298px 941px #fff, 274px 387px #fff,
    174px 376px #fff, 1491px 258px #fff, 1489px 1946px #fff, 1134px 1382px #fff,
    1289px 1145px #fff, 464px 358px #fff, 1249px 1842px #fff, 1665px 831px #fff,
    1982px 84px #fff, 541px 774px #fff, 1994px 523px #fff, 762px 1644px #fff,
    1730px 867px #fff, 1951px 1287px #fff, 911px 1691px #fff, 1454px 725px #fff,
    1287px 1940px #fff, 70px 564px #fff, 1980px 638px #fff, 1674px 1774px #fff,
    1720px 116px #fff, 1747px 182px #fff, 1040px 450px #fff, 1795px 375px #fff,
    857px 1471px #fff, 1326px 1730px #fff, 915px 274px #fff, 1224px 358px #fff,
    1808px 60px #fff, 43px 1870px #fff, 1810px 1536px #fff, 1564px 1719px #fff,
    731px 1388px #fff, 1953px 1967px #fff, 1744px 1119px #fff, 794px 1384px #fff,
    959px 714px #fff, 18px 1932px #fff, 1358px 1437px #fff, 355px 939px #fff,
    1355px 1648px #fff, 608px 719px #fff, 383px 758px #fff, 1164px 1681px #fff,
    1045px 253px #fff, 424px 1279px #fff, 1899px 359px #fff, 379px 488px #fff,
    214px 465px #fff, 179px 905px #fff, 830px 1993px #fff, 448px 1077px #fff,
    1880px 1354px #fff, 1973px 347px #fff, 745px 1025px #fff, 788px 1007px #fff,
    1377px 883px #fff, 6px 290px #fff, 1312px 407px #fff, 1398px 622px #fff,
    1405px 339px #fff, 1198px 1709px #fff, 988px 1226px #fff, 87px 1459px #fff,
    1113px 1698px #fff, 997px 732px #fff, 708px 331px #fff, 1876px 1112px #fff,
    1729px 1797px #fff, 719px 703px #fff, 1295px 522px #fff, 758px 1061px #fff,
    1309px 1014px #fff, 1327px 1365px #fff, 854px 1317px #fff, 531px 1001px #fff,
    1751px 1040px #fff, 1354px 190px #fff, 800px 1538px #fff, 88px 1455px #fff,
    668px 39px #fff, 1379px 41px #fff, 892px 524px #fff, 54px 649px #fff,
    1289px 730px #fff, 727px 488px #fff, 181px 842px #fff, 1230px 64px #fff,
    3px 857px #fff, 292px 1201px #fff, 1343px 673px #fff, 1096px 1412px #fff,
    1520px 292px #fff, 104px 1683px #fff, 934px 1387px #fff, 314px 739px #fff;
  animation: starDrift 100s linear infinite;
}
#star-md::after {
  content: '';
  position: absolute;
  top: 2000px;
  width: 2px; height: 2px;
  background: transparent;
  box-shadow:
    1925px 1320px #fff, 693px 1778px #fff, 1016px 711px #fff, 1171px 563px #fff,
    661px 1919px #fff, 1610px 44px #fff, 1275px 140px #fff, 1208px 1802px #fff,
    1473px 1587px #fff, 11px 1117px #fff, 853px 1757px #fff, 1149px 937px #fff,
    1353px 428px #fff, 270px 279px #fff, 258px 1404px #fff, 417px 1188px #fff,
    286px 561px #fff, 393px 1765px #fff, 147px 881px #fff, 666px 1097px #fff,
    1425px 1278px #fff, 806px 156px #fff, 1252px 561px #fff, 218px 52px #fff,
    1371px 1980px #fff, 171px 745px #fff, 1424px 89px #fff, 137px 244px #fff,
    939px 1922px #fff, 137px 1080px #fff, 1757px 50px #fff, 904px 536px #fff,
    1938px 1001px #fff, 1172px 440px #fff, 72px 1475px #fff, 102px 121px #fff,
    804px 1671px #fff, 1314px 270px #fff, 440px 1341px #fff, 1216px 511px #fff,
    1061px 1523px #fff, 97px 274px #fff, 704px 1318px #fff, 52px 1872px #fff,
    1962px 296px #fff, 111px 289px #fff, 1157px 1236px #fff, 1347px 1451px #fff,
    820px 286px #fff, 1389px 1169px #fff, 644px 841px #fff, 1286px 522px #fff,
    955px 659px #fff, 428px 1805px #fff, 237px 557px #fff, 1689px 1058px #fff,
    636px 1882px #fff, 1349px 1664px #fff, 1548px 432px #fff, 1841px 504px #fff,
    302px 252px #fff, 827px 1765px #fff, 620px 123px #fff, 207px 748px #fff,
    1454px 1234px #fff, 1967px 1790px #fff, 542px 33px #fff, 742px 1214px #fff,
    255px 1402px #fff, 74px 1772px #fff, 699px 475px #fff, 980px 1253px #fff,
    534px 1676px #fff, 909px 202px #fff, 1498px 1251px #fff, 1796px 120px #fff,
    1409px 1263px #fff, 1627px 995px #fff, 969px 710px #fff, 1674px 676px #fff,
    1832px 759px #fff, 1623px 563px #fff, 251px 1790px #fff, 96px 1688px #fff,
    886px 239px #fff, 778px 150px #fff, 1767px 430px #fff, 765px 1259px #fff,
    1189px 877px #fff, 444px 1629px #fff, 1560px 324px #fff, 1952px 1097px #fff,
    712px 1173px #fff, 541px 911px #fff, 827px 1420px #fff, 1233px 285px #fff,
    784px 546px #fff, 645px 285px #fff, 1273px 1255px #fff, 1821px 174px #fff,
    221px 1795px #fff, 1004px 456px #fff, 1298px 941px #fff, 274px 387px #fff,
    174px 376px #fff, 1491px 258px #fff, 1489px 1946px #fff, 1134px 1382px #fff,
    1289px 1145px #fff, 464px 358px #fff, 1249px 1842px #fff, 1665px 831px #fff,
    1982px 84px #fff, 541px 774px #fff, 1994px 523px #fff, 762px 1644px #fff,
    1730px 867px #fff, 1951px 1287px #fff, 911px 1691px #fff, 1454px 725px #fff,
    1287px 1940px #fff, 70px 564px #fff, 1980px 638px #fff, 1674px 1774px #fff,
    1720px 116px #fff, 1747px 182px #fff, 1040px 450px #fff, 1795px 375px #fff,
    857px 1471px #fff, 1326px 1730px #fff, 915px 274px #fff, 1224px 358px #fff,
    1808px 60px #fff, 43px 1870px #fff, 1810px 1536px #fff, 1564px 1719px #fff,
    731px 1388px #fff, 1953px 1967px #fff, 1744px 1119px #fff, 794px 1384px #fff,
    959px 714px #fff, 18px 1932px #fff, 1358px 1437px #fff, 355px 939px #fff,
    1355px 1648px #fff, 608px 719px #fff, 383px 758px #fff, 1164px 1681px #fff,
    1045px 253px #fff, 424px 1279px #fff, 1899px 359px #fff, 379px 488px #fff,
    214px 465px #fff, 179px 905px #fff, 830px 1993px #fff, 448px 1077px #fff,
    1880px 1354px #fff, 1973px 347px #fff, 745px 1025px #fff, 788px 1007px #fff,
    1377px 883px #fff, 6px 290px #fff, 1312px 407px #fff, 1398px 622px #fff,
    1405px 339px #fff, 1198px 1709px #fff, 988px 1226px #fff, 87px 1459px #fff,
    1113px 1698px #fff, 997px 732px #fff, 708px 331px #fff, 1876px 1112px #fff,
    1729px 1797px #fff, 719px 703px #fff, 1295px 522px #fff, 758px 1061px #fff,
    1309px 1014px #fff, 1327px 1365px #fff, 854px 1317px #fff, 531px 1001px #fff,
    1751px 1040px #fff, 1354px 190px #fff, 800px 1538px #fff, 88px 1455px #fff,
    668px 39px #fff, 1379px 41px #fff, 892px 524px #fff, 54px 649px #fff,
    1289px 730px #fff, 727px 488px #fff, 181px 842px #fff, 1230px 64px #fff,
    3px 857px #fff, 292px 1201px #fff, 1343px 673px #fff, 1096px 1412px #fff,
    1520px 292px #fff, 104px 1683px #fff, 934px 1387px #fff, 314px 739px #fff;
}

#star-lg {
  width: 3px; height: 3px;
  background: transparent;
  box-shadow:
    200px 981px #fff, 1731px 521px #fff, 132px 1039px #fff, 1888px 1547px #fff,
    899px 1226px #fff, 1887px 580px #fff, 1548px 1092px #fff, 1626px 689px #fff,
    254px 1072px #fff, 1684px 1211px #fff, 672px 1267px #fff, 939px 668px #fff,
    1969px 645px #fff, 1126px 983px #fff, 457px 568px #fff, 476px 876px #fff,
    829px 1896px #fff, 1364px 1846px #fff, 1507px 1120px #fff, 936px 1948px #fff,
    1833px 832px #fff, 1424px 285px #fff, 1377px 1596px #fff, 432px 153px #fff,
    1348px 1410px #fff, 1529px 954px #fff, 1102px 387px #fff, 264px 297px #fff,
    811px 977px #fff, 1931px 673px #fff, 1734px 978px #fff, 1772px 1567px #fff,
    1197px 1400px #fff, 764px 282px #fff, 1103px 822px #fff, 872px 1803px #fff,
    1057px 1763px #fff, 52px 1299px #fff, 1312px 1236px #fff, 235px 1082px #fff,
    299px 1086px #fff, 1017px 1602px #fff, 1950px 626px #fff, 1306px 132px #fff,
    1358px 1618px #fff, 1873px 1718px #fff, 1447px 940px #fff, 1888px 1195px #fff,
    1704px 1765px #fff, 872px 1357px #fff, 1555px 1120px #fff, 250px 1415px #fff,
    450px 415px #fff, 492px 901px #fff, 170px 1641px #fff, 56px 1129px #fff,
    627px 1514px #fff, 1221px 500px #fff, 324px 1895px #fff, 1397px 1775px #fff,
    1966px 598px #fff, 1550px 763px #fff, 326px 1605px #fff, 261px 969px #fff,
    890px 281px #fff, 736px 544px #fff, 589px 1262px #fff, 1581px 368px #fff,
    1900px 1132px #fff, 1914px 585px #fff, 1864px 1517px #fff, 241px 217px #fff,
    859px 787px #fff, 996px 1729px #fff, 741px 121px #fff, 418px 414px #fff,
    142px 967px #fff, 387px 896px #fff, 703px 562px #fff, 968px 1136px #fff,
    1682px 332px #fff, 1287px 846px #fff, 256px 1427px #fff, 1885px 432px #fff,
    1739px 1458px #fff, 345px 1769px #fff, 1140px 1612px #fff, 192px 1921px #fff,
    920px 471px #fff, 834px 881px #fff, 917px 1803px #fff, 466px 1266px #fff,
    483px 1108px #fff, 689px 986px #fff, 1279px 786px #fff, 458px 910px #fff,
    1250px 870px #fff, 785px 1654px #fff, 1543px 1757px #fff, 287px 1272px #fff;
  animation: starDrift 150s linear infinite;
}
#star-lg::after {
  content: '';
  position: absolute;
  top: 2000px;
  width: 3px; height: 3px;
  background: transparent;
  box-shadow:
    200px 981px #fff, 1731px 521px #fff, 132px 1039px #fff, 1888px 1547px #fff,
    899px 1226px #fff, 1887px 580px #fff, 1548px 1092px #fff, 1626px 689px #fff,
    254px 1072px #fff, 1684px 1211px #fff, 672px 1267px #fff, 939px 668px #fff,
    1969px 645px #fff, 1126px 983px #fff, 457px 568px #fff, 476px 876px #fff,
    829px 1896px #fff, 1364px 1846px #fff, 1507px 1120px #fff, 936px 1948px #fff,
    1833px 832px #fff, 1424px 285px #fff, 1377px 1596px #fff, 432px 153px #fff,
    1348px 1410px #fff, 1529px 954px #fff, 1102px 387px #fff, 264px 297px #fff,
    811px 977px #fff, 1931px 673px #fff, 1734px 978px #fff, 1772px 1567px #fff,
    1197px 1400px #fff, 764px 282px #fff, 1103px 822px #fff, 872px 1803px #fff,
    1057px 1763px #fff, 52px 1299px #fff, 1312px 1236px #fff, 235px 1082px #fff,
    299px 1086px #fff, 1017px 1602px #fff, 1950px 626px #fff, 1306px 132px #fff,
    1358px 1618px #fff, 1873px 1718px #fff, 1447px 940px #fff, 1888px 1195px #fff,
    1704px 1765px #fff, 872px 1357px #fff, 1555px 1120px #fff, 250px 1415px #fff,
    450px 415px #fff, 492px 901px #fff, 170px 1641px #fff, 56px 1129px #fff,
    627px 1514px #fff, 1221px 500px #fff, 324px 1895px #fff, 1397px 1775px #fff,
    1966px 598px #fff, 1550px 763px #fff, 326px 1605px #fff, 261px 969px #fff,
    890px 281px #fff, 736px 544px #fff, 589px 1262px #fff, 1581px 368px #fff,
    1900px 1132px #fff, 1914px 585px #fff, 1864px 1517px #fff, 241px 217px #fff,
    859px 787px #fff, 996px 1729px #fff, 741px 121px #fff, 418px 414px #fff,
    142px 967px #fff, 387px 896px #fff, 703px 562px #fff, 968px 1136px #fff,
    1682px 332px #fff, 1287px 846px #fff, 256px 1427px #fff, 1885px 432px #fff,
    1739px 1458px #fff, 345px 1769px #fff, 1140px 1612px #fff, 192px 1921px #fff,
    920px 471px #fff, 834px 881px #fff, 917px 1803px #fff, 466px 1266px #fff,
    483px 1108px #fff, 689px 986px #fff, 1279px 786px #fff, 458px 910px #fff,
    1250px 870px #fff, 785px 1654px #fff, 1543px 1757px #fff, 287px 1272px #fff;
}

@keyframes starDrift {
  from { transform: translateY(0); }
  to   { transform: translateY(-2000px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
  padding: 8px 16px;
  border: 1px solid rgba(50, 199, 255, 0.42);
  border-radius: 100px;
  background: rgba(50, 199, 255, 0.06);
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  vertical-align: middle;
  border-radius: 50%;
  background: #32c7ff;
}

.hero-title {
  font-size: clamp(60px, 10.8vw, 156px);
  font-weight: 450;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-accent {
  color: #69dbff;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 450;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

/* ===========================
   CHAT MOCKUP
   =========================== */
.chat-container {
  max-width: 460px;
  margin: -220px auto 0;
  position: relative;
  z-index: 2;
  transform: translateY(246px);
}

.chat-container.reveal.visible {
  transform: translateY(246px);
}

body[data-chat-theme="sky"] {
  --chat-accent: #32c7ff;
  --chat-accent-ring: rgba(50, 199, 255, 0.34);
  --chat-accent-shadow: rgba(50, 199, 255, 0.19);
  --chat-user-bg: #25baf2;
  --chat-user-text: #062134;
  --chat-bot-bg: #edf8fd;
  --chat-bot-text: #0a1721;
  --chat-bot-border: rgba(50, 199, 255, 0.16);
  --chat-avatar-bg: #12a9e5;
  --chat-avatar-stroke: #ffffff;
}

body[data-chat-theme="green"] {
  --chat-accent: #16c784;
  --chat-accent-ring: rgba(22, 199, 132, 0.32);
  --chat-accent-shadow: rgba(22, 199, 132, 0.18);
  --chat-user-bg: #15b978;
  --chat-user-text: #ffffff;
  --chat-bot-bg: #edf9f3;
  --chat-bot-text: #102019;
  --chat-bot-border: rgba(22, 199, 132, 0.16);
  --chat-avatar-bg: #11a66d;
  --chat-avatar-stroke: #ffffff;
}

body[data-chat-theme="night"] {
  --chat-accent: #111827;
  --chat-accent-ring: rgba(15, 23, 42, 0.22);
  --chat-accent-shadow: rgba(15, 23, 42, 0.12);
  --chat-user-bg: #0a0a0a;
  --chat-user-text: #ffffff;
  --chat-bot-bg: #f3f4f6;
  --chat-bot-text: #0a0a0a;
  --chat-bot-border: rgba(15, 23, 42, 0.08);
  --chat-avatar-bg: #0a0a0a;
  --chat-avatar-stroke: #ffffff;
}

.chat-mockup {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--chat-accent-ring);
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.13),
    0 16px 42px var(--chat-accent-shadow),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  overflow: hidden;
  text-align: left;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.avatar {
  width: 34px;
  height: 34px;
  background: var(--chat-avatar-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.28s ease;
}

.avatar svg,
.sw-avatar svg {
  stroke: var(--chat-avatar-stroke);
}

.chat-header strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 2px;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

.status-text {
  font-size: 11.5px;
  color: #9ca3af;
  vertical-align: middle;
}

.messages {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Fixed height — container never resizes, zero page reflow */
  height: 350px;
  overflow: hidden;
}

.msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  flex-shrink: 0;
  /* opacity-only animation — no height change */
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.38s ease, transform 0.36s ease, background 0.28s ease, color 0.28s ease;
}

.msg.appear {
  opacity: 1;
  transform: translateY(0);
}

.msg.bot {
  background: var(--chat-bot-bg);
  color: var(--chat-bot-text);
  border: 1px solid var(--chat-bot-border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg.user {
  background: var(--chat-user-bg);
  color: var(--chat-user-text);
  box-shadow: 0 5px 14px var(--chat-accent-shadow);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.msg.typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 13px 16px;
}

.msg.temporary-typing {
  display: none;
}

.msg.temporary-typing.appear {
  display: flex;
}

.msg.typing span {
  display: block;
  width: 6px;
  height: 6px;
  background: #c4c4c4;
  border-radius: 50%;
  animation: typing-bounce 1.3s infinite ease-in-out;
}

.msg.typing span:nth-child(2) { animation-delay: 0.18s; }
.msg.typing span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

.chat-composer,
.sw-composer {
  min-height: 54px;
  margin: 0 16px 16px;
  border: 1px solid var(--chat-accent-ring);
  border-radius: 27px;
  background: #f8fafc;
  color: #98a2b3;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.chat-composer svg,
.sw-composer svg {
  width: 18px;
  height: 18px;
  stroke: #0a0a0a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ===========================
   CHAT SHOWCASE SLIDER
   =========================== */
.chat-showcase {
  padding: 96px 0 88px;
  position: relative;
  z-index: 0;
}

.showcase-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

/* ---- Scenario tabs ---- */
.s-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 560px;
  margin: 0 auto 20px;
}

.s-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(0, 0, 0, 0.13);
  background: transparent;
  color: #6b7280;
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  justify-content: center;
}

.s-tab:hover {
  border-color: rgba(0, 0, 0, 0.28);
  color: #0a0a0a;
}

.s-tab.active {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

/* ---- Live brand style selector ---- */
.theme-picker {
  max-width: 560px;
  margin: 16px auto 0;
  padding: 8px 10px 8px 14px;
  min-height: 52px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.theme-picker-label {
  color: #667085;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
}

.theme-options {
  display: flex;
  gap: 5px;
}

.theme-option {
  min-height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #475467;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.theme-option:hover,
.theme-option.active {
  background: #f2f7fa;
  border-color: rgba(15, 23, 42, 0.08);
  color: #0a0a0a;
}

.theme-option.active {
  box-shadow: inset 0 0 0 1px var(--chat-accent-ring);
}

.theme-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.theme-swatch.sky { background: #32c7ff; }
.theme-swatch.green { background: #16c784; }
.theme-swatch.night { background: #111827; }

/* ---- Chat window card ---- */
.showcase-window {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--chat-accent-ring);
  box-shadow:
    0 26px 62px rgba(15, 23, 42, 0.07),
    0 18px 46px var(--chat-accent-shadow),
    0 0 0 1px rgba(255, 255, 255, 0.66);
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

/* Window header (bot name + status) */
.sw-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: #fafafa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.sw-avatar {
  width: 38px;
  height: 38px;
  background: var(--chat-avatar-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.28s ease;
}

.sw-info { display: flex; flex-direction: column; }

.sw-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 3px;
}

.sw-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #9ca3af;
}

.sw-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Slides container */
.showcase-slides {
  position: relative;
  height: 318px;
  overflow: hidden;
}

.showcase-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 22px 24px;
  display: none;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.showcase-slide.active {
  display: flex;
  pointer-events: auto;
  animation: scenario-enter 0.28s ease both;
}

@keyframes scenario-enter {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.sw-composer {
  margin-top: 0;
}

/* Chat bubbles inside slides */
.sc-msg {
  max-width: 82%;
  padding: 11px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
}

.sc-msg.user {
  background: var(--chat-user-bg);
  color: var(--chat-user-text);
  box-shadow: 0 5px 14px var(--chat-accent-shadow);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.sc-msg.bot {
  background: var(--chat-bot-bg);
  color: var(--chat-bot-text);
  border: 1px solid var(--chat-bot-border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.sc-msg.bot,
.sc-msg.user {
  transition: background 0.28s ease, color 0.28s ease;
}

/* ===========================
   VIDEO DEMO
   =========================== */
.video-demo {
  padding: 18px 0 92px;
}

.video-demo-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.video-copy h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 520;
  letter-spacing: -0.04em;
  margin: 10px 0 14px;
}

.video-copy p:not(.label) {
  max-width: 410px;
  color: #667085;
  font-size: 14.5px;
  line-height: 1.65;
}

.video-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.video-points span {
  padding: 8px 11px;
  border: 1px solid rgba(50, 199, 255, 0.22);
  border-radius: 999px;
  background: rgba(50, 199, 255, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: #344054;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 20px;
  background: #09111d;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 20px 50px rgba(9, 17, 29, 0.18);
}

.demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #09111d;
}

/* ===========================
   OUTCOMES
   =========================== */
.outcomes {
  padding: 20px 0 88px;
}

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

.outcomes-head h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(30px, 4.6vw, 42px);
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.outcomes-head > p:last-child {
  max-width: 570px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: #667085;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.outcome {
  min-height: 190px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
}

.outcome-num {
  display: block;
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 650;
  color: #98a2b3;
  letter-spacing: 0.1em;
}

.outcome h3 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 9px;
  font-weight: 600;
}

.outcome p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #667085;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how {
  padding: 88px 0;
}

.steps {
  display: flex;
  flex-direction: column;
  max-width: 660px;
  margin: 0 auto;
  position: relative;
}

/* Vertical line connecting the three circles — drawn by JS when section enters view */
.steps-line {
  position: absolute;
  left: 22px; /* center of 44px .step-num circle */
  top: 0;     /* overridden by JS after layout measurement */
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.08) 100%);
  border-radius: 2px;
  transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0;
}

.step:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.step-num {
  width: 44px;
  height: 44px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  margin-bottom: 8px;
  margin-top: 8px;
}

.step-content p {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.65;
}

/* ===========================
   COMPARE TABLE
   =========================== */
.compare {
  padding: 88px 0;
}

.compare-table {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.035);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}

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

.compare-row.header {
  background: #f9fafb;
}

.compare-cell {
  padding: 15px 22px;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.compare-cell.feature {
  justify-content: flex-start;
  text-align: left;
  font-weight: 450;
  color: #374151;
}

.compare-cell.them { color: #667085; }

.compare-cell.us {
  font-weight: 600;
  color: #0a0a0a;
}

.compare-row.header .compare-cell {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 13px 22px;
}

.compare-row.header .compare-cell.us { color: #0a0a0a; }

.highlight-col { background: rgba(150, 223, 255, 0.1); }

.icon-yes, .icon-no {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  padding: 88px 0;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(270px, 350px));
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  align-items: start;
}

.plan {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 28px 22px;
  background: #fff;
  position: relative;
  transition: box-shadow 0.25s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.plan:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.plan.featured {
  border: 2px solid #0a0a0a;
  background: rgba(218, 238, 249, 0.58);
  box-shadow: 0 18px 42px rgba(32, 76, 109, 0.11);
}

.plan-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(150, 223, 255);
  color: #0a0a0a;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.plan.featured .plan-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.plan-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 12px;
}

.plan.featured .plan-name { color: #6b7280; }

.plan-price {
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #0a0a0a;
  margin-bottom: 6px;
}

.plan.featured .plan-price { color: #0a0a0a; }

.plan-price span {
  font-size: 15px;
  font-weight: 400;
  color: #9ca3af;
  letter-spacing: 0;
}

.plan.featured .plan-price span { color: #9ca3af; }

.plan-for {
  margin-top: 13px;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}

.plan-setup {
  font-size: 12px;
  color: #bbb;
  margin-top: 4px;
}

.plan.featured .plan-setup { color: #bbb; }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  white-space: normal;
  font-size: 13.5px;
  color: #374151;
  line-height: 1.4;
}

.hero-eyebrow {
  text-wrap: balance;
}

.plan.featured .plan-features li { color: #374151; }

.plan-features li.off { color: #d1d5db; }
.plan.featured .plan-features li.off { color: #d1d5db; }

.plan-features li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #0a0a0a;
}

.plan.featured .plan-features li svg { color: #0a0a0a; }
.plan-features li.off svg { color: #e5e7eb; }
.plan.featured .plan-features li.off svg { color: #e5e7eb; }

.btn-plan {
  display: block;
  text-align: center;
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  color: #0a0a0a;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-plan:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.btn-plan.featured {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.btn-plan.featured:hover {
  background: #222;
  border-color: #222;
}

.pricing-note {
  text-align: center;
  font-size: 12.5px;
  color: #667085;
  font-weight: 450;
  line-height: 1.6;
}

.trial-offer {
  max-width: 714px;
  margin: -16px auto 38px;
  padding: 16px 22px;
  display: flex;
  gap: 12px 22px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(50, 199, 255, 0.28);
  border-radius: 12px;
  background: rgba(50, 199, 255, 0.07);
}

.trial-offer strong {
  font-size: 14px;
  font-weight: 650;
  color: #07131d;
}

.trial-offer span {
  font-size: 13px;
  color: #667085;
}

/* ===========================
   ACOMPANAMIENTO
   =========================== */
.care {
  padding: 20px 0 88px;
}

.care-inner {
  display: grid;
  grid-template-columns: minmax(270px, 0.94fr) minmax(330px, 1fr);
  gap: 72px;
  align-items: start;
  padding: 58px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.care-copy h2 {
  margin: 0 0 16px;
  max-width: 490px;
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.16;
  color: #0a0a0a;
}

.care-copy > p:last-child {
  max-width: 455px;
  font-size: 15px;
  line-height: 1.65;
  color: #667085;
}

.care-points {
  display: flex;
  flex-direction: column;
}

.care-point {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.care-point:first-child {
  padding-top: 0;
}

.care-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.care-icon {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 9px;
  color: #1598dc;
  background: rgba(50, 199, 255, 0.12);
}

.care-icon svg {
  width: 17px;
  height: 17px;
}

.care-point strong {
  display: block;
  margin: 4px 0 5px;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
}

.care-point span:not(.care-icon) {
  display: block;
  font-size: 13.5px;
  line-height: 1.5;
  color: #667085;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 88px 0;
}

.faq-list {
  max-width: 620px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-q:hover { color: #374151; }

.faq-arrow {
  width: 18px;
  height: 18px;
  color: #c4c4c4;
  flex-shrink: 0;
  transition: transform 0.12s ease;
}

.faq-q.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  transition:
    max-height 0.12s ease,
    padding 0.08s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ===========================
   CTA FINAL
   =========================== */
.cta-final {
  padding: 0 0 80px;
  background: #07131d;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-box {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: visible;
  border: 0;
  box-shadow: none;
}

.cta-box::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(960px, 96vw);
  height: 560px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(50, 199, 255, 0.30) 0%, rgba(50, 199, 255, 0.13) 38%, transparent 70%);
  filter: blur(28px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.cta-box::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(520px, 72vw);
  height: 220px;
  transform: translate(-50%, -50%);
  background: rgba(105, 219, 255, 0.12);
  filter: blur(72px);
  pointer-events: none;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box .label {
  margin-bottom: 16px;
  color: rgba(105, 219, 255, 0.78);
}

.cta-box h2 {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.04;
  color: #fff;
  max-width: 860px;
  margin: 0 auto 22px;
}

.cta-sub {
  max-width: 540px;
  margin: 0 auto 34px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cta-box .btn-primary.white {
  background: #32c7ff;
  color: #07131c;
  box-shadow: 0 12px 30px rgba(50, 199, 255, 0.28);
}

.cta-box .btn-primary.white:hover {
  background: #74ddff;
  opacity: 1;
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.cta-guarantees span {
  position: relative;
}

.cta-guarantees span:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 50%;
  width: 3px;
  height: 3px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 64px 0 42px;
  background: #0b090c;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-showcase,
.video-demo,
.outcomes,
.how,
.compare,
.pricing,
.care,
.faq {
  background-color: #f7f8fa;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.chat-showcase {
  background-color: #f7f8fa;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
  gap: 56px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.65;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 760;
  color: #ffffff;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 760;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  font-weight: 560;
  transition: color 0.2s;
}

.footer-column a:hover { color: #69dbff; }

.footer-bottom {
  padding-top: 28px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

/* ===========================
   MOBILE — 768px
   =========================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }

  .nav-inner {
    height: 56px;
    padding: 0 16px;
    gap: 12px;
  }

  .nav-logo {
    font-size: 18px;
    gap: 10px;
  }

  .nav-logo .brand-mark-img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .btn-nav {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 72px 16px 0;
  }

  section[id] { scroll-margin-top: 56px; }

  .hero-inner {
    max-width: 480px;
  }

  .hero-eyebrow {
    font-size: 11px;
    margin-bottom: 18px;
    padding: 7px 11px;
    border: 1px solid rgba(50, 199, 255, 0.36);
    border-radius: 100px;
    background: rgba(50, 199, 255, 0.06);
  }

  .hero-title {
    font-size: 48px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-badges {
    margin-bottom: 26px;
  }

  .hero-cta {
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    min-height: 48px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .chat-mockup {
    border-radius: 12px;
  }

  .chat-container,
  .chat-container.reveal.visible {
    margin-top: -152px;
    transform: translateY(212px);
  }

  .chat-showcase { padding-top: 274px; }

  .showcase-wrapper {
    max-width: 100%;
  }

  .s-tab {
    min-height: 44px;
    padding: 9px 10px;
    font-size: 12.5px;
  }

  .theme-picker {
    margin-bottom: 14px;
    padding: 7px;
  }

  .theme-picker-label {
    display: none;
  }

  .theme-options {
    width: 100%;
  }

  .theme-option {
    flex: 1;
    justify-content: center;
    padding: 0 6px;
  }

  .showcase-window {
    border-radius: 14px;
  }

  .showcase-slides {
    height: 300px;
  }

  .showcase-slide {
    padding: 18px 16px;
  }

  .sc-msg {
    max-width: 94%;
    font-size: 13.5px;
    padding: 10px 13px;
  }

  .questions-grid { grid-template-columns: 1fr; }

  .outcomes {
    padding: 8px 0 64px;
  }

  .video-demo {
    padding: 0 0 64px;
  }

  .video-demo-inner {
    grid-template-columns: 1fr;
    max-width: 420px;
    padding: 20px;
    gap: 22px;
  }

  .outcomes-head {
    margin-bottom: 30px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .outcome {
    min-height: unset;
    padding: 20px 18px;
  }

  .outcome-num {
    margin-bottom: 18px;
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
  }

  .trial-offer {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    max-width: 380px;
    margin: -6px auto 28px;
    padding: 15px 16px;
  }

  .plan.featured {
    order: -1;
  }

  .plan {
    padding: 26px 20px;
  }

  .compare-cell {
    padding: 12px 10px;
    font-size: 12px;
  }

  .compare-cell.feature,
  .compare-cell.them,
  .compare-cell.us { font-size: 12px; }

  .compare-row.header .compare-cell {
    font-size: 10px;
    padding: 10px 10px;
  }

  .pricing-note {
    max-width: 380px;
    margin: 0 auto;
    padding: 14px 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 12px;
  }

  .faq-q {
    min-height: 58px;
    padding: 18px 0;
  }

  .care {
    padding: 0 0 64px;
  }

  .care-inner {
    display: block;
    padding: 42px 0;
  }

  .care-copy {
    margin-bottom: 34px;
  }

  .care-copy h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .cta-box {
    padding: 0;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cta-box .btn-primary,
  .cta-box .btn-secondary {
    min-height: 50px;
    justify-content: center;
  }

  .footer {
    padding: 54px 0 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 36px;
  }

  .footer-brand p {
    max-width: 420px;
  }

  .section-header { margin-bottom: 34px; }
  .container { padding: 0 16px; }

  .problem,
  .how,
  .compare,
  .pricing,
  .care,
  .faq,
  .cta-final { padding: 64px 0; }
}

/* ===========================
   MOBILE — 480px
   =========================== */
@media (max-width: 480px) {
  .hero {
    padding-top: 68px;
  }

  .hero-title {
    font-size: 37px;
    line-height: 1.09;
  }

  .hero-sub {
    font-size: 14.5px;
  }

  .hero-badges { gap: 6px; }

  .badge {
    font-size: 11.5px;
    padding: 5px 12px;
  }

  .hero-cta .btn-primary {
    font-size: 13px;
    padding: 12px 8px;
    justify-content: center;
  }

  .hero-actions .btn-secondary {
    font-size: 13px;
    padding: 12px 8px;
  }

  .cta-note { font-size: 11.5px; }

  .video-demo-inner {
    padding: 16px;
    border-radius: 18px;
  }

  .video-copy h2 {
    font-size: 29px;
  }

  .messages {
    padding: 14px 12px 16px;
    height: 300px;
  }

  .msg {
    font-size: 12.5px;
    padding: 9px 11px;
  }

  .chat-header { padding: 12px; }

  .chat-composer,
  .sw-composer {
    min-height: 48px;
    margin: 0 12px 12px;
  }

  .section-header h2 {
    font-size: 28px;
    line-height: 1.22;
  }

  .outcomes-head h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .step {
    gap: 16px;
    padding: 26px 0;
  }

  .step-num {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .question-item { padding: 20px 20px; }

  .compare-cell {
    padding: 11px 6px;
    font-size: 11.5px;
  }

  .compare-row.header .compare-cell {
    padding: 10px 6px;
    font-size: 9px;
  }

  .cta-box {
    padding: 0;
  }

  .cta-box h2 {
    font-size: 36px;
    line-height: 1.18;
  }

  .cta-sub {
    font-size: 13.5px;
    margin-bottom: 20px;
  }

  .cta-guarantees {
    justify-content: center;
  }

  .footer-brand p {
    max-width: 280px;
    line-height: 1.55;
  }
}

/* Final solution card polish */
.ops-system .steps {
  padding: 0 !important;
  overflow: hidden !important;
  isolation: isolate;
  clip-path: inset(0 round 28px);
  background:
    radial-gradient(circle at 50% 0%, rgba(105, 219, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.078) !important;
  border: 1px solid rgba(105, 219, 255, 0.2) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 72px rgba(0, 0, 0, 0.18) !important;
}

.ops-system .steps-line {
  display: none !important;
}

.ops-system .step {
  display: grid !important;
  grid-template-columns: 58px 1fr !important;
  gap: 18px !important;
  align-items: start !important;
  padding: 30px 38px !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(105, 219, 255, 0.12) !important;
}

.ops-system .step:last-child {
  border-bottom: 0 !important;
}

.ops-system .step-num {
  width: 50px !important;
  height: 50px !important;
  margin: 0 !important;
}

.ops-system .step-content h3 {
  margin-top: 2px !important;
}

.ops-system .step-content p {
  max-width: 540px;
}

.faq-a {
  transition: max-height 0.16s ease, padding-bottom 0.16s ease, opacity 0.12s ease !important;
}

.faq-arrow {
  transition: transform 0.16s ease !important;
}

@media (max-width: 768px) {
  .ops-system .steps {
    clip-path: inset(0 round 24px);
  }

  .ops-system .step {
    grid-template-columns: 58px 1fr !important;
    gap: 14px !important;
    padding: 24px 22px !important;
  }

  .ops-system .step-num {
    width: 48px !important;
    height: 48px !important;
  }
}

@media (min-width: 980px) {
  .hero {
    padding-top: 92px !important;
    padding-bottom: 92px !important;
  }

  .chat-showcase {
    padding-top: 86px !important;
  }
}

/* Final mobile footer + solution card cleanup */
.ops-system .steps {
  position: relative;
  overflow: hidden !important;
  border-radius: 28px;
  isolation: isolate;
  clip-path: inset(0 round 28px);
}

.ops-system .steps-line {
  left: 29px !important;
  top: 66px !important;
  width: 2px !important;
  opacity: 0.42 !important;
  background: linear-gradient(180deg, transparent 0%, rgba(105, 219, 255, 0.68) 12%, rgba(105, 219, 255, 0.42) 82%, transparent 100%) !important;
}

.ops-system .step-num {
  z-index: 4 !important;
}

@media (max-width: 768px) {
  .ops-diagram {
    display: none !important;
  }

  .ops-system .steps {
    border-radius: 24px;
    clip-path: inset(0 round 24px);
  }

  .ops-system .steps-line {
    display: none !important;
  }

  .ops-system .step {
    grid-template-columns: 56px 1fr !important;
    gap: 14px !important;
    padding: 18px 18px !important;
  }

  .ops-system .step-num {
    width: 48px !important;
    height: 48px !important;
  }

  .footer {
    padding: 18px 0 16px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 20px !important;
    padding-bottom: 12px !important;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo {
    font-size: 18px !important;
  }

  .footer-brand p {
    display: none !important;
  }

  .footer-column {
    gap: 7px !important;
  }

  .footer-column h3 {
    margin-bottom: 2px !important;
    font-size: 12px !important;
  }

  .footer-column a {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  .footer-column:nth-of-type(2) a:nth-of-type(n+3),
  .footer-column:nth-of-type(3) a:nth-of-type(n+3),
  .footer-column:nth-of-type(4) a:nth-of-type(n+3) {
    display: none !important;
  }

  .footer-bottom {
    padding-top: 10px !important;
  }

  .footer-bottom p {
    font-size: 11.5px !important;
  }
}

/* ===========================
   LIGHT BLUE REMODEL
   =========================== */
:root {
  --page-bg: #ecf8ff;
  --page-bg-2: #f6fcff;
  --ink: #07131d;
  --muted-ink: #536477;
  --line-blue: rgba(50, 199, 255, 0.22);
  --soft-card: rgba(255, 255, 255, 0.76);
  --soft-card-solid: #ffffff;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(105, 219, 255, 0.38), transparent 34%),
    linear-gradient(180deg, #e9f8ff 0%, #f7fcff 46%, #eef9ff 100%);
  color: var(--ink);
}

.nav {
  background: rgba(244, 251, 255, 0.84);
  border-bottom-color: rgba(50, 199, 255, 0.14);
  box-shadow: 0 12px 40px rgba(22, 78, 117, 0.08);
}

.hero {
  min-height: auto;
  background:
    radial-gradient(circle at 50% 24%, rgba(50, 199, 255, 0.24), transparent 34%),
    radial-gradient(circle at 14% 22%, rgba(147, 216, 255, 0.24), transparent 26%),
    linear-gradient(180deg, #edf9ff 0%, #f8fdff 72%, #eef9ff 100%);
  padding-top: 132px;
}

.star-field {
  opacity: 0.2;
  filter: invert(1) opacity(0.55);
}

.hero-eyebrow {
  color: #126f9a;
  border-color: rgba(50, 199, 255, 0.42);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 42px rgba(50, 199, 255, 0.14);
}

.hero-title {
  color: #07131d;
  font-weight: 680;
  letter-spacing: -0.04em;
}

.hero-accent {
  color: #12aeea;
}

.hero-sub {
  color: rgba(7, 19, 29, 0.66);
}

.badge {
  color: rgba(7, 19, 29, 0.72);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(7, 19, 29, 0.1);
  box-shadow: 0 10px 30px rgba(25, 96, 140, 0.08);
}

.cta-note {
  color: rgba(7, 19, 29, 0.42);
}

.btn-primary.accent,
.btn-primary.white {
  background: linear-gradient(135deg, #32c7ff, #18b6ed);
  color: #061824;
  box-shadow: 0 18px 42px rgba(50, 199, 255, 0.28);
}

.btn-secondary.ghost,
.btn-secondary.dark-ghost {
  color: #0a2c42;
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(18, 174, 234, 0.34);
}

.chat-showcase,
.video-demo,
.outcomes,
.how,
.compare,
.pricing,
.care,
.faq {
  background-color: #eef9ff;
  background-image:
    radial-gradient(circle at 12% 0%, rgba(50, 199, 255, 0.12), transparent 24%),
    linear-gradient(rgba(20, 106, 150, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 106, 150, 0.035) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}

.section-header .label,
.label {
  color: #1588b8;
}

.section-header h2,
.outcomes-head h2,
.video-copy h2,
.care-copy h2 {
  color: #07131d;
}

.section-header p,
.outcomes-head > p:last-child,
.video-copy p,
.care-copy > p:last-child,
.step-content p {
  color: var(--muted-ink);
}

.chat-mockup,
.showcase-window {
  background: #f6fcf8;
  border: 1px solid rgba(40, 149, 95, 0.16);
  border-radius: 18px;
  box-shadow:
    0 18px 46px rgba(22, 92, 60, 0.14),
    0 2px 10px rgba(14, 30, 22, 0.06);
}

.chat-header,
.sw-header {
  min-height: 82px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(68, 190, 134, 0.96), rgba(39, 144, 93, 0.98));
  border-bottom: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.avatar,
.sw-avatar {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.chat-header strong,
.sw-name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 650;
}

.status-text,
.sw-status {
  color: rgba(255, 255, 255, 0.74);
}

.status-dot,
.sw-dot {
  background: #d7ffe9;
}

.messages,
.showcase-slides {
  background: #f6fcf8;
}

.msg,
.sc-msg {
  font-size: 14.5px;
  line-height: 1.48;
  padding: 12px 15px;
  border-radius: 17px;
}

.msg.bot,
.sc-msg.bot {
  background: #ffffff;
  color: #232825;
  border: 1px solid #e2eee7;
  border-radius: 6px 17px 17px 17px;
  box-shadow: 0 5px 14px rgba(22, 92, 60, 0.06);
}

.msg.user,
.sc-msg.user {
  background: linear-gradient(135deg, #43bd86, #28955f);
  color: #ffffff;
  border-radius: 17px 6px 17px 17px;
  box-shadow: 0 5px 13px rgba(39, 144, 93, 0.16);
}

.chat-composer,
.sw-composer {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #cfe4d8;
  box-shadow: 0 7px 16px rgba(39, 144, 93, 0.08);
}

.chat-composer svg,
.sw-composer svg {
  color: #28955f;
}

.showcase-wrapper,
.question-item,
.step,
.compare-table,
.plan,
.care-point,
.pricing-note {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(7, 19, 29, 0.08);
  box-shadow: 0 18px 55px rgba(25, 96, 140, 0.08);
}

.plan.featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(50, 199, 255, 0.16), transparent 34%),
    #ffffff;
  border-color: rgba(50, 199, 255, 0.34);
}

.cta-final {
  background:
    radial-gradient(circle at 50% 38%, rgba(50, 199, 255, 0.38), transparent 35%),
    linear-gradient(180deg, #edf9ff 0%, #e7f7ff 100%);
  border-top: 1px solid rgba(50, 199, 255, 0.18);
}

.cta-box::before {
  background: radial-gradient(circle, rgba(50, 199, 255, 0.46) 0%, rgba(50, 199, 255, 0.2) 36%, transparent 72%);
}

.cta-box h2 {
  color: #07131d;
}

.cta-box .label {
  color: #126f9a;
}

.cta-sub {
  color: rgba(7, 19, 29, 0.64);
}

.cta-guarantees {
  color: rgba(7, 19, 29, 0.48);
}

.cta-guarantees span:not(:first-child)::before {
  background: rgba(7, 19, 29, 0.32);
}

.footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(50, 199, 255, 0.08), transparent 26%),
    #0b090c;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 92px;
  }

  .hero-sub,
  .cta-sub {
    color: rgba(7, 19, 29, 0.62);
  }

  .chat-header,
  .sw-header {
    padding: 14px;
    min-height: 76px;
  }

  .avatar,
  .sw-avatar {
    width: 42px;
    height: 42px;
  }
}

/* ===========================
   DARK BLUE REMODEL
   =========================== */
body {
  background:
    radial-gradient(circle at 50% 10%, rgba(50, 199, 255, 0.22), transparent 28%),
    radial-gradient(circle at 18% 30%, rgba(0, 112, 192, 0.28), transparent 34%),
    radial-gradient(circle at 70% 72%, rgba(42, 220, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #08111c 0%, #07131d 46%, #05101a 100%);
  color: #f7fbff;
}

.nav {
  background: rgba(6, 13, 22, 0.78);
  border-bottom-color: rgba(105, 219, 255, 0.14);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.24);
}

.nav-logo {
  color: #ffffff;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.65);
}

.nav-links a:hover {
  color: #69dbff;
}

.nav-cta {
  color: #ffffff;
  background: rgba(50, 199, 255, 0.12);
  border-color: rgba(50, 199, 255, 0.38);
}
.nav-cta:hover {
  background: rgba(50, 199, 255, 0.22);
  border-color: rgba(50, 199, 255, 0.58);
  color: #ffffff;
}

.hero {
  background:
    radial-gradient(circle at 50% 19%, rgba(50, 199, 255, 0.3), transparent 27%),
    radial-gradient(circle at 20% 42%, rgba(17, 99, 160, 0.32), transparent 36%),
    radial-gradient(circle at 80% 70%, rgba(30, 210, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #0b1018 0%, #081624 48%, #07131d 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(105, 219, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 219, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.84), transparent 86%);
  pointer-events: none;
}

.star-field {
  opacity: 0.58;
  filter: none;
}

.hero-eyebrow {
  color: rgba(232, 250, 255, 0.82);
  border-color: rgba(105, 219, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-title {
  color: #ffffff;
  text-shadow: 0 22px 80px rgba(50, 199, 255, 0.12);
}

.hero-accent,
.rainbow-text {
  background: linear-gradient(90deg, #32c7ff, #69dbff, #25e5d4, #32c7ff);
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.68);
}

.badge {
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.cta-note {
  color: rgba(255, 255, 255, 0.4);
}

.btn-primary.accent,
.btn-primary.white {
  background: linear-gradient(135deg, #32c7ff, #1ab7ef);
  color: #03141f;
  box-shadow: 0 22px 58px rgba(50, 199, 255, 0.32);
}

.btn-secondary.ghost,
.btn-secondary.dark-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(105, 219, 255, 0.34);
}

.chat-showcase,
.video-demo,
.outcomes,
.how,
.compare,
.pricing,
.care,
.faq {
  background:
    radial-gradient(circle at 50% 0%, rgba(50, 199, 255, 0.14), transparent 28%),
    radial-gradient(circle at 10% 35%, rgba(17, 99, 160, 0.18), transparent 26%),
    linear-gradient(180deg, #07131d 0%, #081725 100%);
  color: #f7fbff;
}

.section-header .label,
.label {
  color: #69dbff;
}

.section-header h2,
.outcomes-head h2,
.video-copy h2,
.care-copy h2,
.step-content h3,
.question-text,
.plan-name,
.plan-price,
.faq-q,
.compare-cell,
.care-point strong {
  color: #ffffff;
}

.section-header p,
.outcomes-head > p:last-child,
.video-copy p,
.care-copy > p:last-child,
.step-content p,
.question-answer,
.plan-for,
.plan-setup,
.faq-a,
.pricing-note {
  color: rgba(255, 255, 255, 0.62);
}

.showcase-wrapper,
.question-item,
.step,
.compare-table,
.plan,
.care-point,
.pricing-note {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(105, 219, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.plan.featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(50, 199, 255, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(105, 219, 255, 0.28);
}

.plan.featured .plan-name,
.plan.featured .plan-price,
.plan.featured .plan-features li,
.plan.featured .plan-features li svg {
  color: #ffffff;
}

.plan.featured .plan-price span,
.plan.featured .plan-setup {
  color: rgba(255, 255, 255, 0.58);
}

.plan-tag {
  background: rgba(105, 219, 255, 0.12);
  color: #69dbff;
}

.s-tab,
.theme-option {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(105, 219, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
}

.s-tab.active,
.theme-option.active {
  background: rgba(105, 219, 255, 0.14);
  border-color: rgba(105, 219, 255, 0.34);
  color: #ffffff;
}

.chat-mockup,
.showcase-window {
  background: #f6fcff;
  border-color: rgba(105, 219, 255, 0.42);
  box-shadow:
    0 22px 60px rgba(50, 199, 255, 0.16),
    0 2px 10px rgba(3, 20, 31, 0.08);
}

.chat-header,
.sw-header {
  background: linear-gradient(135deg, rgba(50, 199, 255, 0.98), rgba(18, 122, 192, 0.98));
}

.msg.user,
.sc-msg.user {
  background: linear-gradient(135deg, #32c7ff, #168fdb);
  color: #ffffff;
  box-shadow: 0 5px 13px rgba(24, 143, 219, 0.18);
}

.chat-composer svg,
.sw-composer svg {
  color: #168fdb;
}

.compare-row.header {
  background: rgba(255, 255, 255, 0.06);
}

.compare-cell.them,
.compare-cell.us {
  color: rgba(255, 255, 255, 0.72);
}

.compare-row.header .compare-cell.us {
  color: #69dbff;
}

.faq-item,
.faq-item:first-child {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-q:hover {
  color: #69dbff;
}

.cta-final {
  background:
    radial-gradient(circle at 50% 78%, rgba(50, 199, 255, 0.28), transparent 34%),
    radial-gradient(circle at 50% 95%, rgba(0, 112, 192, 0.18), transparent 30%),
    linear-gradient(180deg, #07131d 0%, #081725 60%, #07131d 100%);
  border-top-color: rgba(105, 219, 255, 0.10);
}

.cta-box h2 {
  color: #ffffff;
}

.cta-box .label {
  color: #69dbff;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.64);
}

.cta-guarantees {
  color: rgba(255, 255, 255, 0.46);
}

.cta-guarantees span:not(:first-child)::before {
  background: rgba(255, 255, 255, 0.32);
}

.footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(50, 199, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #0b0f16 0%, #07090d 100%);
}

@media (max-width: 768px) {
  .hero-sub,
  .cta-sub {
    color: rgba(255, 255, 255, 0.66);
  }
}

/* ===========================
   COHESIVE CYAN SITE PASS
   =========================== */
:root {
  --site-bg-0: #06111c;
  --site-bg-1: #071827;
  --site-bg-2: #092235;
  --site-cyan: #5edcff;
  --site-teal: #27e0d5;
  --site-ink: #f7fbff;
  --site-muted: rgba(238, 250, 255, 0.68);
  --site-soft: rgba(238, 250, 255, 0.48);
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.105);
  --glass-border: rgba(104, 219, 255, 0.17);
}

html {
  background: var(--site-bg-0);
}

body {
  background:
    radial-gradient(1200px 680px at 50% -6%, rgba(94, 220, 255, 0.28), transparent 62%),
    radial-gradient(980px 760px at 10% 18%, rgba(14, 118, 185, 0.34), transparent 66%),
    radial-gradient(1050px 900px at 88% 46%, rgba(39, 224, 213, 0.12), transparent 62%),
    linear-gradient(180deg, #06111c 0%, #071827 34%, #092235 58%, #071827 78%, #06111c 100%);
  color: var(--site-ink);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(104, 219, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 219, 255, 0.026) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 78%, transparent);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(800px 460px at 50% 40%, rgba(94, 220, 255, 0.08), transparent 70%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.16));
}

.hero,
.chat-showcase,
.video-demo,
.outcomes,
.how,
.compare,
.pricing,
.care,
.faq,
.cta-final {
  background: transparent !important;
  border-top: 0 !important;
  color: var(--site-ink);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::after,
.chat-showcase::before,
.video-demo::before,
.outcomes::before,
.how::before,
.compare::before,
.pricing::before,
.care::before,
.faq::before,
.cta-final::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -240px;
  width: min(1320px, 110vw);
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(94, 220, 255, 0.09), transparent 74%);
  filter: blur(32px);
  opacity: 0.62;
  pointer-events: none;
  z-index: -1;
}

.chat-showcase::before,
.video-demo::before,
.outcomes::before,
.how::before,
.compare::before,
.pricing::before,
.care::before,
.faq::before,
.cta-final::before {
  display: none !important;
}

.hero {
  background:
    radial-gradient(900px 560px at 50% 12%, rgba(94, 220, 255, 0.26), transparent 64%),
    linear-gradient(180deg, rgba(5, 14, 24, 0.2), transparent 80%) !important;
}

.hero::before {
  opacity: 0.7;
}

.chat-showcase {
  margin-top: -1px;
  padding-top: clamp(260px, 27vw, 340px);
}

.video-demo,
.outcomes,
.how,
.compare,
.pricing,
.care,
.faq,
.cta-final {
  padding-top: clamp(82px, 8vw, 118px);
  padding-bottom: clamp(82px, 8vw, 118px);
}

.container,
.hero-inner,
.cta-box,
.footer .container {
  position: relative;
  z-index: 1;
}

.section-header,
.outcomes-head {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-header h2,
.outcomes-head h2,
.video-copy h2,
.care-copy h2,
.cta-box h2 {
  color: #ffffff !important;
  text-shadow: 0 18px 70px rgba(94, 220, 255, 0.1);
}

.ml11,
.ml11 .letters,
.ml11 .text-wrapper,
.hero-title .word-inner {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
  will-change: auto !important;
}

.ml11 {
  display: block !important;
}

.ml11 .letters,
.ml11 .text-wrapper,
.hero-title .word-inner {
  display: inline !important;
}

.ml11 .line {
  display: none !important;
}

.reveal {
  opacity: 1 !important;
  transform: none !important;
}

.section-header p,
.outcomes-head > p:last-child,
.video-copy p,
.care-copy > p:last-child,
.step-content p,
.question-answer,
.plan-for,
.plan-setup,
.faq-a,
.pricing-note,
.trial-offer span,
.cta-sub {
  color: var(--site-muted) !important;
}

.label,
.section-header .label {
  color: var(--site-cyan) !important;
}

.showcase-wrapper,
.video-demo-inner,
.question-item,
.outcome,
.steps,
.compare-table,
.plan,
.care-inner,
.care-point,
.pricing-note,
.trial-offer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045)) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(18px);
}

.showcase-wrapper,
.video-demo-inner,
.steps,
.compare-table,
.care-inner {
  border-radius: 22px;
}

.showcase-wrapper {
  max-width: 700px;
  padding: 26px;
  overflow: visible;
}

.s-tabs {
  max-width: none;
}

.s-tab,
.theme-option,
.theme-picker {
  background: rgba(255, 255, 255, 0.065) !important;
  border-color: rgba(104, 219, 255, 0.16) !important;
  color: rgba(238, 250, 255, 0.72) !important;
}

.theme-picker-label {
  color: rgba(238, 250, 255, 0.6) !important;
}

.s-tab:hover,
.s-tab.active,
.theme-option:hover,
.theme-option.active {
  background: rgba(94, 220, 255, 0.14) !important;
  border-color: rgba(94, 220, 255, 0.42) !important;
  color: #ffffff !important;
}

.chat-mockup,
.showcase-window {
  background: #f7fcff !important;
  border-color: rgba(104, 219, 255, 0.42) !important;
  box-shadow:
    0 28px 90px rgba(50, 199, 255, 0.14),
    0 18px 56px rgba(0, 0, 0, 0.2) !important;
}

.messages,
.showcase-slides {
  background:
    radial-gradient(circle at 12% 0%, rgba(50, 199, 255, 0.065), transparent 38%),
    #f7fcff !important;
}

.msg.bot,
.sc-msg.bot {
  background: #ffffff !important;
  color: #17202a !important;
  border-color: rgba(5, 39, 58, 0.1) !important;
}

.msg.user,
.sc-msg.user {
  background: linear-gradient(135deg, #37caff, #168edd) !important;
  color: #ffffff !important;
}

.msg {
  opacity: 1 !important;
  transform: none !important;
}

.chat-composer,
.sw-composer {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(9, 96, 139, 0.16) !important;
}

.chat-composer span,
.sw-composer span {
  color: #8a98aa;
}

.video-points span {
  color: rgba(238, 250, 255, 0.82) !important;
  background: rgba(94, 220, 255, 0.1) !important;
  border-color: rgba(94, 220, 255, 0.24) !important;
}

.outcomes-grid {
  gap: 18px;
}

.outcome {
  border-radius: 18px;
  min-height: 220px;
}

.outcome-num {
  color: rgba(94, 220, 255, 0.58) !important;
}

.outcome h3,
.step-content h3,
.question-text,
.plan-name,
.plan-price,
.plan-features li,
.faq-q,
.compare-cell,
.care-point strong,
.trial-offer strong {
  color: #ffffff !important;
}

.outcome p,
.care-point span:not(.care-icon) {
  color: var(--site-muted) !important;
}

.steps {
  max-width: 800px;
  padding: 10px 0;
}

.step {
  padding: 34px 38px;
  border-bottom-color: rgba(104, 219, 255, 0.1) !important;
}

.steps-line {
  left: 60px;
  background: linear-gradient(180deg, rgba(94, 220, 255, 0.8), rgba(94, 220, 255, 0.06)) !important;
}

.step-num {
  background: linear-gradient(135deg, #37caff, #116ea6) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 32px rgba(55, 202, 255, 0.22);
}

.compare-table {
  overflow: hidden;
}

.compare-row,
.compare-row.header {
  background: transparent !important;
}

.compare-row:not(:last-child) {
  border-bottom-color: rgba(104, 219, 255, 0.1) !important;
}

.compare-cell.feature,
.compare-cell.them,
.compare-cell.us,
.compare-row.header .compare-cell,
.compare-row.header .compare-cell.us {
  color: rgba(238, 250, 255, 0.76) !important;
}

.compare-cell.us,
.compare-row.header .compare-cell.us {
  color: #9aeaff !important;
}

.compare svg,
.compare svg path,
.compare svg line,
.plan-features svg,
.plan-features svg path {
  stroke: currentColor !important;
}

.plans {
  gap: 22px;
}

.plan {
  border-radius: 22px;
  padding: 32px 28px;
}

.plan.featured {
  background:
    radial-gradient(420px 360px at 100% 0%, rgba(94, 220, 255, 0.18), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.065)) !important;
  border-color: rgba(94, 220, 255, 0.42) !important;
  box-shadow:
    0 28px 100px rgba(50, 199, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.plan-header,
.plan.featured .plan-header {
  border-bottom-color: rgba(104, 219, 255, 0.12) !important;
}

.plan-price span,
.plan.featured .plan-price span {
  color: rgba(238, 250, 255, 0.58) !important;
}

.plan-features li.off,
.plan.featured .plan-features li.off,
.plan-features li.off svg,
.plan.featured .plan-features li.off svg {
  color: rgba(238, 250, 255, 0.26) !important;
}

.btn-plan {
  color: #ffffff !important;
  border-color: rgba(104, 219, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.045) !important;
}

.btn-plan:hover,
.btn-plan.featured {
  color: #03141f !important;
  background: linear-gradient(135deg, #5edcff, #26b8f0) !important;
  border-color: transparent !important;
}

.trial-offer {
  max-width: 820px;
  border-radius: 18px;
}

.care-inner {
  padding: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--glass-border) !important;
  border-bottom: 1px solid var(--glass-border) !important;
}

.care-point {
  background: rgba(255, 255, 255, 0.045) !important;
  border-radius: 16px;
  padding: 18px !important;
  border-bottom: 1px solid rgba(104, 219, 255, 0.1) !important;
}

.care-icon {
  background: rgba(94, 220, 255, 0.14) !important;
  color: #5edcff !important;
}

.faq-list {
  max-width: 720px;
  padding: 6px 26px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  position: relative;
  overflow: visible;
}

.faq-item,
.faq-item:first-child {
  border-color: rgba(104, 219, 255, 0.12) !important;
}

.faq-arrow {
  color: rgba(238, 250, 255, 0.58) !important;
}

.cta-final {
  padding-bottom: clamp(92px, 9vw, 130px);
}

.cta-box::before {
  width: min(980px, 94vw);
  height: 520px;
  background:
    radial-gradient(circle, rgba(94, 220, 255, 0.36) 0%, rgba(50, 199, 255, 0.14) 42%, transparent 72%) !important;
  filter: blur(20px);
}

.cta-box::after {
  opacity: 0.28;
}

.footer {
  background:
    radial-gradient(900px 420px at 22% 0%, rgba(94, 220, 255, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(6, 17, 28, 0.96), #050b12) !important;
  border-top: 1px solid rgba(104, 219, 255, 0.12);
}

.footer-column h3,
.footer-logo,
.footer-brand p,
.footer-column a,
.footer-bottom p {
  color: rgba(238, 250, 255, 0.72);
}

.footer-column h3,
.footer-logo {
  color: #ffffff;
}

@media (max-width: 768px) {
  .chat-showcase {
    padding-top: 250px;
  }

  .showcase-wrapper {
    padding: 16px;
  }

  .video-demo,
  .outcomes,
  .how,
  .compare,
  .pricing,
  .care,
  .faq,
  .cta-final {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .steps {
    padding: 0;
  }

  .step {
    padding: 28px 22px;
    gap: 18px;
  }

  .steps-line {
    left: 44px;
  }

  .care-inner,
  .faq-list {
    padding: 22px;
  }
}

/* ===========================
   POLISH PASS: CHAT, TIMELINE, TABLES, PLANS
   =========================== */
body[data-chat-theme="sky"] {
  --chat-header: linear-gradient(135deg, #37caff, #168edd);
  --chat-user-bg: linear-gradient(135deg, #37caff, #168edd);
  --chat-accent-ring: rgba(94, 220, 255, 0.46);
  --chat-accent-shadow: rgba(50, 199, 255, 0.22);
  --chat-user-text: #ffffff;
}

body[data-chat-theme="green"] {
  --chat-header: linear-gradient(135deg, #2edb9f, #0d9b70);
  --chat-user-bg: linear-gradient(135deg, #2edb9f, #0d9b70);
  --chat-accent-ring: rgba(46, 219, 159, 0.5);
  --chat-accent-shadow: rgba(46, 219, 159, 0.22);
  --chat-user-text: #ffffff;
}

body[data-chat-theme="night"] {
  --chat-header: linear-gradient(135deg, #1b2a40, #07111f);
  --chat-user-bg: linear-gradient(135deg, #1b2a40, #07111f);
  --chat-accent-ring: rgba(148, 163, 184, 0.42);
  --chat-accent-shadow: rgba(10, 18, 31, 0.26);
  --chat-user-text: #ffffff;
}

.chat-header,
.sw-header {
  background: var(--chat-header) !important;
}

.msg.user,
.sc-msg.user {
  background: var(--chat-user-bg) !important;
  color: var(--chat-user-text) !important;
}

.theme-option.active[data-theme="sky"],
body[data-chat-theme="sky"] .theme-option[data-theme="sky"] {
  border-color: rgba(94, 220, 255, 0.82) !important;
  box-shadow: 0 0 0 2px rgba(94, 220, 255, 0.22), 0 0 28px rgba(94, 220, 255, 0.16);
}

.theme-option.active[data-theme="green"],
body[data-chat-theme="green"] .theme-option[data-theme="green"] {
  border-color: rgba(46, 219, 159, 0.9) !important;
  box-shadow: 0 0 0 2px rgba(46, 219, 159, 0.22), 0 0 28px rgba(46, 219, 159, 0.16);
}

.theme-option.active[data-theme="night"],
body[data-chat-theme="night"] .theme-option[data-theme="night"] {
  border-color: rgba(190, 205, 224, 0.7) !important;
  box-shadow: 0 0 0 2px rgba(190, 205, 224, 0.16), 0 0 28px rgba(12, 24, 42, 0.22);
}

.steps {
  overflow: visible;
}

.steps-line {
  z-index: 0 !important;
  left: 60px !important;
  width: 2px !important;
  opacity: 0.65;
}

.step {
  position: relative;
  z-index: 1;
}

.step-num {
  position: relative;
  z-index: 3;
  border: 1px solid rgba(165, 238, 255, 0.45);
}

.step-num::before {
  content: '';
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(94, 220, 255, 0.34), transparent 68%);
  filter: blur(4px);
}

.compare-table,
.showcase-wrapper,
.faq-list {
  position: relative;
}

.compare-table {
  border-color: rgba(114, 232, 255, 0.34) !important;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(94, 220, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.compare-table::before,
.showcase-wrapper::before,
.faq-list::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--shine-angle, 0deg), transparent 0 66%, rgba(94, 220, 255, 0.04) 70%, rgba(94, 220, 255, 0.96) 76%, rgba(39, 224, 213, 0.48) 80%, transparent 86% 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: border-trail 7s linear infinite;
  z-index: 2;
}

@property --shine-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes border-trail {
  to { --shine-angle: 360deg; }
}

.highlight-col {
  background:
    linear-gradient(180deg, rgba(94, 220, 255, 0.13), rgba(94, 220, 255, 0.08)) !important;
  box-shadow:
    inset 1px 0 0 rgba(114, 232, 255, 0.25),
    inset -1px 0 0 rgba(114, 232, 255, 0.25);
}

.compare-row.header .highlight-col {
  color: #b7f4ff !important;
  text-shadow: 0 0 26px rgba(94, 220, 255, 0.35);
}

.compare-cell.feature {
  color: rgba(248, 253, 255, 0.86) !important;
  font-weight: 560;
}

.compare-cell.them {
  color: rgba(238, 250, 255, 0.76) !important;
}

.compare-cell.us {
  color: #b7f4ff !important;
  font-weight: 720;
}

.icon-yes,
.icon-no,
.compare svg {
  color: #9ff0ff !important;
}

.icon-no {
  color: rgba(238, 250, 255, 0.46) !important;
}

.plan {
  overflow: hidden;
  border-color: rgba(114, 232, 255, 0.28) !important;
}

.plan::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.06) 48%, transparent 62% 100%);
  opacity: 0.6;
}

.plan.featured {
  border-width: 2px !important;
  border-color: rgba(114, 232, 255, 0.74) !important;
  box-shadow:
    0 32px 120px rgba(50, 199, 255, 0.18),
    0 0 0 1px rgba(114, 232, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.plan-tag {
  background: linear-gradient(135deg, rgba(94, 220, 255, 0.32), rgba(39, 224, 213, 0.18)) !important;
  color: #baf5ff !important;
  border: 1px solid rgba(114, 232, 255, 0.42);
  box-shadow: 0 0 34px rgba(94, 220, 255, 0.22);
}

.plan-features li svg,
.plan.featured .plan-features li svg {
  color: #8eeeff !important;
  stroke: currentColor !important;
  filter: drop-shadow(0 0 8px rgba(94, 220, 255, 0.24));
}

.plan-features li,
.plan.featured .plan-features li {
  color: rgba(255, 255, 255, 0.9) !important;
}

.trial-offer,
.pricing-note {
  color: rgba(238, 250, 255, 0.82) !important;
}

.trial-offer strong,
.pricing-note strong {
  color: #ffffff !important;
}

.section-header h2 {
  text-wrap: balance;
}

.chat-container {
  margin-top: -180px;
  transform: translateY(210px);
}

.chat-container.reveal.visible {
  transform: translateY(210px);
}

@media (max-width: 768px) {
  .steps-line {
    left: 44px !important;
  }

  .plans {
    padding: 0;
  }

  .plan.featured {
    order: 0;
  }

  .chat-container,
  .chat-container.reveal.visible {
    margin-top: -132px;
    transform: translateY(188px);
  }
}

/* ===========================
   SPACING + PLATFORM LOGOS PASS
   =========================== */
.platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -8px auto 30px;
  width: min(340px, 66vw);
  opacity: 0.82;
  filter: drop-shadow(0 12px 30px rgba(94, 220, 255, 0.12));
}

.platform-logos img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero {
  padding-bottom: clamp(96px, 12vw, 150px);
}

.chat-container {
  margin-top: 12px;
  transform: translateY(185px);
}

.chat-container.reveal.visible {
  transform: translateY(185px);
}

.chat-showcase {
  padding-top: clamp(220px, 23vw, 300px);
}

.plan,
.plan.featured {
  overflow: visible !important;
}

.plan-tag {
  top: -18px;
  z-index: 5;
}

.care {
  padding-top: clamp(100px, 9vw, 132px);
  padding-bottom: clamp(100px, 9vw, 132px);
}

.care-inner {
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  padding: clamp(38px, 5vw, 68px) !important;
  border-radius: 30px;
}

.care-points {
  gap: 16px;
}

.care-point {
  padding: 22px !important;
  border: 1px solid rgba(104, 219, 255, 0.14) !important;
}

.care-point strong {
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 74px;
  }

  .platform-logos {
    width: min(260px, 70vw);
    margin: 4px auto 24px;
  }

  .hero-cta {
    margin-bottom: 34px;
  }

  .chat-container,
  .chat-container.reveal.visible {
    margin-top: 34px;
    transform: none;
  }

  .chat-showcase {
    padding-top: 82px;
  }

  .plan-tag {
    top: -15px;
  }

  .care {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .care-inner {
    gap: 26px;
    padding: 30px 24px !important;
  }

  .care-copy h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .care-copy > p:last-child {
    font-size: 17px;
    line-height: 1.6;
  }

  .care-points {
    gap: 14px;
  }

  .care-point {
    gap: 16px;
    padding: 20px !important;
  }
}

@media (max-width: 420px) {
  .platform-logos {
    width: min(230px, 72vw);
  }
}

/* ===========================
   FULL-PAGE GRID + INCLUDED TRAIL
   =========================== */
body::before {
  background:
    linear-gradient(rgba(104, 219, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 219, 255, 0.034) 1px, transparent 1px),
    linear-gradient(rgba(104, 219, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 219, 255, 0.016) 1px, transparent 1px) !important;
  background-size: 58px 58px, 58px 58px, 232px 232px, 232px 232px !important;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 34%, rgba(0, 0, 0, 0.36) 100%) !important;
}

.hero::before {
  background:
    linear-gradient(rgba(105, 219, 255, 0.046) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 219, 255, 0.046) 1px, transparent 1px) !important;
  background-size: 56px 56px !important;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.46) 76%, rgba(0, 0, 0, 0.18) 100%) !important;
}

.chat-showcase,
.video-demo,
.outcomes,
.how,
.compare,
.pricing,
.care,
.faq,
.cta-final,
.footer {
  background-color: transparent !important;
}

.compare-table {
  overflow: visible !important;
  border-color: rgba(126, 235, 255, 0.5) !important;
  box-shadow:
    0 36px 130px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(126, 235, 255, 0.2),
    0 0 42px rgba(94, 220, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

.compare-table::before {
  inset: -4px;
  padding: 3px;
  background:
    conic-gradient(
      from var(--shine-angle, 0deg),
      rgba(94, 220, 255, 0.18) 0deg,
      transparent 42deg,
      transparent 230deg,
      rgba(94, 220, 255, 0.12) 252deg,
      rgba(170, 247, 255, 1) 270deg,
      rgba(39, 224, 213, 0.75) 286deg,
      transparent 314deg,
      rgba(94, 220, 255, 0.18) 360deg
    ) !important;
  filter: drop-shadow(0 0 18px rgba(94, 220, 255, 0.38));
  animation-duration: 5.5s;
  z-index: 6;
}

.compare-table::after {
  content: '';
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(94, 220, 255, 0.16) 48%, transparent 60% 100%),
    radial-gradient(circle at 50% 0%, rgba(94, 220, 255, 0.18), transparent 46%);
  opacity: 0.72;
  filter: blur(16px);
}

/* Final fix: visible page grid + clean included border */
body {
  background:
    linear-gradient(rgba(104, 219, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 219, 255, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(104, 219, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 219, 255, 0.014) 1px, transparent 1px),
    radial-gradient(1200px 680px at 50% -6%, rgba(94, 220, 255, 0.28), transparent 62%),
    radial-gradient(980px 760px at 10% 18%, rgba(14, 118, 185, 0.34), transparent 66%),
    radial-gradient(1050px 900px at 88% 46%, rgba(39, 224, 213, 0.12), transparent 62%),
    linear-gradient(180deg, #06111c 0%, #071827 34%, #092235 58%, #071827 78%, #06111c 100%) !important;
  background-size:
    58px 58px,
    58px 58px,
    232px 232px,
    232px 232px,
    auto,
    auto,
    auto,
    auto !important;
  background-attachment:
    fixed,
    fixed,
    fixed,
    fixed,
    scroll,
    scroll,
    scroll,
    scroll;
}

body::before {
  display: none !important;
}

.compare-table {
  overflow: hidden !important;
  isolation: isolate;
}

.compare-table::before {
  inset: 0 !important;
  padding: 2px !important;
  border-radius: inherit;
  background:
    conic-gradient(
      from var(--shine-angle, 0deg),
      rgba(94, 220, 255, 0.16) 0deg,
      transparent 46deg,
      transparent 222deg,
      rgba(94, 220, 255, 0.1) 246deg,
      rgba(184, 250, 255, 0.96) 270deg,
      rgba(39, 224, 213, 0.58) 288deg,
      transparent 316deg,
      rgba(94, 220, 255, 0.16) 360deg
    ) !important;
  filter: none !important;
  z-index: 8 !important;
}

.compare-table::after {
  inset: 0 !important;
  z-index: 0 !important;
  border-radius: inherit;
  filter: none !important;
  opacity: 0.42 !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(94, 220, 255, 0.16), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(39, 224, 213, 0.1), transparent 34%) !important;
}

.compare-row {
  position: relative;
  z-index: 1;
}

/* Final brand sizing */
.nav-inner {
  height: 68px;
}

.nav-logo {
  gap: 8px !important;
  font-size: 24px !important;
  font-weight: 780 !important;
}

.nav-logo .brand-mark-img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 0 !important;
  object-fit: contain;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .nav-inner {
    height: 64px;
    padding: 0 16px;
  }

  .nav-logo {
    gap: 7px !important;
    font-size: 22px !important;
  }

  .nav-logo .brand-mark-img {
    width: 46px !important;
    height: 46px !important;
    border-radius: 0 !important;
  }
}

/* Final FAQ interaction */
.faq-list {
  padding-top: 10px;
  padding-bottom: 10px;
}

.faq-q {
  min-height: 58px;
  padding: 17px 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  transition: color 0.14s ease, opacity 0.14s ease;
}

.faq-q:hover,
.faq-q.open {
  color: #8eeeff !important;
}

.faq-arrow {
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.14s ease !important;
}

.faq-q.open .faq-arrow {
  color: #8eeeff !important;
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  max-height: none !important;
  padding-bottom: 0 !important;
  opacity: 0;
  color: rgba(238, 250, 255, 0.68) !important;
  transition:
    grid-template-rows 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.14s ease,
    padding-bottom 0.18s ease !important;
}

.faq-a::before {
  content: attr(data-empty);
  display: block;
  min-height: 0;
  overflow: hidden;
}

.faq-a > * {
  overflow: hidden;
}

.faq-a.open {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 16px !important;
}

/* FAQ stable compact override */
.faq-a {
  display: block !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  padding-bottom: 0 !important;
  transform: translateY(-3px);
  transition:
    max-height 0.16s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.12s ease,
    transform 0.16s cubic-bezier(0.2, 0.8, 0.2, 1),
    padding-bottom 0.16s ease !important;
}

.faq-a::before {
  content: none !important;
}

.faq-a.open {
  max-height: 220px !important;
  opacity: 1 !important;
  transform: translateY(0);
  padding-bottom: 14px !important;
}

@media (max-width: 380px) {
  .nav-logo {
    font-size: 20px !important;
    gap: 6px !important;
  }

  .nav-logo .brand-mark-img {
    width: 42px !important;
    height: 42px !important;
  }
}

.brand-mark-img,
.footer-brand-mark {
  background: transparent !important;
}

/* Final hero trust pill */
.hero-eyebrow {
  position: relative !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: min(680px, calc(100vw - 32px));
  padding: 10px 22px !important;
  overflow: hidden;
  color: rgba(232, 250, 255, 0.78) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(105, 219, 255, 0.22) !important;
  box-shadow:
    0 16px 54px rgba(50, 199, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-eyebrow span {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 850;
}

.hero-eyebrow::before {
  flex: 0 0 auto;
  margin: 0 !important;
  box-shadow: 0 0 18px rgba(50, 199, 255, 0.9);
}

.hero-eyebrow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--shine-angle, 0deg), transparent 0 58%, rgba(94, 220, 255, 0.04) 64%, rgba(94, 220, 255, 0.98) 72%, rgba(255, 255, 255, 0.82) 75%, rgba(39, 224, 213, 0.46) 79%, transparent 86% 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: border-trail 4.8s linear infinite;
}

@media (max-width: 520px) {
  .hero-eyebrow {
    padding: 9px 15px !important;
    font-size: 10px !important;
    line-height: 1.45;
    letter-spacing: 0.13em;
    display: inline-block !important;
    text-align: center;
  }

  .hero-eyebrow span {
    display: inline;
  }
}

/* Final spacing + impact redesign */
.hero {
  padding-bottom: clamp(44px, 6vw, 84px) !important;
}

.chat-container,
.chat-container.reveal.visible {
  margin-top: 10px !important;
  transform: translateY(92px) !important;
}

.chat-showcase {
  padding-top: clamp(118px, 10vw, 158px) !important;
}

.outcomes {
  padding: clamp(58px, 7vw, 92px) 0 !important;
}

.outcomes-head {
  margin-bottom: 32px !important;
  text-align: center !important;
}

.outcomes-head h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 5vw, 58px) !important;
}

.outcomes-accent {
  background: linear-gradient(90deg, #32c7ff, #69dbff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 600px) {
  .outcomes-head h2 {
    font-size: 26px !important;
    line-height: 1.18 !important;
  }
  .outcomes-head > p:last-child {
    font-size: 15px !important;
  }
}

.outcomes-head > p:last-child {
  max-width: 520px;
  font-size: 16px !important;
  color: rgba(238, 250, 255, 0.58) !important;
}

.impact-flow {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  gap: 18px !important;
}

.impact-flow::before {
  content: '';
  position: absolute;
  left: 9%;
  right: 9%;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(105, 219, 255, 0.58), rgba(39, 224, 213, 0.4), transparent);
  box-shadow: 0 0 26px rgba(94, 220, 255, 0.22);
  pointer-events: none;
}

.impact-flow .outcome {
  position: relative;
  min-height: 168px !important;
  padding: 30px 26px 26px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(94, 220, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)) !important;
  border: 1px solid rgba(105, 219, 255, 0.22) !important;
  border-radius: 24px !important;
  box-shadow:
    0 22px 74px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.impact-flow .outcome::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #69dbff;
  box-shadow:
    0 0 0 8px rgba(105, 219, 255, 0.1),
    0 0 30px rgba(105, 219, 255, 0.5);
}

.impact-flow .outcome-num {
  display: inline-flex !important;
  align-items: center;
  margin: 0 0 18px !important;
  padding: 7px 12px;
  width: fit-content;
  color: #07131d !important;
  background: linear-gradient(135deg, #69dbff, #27e0d5);
  border-radius: 999px;
  font-size: 12px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-flow .outcome h3 {
  font-size: 21px !important;
  margin-bottom: 8px !important;
}

.impact-flow .outcome p {
  max-width: 280px;
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: rgba(238, 250, 255, 0.68) !important;
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 52px !important;
  }

  .chat-container,
  .chat-container.reveal.visible {
    margin-top: 24px !important;
    transform: none !important;
  }

  .chat-showcase {
    padding-top: 62px !important;
  }

  .messages {
    height: 260px !important;
    gap: 7px !important;
    padding: 14px 12px 14px !important;
  }

  .messages .msg:nth-child(3),
  .messages .msg:nth-child(4),
  .messages .msg:nth-child(5) {
    display: none !important;
  }

  .msg {
    max-width: 90% !important;
    font-size: 12.5px !important;
    line-height: 1.42 !important;
    padding: 10px 12px !important;
  }

  .chat-composer {
    margin: 0 12px 12px !important;
  }

  .outcomes {
    padding: 54px 0 66px !important;
  }

  .outcomes-head {
    margin-bottom: 24px !important;
    text-align: left !important;
  }

  .outcomes-head h2 {
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

  .outcomes-head > p:last-child {
    margin-left: 0 !important;
    font-size: 14.5px !important;
  }

  .impact-flow {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 420px !important;
  }

  .impact-flow::before {
    left: 26px;
    right: auto;
    top: 20px;
    bottom: 20px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(105, 219, 255, 0.7), rgba(39, 224, 213, 0.24), transparent);
  }

  .impact-flow .outcome {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 14px;
    min-height: auto !important;
    padding: 18px 18px 18px 20px !important;
    border-radius: 20px !important;
  }

  .impact-flow .outcome::before {
    grid-row: 1 / span 3;
    width: 14px;
    height: 14px;
    margin: 7px auto 0;
  }

  .impact-flow .outcome-num,
  .impact-flow .outcome h3,
  .impact-flow .outcome p {
    grid-column: 2;
  }

  .impact-flow .outcome-num {
    margin-bottom: 9px !important;
    padding: 5px 9px;
    font-size: 10px !important;
  }

  .impact-flow .outcome h3 {
    font-size: 18px !important;
  }

  .impact-flow .outcome p {
    max-width: none;
    font-size: 13.5px !important;
  }
}

/* Final live chat showcase */
.showcase-wrapper {
  max-width: 760px !important;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(94, 220, 255, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(105, 219, 255, 0.18);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.s-tabs {
  max-width: 760px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.s-tab {
  border-color: rgba(105, 219, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(238, 250, 255, 0.72) !important;
}

.s-tab.active {
  color: #ffffff !important;
  border-color: rgba(105, 219, 255, 0.72) !important;
  background: linear-gradient(180deg, rgba(94, 220, 255, 0.16), rgba(94, 220, 255, 0.08)) !important;
  box-shadow:
    0 0 0 1px rgba(105, 219, 255, 0.15),
    0 14px 40px rgba(50, 199, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase-window {
  max-width: 640px;
  margin: 0 auto;
}

.showcase-slides.live-chat {
  height: 430px !important;
  padding: 20px;
  padding-bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 100% 0%, rgba(50, 199, 255, 0.08), transparent 32%),
    #f4fbff;
}

.showcase-slides.live-chat::-webkit-scrollbar {
  width: 0;
}

.showcase-slides.live-chat > * {
  flex-shrink: 0;
}

.live-chat.resetting > * {
  opacity: 0;
  transform: translateY(6px) scale(0.985);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.sc-msg,
.sc-products,
.sc-status,
.sc-toast,
.sc-tracking-card,
.sc-handoff-card,
.sc-channels-card {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sc-msg.show,
.sc-products.show,
.sc-status.show,
.sc-toast.show,
.sc-tracking-card.show,
.sc-handoff-card.show,
.sc-channels-card.show {
  opacity: 1;
  transform: translateY(0);
}

.sc-typing {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 13px 16px !important;
}

.sc-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(10, 23, 33, 0.42);
  animation: typing-bounce 1.15s infinite ease-in-out;
}

.sc-typing span:nth-child(2) { animation-delay: 0.14s; }
.sc-typing span:nth-child(3) { animation-delay: 0.28s; }

.sc-status,
.sc-toast {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 94%;
  padding: 8px 13px;
  border-radius: 999px;
  color: #1f5f74;
  background: rgba(105, 219, 255, 0.12);
  border: 1px solid rgba(50, 199, 255, 0.18);
  font-size: 12px;
  font-weight: 650;
}

.sc-status span,
.sc-toast span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--chat-accent);
  box-shadow: 0 0 16px var(--chat-accent-shadow);
}

.sc-status span {
  animation: status-pulse 1.15s ease-in-out infinite;
}

.sc-toast {
  color: #0f6b48;
  background: rgba(22, 199, 132, 0.14);
  border-color: rgba(22, 199, 132, 0.22);
}

.sc-toast span {
  background: #16c784;
}

.sc-products {
  display: grid;
  gap: 9px;
  width: min(100%, 470px);
  align-self: flex-start;
}

.sc-product {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(50, 199, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(10, 31, 45, 0.08);
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  animation: product-pop 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--delay);
  overflow: visible;
  position: relative;
}

.sc-product::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(105, 219, 255, 0.18) 42%, transparent 70%);
  transform: translateX(-120%);
  animation: product-scan 1.25s ease-out forwards;
  animation-delay: calc(var(--delay) + 0.18s);
  pointer-events: none;
  border-radius: 18px;
  clip-path: inset(0 round 18px);
}

@keyframes product-pop {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.sc-product-thumb {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 65% 30%, rgba(255, 255, 255, 0.82), transparent 22%),
    linear-gradient(135deg, rgba(105, 219, 255, 0.95), rgba(39, 224, 213, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-product-thumb svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.9;
}

.sc-product-info {
  min-width: 0;
}

.sc-product-info strong {
  display: block;
  margin-bottom: 3px;
  color: #101828;
  font-size: 13.5px;
  line-height: 1.2;
}

.sc-product-info span {
  display: block;
  color: #667085;
  font-size: 12px;
  line-height: 1.25;
}

.sc-product-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.sc-product-side b {
  color: #0a1721;
  font-size: 13px;
}

.sc-product-side button {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--chat-user-bg);
  color: var(--chat-user-text);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: default;
  box-shadow: 0 8px 18px var(--chat-accent-shadow);
  transition: transform 0.18s ease, background 0.18s ease;
}

.sc-product-side button.added {
  transform: scale(1.04);
  background: #16c784;
  color: #ffffff;
}

.sc-tracking-card,
.sc-handoff-card {
  align-self: flex-start;
  width: min(100%, 430px);
  padding: 15px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(50, 199, 255, 0.16);
  box-shadow: 0 16px 42px rgba(10, 31, 45, 0.08);
}

.sc-tracking-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  overflow: hidden;
  position: relative;
}

.sc-tracking-card span {
  display: block;
  margin-bottom: 4px;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sc-tracking-card strong {
  color: #101828;
  font-size: 14px;
}

.sc-tracking-card p {
  grid-column: 1 / -1;
  margin: 3px 0 0;
  color: #1f5f74;
  font-size: 13px;
  font-weight: 650;
}

.sc-route {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  height: 18px;
  margin: 2px 0;
}

.sc-route::before {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: rgba(50, 199, 255, 0.18);
  transform: translateY(-50%);
}

.sc-route::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  width: calc(100% - 16px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #32c7ff, #16c784);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  animation: route-fill 1.25s ease-out 0.2s forwards;
}

.sc-route i {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  justify-self: center;
  border-radius: 50%;
  background: #dff8ff;
  border: 2px solid #32c7ff;
  animation: route-dot 1.25s ease-out forwards;
}

.sc-route i:nth-child(2) { animation-delay: 0.28s; }
.sc-route i:nth-child(3) {
  border-color: #16c784;
  animation-delay: 0.56s;
}

.sc-handoff-card {
  display: flex;
  gap: 12px;
  overflow: hidden;
  position: relative;
}

.sc-handoff-card > span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(105, 219, 255, 0.95), rgba(39, 224, 213, 0.8));
}

.sc-handoff-card strong {
  display: block;
  color: #101828;
  font-size: 14px;
  margin-bottom: 4px;
}

.sc-handoff-card p {
  margin: 0;
  color: #667085;
  font-size: 12.5px;
  line-height: 1.4;
}

.sc-handoff-card em {
  display: block;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(50, 199, 255, 0.12);
  overflow: hidden;
}

.sc-handoff-card em::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #32c7ff, #16c784);
  transform: translateX(-102%);
  animation: handoff-fill 1s ease-out 0.18s forwards;
}

.sc-channels-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-self: flex-start;
  width: min(100%, 430px);
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(50, 199, 255, 0.16);
  box-shadow: 0 16px 42px rgba(10, 31, 45, 0.08);
}

.sc-channels-card button {
  min-width: 0;
  border: 1px solid rgba(50, 199, 255, 0.14);
  border-radius: 14px;
  padding: 10px 6px;
  background: rgba(244, 251, 255, 0.86);
  color: #101828;
  font: inherit;
  cursor: default;
  display: grid;
  justify-items: center;
  gap: 6px;
  transform: translateY(6px);
  opacity: 0;
  animation: channel-pop 0.32s ease forwards;
}

.sc-channels-card button:nth-child(2) { animation-delay: 0.08s; }
.sc-channels-card button:nth-child(3) { animation-delay: 0.16s; }

.sc-channels-card strong {
  font-size: 11.5px;
  line-height: 1.1;
}

.sc-channel-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}

.sc-channel-icon.ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}

.sc-channel-icon.fb {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.sc-channel-icon.mail {
  background: linear-gradient(135deg, #32c7ff, #16c784);
}

.sc-handoff-card > span {
  animation: handoff-pulse 1.35s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.5); opacity: 1; }
}

@keyframes product-scan {
  to { transform: translateX(120%); }
}

@keyframes route-fill {
  to { transform: translateY(-50%) scaleX(1); }
}

@keyframes route-dot {
  0% { transform: scale(0.78); opacity: 0.45; }
  45%, 100% { transform: scale(1.15); opacity: 1; }
}

@keyframes handoff-fill {
  to { transform: translateX(0); }
}

@keyframes handoff-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(50, 199, 255, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(50, 199, 255, 0); }
}

@keyframes channel-pop {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .showcase-wrapper {
    padding: 14px !important;
    border-radius: 24px;
  }

  .s-tabs {
    grid-template-columns: 1fr 1fr !important;
    gap: 7px !important;
  }

  .s-tab[data-flow="general"] {
    grid-column: 1 / -1;
  }

  .s-tab {
    min-height: 42px !important;
    padding: 8px 8px !important;
    font-size: 11.5px !important;
    white-space: normal !important;
    line-height: 1.15;
  }

  .showcase-slides.live-chat {
    height: 360px !important;
    padding: 14px 14px 34px !important;
  }

  .sc-msg {
    max-width: 92% !important;
    font-size: 13px !important;
    padding: 10px 13px !important;
  }

  .sc-product {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .sc-product-thumb {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .sc-product-side {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .sc-tracking-card {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 13px !important;
  }

  .sc-handoff-card {
    padding: 13px !important;
  }

  .sc-handoff-card > span {
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px !important;
  }
}

/* Final cleanup: no video demo, no trial strip */
.video-demo,
.trial-offer {
  display: none !important;
}

/* Included table tick contrast */
.compare .icon-yes path,
.compare svg.icon-yes path {
  stroke: #9ef3ff !important;
  filter: drop-shadow(0 0 8px rgba(94, 220, 255, 0.34));
}

.compare .icon-no line,
.compare svg.icon-no line {
  stroke: rgba(238, 250, 255, 0.5) !important;
}

.compare-cell.them,
.compare-cell.us {
  color: rgba(238, 250, 255, 0.84) !important;
}

.compare-row.header .compare-cell.them,
.compare-row.header .compare-cell.us {
  color: rgba(238, 250, 255, 0.78) !important;
}

/* Pricing recommended badge */
.plans {
  overflow: visible !important;
}

.plan,
.plan.featured {
  overflow: visible !important;
}

.plan.featured {
  margin-top: 0;
  padding-top: 28px !important;
}

.plan-tag {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  z-index: 20 !important;
  display: block !important;
  width: fit-content;
  min-width: max-content;
  margin: 0 auto 24px !important;
  padding: 7px 18px !important;
  line-height: 1 !important;
}

/* Care section visual pass */
.care-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 90px) !important;
  align-items: center;
  padding: clamp(26px, 5vw, 60px) 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.care-copy {
  max-width: 560px;
}

.care-copy h2 {
  font-size: clamp(42px, 6vw, 72px) !important;
  line-height: 1.02 !important;
}

.care-copy > p:last-child {
  max-width: 520px;
  font-size: 18px !important;
  color: rgba(238, 250, 255, 0.64) !important;
}

.care-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.care-orbit {
  position: relative;
  min-height: 260px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 220, 255, 0.2), transparent 46%);
  border: 0 !important;
  overflow: visible;
}

.care-ring {
  position: absolute;
  inset: 34px;
  border-radius: 999px;
  border: 1px solid rgba(105, 219, 255, 0.22);
}

.care-ring::before,
.care-ring::after {
  content: '';
  position: absolute;
  inset: 28px;
  border-radius: inherit;
  border: 1px dashed rgba(105, 219, 255, 0.18);
}

.care-ring::after {
  inset: 64px;
  border-style: solid;
  opacity: 0.55;
}

.care-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 82px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(105, 219, 255, 0.28);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

.bot-node {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #32c7ff, #27e0d5);
  color: #06131c;
}

.team-node {
  left: 28px;
  top: 32px;
}

.client-node {
  right: 28px;
  bottom: 32px;
}

.care-flow {
  display: grid;
  gap: 0;
}

.care-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
  padding: 18px 0;
  border-radius: 0;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(105, 219, 255, 0.14) !important;
}

.care-step:last-child {
  border-bottom: 0 !important;
}

.care-step span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #06131c;
  background: #69dbff;
  font-weight: 850;
}

.care-step strong {
  color: #ffffff;
  font-size: 17px;
}

.care-step p {
  margin: 5px 0 0;
  color: rgba(238, 250, 255, 0.62);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .plan.featured {
    margin-top: 0;
    padding-top: 26px !important;
  }

  .care-inner {
    display: grid !important;
    grid-template-columns: 1fr;
    padding: 18px 0 !important;
    gap: 26px !important;
  }

  .care-copy h2 {
    font-size: 38px !important;
  }

  .care-copy > p:last-child {
    font-size: 15.5px !important;
  }

  .care-orbit {
    min-height: 210px;
    border-radius: 26px;
  }

  .care-ring {
    inset: 26px;
  }

  .care-node {
    min-width: 72px;
    min-height: 46px;
    font-size: 13px;
  }

  .team-node {
    left: 18px;
    top: 24px;
  }

  .client-node {
    right: 18px;
    bottom: 24px;
  }
}

/* ICP pain-led final pass */
.hero {
  overflow: visible !important;
  padding-bottom: clamp(92px, 10vw, 150px) !important;
}

.hero-inner {
  max-width: 920px !important;
}

.hero-title {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(46px, 6.7vw, 86px) !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}

.hero-sub {
  max-width: 760px !important;
  color: rgba(238, 250, 255, 0.68) !important;
  font-size: clamp(17px, 1.55vw, 21px) !important;
  line-height: 1.62 !important;
}

.hero-badges {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.badge {
  color: rgba(238, 250, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border-color: rgba(105, 219, 255, 0.18) !important;
}

.chat-container,
.chat-container.reveal.visible {
  max-width: 420px !important;
  margin-top: 18px !important;
  transform: translateY(76px) !important;
}

.chat-mockup {
  border-radius: 24px !important;
}

.messages {
  height: 292px !important;
  padding: 14px 18px 16px !important;
}

.msg {
  font-size: 13px !important;
  line-height: 1.42 !important;
}

.chat-composer {
  min-height: 50px !important;
  margin-bottom: 14px !important;
}

.chat-showcase {
  padding-top: clamp(100px, 9vw, 140px) !important;
}

.outcomes-head h2 {
  max-width: 980px !important;
  text-wrap: balance;
}

.impact-flow .outcome h3 {
  text-wrap: balance;
}

.care {
  position: relative;
}

.care-inner {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
  align-items: start !important;
}

.care-copy {
  position: sticky;
  top: 110px;
}

.care-copy h2 {
  max-width: 640px;
  font-size: clamp(44px, 5.2vw, 66px) !important;
  text-wrap: balance;
}

.care-visual {
  gap: 22px !important;
}

.care-orbit {
  min-height: 300px !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 220, 255, 0.22), transparent 43%),
    linear-gradient(135deg, rgba(105, 219, 255, 0.055), rgba(255, 255, 255, 0.018)) !important;
}

.care-orbit::before,
.care-orbit::after {
  content: '';
  position: absolute;
  height: 1px;
  left: 15%;
  right: 15%;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(105, 219, 255, 0.48), transparent);
}

.care-orbit::after {
  transform: rotate(90deg);
}

.care-node {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bot-node {
  min-width: 106px !important;
  min-height: 66px !important;
  box-shadow: 0 0 48px rgba(94, 220, 255, 0.34), 0 20px 70px rgba(0, 0, 0, 0.25) !important;
}

.team-node::after,
.client-node::after,
.bot-node::after {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: rgba(238, 250, 255, 0.56);
  font-size: 12px;
  font-weight: 600;
}

.team-node::after {
  content: 'control humano';
}

.bot-node::after {
  content: 'responde y deriva';
}

.client-node::after {
  content: 'mejor experiencia';
}

.care-flow {
  border-left: 1px solid rgba(105, 219, 255, 0.18);
  padding-left: 22px;
}

.care-step {
  position: relative;
  grid-template-columns: 46px 1fr !important;
  padding: 20px 0 20px !important;
}

.care-step::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 32px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #69dbff;
  box-shadow: 0 0 18px rgba(105, 219, 255, 0.7);
}

.care-step strong {
  font-size: 20px !important;
}

.care-step p {
  max-width: 540px;
  font-size: 15.5px;
}

@media (max-width: 768px) {
  .hero {
    overflow: hidden !important;
    padding-bottom: 58px !important;
  }

  .hero-inner {
    max-width: 480px !important;
  }

  .hero-title {
    font-size: 36px !important;
    line-height: 1.08 !important;
  }

  .hero-sub {
    font-size: 15px !important;
  }

  .chat-container,
  .chat-container.reveal.visible {
    max-width: 100% !important;
    margin-top: 28px !important;
    transform: none !important;
  }

  .messages {
    height: 260px !important;
  }

  .care-copy {
    position: static;
  }

  .care-inner {
    grid-template-columns: 1fr !important;
  }

  .care-orbit {
    min-height: 230px !important;
  }

  .team-node::after,
  .client-node::after,
  .bot-node::after {
    display: none;
  }

  .care-flow {
    padding-left: 18px;
  }

  .care-step::before {
    left: -23px;
  }
}

/* Desktop hero: pain copy + visible chat side by side */
@media (min-width: 980px) {
  .hero {
    padding-top: 118px !important;
    padding-bottom: 96px !important;
  }

  .hero-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    column-gap: clamp(42px, 5vw, 86px);
    align-items: center;
    max-width: 1180px !important;
    text-align: left !important;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-sub,
  .hero-badges,
  .platform-logos,
  .hero-cta {
    grid-column: 1;
  }

  .hero-eyebrow {
    justify-content: flex-start;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .hero-title {
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-size: clamp(58px, 5.2vw, 80px) !important;
    text-align: left !important;
  }

  .hero-sub {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 650px !important;
    text-align: left !important;
  }

  .hero-badges,
  .hero-actions,
  .platform-logos {
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }

  .platform-logos {
    width: min(320px, 42vw) !important;
  }

  .hero-cta {
    align-items: flex-start !important;
  }

  .chat-container,
  .chat-container.reveal.visible {
    grid-column: 2;
    grid-row: 1 / span 6;
    max-width: 420px !important;
    margin: 0 !important;
    justify-self: end;
    transform: none !important;
  }

  .chat-container .messages {
    height: 300px !important;
  }

  .chat-showcase {
    padding-top: 96px !important;
  }
}

/* Final hero pill + chat animation restore */
.hero-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.hero-eyebrow::before {
  width: 7px !important;
  height: 7px !important;
  margin-right: 2px !important;
}

.chat-container .msg {
  opacity: 0 !important;
  transform: translateY(7px) !important;
}

.chat-container .msg.appear {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.chat-container .msg.temporary-typing {
  display: none !important;
}

.chat-container .msg.temporary-typing.appear {
  display: flex !important;
}

.chat-container .messages .msg {
  display: block !important;
}

.chat-container .messages .msg.typing {
  display: flex !important;
}

.chat-container .messages .msg.temporary-typing {
  display: none !important;
}

.chat-container .messages .msg.temporary-typing.appear {
  display: flex !important;
}

.sc-product-side {
  position: relative;
}

.sc-product-side button.pressed {
  transform: scale(0.94);
}

.sc-click-cursor {
  position: absolute;
  right: 4px;
  top: 26px;
  z-index: 20;
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: translate(20px, -20px) scale(0.9);
  pointer-events: none;
  filter: drop-shadow(0 7px 10px rgba(10, 23, 33, 0.28));
  transition:
    opacity 0.24s ease,
    transform 0.5s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.sc-click-cursor::before {
  content: '';
  display: block;
  width: 21px;
  height: 22px;
  background: #0a1721;
  clip-path: polygon(0 0, 0 20px, 6px 15px, 10px 23px, 13px 21px, 9px 14px, 17px 14px);
  transform: rotate(-13deg);
}

.sc-click-cursor.show {
  opacity: 1;
  transform: translate(-8px, -6px) scale(1);
}

.sc-click-cursor.click {
  transform: translate(-9px, -4px) scale(0.84);
}

.sc-click-cursor.done {
  opacity: 0;
  transform: translate(-9px, -4px) scale(0.84);
}

/* Demonstrative cart click animation */
.sc-product-side button {
  position: relative;
  overflow: visible;
}

.sc-product-side button.pressed::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(50, 199, 255, 0.55);
  animation: click-ring 0.48s ease-out both;
}

.sc-click-cursor {
  width: 27px !important;
  height: 27px !important;
  right: 10px !important;
  top: 32px !important;
  transform: translate(42px, -32px) scale(0.92) !important;
  filter:
    drop-shadow(0 2px 0 #0a1721)
    drop-shadow(2px 0 0 #0a1721)
    drop-shadow(0 11px 14px rgba(10, 23, 33, 0.42))
    drop-shadow(0 0 14px rgba(50, 199, 255, 0.38)) !important;
}

.sc-click-cursor::before {
  width: 24px !important;
  height: 25px !important;
  background: #ffffff !important;
  border: 2px solid #0a1721;
  clip-path: polygon(2px 2px, 2px 22px, 8px 17px, 12px 26px, 16px 23px, 12px 15px, 22px 15px) !important;
}

.sc-click-cursor.show {
  transform: translate(-14px, -8px) scale(1) !important;
}

.sc-click-cursor.click {
  transform: translate(-14px, -8px) scale(0.8) !important;
}

.sc-click-cursor.done {
  transform: translate(-14px, -8px) scale(0.8) !important;
}

@keyframes click-ring {
  from { opacity: 0.85; transform: scale(0.78); }
  to { opacity: 0; transform: scale(1.28); }
}

@media (max-width: 520px) {
  .hero-eyebrow {
    display: inline-flex !important;
    justify-content: center !important;
    gap: 10px !important;
    max-width: calc(100vw - 32px) !important;
    text-align: center !important;
    line-height: 1.34 !important;
  }

  .hero-eyebrow::after {
    animation: border-trail 4.8s linear infinite !important;
  }
}

/* Compact landing pass: merge duplicated explanation sections */
.outcomes {
  padding-top: clamp(46px, 6vw, 74px) !important;
  padding-bottom: clamp(64px, 7vw, 96px) !important;
}

.outcomes-head {
  max-width: 820px !important;
}

.outcomes-head h2 {
  font-size: clamp(34px, 5vw, 58px) !important;
  color: rgba(255, 255, 255, 0.96) !important;
}

.outcomes-head > p:last-child {
  color: rgba(238, 250, 255, 0.62) !important;
  font-size: 17px !important;
}

.outcome {
  min-height: 230px !important;
  padding: 26px 24px !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 15% 0%, rgba(94, 220, 255, 0.13), transparent 44%),
    rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(105, 219, 255, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 58px rgba(0, 0, 0, 0.12);
}

.outcome-num {
  color: #69dbff !important;
  margin-bottom: 34px !important;
}

.outcome h3 {
  color: #ffffff !important;
  font-size: 22px !important;
}

.outcome p {
  color: rgba(238, 250, 255, 0.62) !important;
  font-size: 15px !important;
}

.how {
  padding-top: clamp(64px, 7vw, 96px) !important;
  padding-bottom: clamp(70px, 8vw, 110px) !important;
}

.ops-system {
  display: block;
  max-width: 620px;
  margin: 0 auto;
}

.ops-diagram {
  position: relative;
  min-height: 340px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 220, 255, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(105, 219, 255, 0.2);
  overflow: hidden;
}

.ops-diagram::before,
.ops-diagram::after {
  content: '';
  position: absolute;
  inset: 42px;
  border-radius: 999px;
  border: 1px solid rgba(105, 219, 255, 0.2);
}

.ops-diagram::after {
  inset: 86px;
  border-style: dashed;
  opacity: 0.7;
}

.ops-core,
.ops-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  z-index: 2;
}

.ops-core svg,
.ops-node svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Flujo animado: la señal VIAJA por las ondas (órbitas) --- */
/* Las órbitas se dibujan en SVG (reemplazan los pseudo-anillos) para poder
   animar una señal que recorre cada onda. */
.ops-diagram::before,
.ops-diagram::after {
  display: none;
}

.ops-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

/* Anillos estáticos (la "onda" base) */
.ops-ring {
  fill: none;
  stroke: rgba(105, 219, 255, 0.2);
  stroke-width: 1.5;
}

.ops-ring-dashed {
  stroke-dasharray: 4 7;
  opacity: 0.7;
}

/* Señal brillante que recorre cada onda */
.ops-sig {
  fill: none;
  stroke: #69dbff;
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(105, 219, 255, 0.95));
}

.ops-sig-1 {
  stroke-dasharray: 38 988;     /* segmento brillante + hueco ≈ perímetro */
  animation: ops-sig-1 4.4s linear infinite;
}

.ops-sig-2 {
  stroke: #27e0d5;
  stroke-dasharray: 30 722;
  animation: ops-sig-2 3.4s linear infinite;
}

@keyframes ops-sig-1 { to { stroke-dashoffset: -1026; } }
@keyframes ops-sig-2 { to { stroke-dashoffset: 752; } }

/* Ping en Automatik (centro) cuando la señal pasa */
.ops-ping {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 158px;
  height: 58px;
  border-radius: 999px;
  border: 1.5px solid rgba(105, 219, 255, 0.55);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  pointer-events: none;
  animation: ops-ping 3.6s ease-out infinite;
}

@keyframes ops-ping {
  0%, 38% { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
  48%     { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  70%     { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
  100%    { opacity: 0; }
}

.ops-core {
  left: 50%;
  top: 50%;
  min-width: 154px;
  transform: translate(-50%, -50%);
  color: #06131c;
  background: linear-gradient(135deg, #32c7ff, #27e0d5);
  box-shadow: 0 0 52px rgba(94, 220, 255, 0.34);
}

.ops-node {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(105, 219, 255, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ops-node.team {
  left: 34px;
  top: 42px;
}

.ops-node.customer {
  right: 34px;
  bottom: 42px;
}

.ops-system .steps {
  max-width: none !important;
  margin: 0 !important;
}

.ops-system .step {
  padding: 28px 0 !important;
}

.ops-system .step-num {
  color: #06131c !important;
  background: #69dbff !important;
  box-shadow: 0 0 24px rgba(105, 219, 255, 0.28);
}

.ops-system .steps-line {
  background: linear-gradient(to bottom, rgba(105, 219, 255, 0.9), rgba(105, 219, 255, 0.08)) !important;
}

.plan-diff {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 26px auto 18px;
}

.plan-diff > div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(105, 219, 255, 0.18);
}

.plan-diff span {
  display: block;
  margin-bottom: 12px;
  color: #69dbff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan-diff strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}

.plan-diff p {
  margin: 0;
  color: rgba(238, 250, 255, 0.64);
  line-height: 1.55;
}

.pricing {
  padding-top: clamp(70px, 8vw, 110px) !important;
  padding-bottom: clamp(70px, 8vw, 108px) !important;
}

@media (max-width: 768px) {
  .hero .chat-container {
    display: none !important;
  }

  .hero {
    min-height: auto !important;
    padding-bottom: 46px !important;
  }

  .chat-showcase {
    padding-top: 58px !important;
  }

  .outcomes-grid,
  .ops-system,
  .plan-diff {
    grid-template-columns: 1fr !important;
  }

  .outcomes {
    padding-top: 52px !important;
  }

  .outcome {
    min-height: 0 !important;
  }

  .ops-diagram {
    min-height: 230px;
    border-radius: 26px;
  }

  .ops-diagram::before {
    inset: 26px;
  }

  .ops-diagram::after {
    inset: 58px;
  }

  .ops-core {
    min-width: 126px;
    min-height: 48px;
  }

  .ops-node {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .ops-node.team {
    left: 18px;
    top: 22px;
  }

.ops-node.customer {
  right: 18px;
  bottom: 22px;
  }
}

/* Interactive-feeling ops diagram */
.ops-diagram::before {
  animation: ops-orbit 8s ease-in-out infinite alternate;
}

.ops-diagram::after {
  animation: ops-orbit 10s ease-in-out infinite alternate-reverse;
}

.ops-core {
  animation: ops-core-pulse 2.8s ease-in-out infinite;
}

.ops-node.team {
  animation: ops-float-team 4.6s ease-in-out infinite;
}

.ops-node.customer {
  animation: ops-float-customer 4.9s ease-in-out infinite;
}

@keyframes ops-core-pulse {
  0%, 100% {
    box-shadow: 0 0 42px rgba(94, 220, 255, 0.28);
  }
  50% {
    box-shadow: 0 0 70px rgba(94, 220, 255, 0.46);
  }
}

@keyframes ops-orbit {
  from { transform: scale(0.985); opacity: 0.62; }
  to { transform: scale(1.025); opacity: 0.92; }
}

@keyframes ops-float-team {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, 6px); }
}

@keyframes ops-float-customer {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -6px); }
}

@media (prefers-reduced-motion: reduce) {
  .ops-diagram::before,
  .ops-diagram::after,
  .ops-core,
  .ops-node.team,
  .ops-node.customer {
    animation: none !important;
  }
}

/* Final QA fixes */
.ops-system .steps {
  overflow: hidden !important;
  background:
    radial-gradient(620px 360px at 50% -12%, rgba(105, 219, 255, 0.13), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.068)) !important;
  border-color: rgba(105, 219, 255, 0.22) !important;
}

.ops-system .step {
  grid-template-columns: 72px minmax(0, 1fr) !important;
  gap: 22px !important;
  padding: 34px 38px !important;
  background: transparent !important;
  border-bottom-color: rgba(105, 219, 255, 0.1) !important;
}

.ops-system .step-num {
  width: 58px !important;
  height: 58px !important;
  justify-self: start;
}

.faq-a {
  transition:
    max-height 0.1s ease,
    opacity 0.08s ease,
    transform 0.1s ease,
    padding-bottom 0.1s ease !important;
  will-change: max-height, opacity;
}

.faq-arrow {
  transition: transform 0.1s ease, color 0.08s ease !important;
}

@media (max-width: 768px) {
  .ops-system .step {
    grid-template-columns: 62px minmax(0, 1fr) !important;
    gap: 16px !important;
    padding: 28px 20px !important;
  }

  .ops-system .step-num {
    width: 52px !important;
    height: 52px !important;
  }
}

/* Centered hero after removing the preview chat */
.hero {
  display: grid;
  align-items: center;
}

.hero-inner {
  text-align: center !important;
  display: block !important;
  max-width: 760px !important;
}

.hero-sub {
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-badges,
.platform-logos,
.hero-cta {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.hero-badges,
.hero-actions {
  justify-content: center !important;
}

.hero-cta {
  align-items: center !important;
}

.platform-logos {
  width: auto !important;
}

@media (min-width: 980px) {
  .hero {
    min-height: 760px !important;
    padding-top: 104px !important;
    padding-bottom: 86px !important;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 620px !important;
  }
}

/* Mobile hero compact QA */
@media (max-width: 768px) {
  .nav-inner {
    height: 58px !important;
    padding: 0 14px !important;
  }

  .nav-logo {
    font-size: 19px !important;
    gap: 7px !important;
  }

  .nav-logo .brand-mark-img {
    width: 38px !important;
    height: 38px !important;
  }

  .btn-nav {
    width: 40px !important;
    height: 40px !important;
  }

  .btn-nav img {
    width: 46px !important;
    height: 46px !important;
  }

  .hero {
    min-height: auto !important;
    padding: 92px 18px 38px !important;
  }

  .hero-inner {
    max-width: 640px !important;
  }

  .hero-eyebrow {
    max-width: 100% !important;
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
    padding: 8px 13px !important;
    margin-bottom: 24px !important;
  }

  .hero-title {
    font-size: clamp(42px, 10.6vw, 56px) !important;
    line-height: 1.08 !important;
    margin-bottom: 22px !important;
  }

  .hero-sub {
    max-width: 640px !important;
    font-size: clamp(17px, 4.2vw, 22px) !important;
    line-height: 1.55 !important;
    margin-bottom: 28px !important;
  }

  .hero-badges {
    gap: 10px !important;
    margin-bottom: 44px !important;
  }

  .platform-logos {
    margin-bottom: 46px !important;
  }

  .platform-logos img {
    max-width: min(78vw, 430px) !important;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    min-height: 56px !important;
    font-size: 15px !important;
  }

  .cta-note {
    max-width: 330px !important;
    line-height: 1.35 !important;
    margin-top: 4px !important;
  }

  .chat-showcase {
    padding-top: 54px !important;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    grid-template-columns: 1fr !important;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }
}

/* Platform logos final sizing */
.platform-logos {
  width: min(360px, 34vw) !important;
  margin-top: 14px !important;
  margin-bottom: 24px !important;
}

.platform-logos img {
  width: 100% !important;
}

@media (max-width: 768px) {
  .hero-badges {
    margin-bottom: 24px !important;
  }

  .platform-logos {
    width: min(280px, 68vw) !important;
    margin-top: 2px !important;
    margin-bottom: 18px !important;
  }

  .hero-cta {
    margin-top: 0 !important;
  }
}

/* Store integration preview */
.store-preview {
  padding: clamp(68px, 8vw, 110px) 0;
}

.store-scene {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  min-height: 520px;
}

.store-browser {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(105, 219, 255, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.store-screenshot {
  width: 100%;
  display: block;
}

.store-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  background: #0c1b29;
  color: rgba(238, 250, 255, 0.68);
}

.store-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(105, 219, 255, 0.52);
}

.store-topbar strong {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 650;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 58px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #101828;
}

.store-nav strong {
  margin-right: auto;
  font-weight: 850;
}

.store-nav span {
  color: #667085;
  font-size: 13px;
}

.store-hero-preview {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 38px 42px;
  background:
    radial-gradient(circle at 82% 24%, rgba(50, 199, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #f6fcff, #ffffff);
}

.store-hero-preview span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #1598dc;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-hero-preview h3 {
  max-width: 420px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #101828;
  margin-bottom: 14px;
}

.store-hero-preview p {
  max-width: 420px;
  color: #667085;
  line-height: 1.58;
}

.store-product-main {
  min-height: 220px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 62% 28%, rgba(255,255,255,0.88), transparent 18%),
    linear-gradient(135deg, #32c7ff, #16c784);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65), 0 22px 60px rgba(50, 199, 255, 0.18);
}

.store-grid-preview {
  padding: 0 42px 42px;
}

.store-products-img {
  width: 100%;
  display: block;
  border-radius: 12px;
  height: 480px;
  object-fit: cover;
  object-position: top;
  background: #f8f8f8;
}

.store-chat-widget {
  position: absolute;
  right: 34px;
  bottom: 80px;
  width: min(290px, 38%);
  overflow: hidden;
  border-radius: 22px;
  background: #f4fbff;
  border: 1px solid rgba(105, 219, 255, 0.48);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55), 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.72);
  animation: store-chat-float 4.5s ease-in-out infinite;
}

.store-chat-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #32c7ff, #1598dc);
}

.store-chat-head > span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,0.22);
}

.store-chat-head strong,
.store-chat-head small {
  display: block;
}

.store-chat-head small {
  color: rgba(255,255,255,0.78);
}

.store-chat-body {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.store-chat-body p {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 15px;
  font-size: 12.5px;
  line-height: 1.35;
}

.store-bot {
  color: #101828;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.store-user {
  justify-self: end;
  color: #062134;
  background: #32c7ff;
}

@keyframes store-chat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .store-preview {
    padding: 64px 0;
  }

  .store-scene {
    min-height: 0;
  }

  .store-nav span {
    display: none;
  }

  .store-hero-preview {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .store-product-main {
    min-height: 150px;
  }

  .store-grid-preview {
    grid-template-columns: 1fr 1fr;
    padding: 0 22px 180px;
  }

  .store-grid-preview article:nth-child(3) {
    display: none;
  }

  .store-chat-widget {
    right: 18px;
    left: 18px;
    bottom: 20px;
    width: auto;
  }
}

/* Store preview premium pass */
.store-preview .container {
  max-width: 1120px;
}

.store-scene {
  min-height: 0 !important;
}

.store-browser {
  border-radius: 24px !important;
  background: #f4f7fb !important;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(105, 219, 255, 0.12) !important;
}

.store-topbar {
  min-height: 40px !important;
  background: #0a1420 !important;
}

.store-nav {
  min-height: 62px !important;
  padding: 0 26px !important;
  background: rgba(255, 255, 255, 0.96);
}

.store-nav strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.store-nav button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: #101828;
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  padding: 22px;
}

.store-main {
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.store-hero-preview {
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.75fr) !important;
  gap: 24px !important;
  padding: 34px !important;
  background:
    radial-gradient(circle at 86% 18%, rgba(50, 199, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fcff, #ffffff) !important;
}

.store-hero-preview h3 {
  max-width: 340px !important;
  font-size: clamp(34px, 3.7vw, 52px) !important;
}

.store-hero-preview button,
.store-cart-preview button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #32c7ff;
  color: #06131c;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(50, 199, 255, 0.22);
}

.store-product-main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px !important;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.92), transparent 18%),
    linear-gradient(135deg, #e5fbff, #d8f8ed) !important;
}

.store-product-main i {
  width: 118px;
  height: 158px;
  border-radius: 24px 24px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.1)),
    linear-gradient(135deg, #32c7ff, #16c784);
  box-shadow:
    0 22px 46px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.66);
  transform: rotate(-7deg);
}

.store-grid-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  padding: 0 34px 34px !important;
}

.store-grid-preview article {
  border-radius: 18px !important;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.store-grid-preview i {
  aspect-ratio: 1.18 !important;
  background:
    radial-gradient(circle at 70% 24%, rgba(255,255,255,0.82), transparent 20%),
    linear-gradient(135deg, rgba(50, 199, 255, 0.42), rgba(22, 199, 132, 0.32)) !important;
}

.store-cart-preview {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.store-cart-head,
.store-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.store-cart-head strong,
.store-cart-total strong {
  color: #101828;
}

.store-cart-head span,
.store-cart-total span {
  color: #667085;
  font-size: 12px;
}

.store-cart-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #f6fbff;
  border: 1px solid rgba(50, 199, 255, 0.12);
}

.store-cart-item i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(50, 199, 255, 0.72), rgba(22, 199, 132, 0.48));
}

.store-cart-item strong,
.store-cart-item span {
  display: block;
  font-size: 12px;
}

.store-cart-item strong {
  color: #101828;
}

.store-cart-item span {
  margin-top: 4px;
  color: #1598dc;
  font-weight: 850;
}

.store-cart-total {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.store-chat-widget {
  right: 310px !important;
  bottom: 38px !important;
  width: 315px !important;
  border-radius: 20px !important;
}

.store-chat-body p {
  font-size: 12px !important;
}

@media (max-width: 768px) {
  .store-layout {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .store-nav {
    padding: 0 18px !important;
  }

  .store-nav button {
    margin-left: auto;
  }

  .store-main {
    border-radius: 18px;
  }

  .store-hero-preview {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
  }

  .store-hero-preview h3 {
    font-size: 34px !important;
  }

  .store-product-main {
    min-height: 180px !important;
  }

  .store-product-main i {
    width: 88px;
    height: 118px;
  }

  .store-grid-preview {
    grid-template-columns: 1fr 1fr !important;
    padding: 0 24px 188px !important;
  }

  .store-cart-preview {
    display: none;
  }

  .store-chat-widget {
    left: 28px !important;
    right: 28px !important;
    bottom: 28px !important;
    width: auto !important;
  }
}

/* ===========================
   STORE CHAT — ANIMATED DEMO
   =========================== */

/* Override float animation with transition-based open/close */
.store-chat-widget {
  animation: none !important;
  transform-origin: bottom right;
  transform: scale(0.65) translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(0.34, 1.42, 0.64, 1), opacity 0.3s ease;
}

.store-chat-widget.chat-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Chat body — scrollable as messages appear */
#storeChatBody {
  min-height: 210px;
  max-height: 260px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Message entrance */
.store-msg-in {
  animation: store-msg-in 0.28s ease both;
}

@keyframes store-msg-in {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: none; }
}

/* Typing dots inside bot bubble */
.store-typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 3px 0;
}

.store-typing-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.35);
  animation: store-dot-bounce 1.3s ease infinite;
  font-style: normal;
}

.store-typing-dots i:nth-child(2) { animation-delay: 0.18s; }
.store-typing-dots i:nth-child(3) { animation-delay: 0.36s; }

@keyframes store-dot-bounce {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%            { opacity: 1;   transform: translateY(-3px); }
}

/* Composer / input bar */
.store-chat-composer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  min-height: 44px;
}

.store-chat-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #101828;
  min-height: 20px;
}

#storeChatInput {
  white-space: pre;
}

.store-chat-cursor {
  display: inline-block;
  width: 1.5px;
  height: 13px;
  background: #32c7ff;
  margin-left: 1px;
  border-radius: 1px;
  animation: cursor-blink 0.9s step-end infinite;
}

.store-chat-cursor.cursor-hidden {
  opacity: 0;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.store-send-btn {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: rgba(50, 199, 255, 0.35);
  color: white;
  display: grid;
  place-items: center;
  cursor: default;
  transition: background 0.2s;
}

.store-send-btn.ready {
  background: #32c7ff;
}

/* Floating Action Button */
.store-fab {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #32c7ff, #1598dc);
  cursor: default;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(50, 199, 255, 0.48);
  z-index: 20;
  transition: opacity 0.28s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.store-fab-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(50, 199, 255, 0.55);
  animation: fab-ring 2.4s ease-out infinite;
  pointer-events: none;
}

.store-fab.fab-click {
  transform: scale(0.82);
}

.store-fab.fab-hidden {
  opacity: 0;
  transform: scale(0.38);
  pointer-events: none;
}

@keyframes fab-ring {
  0%   { transform: scale(1);    opacity: 0.75; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   STORE SCENE — REDISEÑO AUTORITATIVO (gana por orden + !important)
   Tienda tipo catálogo: nav con buscador + carrito, chips de
   categorías, grilla de productos. Chat anclado abajo-derecha.
   ============================================================ */

/* --- Nav de tienda: marca + buscador + favoritos + carrito --- */
.store-nav {
  gap: 16px !important;
  min-height: 64px !important;
  padding: 0 22px !important;
}

.store-brand {
  margin-right: 0 !important;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.store-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  max-width: 420px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #94a3b8;
  font-size: 13px;
}

.store-search svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.store-search span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.store-nav .store-nav-icon,
.store-nav .store-nav-cart {
  position: relative;
  width: 38px !important;
  height: 38px !important;
  min-height: 0 !important;
  padding: 0 !important;
  display: grid;
  place-items: center;
  border-radius: 50% !important;
}

.store-nav .store-nav-icon {
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  background: #ffffff !important;
  color: #475569 !important;
}

.store-nav .store-nav-cart {
  border: 0 !important;
  background: #101828 !important;
  color: #ffffff !important;
}

.store-nav-icon svg,
.store-nav-cart svg {
  width: 17px;
  height: 17px;
}

.store-nav-cart b {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #32c7ff;
  color: #06131c;
  font-size: 10px;
  font-weight: 850;
  border: 2px solid #ffffff;
}

/* --- Layout catálogo (sin hero) --- */
.store-layout {
  display: block !important;
  grid-template-columns: none !important;
  /* Padding inferior extra → ventana ~15% más alta sin sumar productos,
     el chat anclado abajo respira mejor */
  padding: 6px 0 120px !important;
}

/* Chips de categorías (reemplazan el hero) */
.store-toolbar {
  display: flex;
  gap: 8px;
  padding: 14px 22px 4px;
  overflow: hidden;
}

.store-chip {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 650;
  color: #475569;
  background: #f1f5f9;
  white-space: nowrap;
}

.store-chip.active {
  color: #06131c;
  background: #32c7ff;
}

/* Encabezado de la grilla */
.store-grid-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 22px 12px;
}

.store-grid-head strong {
  font-size: 16px;
  font-weight: 800;
  color: #101828;
}

.store-grid-head span {
  font-size: 12.5px;
  font-weight: 700;
  color: #1598dc;
}

.store-grid-preview {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  padding: 0 22px !important;
}

/* --- Chat body: flex column (fix burbujas/“pensando” estiradas) --- */
#storeChatBody {
  display: flex !important;
  flex-direction: column;
  gap: 9px;
  min-height: 230px;
  max-height: 300px;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 14px;
}

/* Mensajes desde arriba (el saludo del bot arranca arriba-izquierda) */
#storeChatBody {
  justify-content: flex-start;
}

#storeChatBody .store-bot,
#storeChatBody .store-user {
  flex: 0 0 auto;
  align-self: flex-start;
}

#storeChatBody .store-user {
  align-self: flex-end !important;
}

/* --- Chat widget: anclado abajo-derecha, sale desde el ícono --- */
.store-chat-widget {
  right: 26px !important;
  bottom: 26px !important;
  left: auto !important;
  top: auto !important;
  width: 360px !important;
  border-radius: 20px !important;
  transform-origin: bottom right;
}

.store-fab {
  right: 26px !important;
  bottom: 26px !important;
}

/* --- Mobile: catálogo 2 columnas + chat flotando sobre la tienda --- */
@media (max-width: 768px) {
  .store-nav {
    gap: 12px !important;
    padding: 0 16px !important;
  }

  /* Favoritos fuera en mobile para no apretar la barra */
  .store-nav .store-nav-icon {
    display: none !important;
  }

  .store-layout {
    padding: 4px 0 78px !important;
  }

  .store-toolbar {
    padding: 12px 16px 2px;
  }

  .store-grid-head {
    padding: 12px 16px 10px;
  }

  .store-grid-preview {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 16px !important;
  }

  /* Sólo 4 productos en mobile para que la tienda entre completa en pantalla */
  .store-grid-preview article:nth-child(-n+4) {
    display: block !important;
  }

  .store-grid-preview article:nth-child(n+5) {
    display: none !important;
  }

  /* Cards más bajas (imagen más achatada + menos padding) */
  .store-grid-preview article {
    padding: 10px !important;
  }

  .store-grid-preview i {
    aspect-ratio: 1.6 !important;
    margin-bottom: 8px !important;
  }

  .store-grid-preview strong,
  .store-grid-preview span {
    font-size: 11.5px !important;
  }

  .store-fab {
    display: grid !important;
    right: 16px !important;
    bottom: 16px !important;
  }

  /* Chat chico, tipo referencia (~1/4 de la pantalla) */
  .store-chat-widget {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 16px !important;
    top: auto !important;
    width: auto !important;
    margin-top: 0 !important;
    border-radius: 18px !important;
  }

  .store-chat-head {
    padding: 10px 12px !important;
  }

  .store-chat-head > span {
    width: 30px !important;
    height: 30px !important;
  }

  #storeChatBody {
    min-height: 108px !important;
    max-height: 136px !important;
    padding: 11px 12px !important;
  }

  .store-chat-composer {
    min-height: 38px !important;
    padding: 8px 12px !important;
  }
}

/* ============================================================
   ANIMACIONES DIDÁCTICAS
   A) Dolores: micro-escena por card  B) Solución: mini-anim por paso
   ============================================================ */

/* --- A) DOLORES: viz en esquina superior derecha de cada card --- */
.outcome-viz {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 58px;
  height: 56px;
  pointer-events: none;
  z-index: 2;
}

/* 1) Soporte saturado: burbujas que se apilan + badge que pulsa */
.viz-support {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
}

.viz-support .ov-bubble {
  height: 9px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(105, 219, 255, 0.95), rgba(39, 224, 213, 0.7));
  opacity: 0;
  animation: ov-bubble-in 2.6s ease-in-out infinite;
}

.viz-support .ov-bubble:nth-child(1) { width: 70%; animation-delay: 0s; }
.viz-support .ov-bubble:nth-child(2) { width: 100%; animation-delay: 0.4s; }
.viz-support .ov-bubble:nth-child(3) { width: 52%; animation-delay: 0.8s; }

@keyframes ov-bubble-in {
  0%        { opacity: 0; transform: translateX(8px); }
  16%, 70%  { opacity: 1; transform: translateX(0); }
  90%, 100% { opacity: 0; transform: translateX(8px); }
}

.viz-support .ov-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff6b81;
  box-shadow: 0 0 0 0 rgba(255, 107, 129, 0.55);
  animation: ov-badge-pulse 2.6s ease-out infinite;
}

@keyframes ov-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 129, 0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 107, 129, 0); }
}

/* 2) Carrito que se frena: barra que carga y se estanca/abandona */
.viz-cart {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
  color: rgba(105, 219, 255, 0.92);
}

.viz-cart .ov-cart {
  width: 26px;
  height: 26px;
  animation: ov-cart-fade 3.2s ease-in-out infinite;
}

.viz-cart .ov-bar {
  width: 50px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.viz-cart .ov-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #69dbff, #27e0d5);
  animation: ov-bar-stall 3.2s ease-in-out infinite;
}

@keyframes ov-bar-stall {
  0%   { width: 0;    opacity: 1; }
  32%  { width: 60%;  opacity: 1; }
  58%  { width: 63%;  opacity: 1; }
  80%  { width: 63%;  opacity: 0.2; }
  100% { width: 0;    opacity: 0; }
}

@keyframes ov-cart-fade {
  0%, 55% { opacity: 1; }
  82%     { opacity: 0.35; }
  100%    { opacity: 1; }
}

/* 3) Postventa consume horas: reloj girando + tickets que se acumulan */
.viz-clock {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.viz-clock .ov-clock {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(105, 219, 255, 0.75);
  flex-shrink: 0;
}

.viz-clock .ov-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  height: 10px;
  border-radius: 2px;
  background: #69dbff;
  transform-origin: bottom center;
  transform: translateX(-50%);
  animation: ov-hand-spin 2.6s linear infinite;
}

.viz-clock .ov-clock::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  height: 7px;
  border-radius: 2px;
  background: rgba(105, 219, 255, 0.6);
  transform-origin: bottom center;
  transform: translateX(-50%);
  animation: ov-hand-spin 9s linear infinite;
}

@keyframes ov-hand-spin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}

.viz-clock .ov-tick {
  width: 8px;
  height: 11px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
  animation: ov-tick-blink 2.6s ease-in-out infinite;
}

.viz-clock .ov-tick:nth-of-type(2) { animation-delay: 0.6s; }

@keyframes ov-tick-blink {
  0%, 100% { opacity: 0.18; transform: translateY(3px); }
  45%      { opacity: 0.9;  transform: translateY(0); }
}

/* --- B) SOLUCIÓN: mini-anim a la derecha de cada paso --- */
.step-content {
  min-width: 0;
  padding-right: 168px;
}

/* La viz va absoluta a la derecha del paso (el .step es grid + position:relative),
   separada del borde y del texto para que respire */
.step-viz {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 132px;
  height: 64px;
}

/* Paso 1 — Mapeamos: chips de info son consumidos por el AGENTE (core bot grande) */
.viz-map .sv-core {
  position: absolute;
  right: 0;
  top: 50%;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #06131d;
  background: radial-gradient(circle at 38% 30%, #d6f5ff, #69dbff 55%, #1598dc);
  box-shadow: 0 0 20px rgba(105, 219, 255, 0.6);
  animation: sv-core-pulse 2.8s ease-in-out infinite;
  z-index: 2;
}

.viz-map .sv-core svg {
  width: 28px;
  height: 28px;
}

@keyframes sv-core-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 16px rgba(105, 219, 255, 0.5); }
  50%      { transform: scale(1.08); box-shadow: 0 0 26px rgba(105, 219, 255, 0.8); }
}

.viz-map .sv-chip {
  position: absolute;
  left: 0;
  padding: 3px 7px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  color: #07131d;
  background: linear-gradient(135deg, #bdeeff, #95e7dd);
  white-space: nowrap;
  opacity: 0;
  transform-origin: center;
  /* destino: el centro del agente (a la derecha) */
  --tx: 86px;
  --ty: 0px;
  animation: sv-chip-absorb 3.4s ease-in infinite;
}

.viz-map .sv-chip:nth-child(1) { top: 2px;  --ty: 21px;  animation-delay: 0s; }
.viz-map .sv-chip:nth-child(2) { top: 18px; --ty: 6px;   animation-delay: 0.55s; }
.viz-map .sv-chip:nth-child(3) { top: 34px; --ty: -9px;  animation-delay: 1.1s; }
.viz-map .sv-chip:nth-child(4) { top: 50px; --ty: -24px; animation-delay: 1.65s; }

@keyframes sv-chip-absorb {
  0%   { opacity: 0; transform: translate(-8px, 0) scale(0.9); }
  16%  { opacity: 1; transform: translate(0, 0) scale(1); }
  50%  { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.08); }
}

/* Paso 2 — Conectamos: agente ↔ tienda, pulso que viaja por el cable */
.viz-connect {
  display: flex;
  align-items: center;
  justify-content: center;
}

.viz-connect .sv-node {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #eafaff;
  background: rgba(105, 219, 255, 0.14);
  border: 1px solid rgba(105, 219, 255, 0.42);
}

.viz-connect .sv-node svg { width: 18px; height: 18px; }

.viz-connect .sv-wire {
  position: relative;
  width: 40px;
  height: 2px;
  margin: 0 6px;
  background: rgba(105, 219, 255, 0.25);
  overflow: hidden;
  flex-shrink: 0;
}

.viz-connect .sv-wire i {
  position: absolute;
  top: 0;
  left: -45%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #69dbff, transparent);
  animation: sv-wire-pulse 1.8s linear infinite;
}

@keyframes sv-wire-pulse {
  from { left: -45%; }
  to   { left: 100%; }
}

/* Cluster de destinos que el agente conecta: tienda, pedidos, configuración */
.viz-connect .sv-targets {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.viz-connect .sv-t {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #9fd8ee;
  background: rgba(105, 219, 255, 0.12);
  border: 1px solid rgba(105, 219, 255, 0.35);
  animation: sv-t-glow 1.9s ease-in-out infinite;
}

.viz-connect .sv-t svg { width: 11px; height: 11px; }

.viz-connect .sv-t1 { animation-delay: 0.2s; }
.viz-connect .sv-t2 { animation-delay: 0.55s; }
.viz-connect .sv-t3 { animation-delay: 0.9s; }

@keyframes sv-t-glow {
  0%, 55%, 100% { border-color: rgba(105, 219, 255, 0.32); box-shadow: none; color: #9fd8ee; }
  74%           { border-color: #69dbff; box-shadow: 0 0 10px rgba(105, 219, 255, 0.5); color: #eafaff; }
}

/* Paso 3 — Revisamos: loop de mejora/feedback (ciclo + flujo de nodos + check) */
.viz-review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Ícono de ciclo que gira = feedback continuo */
.viz-review .vr-cycle {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #69dbff;
  animation: vr-cycle-spin 2.6s linear infinite;
}

.viz-review .vr-cycle svg { width: 26px; height: 26px; }

@keyframes vr-cycle-spin {
  to { transform: rotate(360deg); }
}

/* Flujo de nodos que se encienden en secuencia (detecta → mejora → aplica → repite) */
.viz-review .vr-flow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 64px;
}

.viz-review .vr-flow::before {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(105, 219, 255, 0.18);
}

.viz-review .vr-flow i {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(105, 219, 255, 0.28);
  animation: vr-node 1.9s ease-in-out infinite;
}

.viz-review .vr-flow i:nth-child(1) { animation-delay: 0s; }
.viz-review .vr-flow i:nth-child(2) { animation-delay: 0.32s; }
.viz-review .vr-flow i:nth-child(3) { animation-delay: 0.64s; }

@keyframes vr-node {
  0%, 100% { background: rgba(105, 219, 255, 0.28); transform: scale(1); box-shadow: none; }
  38%      { background: #69dbff; transform: scale(1.3); box-shadow: 0 0 9px rgba(105, 219, 255, 0.8); }
}

.viz-review .vr-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #27e0d5;
  opacity: 0;
  animation: vr-check-pop 1.9s ease-in-out infinite;
}

.viz-review .vr-check svg { width: 15px; height: 15px; }

@keyframes vr-check-pop {
  0%, 60%, 100% { opacity: 0; transform: scale(0.4); }
  72%, 92%      { opacity: 1; transform: scale(1); }
}

/* Mobile: la viz del paso va DEBAJO del texto, a lo ancho (franja).
   El texto usa todo el ancho (no más saltos de línea de más). */
@media (max-width: 768px) {
  .step-content {
    padding-right: 0;
  }

  .step-viz {
    position: relative;   /* en flujo + contenedor para los hijos absolutos */
    transform: none;
    top: auto;
    grid-column: 1 / -1; /* span full width incl. number-circle column */
    width: 100%;
    height: 44px;
    margin-top: 8px;
  }

  /* viz-map: las etiquetas entran desde la izquierda y son consumidas por el agente (derecha) */
  .viz-map .sv-core {
    right: 0;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .viz-map .sv-core svg { width: 24px; height: 24px; }

  .viz-map .sv-chip {
    top: 50%;
    left: 4px;
    font-size: 9px;
    padding: 3px 7px;
    animation-name: sv-chip-stream;
  }

  .viz-map .sv-chip:nth-child(1) { animation-delay: 0s; }
  .viz-map .sv-chip:nth-child(2) { animation-delay: 0.55s; }
  .viz-map .sv-chip:nth-child(3) { animation-delay: 1.1s; }
  .viz-map .sv-chip:nth-child(4) { animation-delay: 1.65s; }

  /* converge al centro del agente achicándose (consumido) */
  @keyframes sv-chip-stream {
    0%   { opacity: 0; transform: translate(-12px, -50%) scale(0.9); }
    14%  { opacity: 1; transform: translate(0, -50%) scale(1); }
    52%  { opacity: 1; transform: translate(0, -50%) scale(1); }
    100% { opacity: 0; transform: translate(168px, -50%) scale(0.08); }
  }

  /* viz-connect: cable + cluster de destinos en FILA (la franja es ancha) */
  .viz-connect { justify-content: center; height: 100%; }
  .viz-connect .sv-node { width: 28px; height: 28px; }
  .viz-connect .sv-node svg { width: 16px; height: 16px; }
  .viz-connect .sv-wire { width: 52px; margin: 0 9px; }
  .viz-connect .sv-targets { flex-direction: row; gap: 7px; }
  .viz-connect .sv-t { width: 21px; height: 21px; border-radius: 6px; }
  .viz-connect .sv-t svg { width: 13px; height: 13px; }

  /* viz-review: el loop de feedback ocupa el ancho de la franja */
  .viz-review { height: 100%; gap: 14px; }
  .viz-review .vr-cycle svg { width: 28px; height: 28px; }
  .viz-review .vr-flow { width: 130px; gap: 0; }
  .viz-review .vr-flow i { width: 10px; height: 10px; }
}

/* Dolores: contenido más pegado a la izquierda para despejar la animación de la derecha */
.impact-flow .outcome {
  padding-left: 16px !important;
  padding-right: 18px !important;
}

.impact-flow .outcome h3 {
  padding-right: 64px;   /* el título no se mete bajo la viz de la esquina */
}

.outcome-viz {
  right: 16px;
}

/* Respeta usuarios que piden menos movimiento */
@media (prefers-reduced-motion: reduce) {
  .outcome-viz *,
  .step-viz *,
  .ops-sig,
  .ops-ping {
    animation: none !important;
  }
}

/* Final viewport lock: hero owns the first screen */
body .hero {
  min-height: 100svh !important;
  display: grid !important;
  align-items: center !important;
  padding-top: 88px !important;
  padding-bottom: 48px !important;
  overflow: hidden !important;
}

body .hero-inner {
  width: 100% !important;
}

@media (min-width: 980px) {
  body .hero {
    min-height: 100svh !important;
    padding-top: 96px !important;
    padding-bottom: 56px !important;
  }
}

@media (max-width: 768px) {
  body .hero {
    min-height: auto !important;
    height: auto !important;
    align-items: start !important;
    align-content: start !important;
    padding: 70px 18px 34px !important;
    overflow: visible !important;
  }

  body .hero-inner {
    min-height: 0 !important;
    height: auto !important;
  }

  body .hero-eyebrow {
    margin-bottom: 18px !important;
  }

  body .hero-title {
    font-size: clamp(38px, 10vw, 52px) !important;
    margin-bottom: 18px !important;
  }

  body .hero-sub {
    margin-bottom: 22px !important;
  }

  body .hero-badges {
    margin-bottom: 18px !important;
  }

  body .platform-logos {
    margin-bottom: 16px !important;
  }
}

/* Mobile hero final: not full-screen centered */
@media (max-width: 768px) {
  body .hero {
    min-height: auto !important;
    height: auto !important;
    align-items: start !important;
    align-content: start !important;
    padding: 70px 18px 34px !important;
    overflow: visible !important;
  }

  body .hero-inner {
    min-height: 0 !important;
    height: auto !important;
  }
}

/* Final solution scale: bigger cards and visuals */
body .ops-system {
  max-width: 1240px !important;
  grid-template-columns: minmax(420px, 0.92fr) minmax(640px, 1.08fr) !important;
  gap: clamp(36px, 5vw, 76px) !important;
}

body .ops-diagram {
  min-height: 370px !important;
}

body .ops-core {
  width: 190px !important;
  min-height: 64px !important;
  font-size: 20px !important;
}

body .ops-core svg {
  width: 25px !important;
  height: 25px !important;
}

body .ops-node {
  min-height: 58px !important;
  padding: 16px 28px !important;
  font-size: 18px !important;
}

body .ops-system .steps {
  border-radius: 28px !important;
  clip-path: inset(0 round 28px) !important;
}

body .ops-system .step {
  min-height: 188px !important;
  padding: 34px 42px !important;
  grid-template-columns: 66px minmax(0, 1fr) !important;
  gap: 24px !important;
}

body .ops-system .step-num {
  width: 62px !important;
  height: 62px !important;
  font-size: 18px !important;
}

body .ops-system .steps-line {
  left: 74px !important;
}

body .step-content {
  padding-right: 220px !important;
}

body .step-content h3 {
  font-size: 24px !important;
  line-height: 1.12 !important;
  margin-bottom: 10px !important;
}

body .step-content p {
  max-width: 440px !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
}

body .step-viz {
  right: 34px !important;
  width: 180px !important;
  height: 106px !important;
}

body .viz-map .sv-core {
  width: 66px !important;
  height: 66px !important;
  margin-top: -33px !important;
  border-radius: 18px !important;
}

body .viz-map .sv-core svg {
  width: 38px !important;
  height: 38px !important;
}

body .viz-map .sv-chip {
  font-size: 11px !important;
  padding: 4px 9px !important;
  --tx: 112px;
}

body .viz-map .sv-chip:nth-child(1) { top: 4px !important; --ty: 45px; }
body .viz-map .sv-chip:nth-child(2) { top: 28px !important; --ty: 21px; }
body .viz-map .sv-chip:nth-child(3) { top: 52px !important; --ty: -3px; }
body .viz-map .sv-chip:nth-child(4) { top: 76px !important; --ty: -27px; }

body .viz-connect .sv-node,
body .viz-connect .sv-target {
  width: 48px !important;
  height: 48px !important;
  border-radius: 13px !important;
}

body .viz-connect .sv-wire {
  width: 62px !important;
  height: 4px !important;
  margin-inline: 10px !important;
}

body .viz-review {
  gap: 12px !important;
}

body .viz-review .vr-flow {
  width: 92px !important;
  gap: 11px !important;
}

body .viz-review .vr-cycle svg {
  width: 36px !important;
  height: 36px !important;
}

body .viz-review .vr-dot {
  width: 16px !important;
  height: 16px !important;
}

body .viz-review .vr-check {
  width: 24px !important;
  height: 24px !important;
}

@media (max-width: 1020px) {
  body .ops-system {
    grid-template-columns: 1fr !important;
    max-width: 760px !important;
  }

  body .ops-diagram {
    min-height: 300px !important;
  }
}

@media (max-width: 768px) {
  body .how {
    padding-top: 46px !important;
    padding-bottom: 54px !important;
  }

  body .ops-diagram {
    min-height: 270px !important;
  }

  body .ops-system .step {
    min-height: 250px !important;
    grid-template-columns: 50px minmax(0, 1fr) !important;
    padding: 28px 22px !important;
    align-items: start !important;
  }

  body .ops-system .step-num {
    width: 50px !important;
    height: 50px !important;
    font-size: 16px !important;
  }

  body .ops-system .steps-line {
    left: 47px !important;
  }

  body .step-content {
    padding-right: 0 !important;
  }

  body .step-content h3 {
    font-size: 24px !important;
  }

  body .step-content p {
    max-width: none !important;
    font-size: 18px !important;
  }

  body .step-viz {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    grid-column: 2 !important;
    width: 100% !important;
    height: 88px !important;
    margin-top: 18px !important;
    justify-self: stretch !important;
  }

  body .viz-map .sv-core {
    width: 58px !important;
    height: 58px !important;
    margin-top: -29px !important;
  }

  body .viz-map .sv-core svg {
    width: 33px !important;
    height: 33px !important;
  }

  body .viz-map .sv-chip {
    font-size: 10px !important;
    padding: 3px 8px !important;
    --tx: 218px;
  }

  body .viz-connect .sv-wire {
    width: 84px !important;
  }

  body .viz-review .vr-flow {
    width: 150px !important;
  }
}

/* Final solution width: desktop gets more room */
body .how .container {
  max-width: 1320px !important;
}

@media (min-width: 1021px) {
  body .ops-system {
    max-width: 1240px !important;
  }

  body .ops-system .steps {
    width: 100% !important;
  }

  body .step-viz {
    width: 208px !important;
    height: 122px !important;
  }

  body .viz-map .sv-chip {
    --tx: 132px;
  }

  body .viz-connect .sv-wire {
    width: 78px !important;
  }

  body .viz-review .vr-flow {
    width: 112px !important;
  }
}

/* Final solution scale pass after viewport overrides */
body .ops-system {
  max-width: 1240px !important;
  grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.1fr) !important;
  gap: clamp(36px, 5vw, 72px) !important;
}

body .ops-diagram {
  min-height: 360px !important;
}

body .ops-core {
  min-width: 190px !important;
  min-height: 64px !important;
  font-size: 20px !important;
}

body .ops-node {
  min-height: 58px !important;
  padding-inline: 26px !important;
  font-size: 17px !important;
}

body .ops-system .step {
  min-height: 184px !important;
  padding: 34px 42px !important;
}

body .step-content {
  padding-right: 210px !important;
}

body .step-viz {
  right: 32px !important;
  width: 172px !important;
  height: 96px !important;
}

body .viz-map .sv-core {
  width: 64px !important;
  height: 64px !important;
  margin-top: -32px !important;
  border-radius: 18px !important;
}

body .viz-map .sv-core svg {
  width: 36px !important;
  height: 36px !important;
}

body .viz-map .sv-chip {
  font-size: 11px !important;
  padding: 4px 9px !important;
  border-radius: 8px !important;
  --tx: 116px;
}

body .viz-map .sv-chip:nth-child(1) { top: 6px !important; --ty: 35px; }
body .viz-map .sv-chip:nth-child(2) { top: 28px !important; --ty: 13px; }
body .viz-map .sv-chip:nth-child(3) { top: 50px !important; --ty: -9px; }
body .viz-map .sv-chip:nth-child(4) { top: 72px !important; --ty: -31px; }

body .viz-connect .sv-node {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
}

body .viz-connect .sv-node svg {
  width: 26px !important;
  height: 26px !important;
}

body .viz-connect .sv-wire {
  width: 58px !important;
  margin-inline: 10px !important;
}

body .viz-connect .sv-targets {
  gap: 8px !important;
}

body .viz-connect .sv-t {
  width: 30px !important;
  height: 30px !important;
  border-radius: 9px !important;
}

body .viz-connect .sv-t svg {
  width: 18px !important;
  height: 18px !important;
}

body .viz-review {
  gap: 14px !important;
}

body .viz-review .vr-cycle svg {
  width: 34px !important;
  height: 34px !important;
}

body .viz-review .vr-flow {
  width: 86px !important;
  gap: 12px !important;
}

body .viz-review .vr-flow i {
  width: 14px !important;
  height: 14px !important;
}

body .viz-review .vr-check svg {
  width: 22px !important;
  height: 22px !important;
}

@media (max-width: 1020px) {
  body .ops-system {
    max-width: 720px !important;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  body .ops-diagram {
    min-height: 270px !important;
  }

  body .ops-system .step {
    min-height: 250px !important;
    padding: 28px 22px !important;
  }

  body .step-content {
    padding-right: 0 !important;
  }

  body .step-viz {
    right: auto !important;
    grid-column: 2 !important;
    width: 100% !important;
    height: 86px !important;
    margin-top: 18px !important;
  }

  body .viz-map .sv-core {
    width: 56px !important;
    height: 56px !important;
    margin-top: -28px !important;
  }

  body .viz-map .sv-chip {
    font-size: 10px !important;
    --tx: 218px;
  }

  body .viz-connect .sv-wire {
    width: 84px !important;
  }

  body .viz-connect .sv-targets {
    flex-direction: row !important;
  }

  body .viz-review .vr-flow {
    width: 150px !important;
  }
}

/* Final solution scale pass */
body .ops-system {
  max-width: 1240px !important;
  grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.1fr) !important;
  gap: clamp(36px, 5vw, 72px) !important;
}

body .ops-diagram {
  min-height: 360px !important;
}

body .ops-core {
  min-width: 190px !important;
  min-height: 64px !important;
  font-size: 20px !important;
}

body .ops-node {
  min-height: 58px !important;
  padding-inline: 26px !important;
  font-size: 17px !important;
}

body .ops-system .step {
  min-height: 184px !important;
  padding: 34px 42px !important;
}

body .step-content {
  padding-right: 210px !important;
}

body .step-viz {
  right: 32px !important;
  width: 172px !important;
  height: 96px !important;
}

body .viz-map .sv-core {
  width: 64px !important;
  height: 64px !important;
  margin-top: -32px !important;
  border-radius: 18px !important;
}

body .viz-map .sv-core svg {
  width: 36px !important;
  height: 36px !important;
}

body .viz-map .sv-chip {
  font-size: 11px !important;
  padding: 4px 9px !important;
  border-radius: 8px !important;
  --tx: 116px;
}

body .viz-map .sv-chip:nth-child(1) { top: 6px !important; --ty: 35px; }
body .viz-map .sv-chip:nth-child(2) { top: 28px !important; --ty: 13px; }
body .viz-map .sv-chip:nth-child(3) { top: 50px !important; --ty: -9px; }
body .viz-map .sv-chip:nth-child(4) { top: 72px !important; --ty: -31px; }

body .viz-connect .sv-node {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
}

body .viz-connect .sv-node svg {
  width: 26px !important;
  height: 26px !important;
}

body .viz-connect .sv-wire {
  width: 58px !important;
  margin-inline: 10px !important;
}

body .viz-connect .sv-targets {
  gap: 8px !important;
}

body .viz-connect .sv-t {
  width: 30px !important;
  height: 30px !important;
  border-radius: 9px !important;
}

body .viz-connect .sv-t svg {
  width: 18px !important;
  height: 18px !important;
}

body .viz-review {
  gap: 14px !important;
}

body .viz-review .vr-cycle svg {
  width: 34px !important;
  height: 34px !important;
}

body .viz-review .vr-flow {
  width: 86px !important;
  gap: 12px !important;
}

body .viz-review .vr-flow i {
  width: 14px !important;
  height: 14px !important;
}

body .viz-review .vr-check svg {
  width: 22px !important;
  height: 22px !important;
}

@media (max-width: 1020px) {
  body .ops-system {
    max-width: 720px !important;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  body .ops-diagram {
    min-height: 270px !important;
  }

  body .ops-system .step {
    min-height: 250px !important;
    padding: 28px 22px !important;
  }

  body .step-content {
    padding-right: 0 !important;
  }

  body .step-viz {
    right: auto !important;
    grid-column: 2 !important;
    width: 100% !important;
    height: 86px !important;
    margin-top: 18px !important;
  }

  body .viz-map .sv-core {
    width: 56px !important;
    height: 56px !important;
    margin-top: -28px !important;
  }

  body .viz-map .sv-chip {
    font-size: 10px !important;
    --tx: 218px;
  }

  body .viz-connect .sv-wire {
    width: 84px !important;
  }

  body .viz-connect .sv-targets {
    flex-direction: row !important;
  }

  body .viz-review .vr-flow {
    width: 150px !important;
  }
}

/* Larger solution visuals */
.ops-system {
  max-width: 800px !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

.ops-diagram {
  min-height: 360px !important;
}

.ops-core {
  min-width: 190px !important;
  min-height: 64px !important;
  font-size: 20px !important;
}

.ops-node {
  min-height: 58px !important;
  padding-inline: 26px !important;
  font-size: 17px !important;
}

.ops-system .step {
  min-height: 184px !important;
  padding: 34px 42px !important;
}

.step-content {
  padding-right: 210px !important;
}

.step-viz {
  right: 32px !important;
  width: 172px !important;
  height: 96px !important;
}

.viz-map .sv-core {
  width: 64px !important;
  height: 64px !important;
  margin-top: -32px !important;
  border-radius: 18px !important;
}

.viz-map .sv-core svg {
  width: 36px !important;
  height: 36px !important;
}

.viz-map .sv-chip {
  font-size: 11px !important;
  padding: 4px 9px !important;
  border-radius: 8px !important;
  --tx: 116px;
}

.viz-map .sv-chip:nth-child(1) { top: 6px; --ty: 35px; }
.viz-map .sv-chip:nth-child(2) { top: 28px; --ty: 13px; }
.viz-map .sv-chip:nth-child(3) { top: 50px; --ty: -9px; }
.viz-map .sv-chip:nth-child(4) { top: 72px; --ty: -31px; }

.viz-connect .sv-node {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
}

.viz-connect .sv-node svg {
  width: 26px !important;
  height: 26px !important;
}

.viz-connect .sv-wire {
  width: 58px !important;
  margin-inline: 10px !important;
}

.viz-connect .sv-targets {
  gap: 8px !important;
}

.viz-connect .sv-t {
  width: 30px !important;
  height: 30px !important;
  border-radius: 9px !important;
}

.viz-connect .sv-t svg {
  width: 18px !important;
  height: 18px !important;
}

.viz-review {
  gap: 14px !important;
}

.viz-review .vr-cycle svg {
  width: 34px !important;
  height: 34px !important;
}

.viz-review .vr-flow {
  width: 86px !important;
  gap: 12px !important;
}

.viz-review .vr-flow i {
  width: 14px !important;
  height: 14px !important;
}

.viz-review .vr-check svg {
  width: 22px !important;
  height: 22px !important;
}

@media (max-width: 1020px) {
  .ops-system {
    max-width: 720px !important;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .ops-diagram {
    min-height: 270px !important;
  }

  .ops-system .step {
    min-height: 250px !important;
    padding: 28px 22px !important;
  }

  .step-content {
    padding-right: 0 !important;
  }

  .step-viz {
    right: auto !important;
    grid-column: 2 !important;
    width: 100% !important;
    height: 86px !important;
    margin-top: 18px !important;
  }

  .viz-map .sv-core {
    width: 56px !important;
    height: 56px !important;
    margin-top: -28px !important;
  }

  .viz-map .sv-chip {
    font-size: 10px !important;
    --tx: 218px;
  }

  .viz-connect .sv-wire {
    width: 84px !important;
  }

  .viz-connect .sv-targets {
    flex-direction: row !important;
  }

  .viz-review .vr-flow {
    width: 150px !important;
  }
}

/* Desktop pain cards cleanup */
.impact-flow::before {
  display: none !important;
}

.impact-flow .outcome {
  padding: 22px 28px 28px !important;
}

.impact-flow .outcome::before {
  display: none !important;
}

.impact-flow .outcome-num {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 36px !important;
  margin-bottom: 14px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
}

.outcome-viz {
  top: 34px !important;
  right: 28px !important;
  width: 58px !important;
  height: 44px !important;
}

.viz-support .ov-badge {
  top: -8px !important;
  right: -2px !important;
}

.impact-flow .outcome h3 {
  padding-right: 36px !important;
}

@media (max-width: 768px) {
  .outcome-viz {
    top: 24px !important;
    right: 18px !important;
  }

  .impact-flow .outcome-num {
    margin-bottom: 22px !important;
  }
}

/* Full first viewport hero */
.hero {
  min-height: 100svh !important;
  display: grid !important;
  align-items: center !important;
  padding-top: 88px !important;
  padding-bottom: 48px !important;
  overflow: hidden !important;
}

.hero-inner {
  width: 100%;
}

@media (min-width: 980px) {
  .hero {
    min-height: 100svh !important;
    padding-top: 96px !important;
    padding-bottom: 56px !important;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh !important;
    padding: 82px 18px 34px !important;
  }

  .hero-eyebrow {
    margin-bottom: 18px !important;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 52px) !important;
    margin-bottom: 18px !important;
  }

  .hero-sub {
    margin-bottom: 22px !important;
  }

  .hero-badges {
    margin-bottom: 18px !important;
  }

  .platform-logos {
    margin-bottom: 16px !important;
  }
}

/* Compact solution section */
.how {
  padding-top: clamp(52px, 5vw, 76px) !important;
  padding-bottom: clamp(54px, 5vw, 82px) !important;
}

.how .section-header {
  margin-bottom: clamp(30px, 3.6vw, 46px) !important;
}

.ops-system {
  grid-template-columns: minmax(320px, 0.88fr) minmax(520px, 1.12fr) !important;
  gap: clamp(28px, 4vw, 56px) !important;
  align-items: center !important;
}

.ops-diagram {
  min-height: 288px !important;
  border-radius: 28px !important;
}

.ops-core,
.ops-node {
  min-height: 48px !important;
  padding-inline: 18px !important;
}

.ops-core {
  min-width: 142px !important;
}

.ops-node.team {
  left: 28px !important;
  top: 34px !important;
}

.ops-node.customer {
  right: 28px !important;
  bottom: 34px !important;
}

.ops-system .steps {
  border-radius: 24px !important;
  clip-path: inset(0 round 24px) !important;
}

.ops-system .step {
  grid-template-columns: 56px minmax(0, 1fr) !important;
  gap: 18px !important;
  min-height: 0 !important;
  padding: 24px 30px !important;
  align-items: center !important;
}

.ops-system .step-num {
  width: 50px !important;
  height: 50px !important;
  font-size: 15px !important;
}

.ops-system .steps-line {
  left: 55px !important;
}

.step-content {
  padding-right: 108px !important;
}

.step-content h3 {
  margin-top: 0 !important;
  margin-bottom: 7px !important;
  font-size: 19px !important;
  line-height: 1.2 !important;
}

.step-content p {
  max-width: 340px;
  font-size: 14px !important;
  line-height: 1.48 !important;
}

.step-viz {
  right: 18px !important;
  width: 96px !important;
  height: 52px !important;
}

.viz-map .sv-core {
  width: 38px !important;
  height: 38px !important;
  margin-top: -19px !important;
  border-radius: 12px !important;
}

.viz-map .sv-core svg {
  width: 23px !important;
  height: 23px !important;
}

.viz-map .sv-chip {
  font-size: 8px !important;
  padding: 2px 6px !important;
  --tx: 62px;
}

.viz-map .sv-chip:nth-child(1) { top: 0; --ty: 19px; }
.viz-map .sv-chip:nth-child(2) { top: 14px; --ty: 5px; }
.viz-map .sv-chip:nth-child(3) { top: 28px; --ty: -9px; }
.viz-map .sv-chip:nth-child(4) { top: 42px; --ty: -23px; }

.viz-connect .sv-wire {
  width: 30px !important;
  margin-inline: 5px !important;
}

.viz-review {
  gap: 7px !important;
}

.viz-review .vr-flow {
  width: 46px !important;
  gap: 6px !important;
}

.viz-review .vr-cycle svg {
  width: 23px !important;
  height: 23px !important;
}

.sc-channel-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.sc-channel-icon.ig svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.sc-channel-icon.fb svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

@media (max-width: 1020px) {
  .ops-system {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }

  .ops-diagram {
    min-height: 250px !important;
  }
}

@media (max-width: 768px) {
  .how {
    padding-top: 46px !important;
    padding-bottom: 54px !important;
  }

  .how .section-header {
    margin-bottom: 28px !important;
  }

  .ops-system .step {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    padding: 22px 18px !important;
  }

  .ops-system .step-num {
    width: 44px !important;
    height: 44px !important;
  }

  .step-content {
    padding-right: 0 !important;
  }

  .step-content p {
    max-width: none;
  }

  .step-viz {
    right: auto !important;
    width: 100% !important;
    height: 42px !important;
  }
}

/* Final mobile alignment + simplified ops orbit */
.ops-ring-dashed,
.ops-sig,
.ops-ping {
  display: none !important;
}

.ops-ring {
  stroke: rgba(105, 219, 255, 0.28) !important;
  stroke-width: 1.6 !important;
}

/* Final solution scale: larger desktop cards and visuals */
body .how .container {
  max-width: 960px !important;
}

body .ops-system {
  max-width: 900px !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

body .ops-diagram {
  min-height: 370px !important;
}

body .ops-core {
  width: 190px !important;
  min-height: 64px !important;
  font-size: 20px !important;
}

body .ops-node {
  min-height: 58px !important;
  padding: 16px 28px !important;
  font-size: 18px !important;
}

body .ops-system .step {
  min-height: 188px !important;
  padding: 34px 42px !important;
}

body .step-content {
  padding-right: 250px !important;
}

body .step-content h3 {
  font-size: 24px !important;
  line-height: 1.12 !important;
}

body .step-content p {
  max-width: 440px !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
}

body .step-viz {
  right: 30px !important;
  width: 208px !important;
  height: 122px !important;
}

body .viz-map .sv-core {
  width: 66px !important;
  height: 66px !important;
  margin-top: -33px !important;
  border-radius: 18px !important;
}

body .viz-map .sv-core svg {
  width: 38px !important;
  height: 38px !important;
}

body .viz-map .sv-chip {
  font-size: 11px !important;
  padding: 4px 9px !important;
  --tx: 132px;
}

body .viz-map .sv-chip:nth-child(1) { top: 4px !important; --ty: 45px; }
body .viz-map .sv-chip:nth-child(2) { top: 28px !important; --ty: 21px; }
body .viz-map .sv-chip:nth-child(3) { top: 52px !important; --ty: -3px; }
body .viz-map .sv-chip:nth-child(4) { top: 76px !important; --ty: -27px; }

body .viz-connect .sv-node,
body .viz-connect .sv-target {
  width: 48px !important;
  height: 48px !important;
  border-radius: 13px !important;
}

body .viz-connect .sv-wire {
  width: 78px !important;
  height: 4px !important;
  margin-inline: 10px !important;
}

body .viz-review .vr-flow {
  width: 112px !important;
}

body .viz-review .vr-cycle svg {
  width: 36px !important;
  height: 36px !important;
}

body .viz-review .vr-dot {
  width: 16px !important;
  height: 16px !important;
}

body .viz-review .vr-check {
  width: 24px !important;
  height: 24px !important;
}

@media (max-width: 1020px) {
  body .ops-system {
    grid-template-columns: 1fr !important;
    max-width: 760px !important;
  }

  body .ops-diagram {
    min-height: 300px !important;
  }
}

@media (max-width: 768px) {
  body .how {
    padding-top: 46px !important;
    padding-bottom: 54px !important;
  }

  body .ops-diagram {
    min-height: 270px !important;
  }

  body .ops-system .step {
    min-height: 250px !important;
    grid-template-columns: 50px minmax(0, 1fr) !important;
    padding: 28px 22px !important;
    align-items: start !important;
  }

  body .step-content {
    padding-right: 0 !important;
  }

  body .step-viz {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    grid-column: 2 !important;
    width: 100% !important;
    height: 88px !important;
    margin-top: 18px !important;
    justify-self: stretch !important;
  }

  body .viz-map .sv-core {
    width: 58px !important;
    height: 58px !important;
    margin-top: -29px !important;
  }

  body .viz-map .sv-chip {
    font-size: 10px !important;
    --tx: 218px;
  }

  body .viz-connect .sv-wire {
    width: 84px !important;
  }

  body .viz-review .vr-flow {
    width: 150px !important;
  }
}

@media (max-width: 768px) {
  .outcomes .container {
    padding-left: 14px !important;
    padding-right: 12px !important;
  }

  .outcomes-head {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
  }

  .impact-flow {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .impact-flow .outcome {
    display: block !important;
    padding: 24px 18px 24px 18px !important;
  }

  .impact-flow .outcome-num,
  .impact-flow .outcome h3,
  .impact-flow .outcome p {
    grid-column: auto !important;
    margin-left: 0 !important;
  }

  .impact-flow .outcome h3 {
    padding-right: 74px !important;
  }

  .outcome-viz {
    top: 26px !important;
    right: 18px !important;
  }
}

/* Final viewport lock: hero owns the first screen */
body .hero {
  min-height: 100svh !important;
  display: grid !important;
  align-items: center !important;
  padding-top: 88px !important;
  padding-bottom: 48px !important;
  overflow: hidden !important;
}

body .hero-inner {
  width: 100% !important;
}

@media (min-width: 980px) {
  body .hero {
    min-height: 100svh !important;
    padding-top: 96px !important;
    padding-bottom: 56px !important;
  }
}

@media (max-width: 768px) {
  body .hero {
    min-height: auto !important;
    height: auto !important;
    align-items: start !important;
    align-content: start !important;
    padding: 70px 18px 34px !important;
    overflow: visible !important;
  }

  body .hero-eyebrow {
    margin-bottom: 18px !important;
  }

  body .hero-title {
    font-size: clamp(38px, 10vw, 52px) !important;
    margin-bottom: 18px !important;
  }

  body .hero-sub {
    margin-bottom: 22px !important;
  }

  body .hero-badges {
    margin-bottom: 18px !important;
  }

  body .platform-logos {
    margin-bottom: 16px !important;
  }
}

/* ── Mobile step cards: compact padding + animaciones full-width ── */
@media (max-width: 768px) {
  body .ops-system .step {
    min-height: 0 !important;
    padding: 16px 16px !important;
    gap: 12px !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
  }

  body .ops-system .step-num {
    width: 44px !important;
    height: 44px !important;
  }

  body .step-viz {
    grid-column: 1 / -1 !important;
    height: 56px !important;
    margin-top: 6px !important;
    overflow: hidden !important;
  }

  /* Chips distribuidos dentro de 56px, sin overflow */
  body .viz-map .sv-chip:nth-child(1) { top: 2px !important; }
  body .viz-map .sv-chip:nth-child(2) { top: 16px !important; }
  body .viz-map .sv-chip:nth-child(3) { top: 30px !important; }
  body .viz-map .sv-chip:nth-child(4) { top: 44px !important; }

  /* Keyframe corregido: chips viajan hasta el bot (left≈250px en viz de 309px) */
  @keyframes sv-chip-stream {
    0%   { opacity: 0; transform: translate(-12px, -50%) scale(0.9); }
    14%  { opacity: 1; transform: translate(0,    -50%) scale(1);   }
    52%  { opacity: 1; transform: translate(0,    -50%) scale(1);   }
    100% { opacity: 0; transform: translate(246px,-50%) scale(0.08);}
  }

  /* viz-connect y viz-review: alinear desde la izquierda (no centrado) */
  body .viz-connect {
    justify-content: flex-start !important;
    padding-left: 0 !important;
  }

  body .viz-review {
    justify-content: flex-start !important;
    padding-left: 0 !important;
  }
}

/* Step 1 visual bounds: keep pills and agent glow inside card */
body .viz-map {
  overflow: hidden !important;
  isolation: isolate;
}

body .viz-map .sv-core {
  right: 12px !important;
  box-shadow: 0 0 14px rgba(105, 219, 255, 0.48) !important;
}

body .viz-map .sv-chip {
  max-width: calc(100% - 92px);
  overflow: hidden;
  text-overflow: ellipsis;
  --tx: 108px;
}

@keyframes sv-chip-absorb {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.9); }
  16%  { opacity: 1; transform: translate(0, 0) scale(1); }
  38%  { opacity: 1; transform: translate(0, 0) scale(1); }
  72%  { opacity: 0.82; transform: translate(calc(var(--tx) * 0.72), calc(var(--ty) * 0.72)) scale(0.55); }
  92%  { opacity: 0.32; transform: translate(calc(var(--tx) * 0.96), calc(var(--ty) * 0.96)) scale(0.18); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.08); }
}

@media (min-width: 1021px) {
  body .viz-map .sv-core {
    right: 14px !important;
  }

  body .viz-map .sv-chip {
    --tx: 126px;
  }
}

@media (max-width: 768px) {
  body .step-viz.viz-map {
    height: 78px !important;
    padding-inline: 8px 16px;
  }

  body .viz-map .sv-core {
    right: 16px !important;
    width: 52px !important;
    height: 52px !important;
    margin-top: -26px !important;
    box-shadow: 0 0 12px rgba(105, 219, 255, 0.45) !important;
  }

  body .viz-map .sv-core svg {
    width: 30px !important;
    height: 30px !important;
  }

  body .viz-map .sv-chip {
    left: 8px !important;
    max-width: calc(100% - 104px);
    --chip-mobile-dest: calc(100vw - 180px);
  }

  body .viz-map .sv-chip:nth-child(1) { top: 15px !important; }
  body .viz-map .sv-chip:nth-child(2) { top: 30px !important; }
  body .viz-map .sv-chip:nth-child(3) { top: 45px !important; }
  body .viz-map .sv-chip:nth-child(4) { top: 60px !important; }

  @keyframes sv-chip-stream {
    0%   { opacity: 0; transform: translate(0, -50%) scale(0.9); }
    14%  { opacity: 1; transform: translate(0, -50%) scale(1); }
    52%  { opacity: 1; transform: translate(0, -50%) scale(1); }
    100% { opacity: 0; transform: translate(var(--chip-mobile-dest), -50%) scale(0.08); }
  }
}

/* Mobile polish: hero badges 2+1 and centered step animations */
@media (max-width: 768px) {
  body .hero-badges {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: min(100%, 640px) !important;
    margin-inline: auto !important;
  }

  body .hero-badges .badge {
    width: 100% !important;
    justify-content: center !important;
    min-width: 0 !important;
    padding-inline: 10px !important;
    white-space: nowrap !important;
  }

  body .hero-badges .badge svg {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
  }

  body .hero-badges .badge:nth-child(3) {
    grid-column: 1 / -1 !important;
    width: max-content !important;
    max-width: 100% !important;
    padding-inline: 16px !important;
    justify-self: center !important;
  }

  body .step-viz.viz-connect,
  body .step-viz.viz-review {
    display: flex !important;
    justify-content: center !important;
    padding-left: clamp(24px, 10vw, 58px) !important;
    padding-right: clamp(10px, 4vw, 24px) !important;
  }

  body .viz-connect .sv-wire {
    width: clamp(64px, 22vw, 92px) !important;
  }

  body .viz-review .vr-flow {
    width: clamp(112px, 34vw, 160px) !important;
  }
}

/* Desktop solution section tightening + correct chip destination */
@media (min-width: 1021px) {
  body .how {
    padding-top: 54px !important;
    padding-bottom: 72px !important;
  }

  body .how .section-header {
    margin-bottom: 38px !important;
  }

  body .ops-diagram {
    min-height: 330px !important;
  }

  body .ops-system .step {
    min-height: 170px !important;
    padding-block: 28px !important;
  }

  body .step-viz {
    height: 108px !important;
  }

  body .viz-map .sv-chip {
    --tx: 128px;
  }
}

/* Final spacing pass */
body .plan-diff {
  display: none !important;
}

body .pricing {
  padding-top: clamp(64px, 5vw, 78px) !important;
  padding-bottom: clamp(50px, 4vw, 66px) !important;
}

body .pricing-note {
  max-width: 720px !important;
  margin-top: 18px !important;
  margin-inline: auto !important;
  opacity: 0.72;
}

body .faq {
  padding-top: clamp(44px, 4vw, 62px) !important;
}

body .pricing + .faq {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  body .pricing {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  body .pricing-note {
    margin-top: 18px !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  body .faq {
    padding-top: 42px !important;
  }
}

body .store-preview {
  padding-top: clamp(58px, 6vw, 86px) !important;
  padding-bottom: clamp(28px, 3vw, 42px) !important;
}

body .store-layout {
  padding-bottom: 28px !important;
}

@media (max-width: 768px) {
  body .store-preview {
    padding-top: 52px !important;
    padding-bottom: 34px !important;
  }

  body .store-layout {
    padding-bottom: 78px !important;
  }
}

/* Store demo final pass: taller chat without growing whole section */
@media (min-width: 769px) {
  body .store-chat-widget.chat-open {
    width: 380px !important;
    bottom: 30px !important;
  }

  body #storeChatBody {
    min-height: 260px !important;
    max-height: 330px !important;
  }
}

@media (max-width: 768px) {
  body .store-chat-widget.chat-open {
    left: auto !important;
    right: 14px !important;
    width: min(280px, calc(100% - 28px)) !important;
    bottom: 16px !important;
    max-height: min(52vh, 390px) !important;
  }

  body .store-chat-head {
    padding: 12px 14px !important;
  }

  body .store-chat-head > span {
    width: 34px !important;
    height: 34px !important;
  }

  body #storeChatBody {
    min-height: 192px !important;
    max-height: 232px !important;
    padding: 12px 14px !important;
  }

  body .store-chat-composer {
    min-height: 44px !important;
    padding: 9px 14px !important;
  }
}

/* Last word: mobile hero chips */
@media (max-width: 768px) {
  body .hero-eyebrow {
    display: inline-flex !important;
    gap: 7px !important;
    width: fit-content !important;
    max-width: calc(100vw - 84px) !important;
    padding: 7px 14px !important;
    margin-inline: auto !important;
    border-color: rgba(105, 219, 255, 0.38) !important;
    font-size: 9.5px !important;
    line-height: 1.15 !important;
    letter-spacing: 0.105em !important;
    box-shadow:
      0 0 0 1px rgba(69, 204, 255, 0.12),
      0 0 22px rgba(57, 216, 255, 0.24),
      0 0 54px rgba(57, 216, 255, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  }

  body .hero-eyebrow::before {
    width: 6px !important;
    height: 6px !important;
    margin-right: 0 !important;
    box-shadow:
      0 0 10px rgba(57, 216, 255, 1),
      0 0 20px rgba(57, 216, 255, 0.82) !important;
  }

  body .hero-eyebrow::after {
    inset: -3px !important;
    padding: 2px !important;
    background: conic-gradient(
      from var(--shine-angle, 0deg),
      transparent 0 50%,
      rgba(57, 216, 255, 0.14) 58%,
      rgba(57, 216, 255, 1) 68%,
      rgba(255, 255, 255, 0.98) 72%,
      rgba(57, 216, 255, 0.7) 78%,
      transparent 88% 100%
    ) !important;
    filter: drop-shadow(0 0 10px rgba(57, 216, 255, 0.72));
    animation-duration: 3.2s !important;
  }

  body .hero-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: min(100%, 330px) !important;
    gap: 8px !important;
  }

  body .hero-badges .badge,
  body .hero-badges .badge:nth-child(3),
  body .hero-badges .badge:nth-child(4) {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 32px !important;
    padding: 7px 12px !important;
    gap: 6px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  body .hero-badges .badge svg {
    width: 12px !important;
    height: 12px !important;
    flex: 0 0 12px !important;
  }
}

@media (max-width: 768px) {
  body .hero {
    padding-top: 80px !important;
    padding-bottom: 28px !important;
  }

  body .hero-eyebrow {
    max-width: calc(100vw - 104px) !important;
    padding: 6px 12px !important;
    margin-bottom: 14px !important;
    font-size: 8.8px !important;
    letter-spacing: 0.095em !important;
  }

  body .hero-title {
    max-width: 340px !important;
    margin-bottom: 14px !important;
    font-size: clamp(32px, 8.8vw, 42px) !important;
    line-height: 1.05 !important;
  }

  body .hero-sub {
    max-width: 340px !important;
    margin-bottom: 14px !important;
    font-size: 16px !important;
    line-height: 1.42 !important;
  }

  body .hero-badges {
    margin-bottom: 14px !important;
    gap: 7px !important;
  }

  body .hero-badges .badge,
  body .hero-badges .badge:nth-child(3),
  body .hero-badges .badge:nth-child(4) {
    min-height: 28px !important;
    padding: 6px 10px !important;
    font-size: 10.5px !important;
  }

  body .platform-logos {
    width: min(220px, 56vw) !important;
    margin-bottom: 12px !important;
  }

  body .hero-cta {
    gap: 9px !important;
    margin-bottom: 0 !important;
  }

  body .hero-actions {
    gap: 9px !important;
  }

  body .hero-actions .btn-primary,
  body .hero-actions .btn-secondary {
    min-height: 50px !important;
    font-size: 15px !important;
  }

  body .cta-note {
    max-width: 320px !important;
    margin-top: 8px !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }
}

/* Absolute final mobile fit */
@media (max-width: 768px) {
  body .hero {
    padding-top: 80px !important;
    padding-bottom: 28px !important;
  }

  body .hero-eyebrow {
    max-width: calc(100vw - 104px) !important;
    padding: 6px 12px !important;
    margin-bottom: 14px !important;
    font-size: 8.8px !important;
    letter-spacing: 0.095em !important;
  }

  body .hero-title {
    max-width: 340px !important;
    margin-bottom: 14px !important;
    font-size: clamp(32px, 8.8vw, 42px) !important;
    line-height: 1.05 !important;
  }

  body .hero-sub {
    max-width: 340px !important;
    margin-bottom: 14px !important;
    font-size: 16px !important;
    line-height: 1.42 !important;
  }

  body .hero-badges {
    margin-bottom: 14px !important;
    gap: 7px !important;
  }

  body .hero-badges .badge,
  body .hero-badges .badge:nth-child(3),
  body .hero-badges .badge:nth-child(4) {
    min-height: 28px !important;
    padding: 6px 10px !important;
    font-size: 10.5px !important;
  }

  body .platform-logos {
    width: min(220px, 56vw) !important;
    margin-bottom: 12px !important;
  }

  body .hero-cta {
    gap: 9px !important;
    margin-bottom: 0 !important;
  }

  body .hero-actions {
    gap: 9px !important;
  }

  body .hero-actions .btn-primary,
  body .hero-actions .btn-secondary {
    min-height: 50px !important;
    font-size: 15px !important;
  }

  body .cta-note {
    max-width: 320px !important;
    margin-top: 8px !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }
}

/* Android viewport fit: keep both CTAs and note visible */
@media (max-width: 768px) {
  body .hero {
    padding-top: 80px !important;
    padding-bottom: 28px !important;
  }

  body .hero-eyebrow {
    max-width: calc(100vw - 104px) !important;
    padding: 6px 12px !important;
    margin-bottom: 14px !important;
    font-size: 8.8px !important;
    letter-spacing: 0.095em !important;
  }

  body .hero-title {
    max-width: 340px !important;
    margin-bottom: 14px !important;
    font-size: clamp(32px, 8.8vw, 42px) !important;
    line-height: 1.05 !important;
  }

  body .hero-sub {
    max-width: 340px !important;
    margin-bottom: 14px !important;
    font-size: 16px !important;
    line-height: 1.42 !important;
  }

  body .hero-badges {
    margin-bottom: 14px !important;
    gap: 7px !important;
  }

  body .hero-badges .badge,
  body .hero-badges .badge:nth-child(3),
  body .hero-badges .badge:nth-child(4) {
    min-height: 28px !important;
    padding: 6px 10px !important;
    font-size: 10.5px !important;
  }

  body .platform-logos {
    width: min(220px, 56vw) !important;
    margin-bottom: 12px !important;
  }

  body .hero-cta {
    gap: 9px !important;
    margin-bottom: 0 !important;
  }

  body .hero-actions {
    gap: 9px !important;
  }

  body .hero-actions .btn-primary,
  body .hero-actions .btn-secondary {
    min-height: 50px !important;
    font-size: 15px !important;
  }

  body .cta-note {
    max-width: 320px !important;
    margin-top: 8px !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }
}

/* Final mobile hero chip sizing */
@media (max-width: 768px) {
  body .hero-eyebrow {
    gap: 7px !important;
    width: fit-content !important;
    max-width: calc(100vw - 84px) !important;
    padding: 7px 14px !important;
    border-color: rgba(105, 219, 255, 0.38) !important;
    border-width: 1px !important;
    font-size: 9.5px !important;
    line-height: 1.15 !important;
    letter-spacing: 0.105em !important;
    box-shadow:
      0 0 0 1px rgba(69, 204, 255, 0.12),
      0 0 22px rgba(57, 216, 255, 0.24),
      0 0 54px rgba(57, 216, 255, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  }

  body .hero-eyebrow::before {
    width: 6px !important;
    height: 6px !important;
    margin-right: 0 !important;
    box-shadow:
      0 0 10px rgba(57, 216, 255, 1),
      0 0 20px rgba(57, 216, 255, 0.82) !important;
  }

  body .hero-eyebrow::after {
    inset: -3px !important;
    padding: 2px !important;
    background: conic-gradient(
      from var(--shine-angle, 0deg),
      transparent 0 50%,
      rgba(57, 216, 255, 0.14) 58%,
      rgba(57, 216, 255, 1) 68%,
      rgba(255, 255, 255, 0.98) 72%,
      rgba(57, 216, 255, 0.7) 78%,
      transparent 88% 100%
    ) !important;
    filter: drop-shadow(0 0 10px rgba(57, 216, 255, 0.72));
    animation-duration: 3.2s !important;
  }

  body .hero-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: min(100%, 330px) !important;
    gap: 8px !important;
  }

  body .hero-badges .badge,
  body .hero-badges .badge:nth-child(3),
  body .hero-badges .badge:nth-child(4) {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 32px !important;
    padding: 7px 12px !important;
    gap: 6px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  body .hero-badges .badge svg {
    width: 12px !important;
    height: 12px !important;
    flex: 0 0 12px !important;
  }
}

/* Mobile nav + hero polish pass */
.nav-menu-toggle,
.mobile-nav-menu {
  display: none;
}

@media (max-width: 768px) {
  body .nav-inner {
    position: relative;
    display: grid !important;
    grid-template-columns: 44px 1fr 44px !important;
    height: 64px !important;
    padding: 0 18px !important;
    gap: 8px !important;
  }

  body .nav-logo {
    justify-self: center !important;
    font-size: 20px !important;
    gap: 8px !important;
  }

  body .nav-logo .brand-mark-img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
  }

  body .nav-menu-toggle {
    appearance: none;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: start;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(74, 194, 232, 0.28);
    border-radius: 14px;
    background: rgba(9, 23, 34, 0.78);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 24px rgba(0,0,0,0.18);
  }

  body .nav-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 2px 0;
    border-radius: 99px;
    background: #eefbff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  body .mobile-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 120;
    display: grid;
    gap: 0;
    padding: 24px 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(74, 194, 232, 0.18);
    border-radius: 0 0 22px 22px;
    background: rgba(12, 9, 13, 0.98);
    box-shadow: 0 30px 60px rgba(0,0,0,0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body .mobile-nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body .mobile-nav-menu a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    color: rgba(245, 251, 255, 0.86);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 720;
    text-align: left;
  }

  body .mobile-nav-menu a:active {
    color: #39d8ff;
    background: transparent;
  }

  body .nav-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body .nav-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  body .nav-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  body .whatsapp-nav,
  body .btn-nav {
    justify-self: end;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.26) !important;
  }

  body .whatsapp-nav img,
  body .btn-nav img {
    width: 42px !important;
    height: 42px !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 50% !important;
  }

  body .hero {
    padding-top: 92px !important;
    padding-bottom: 46px !important;
  }

  body .hero-eyebrow {
    width: max-content !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    font-size: 11px !important;
    letter-spacing: 0.14em !important;
    padding: 10px 16px !important;
  }

  body .hero-title {
    font-size: clamp(37px, 9.6vw, 48px) !important;
    line-height: 1.09 !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body .hero-sub {
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 18px !important;
    line-height: 1.55 !important;
  }

  body .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(100%, 330px) !important;
    gap: 8px !important;
  }

  body .hero-badges .badge,
  body .hero-badges .badge:nth-child(3) {
    grid-column: auto !important;
    width: 100% !important;
    justify-self: stretch !important;
    min-height: 38px !important;
    padding: 7px 11px !important;
    border-color: rgba(87, 196, 231, 0.25) !important;
    border-radius: 999px !important;
    background: rgba(12, 29, 42, 0.58) !important;
    font-size: 11px !important;
    font-weight: 650 !important;
    gap: 7px !important;
  }

  body .hero-badges .badge svg {
    width: 13px !important;
    height: 13px !important;
    flex-basis: 13px !important;
  }

  body .platform-logos {
    width: min(252px, 61vw) !important;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
  }

  body .hero-cta {
    gap: 12px !important;
  }

  body .cta-note {
    display: block !important;
    max-width: 330px !important;
    margin: 8px auto 0 !important;
    color: rgba(213, 228, 238, 0.72) !important;
    opacity: 1 !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    text-align: center !important;
  }
}

/* Last word: mobile hero chips */
@media (max-width: 768px) {
  body .hero-eyebrow {
    display: inline-flex !important;
    gap: 7px !important;
    width: fit-content !important;
    max-width: calc(100vw - 84px) !important;
    padding: 7px 14px !important;
    margin-inline: auto !important;
    border-color: rgba(105, 219, 255, 0.38) !important;
    font-size: 9.5px !important;
    line-height: 1.15 !important;
    letter-spacing: 0.105em !important;
    box-shadow:
      0 0 0 1px rgba(69, 204, 255, 0.12),
      0 0 22px rgba(57, 216, 255, 0.24),
      0 0 54px rgba(57, 216, 255, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  }

  body .hero-eyebrow::before {
    width: 6px !important;
    height: 6px !important;
    margin-right: 0 !important;
    box-shadow:
      0 0 10px rgba(57, 216, 255, 1),
      0 0 20px rgba(57, 216, 255, 0.82) !important;
  }

  body .hero-eyebrow::after {
    inset: -3px !important;
    padding: 2px !important;
    background: conic-gradient(
      from var(--shine-angle, 0deg),
      transparent 0 50%,
      rgba(57, 216, 255, 0.14) 58%,
      rgba(57, 216, 255, 1) 68%,
      rgba(255, 255, 255, 0.98) 72%,
      rgba(57, 216, 255, 0.7) 78%,
      transparent 88% 100%
    ) !important;
    filter: drop-shadow(0 0 10px rgba(57, 216, 255, 0.72));
    animation-duration: 3.2s !important;
  }

  body .hero-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: min(100%, 330px) !important;
    gap: 8px !important;
  }

  body .hero-badges .badge,
  body .hero-badges .badge:nth-child(3),
  body .hero-badges .badge:nth-child(4) {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 32px !important;
    padding: 7px 12px !important;
    gap: 6px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  body .hero-badges .badge svg {
    width: 12px !important;
    height: 12px !important;
    flex: 0 0 12px !important;
  }
}

/* Absolute final Android hero fit */
@media (max-width: 768px) {
  body .hero { padding-top: 80px !important; padding-bottom: 28px !important; }
  body .hero-eyebrow { max-width: calc(100vw - 104px) !important; padding: 6px 12px !important; margin-bottom: 14px !important; font-size: 8.8px !important; letter-spacing: 0.095em !important; }
  body .hero-title { max-width: 340px !important; margin-bottom: 14px !important; font-size: clamp(32px, 8.8vw, 42px) !important; line-height: 1.05 !important; }
  body .hero-sub { max-width: 340px !important; margin-bottom: 14px !important; font-size: 16px !important; line-height: 1.42 !important; }
  body .hero-badges { margin-bottom: 14px !important; gap: 7px !important; }
  body .hero-badges .badge, body .hero-badges .badge:nth-child(3), body .hero-badges .badge:nth-child(4) { min-height: 28px !important; padding: 6px 10px !important; font-size: 10.5px !important; }
  body .platform-logos { width: min(220px, 56vw) !important; margin-bottom: 12px !important; }
  body .hero-cta { gap: 9px !important; margin-bottom: 0 !important; }
  body .hero-actions { gap: 9px !important; }
  body .hero-actions .btn-primary, body .hero-actions .btn-secondary { min-height: 50px !important; font-size: 15px !important; }
  body .cta-note { max-width: 320px !important; margin-top: 8px !important; font-size: 11.5px !important; line-height: 1.35 !important; }
}

/* Absolute final brand spacing + 3 hero pills */
.nav-logo {
  gap: 6px !important;
}

.footer-logo {
  gap: 5px !important;
}

@media (max-width: 768px) {
  body .nav-logo {
    gap: 4px !important;
  }

  body .footer-logo {
    gap: 4px !important;
  }

  body .hero-badges {
    display: grid !important;
    grid-template-columns: repeat(2, max-content) !important;
    justify-content: center !important;
    width: min(100%, 360px) !important;
    gap: 8px 10px !important;
    margin-bottom: 14px !important;
  }

  body .hero-badges .badge,
  body .hero-badges .badge:nth-child(3),
  body .hero-badges .badge:nth-child(4) {
    width: max-content !important;
    max-width: calc(100vw - 64px) !important;
    min-height: 30px !important;
    padding: 7px 12px !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  body .hero-badges .badge:first-child {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
  }

  body .hero-badges .badge svg {
    width: 12px !important;
    height: 12px !important;
    flex: 0 0 12px !important;
  }
}

/* ─── Ticker / Marquee ─── */
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-wrap {
  /* breakout: span full viewport width regardless of parent max-width */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  overflow: hidden;
  margin-top: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 28%, black 72%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 28%, black 72%, transparent 100%);
}

.ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.32);
  background: rgba(0, 212, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: default;
  flex-shrink: 0;
}

.ticker-pill svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  opacity: 0.85;
}

/* Mobile hero: fix grid-column auto-expansion from ticker-wrap width:100vw */
@media (max-width: 768px) {
  body .hero {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  body .ticker-wrap {
    margin-top: 32px !important;
    margin-bottom: 10px !important;
  }
}

/* Store preview chat body: min-height para mostrar más mensajes */
@media (min-width: 769px) {
  body .store-chat-body { min-height: 230px !important; align-content: start; }
}

/* Chat showcase desktop: más compacto */
@media (min-width: 769px) {
  .showcase-wrapper,
  body .showcase-wrapper {
    max-width: 580px !important;
  }
  .s-tabs,
  body .s-tabs {
    max-width: 580px !important;
  }
  .theme-picker,
  body .theme-picker {
    max-width: 580px !important;
  }
  .showcase-slides.live-chat,
  body .showcase-slides.live-chat {
    height: 430px !important;
  }
}

/* Desktop hero: título 2 líneas compacto */
@media (min-width: 769px) {
  body .hero-inner,
  .hero-inner {
    max-width: min(1100px, 92vw) !important;
  }
  body .hero-title,
  .hero-title {
    font-size: clamp(48px, 5.6vw, 78px) !important;
    max-width: min(1100px, 92vw) !important;
    text-wrap: unset !important;
  }
}

/* =============================================
   DESKTOP WIDE: secciones más anchas + showcase 3 cols
   ============================================= */
@media (min-width: 769px) {
  /* Contenedor global más ancho */
  body .container { max-width: 1200px; }

  /* Showcase: 3 columnas [s-left | chat | stats] */
  body .showcase-wrapper {
    display: grid !important;
    grid-template-columns: minmax(200px, 230px) 1fr minmax(220px, 270px) !important;
    max-width: 1220px !important;
    margin: 0 auto !important;
    gap: 32px !important;
    align-items: center !important;
  }

  /* Columna izquierda: theme-picker arriba + tabs abajo */
  body .s-left {
    grid-column: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  body .theme-picker {
    max-width: none !important;
    margin: 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 16px 14px !important;
  }

  body .theme-picker-label {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #475467 !important;
  }

  body .s-tabs {
    grid-template-columns: 1fr !important;
    max-width: none !important;
    margin: 0 !important;
    gap: 10px !important;
  }

  body .s-tab {
    justify-content: flex-start !important;
    padding: 13px 18px !important;
    font-size: 14.5px !important;
    border-radius: 14px !important;
    gap: 10px !important;
  }

  body .s-tab svg {
    width: 15px !important;
    height: 15px !important;
    flex-shrink: 0 !important;
  }

  body .showcase-window {
    grid-column: 2 !important;
  }

  body .theme-options {
    flex-direction: column !important;
    gap: 8px !important;
  }

  body .theme-option {
    width: 100% !important;
    justify-content: flex-start !important;
    min-height: 44px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
  }

  body .theme-option.active {
    border-color: rgba(50, 199, 255, 0.5) !important;
    background: rgba(50, 199, 255, 0.08) !important;
  }

  /* Pricing: tarjetas más anchas */
  body .plans {
    grid-template-columns: repeat(2, minmax(360px, 1fr)) !important;
  }

  /* FAQ: ancho mayor */
  body .faq-list { max-width: 860px !important; }
}

/* === SHOWCASE: fondo sutil + altura uniforme + ancho estable === */
@media (min-width: 769px) {
  /* Fondo sutil — reemplaza la card oscura original */
  body .showcase-wrapper {
    background: rgba(7, 19, 29, 0.52) !important;
    border: 1px solid rgba(105, 219, 255, 0.11) !important;
    border-radius: 26px !important;
    padding: 36px 32px !important;
    box-shadow: none !important;
    width: 100% !important;
  }

  /* Altura uniforme en todos los slides para que no salte */
  body .showcase-slides { height: 473px !important; }
  body .showcase-slides.live-chat { height: 473px !important; }

  /* Chat window ocupa siempre su columna completa */
  body .showcase-window { width: 100% !important; min-width: 0 !important; }

  body .s-tabs { align-self: center !important; }
  body .theme-picker { align-self: center !important; }
}

/* === PRICING: bigger cards desktop + alignment === */
@media (min-width: 769px) {
  body .plan { padding: 38px 32px !important; display: flex !important; flex-direction: column !important; }
  body .plan-name { font-size: 13px !important; }
  body .plan-price { font-size: 52px !important; }
  body .plan-price span { font-size: 18px !important; }
  body .plan-for { font-size: 15px !important; }
  body .plan-features { gap: 14px !important; flex: 1 !important; }
  body .plan-features li { font-size: 15.5px !important; }
  body .plan-header { margin-bottom: 30px !important; padding-bottom: 30px !important; }

  /* Badge top-right, out of flow — fixes price misalignment */
  body .plan-tag {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
  }
  /* Reset featured card top-padding to match basic card */
  body .plan.featured { padding-top: 38px !important; }

  /* Stretch cards to same height so CTAs align */
  body .plans { align-items: stretch !important; }
}

/* === FAQ: bigger text desktop === */
@media (min-width: 769px) {
  body .faq-q { font-size: 17.5px !important; padding: 26px 0 !important; }
  body .faq-a { font-size: 15.5px !important; }
  body .faq-arrow { width: 22px !important; height: 22px !important; }
}

/* === CTA FINAL: kpis row + sizing === */
@media (min-width: 769px) {
  body .cta-final { padding: 100px 0 120px !important; }
  body .cta-sub { font-size: 20px !important; max-width: 620px !important; }
}

/* CTA TESTIMONIALS TICKER */
.cta-testimonials {
  overflow: hidden;
  margin-bottom: 60px;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 72px, black calc(100% - 72px), transparent);
  mask-image: linear-gradient(to right, transparent, black 72px, black calc(100% - 72px), transparent);
}

.cta-test-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: cta-test-scroll 48s linear infinite;
}

.cta-testimonials:hover .cta-test-track {
  animation-play-state: paused;
}

@keyframes cta-test-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cta-test-card {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px 22px;
}

.cta-test-stars {
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(50, 199, 255, 0.55);
  margin: 0 0 10px;
}

.cta-test-text {
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 16px;
}

.cta-test-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.cta-test-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(50, 199, 255, 0.1);
  border: 1px solid rgba(50, 199, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  color: rgba(50, 199, 255, 0.75);
  flex-shrink: 0;
}

.cta-test-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-test-name {
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
}

.cta-test-store {
  font-size: 11px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.25);
}

/* === OUTCOME-NUM: quitar pill teal, dejar label minimalista === */
body .impact-flow .outcome-num {
  display: block !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: rgba(50, 199, 255, 0.5) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin: 0 0 14px !important;
}

/* SHOWCASE STAT PANEL */
.showcase-stat-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px;
  background: rgba(50, 199, 255, 0.04);
  border: 1px solid rgba(50, 199, 255, 0.12);
  border-radius: 18px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.showcase-stat-panel.ssp-exit {
  opacity: 0;
  transform: translateY(6px);
}

.showcase-stat-panel.ssp-enter {
  animation: ssp-in 0.32s ease forwards;
}

@keyframes ssp-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ssp-num {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(50, 199, 255, 0.9);
  margin-bottom: 6px;
}

.ssp-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.ssp-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 18px;
}

.ssp-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 14px;
}

.ssp-sub {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.32);
  font-style: italic;
}

@media (min-width: 769px) {
  body .showcase-stat-panel {
    grid-column: 3 !important;
    align-self: center !important;
  }
}

/* STAT PANEL: quitar look dashboard IA */
.ssp-num {
  font-size: 36px !important;
  font-weight: 650 !important;
  letter-spacing: -0.02em !important;
}

.ssp-label {
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

/* MOBILE: ocultar theme-picker del s-left */
@media (max-width: 768px) {
  .s-left .theme-picker { display: none !important; }
}

/* PALETTE TOGGLE en header del chat */
.sw-palette-btn {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  padding: 6px;
  border-radius: 8px;
  display: none; /* solo mobile */
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}

.sw-palette-btn:hover,
.sw-palette-btn.active {
  color: rgba(50, 199, 255, 0.9);
  background: rgba(50, 199, 255, 0.08);
}

.sw-palette-drawer {
  display: none;
  gap: 8px;
  padding: 10px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.04);
}

.sw-palette-drawer.open {
  display: flex;
}

.theme-option-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.15s;
}

.theme-option-inline.active {
  border-color: rgba(50, 199, 255, 0.5);
  color: rgba(50, 199, 255, 0.9);
  background: rgba(50, 199, 255, 0.08);
}

@media (max-width: 768px) {
  .sw-palette-btn { display: flex !important; }
}

@media (min-width: 769px) {
  .sw-palette-btn { display: none !important; }
  .sw-palette-drawer { display: none !important; }
}

/* THEME PICKER — dropdown compacto */
.theme-picker-compact {
  position: relative;
}

.tpc-title {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}

.tpc-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.tpc-trigger:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.tpc-trigger svg {
  margin-left: auto;
  color: rgba(255,255,255,0.35);
  transition: transform 0.2s;
}

.theme-picker-compact.open .tpc-trigger svg {
  transform: rotate(180deg);
}

.tpc-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tpc-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #0f1f2e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.theme-picker-compact.open .tpc-dropdown {
  display: flex;
}

/* ocultar viejo theme-picker si quedara alguno */
body .s-left .theme-picker { display: none !important; }

/* STAT PANEL: ocultar en mobile */
@media (max-width: 768px) {
  .showcase-stat-panel { display: none !important; }
}

/* STAT PANEL: número grande, sin descripción larga */
.ssp-num {
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  margin-bottom: 10px !important;
}

.ssp-label {
  font-size: 14px !important;
  line-height: 1.4 !important;
  margin-bottom: 20px !important;
  color: rgba(255,255,255,0.55) !important;
}

.ssp-desc { display: none !important; }

.ssp-divider { margin-bottom: 12px !important; }

.ssp-sub {
  font-size: 11.5px !important;
  color: rgba(255,255,255,0.28) !important;
}

/* STAT NUM: no wrap, línea única siempre */
.ssp-num {
  white-space: nowrap !important;
  font-size: 52px !important;
}

.ssp-label {
  font-size: 13px !important;
  line-height: 1.35 !important;
}

/* ============================================================
   GLASSMORPHISM — chat adopta lenguaje visual de la página
   ============================================================ */

/* 1. Ventana principal */
body .showcase-window {
  background: rgba(7, 19, 29, 0.62) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow:
    0 0 0 1px rgba(50, 199, 255, 0.07),
    0 28px 64px rgba(0, 0, 0, 0.45) !important;
}

/* 2. Área de mensajes — transparente para ver el fondo */
body .showcase-slides,
body .live-chat {
  background: transparent !important;
}

/* 3. Burbujas del bot — glass oscuro con texto blanco */
body .sc-msg.bot {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

/* 4. Input composer */
body .sw-composer {
  background: rgba(255, 255, 255, 0.05) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.38) !important;
}

body .sw-composer svg {
  color: rgba(255, 255, 255, 0.4) !important;
  stroke: rgba(255, 255, 255, 0.4) !important;
}

/* 5. Cards de producto — glass con texto blanco */
body .sc-product {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  box-shadow: none !important;
}

body .sc-product-info strong {
  color: rgba(255, 255, 255, 0.92) !important;
}

body .sc-product-info span {
  color: rgba(255, 255, 255, 0.5) !important;
}

body .sc-product-price {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 650 !important;
}

/* 6. Status y toast — adaptar texto al fondo oscuro */
body .showcase-window .sc-status {
  color: rgba(50, 199, 255, 0.85) !important;
  background: rgba(50, 199, 255, 0.08) !important;
  border-color: rgba(50, 199, 255, 0.18) !important;
}

body .showcase-window .sc-toast {
  color: rgba(22, 199, 132, 0.9) !important;
  background: rgba(22, 199, 132, 0.08) !important;
  border-color: rgba(22, 199, 132, 0.2) !important;
}

/* 7. Tracking / handoff / channels cards */
body .sc-tracking-card,
body .sc-handoff-card,
body .sc-channels-card {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.88) !important;
}

/* ============================================================
   STAT PANEL — glassmorphism + número más grande
   ============================================================ */
body .showcase-stat-panel {
  background: rgba(7, 19, 29, 0.55) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(50, 199, 255, 0.18) !important;
  box-shadow:
    0 0 0 1px rgba(50, 199, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

body .ssp-num {
  font-size: 64px !important;
  background: linear-gradient(135deg, rgba(50, 199, 255, 1), rgba(120, 230, 255, 0.85)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* ============================================================
   GLASSMORPHISM v2 — light frosted glass (Intercom/Gorgias style)
   Revierte dark glass, aplica blanco translúcido premium
   ============================================================ */

/* Ventana: blanco translúcido con blur — parece widget real flotando */
body .showcase-window {
  background: rgba(255, 255, 255, 0.93) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow:
    0 0 0 1px rgba(50, 199, 255, 0.12),
    0 32px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* Área de mensajes — transparente para ver el fondo blanco del window */
body .showcase-slides,
body .live-chat {
  background: transparent !important;
}

/* Burbujas bot — gris muy suave sobre fondo blanco */
body .sc-msg.bot {
  background: rgba(0, 0, 0, 0.06) !important;
  color: #1a2535 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Composer — barra inferior sutil */
body .sw-composer {
  background: rgba(0, 0, 0, 0.03) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.07) !important;
  color: rgba(0, 0, 0, 0.35) !important;
}

body .sw-composer svg {
  color: rgba(0, 0, 0, 0.35) !important;
  stroke: rgba(0, 0, 0, 0.35) !important;
}

/* Product cards — blancas limpias */
body .sc-product {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

body .sc-product-info strong { color: #101828 !important; }
body .sc-product-info span   { color: #667085 !important; }
body .sc-product-price       { color: #101828 !important; font-weight: 650 !important; }

/* Status / toast — vuelven a sus colores originales sobre fondo claro */
body .showcase-window .sc-status {
  color: #1f5f74 !important;
  background: rgba(105, 219, 255, 0.12) !important;
  border-color: rgba(50, 199, 255, 0.18) !important;
}

body .showcase-window .sc-toast {
  color: #0f6b48 !important;
  background: rgba(22, 199, 132, 0.14) !important;
  border-color: rgba(22, 199, 132, 0.22) !important;
}

/* Tracking / handoff / channels — vuelven a originales */
body .sc-tracking-card,
body .sc-handoff-card,
body .sc-channels-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  color: #1a2535 !important;
}

/* ============================================================
   GLASSMORPHISM v3 — dark glass transparente, burbujas visibles
   ============================================================ */

body .showcase-window {
  background: rgba(7, 19, 29, 0.58) !important;
  backdrop-filter: blur(28px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 0 0 1px rgba(50, 199, 255, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

body .showcase-slides,
body .live-chat {
  background: transparent !important;
}

/* Bot bubbles: blanco a 16% con borde claro — mucho más visibles */
body .sc-msg.bot {
  background: rgba(255, 255, 255, 0.16) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

body .sw-composer {
  background: rgba(255, 255, 255, 0.06) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

body .sw-composer svg {
  color: rgba(255, 255, 255, 0.4) !important;
  stroke: rgba(255, 255, 255, 0.4) !important;
}

/* Product cards: glass claro con texto blanco */
body .sc-product {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: none !important;
}

body .sc-product-info strong { color: rgba(255, 255, 255, 0.95) !important; }
body .sc-product-info span   { color: rgba(255, 255, 255, 0.55) !important; }
body .sc-product-price       { color: rgba(255, 255, 255, 0.9) !important; font-weight: 650 !important; }

/* Status / toast */
body .showcase-window .sc-status {
  color: rgba(50, 199, 255, 0.9) !important;
  background: rgba(50, 199, 255, 0.1) !important;
  border-color: rgba(50, 199, 255, 0.2) !important;
}

body .showcase-window .sc-toast {
  color: rgba(22, 199, 132, 0.95) !important;
  background: rgba(22, 199, 132, 0.1) !important;
  border-color: rgba(22, 199, 132, 0.22) !important;
}

body .sc-tracking-card,
body .sc-handoff-card,
body .sc-channels-card {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* ============================================================
   GLASSMORPHISM v4 — glass en el wrapper, chat blanco premium
   El glass integra la sección con la página sin romper legibilidad
   ============================================================ */

/* Wrapper de la sección: glass sutil que enmarca todo */
body .showcase-wrapper {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 26px !important;
  padding: 48px 40px !important;
}

/* Chat window: blanco premium con glow cyan que lo ata a la página */
body .showcase-window {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow:
    0 0 0 1px rgba(50, 199, 255, 0.2),
    0 0 48px rgba(50, 199, 255, 0.1),
    0 40px 100px rgba(0, 0, 0, 0.55) !important;
}

/* Mensajes — fondo blanco del window */
body .showcase-slides,
body .live-chat {
  background: transparent !important;
}

/* Bot bubbles — gris muy suave, texto dark */
body .sc-msg.bot {
  background: rgba(0, 0, 0, 0.06) !important;
  color: #1a2535 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Composer */
body .sw-composer {
  background: rgba(0, 0, 0, 0.03) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.07) !important;
  color: rgba(0, 0, 0, 0.35) !important;
}

body .sw-composer svg {
  color: rgba(0, 0, 0, 0.35) !important;
  stroke: rgba(0, 0, 0, 0.35) !important;
}

/* Product cards */
body .sc-product {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

body .sc-product-info strong { color: #101828 !important; }
body .sc-product-info span   { color: #667085 !important; }
body .sc-product-price       { color: #101828 !important; font-weight: 650 !important; }

/* Status / toast */
body .showcase-window .sc-status {
  color: #1f5f74 !important;
  background: rgba(105, 219, 255, 0.12) !important;
  border-color: rgba(50, 199, 255, 0.18) !important;
}

body .showcase-window .sc-toast {
  color: #0f6b48 !important;
  background: rgba(22, 199, 132, 0.14) !important;
  border-color: rgba(22, 199, 132, 0.22) !important;
}

body .sc-tracking-card,
body .sc-handoff-card,
body .sc-channels-card {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  color: #1a2535 !important;
}

/* ============================================================
   SHOWCASE — SECCIÓN CARD BLANCA (v5, definitivo)
   Wrapper = card blanca sobre fondo dark. Chat se integra natural.
   Overrides todos los glass anteriores via cascada.
   ============================================================ */

/* ——— Card blanca principal ——— */
body .showcase-wrapper {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 28px !important;
  padding: 52px 44px !important;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 48px 120px rgba(0, 0, 0, 0.42) !important;
  align-items: center !important;
}

/* ——— Chat window: blanco limpio, sin efectos (se funde con el wrapper) ——— */
body .showcase-window {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.1) !important;
}

/* ——— Mensajes ——— */
body .showcase-slides,
body .live-chat {
  background: transparent !important;
}

body .sc-msg.bot {
  background: #f3f4f6 !important;
  color: #111827 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ——— Composer ——— */
body .sw-composer {
  background: #f9fafb !important;
  border-top: 1px solid rgba(0, 0, 0, 0.07) !important;
  color: rgba(0, 0, 0, 0.38) !important;
}
body .sw-composer svg {
  color: rgba(0, 0, 0, 0.35) !important;
  stroke: rgba(0, 0, 0, 0.35) !important;
}

/* ——— Product cards ——— */
body .sc-product {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}
body .sc-product-info strong { color: #111827 !important; }
body .sc-product-info span   { color: #6b7280 !important; }
body .sc-product-price       { color: #111827 !important; font-weight: 650 !important; }

/* ——— Status / toast ——— */
body .showcase-window .sc-status {
  color: #0e6e8a !important;
  background: rgba(50, 199, 255, 0.1) !important;
  border-color: rgba(50, 199, 255, 0.22) !important;
}
body .showcase-window .sc-toast {
  color: #0a5c3b !important;
  background: rgba(22, 199, 132, 0.12) !important;
  border-color: rgba(22, 199, 132, 0.22) !important;
}

/* ——— Tracking / handoff / channels cards ——— */
body .sc-tracking-card,
body .sc-handoff-card,
body .sc-channels-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #111827 !important;
}

/* ——— Tabs: dark sobre fondo blanco ——— */
body .showcase-wrapper .s-tab {
  color: rgba(0, 0, 0, 0.45) !important;
  background: transparent !important;
  border-color: transparent !important;
}
body .showcase-wrapper .s-tab:hover {
  color: rgba(0, 0, 0, 0.72) !important;
  background: rgba(0, 0, 0, 0.04) !important;
}
body .showcase-wrapper .s-tab.active {
  color: #0e6e8a !important;
  background: rgba(50, 199, 255, 0.08) !important;
  border-color: rgba(50, 199, 255, 0.35) !important;
}

/* ——— Theme picker: dark mode ——— */
body .showcase-wrapper .tpc-title {
  color: rgba(0, 0, 0, 0.38) !important;
}
body .showcase-wrapper .tpc-trigger {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: rgba(0, 0, 0, 0.72) !important;
}
body .showcase-wrapper .tpc-trigger:hover {
  background: rgba(0, 0, 0, 0.07) !important;
  border-color: rgba(0, 0, 0, 0.16) !important;
}
body .showcase-wrapper .tpc-trigger svg {
  color: rgba(0, 0, 0, 0.3) !important;
}
body .showcase-wrapper .tpc-dropdown {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}
body .showcase-wrapper .theme-option {
  color: rgba(0, 0, 0, 0.65) !important;
}
body .showcase-wrapper .theme-option:hover {
  background: rgba(0, 0, 0, 0.04) !important;
}
body .showcase-wrapper .theme-option.active {
  color: #0e6e8a !important;
  background: rgba(50, 199, 255, 0.08) !important;
  border-color: rgba(50, 199, 255, 0.3) !important;
}

/* ——— Stat panel: card azul claro dentro de la card blanca ——— */
body .showcase-stat-panel {
  background: #f0f9ff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(50, 199, 255, 0.25) !important;
  box-shadow: none !important;
}
body .ssp-num {
  font-size: 64px !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #0ea5c9, #32c7ff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
body .ssp-label {
  color: #0e4f66 !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}
body .ssp-divider {
  border-color: rgba(50, 199, 255, 0.2) !important;
}
body .ssp-sub {
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 11.5px !important;
}

/* ============================================================
   SHOWCASE v6 — sin card blanca, elementos flotan sobre dark
   Revierte wrapper blanco. Chat limpio sobre fondo oscuro.
   ============================================================ */

/* Wrapper: sin fondo, sin borde — directo sobre la página */
body .showcase-wrapper {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Chat window: blanco limpio flotando sobre fondo dark */
body .showcase-window {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow:
    0 0 0 1px rgba(50, 199, 255, 0.12),
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

body .showcase-slides,
body .live-chat { background: transparent !important; }

body .sc-msg.bot {
  background: #f3f4f6 !important;
  color: #111827 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body .sw-composer {
  background: #f9fafb !important;
  border-top: 1px solid rgba(0,0,0,0.07) !important;
  color: rgba(0,0,0,0.38) !important;
}
body .sw-composer svg {
  color: rgba(0,0,0,0.35) !important;
  stroke: rgba(0,0,0,0.35) !important;
}

body .sc-product {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}
body .sc-product-info strong { color: #111827 !important; }
body .sc-product-info span   { color: #6b7280 !important; }
body .sc-product-price       { color: #111827 !important; font-weight: 650 !important; }

body .showcase-window .sc-status {
  color: #0e6e8a !important;
  background: rgba(50,199,255,0.1) !important;
  border-color: rgba(50,199,255,0.22) !important;
}
body .showcase-window .sc-toast {
  color: #0a5c3b !important;
  background: rgba(22,199,132,0.12) !important;
  border-color: rgba(22,199,132,0.22) !important;
}
body .sc-tracking-card,
body .sc-handoff-card,
body .sc-channels-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  color: #111827 !important;
}

/* Tabs: vuelven a dark-mode (texto blanco sobre fondo oscuro) */
body .showcase-wrapper .s-tab {
  color: rgba(255,255,255,0.45) !important;
  background: transparent !important;
  border-color: transparent !important;
}
body .showcase-wrapper .s-tab:hover {
  color: rgba(255,255,255,0.75) !important;
  background: rgba(255,255,255,0.05) !important;
}
body .showcase-wrapper .s-tab.active {
  color: rgba(50,199,255,0.95) !important;
  background: rgba(50,199,255,0.1) !important;
  border-color: rgba(50,199,255,0.35) !important;
}

/* Theme picker: dark-mode */
body .showcase-wrapper .tpc-title {
  color: rgba(255,255,255,0.3) !important;
}
body .showcase-wrapper .tpc-trigger {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.75) !important;
}
body .showcase-wrapper .tpc-trigger:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.18) !important;
}
body .showcase-wrapper .tpc-trigger svg { color: rgba(255,255,255,0.35) !important; }
body .showcase-wrapper .tpc-dropdown {
  background: #0f1f2e !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
}
body .showcase-wrapper .theme-option { color: rgba(255,255,255,0.65) !important; }
body .showcase-wrapper .theme-option:hover { background: rgba(255,255,255,0.06) !important; }
body .showcase-wrapper .theme-option.active {
  color: rgba(50,199,255,0.95) !important;
  background: rgba(50,199,255,0.1) !important;
  border-color: rgba(50,199,255,0.3) !important;
}

/* Stat panel: dark, original */
body .showcase-stat-panel {
  background: rgba(7,19,29,0.7) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(50,199,255,0.2) !important;
  box-shadow: none !important;
}
body .ssp-num {
  font-size: 64px !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #32c7ff, #78e6ff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
body .ssp-label {
  color: rgba(255,255,255,0.6) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}
body .ssp-divider { border-color: rgba(50,199,255,0.18) !important; }
body .ssp-sub { color: rgba(255,255,255,0.28) !important; font-size: 11.5px !important; }

/* ============================================================
   SHOWCASE v7 — left card, stat fix, sin glass residual
   ============================================================ */

/* Left column: card oscura sutil que agrupa tabs + picker */
body .s-left {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 18px !important;
  padding: 24px 18px !important;
  gap: 20px !important;
  align-self: center !important;
}

/* Stat panel: sin card, número display grande */
body .showcase-stat-panel {
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  padding: 0 8px !important;
  align-self: center !important;
  text-align: center !important;
  gap: 10px !important;
  position: relative !important;
  z-index: 2 !important;
}

body .ssp-num {
  font-size: 92px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  background: linear-gradient(135deg, #32c7ff 0%, #7ee8ff 60%, #b2f0ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  letter-spacing: -0.04em !important;
  font-variant-numeric: tabular-nums !important;
  line-height: 1 !important;
  margin-bottom: 10px !important;
}

body .ssp-label {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
  margin-bottom: 0 !important;
}

body .ssp-divider {
  border-color: rgba(50, 199, 255, 0.15) !important;
  margin-bottom: 12px !important;
}

body .ssp-sub {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 11px !important;
}

/* ============================================================
   STORE CHAT — rich cards (sc-product, sc-tracking-card)
   Hace que el store chat use los mismos componentes del showcase
   ============================================================ */

/* Establece el color del botón "Agregar" en el store widget */
.store-chat-widget {
  --chat-user-bg: #32c7ff;
  --chat-user-text: #062134;
  --chat-accent-shadow: rgba(50,199,255,0.3);
}

/* sc-products dentro del store chat body */
.store-chat-body .sc-products {
  width: 100%;
  align-self: stretch;
}

/* sc-product más compacto para el ancho del widget */
.store-chat-body .sc-product {
  grid-template-columns: 42px 1fr auto;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 14px;
}

.store-chat-body .sc-product-thumb {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.store-chat-body .sc-product-thumb svg {
  width: 18px;
  height: 18px;
}

.store-chat-body .sc-product-info strong { font-size: 12.5px; }
.store-chat-body .sc-product-info span   { font-size: 11px; }
.store-chat-body .sc-product-side b      { font-size: 12px; }

.store-chat-body .sc-product-side button {
  font-size: 10.5px;
  padding: 0 9px;
  min-height: 26px;
}

/* sc-tracking-card dentro del store chat */
.store-chat-body .sc-tracking-card {
  width: 100%;
  font-size: 12px;
  padding: 12px 13px;
  border-radius: 14px;
}

.store-chat-body .sc-tracking-card span { font-size: 10.5px; }
.store-chat-body .sc-tracking-card strong { font-size: 12.5px; }
.store-chat-body .sc-tracking-card p { font-size: 11.5px; }

/* ============================================================
   MULTI-FIX PASS
   1. Border-trail en ejemplos (ops-system)
   2. Quitar glow ring del showcase-window
   3. Padding testimonials vs FAQ
   4. Líneas iluminadas + spotlight en ticker
   ============================================================ */

/* 1 — EJEMPLOS: border-trail igual que FAQ */
body .ops-system {
  position: relative !important;
}

body .ops-system::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: conic-gradient(
    from var(--shine-angle, 0deg),
    transparent 0 66%,
    rgba(94, 220, 255, 0.04) 70%,
    rgba(94, 220, 255, 0.96) 76%,
    rgba(39, 224, 213, 0.48) 80%,
    transparent 86% 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: border-trail 7s linear infinite;
  z-index: 2;
}

/* 2 — SHOWCASE WINDOW: sin cyan ring, solo shadow natural */
body .showcase-window {
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

/* 3 — CTA FINAL: menos gap con FAQ */
body .cta-final {
  padding-top: 64px !important;
}

@media (min-width: 769px) {
  body .cta-final { padding-top: 72px !important; }
}

/* 4 — TICKER: líneas iluminadas top/bottom + spotlight central */
.cta-testimonials {
  /* Líneas glow top y bottom, spotlight central */
  --ticker-line: linear-gradient(
    90deg, transparent 0%, rgba(50,199,255,0.35) 28%, rgba(50,199,255,0.35) 72%, transparent 100%
  );
}

.cta-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    var(--ticker-line) top / 100% 1px no-repeat,
    var(--ticker-line) bottom / 100% 1px no-repeat,
    radial-gradient(ellipse 55% 100% at 50% 50%, rgba(50,199,255,0.05) 0%, transparent 68%);
  pointer-events: none;
  z-index: 2;
}

/* Cards que pasan por el centro reciben el glow via :global animation */
@keyframes card-center-glow {
  0%, 100% { box-shadow: none; border-color: rgba(255,255,255,0.07); }
  50%       { box-shadow: 0 0 24px rgba(50,199,255,0.16); border-color: rgba(50,199,255,0.22); }
}

.cta-test-track:not(:hover) .cta-test-card:nth-child(odd) {
  animation: card-center-glow 6s ease-in-out infinite;
  animation-delay: 0s;
}
.cta-test-track:not(:hover) .cta-test-card:nth-child(even) {
  animation: card-center-glow 6s ease-in-out infinite;
  animation-delay: 3s;
}

/* ============================================================
   FIX v10
   1. Quitar border-trail del showcase-wrapper (glow residual)
   2. Quitar borde visible del s-left
   3. Reducir gap entre FAQ y testimonios
   ============================================================ */

/* Showcase wrapper: sin border-trail (ya tiene el glow el v6+) */
body .showcase-wrapper::before {
  display: none !important;
}

/* Left column: sin borde visible, solo fondo sutil */
body .s-left {
  border: none !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

/* Testimonios: acercar al FAQ */
body .cta-final {
  padding-top: 24px !important;
}

@media (min-width: 769px) {
  body .cta-final {
    padding-top: 32px !important;
  }
}

/* ============================================================
   TICKER v11 — spotlight limpio, separadores entre cards
   Reemplaza el ::before con líneas que se sobreponían
   ============================================================ */

/* Resetear el ::before previo y reemplazarlo con spotlight puro */
.cta-testimonials::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  /* Solo spotlight radial central — sin líneas top/bottom */
  background: radial-gradient(
    ellipse 420px 120% at 50% 50%,
    rgba(50, 199, 255, 0.07) 0%,
    rgba(50, 199, 255, 0.03) 45%,
    transparent 72%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  /* Sin top/bottom border lines */
}

/* Quitar la animación nth-child (no coincidía con el centro real) */
.cta-test-track:not(:hover) .cta-test-card:nth-child(odd),
.cta-test-track:not(:hover) .cta-test-card:nth-child(even) {
  animation: none !important;
  box-shadow: none !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
}

/* Separador vertical entre cards — línea fina solo en la zona central */
.cta-test-card {
  position: relative;
}

.cta-test-card::after {
  content: '';
  position: absolute;
  right: -8px; /* en el centro del gap de 14px */
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(50, 199, 255, 0.18) 35%,
    rgba(50, 199, 255, 0.18) 65%,
    transparent
  );
  pointer-events: none;
}

/* Líneas horizontales de borde de la zona del ticker */
.cta-testimonials {
  border-top: 1px solid rgba(50, 199, 255, 0.15);
  border-bottom: 1px solid rgba(50, 199, 255, 0.15);
}

/* ============================================================
   v12 — Avatares con gradiente por persona + chat mobile +15%
   ============================================================ */

/* Avatares: gradiente único por persona (ciclo de 7) */
.cta-test-avatar {
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  border: none !important;
  width: 34px !important;
  height: 34px !important;
}

/* Camila — violeta */
.cta-test-track .cta-test-card:nth-child(7n+1) .cta-test-avatar {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
}
/* Valentina — rosa/fucsia */
.cta-test-track .cta-test-card:nth-child(7n+2) .cta-test-avatar {
  background: linear-gradient(135deg, #f093fb, #c850c0) !important;
}
/* Martín — verde agua */
.cta-test-track .cta-test-card:nth-child(7n+3) .cta-test-avatar {
  background: linear-gradient(135deg, #0ed2f7, #0a9f8c) !important;
}
/* Diego — naranja */
.cta-test-track .cta-test-card:nth-child(7n+4) .cta-test-avatar {
  background: linear-gradient(135deg, #f7971e, #e06c00) !important;
}
/* Nicolás — verde */
.cta-test-track .cta-test-card:nth-child(7n+5) .cta-test-avatar {
  background: linear-gradient(135deg, #11998e, #38ef7d) !important;
}
/* Sofía — rojo coral */
.cta-test-track .cta-test-card:nth-child(7n+6) .cta-test-avatar {
  background: linear-gradient(135deg, #eb3349, #f45c43) !important;
}
/* Ana — azul */
.cta-test-track .cta-test-card:nth-child(7n+7) .cta-test-avatar {
  background: linear-gradient(135deg, #4facfe, #00c9ff) !important;
}

/* Chat mobile: +15% en altura del body */
@media (max-width: 768px) {
  #storeChatBody {
    min-height: 124px !important;
    max-height: 156px !important;
  }
}

/* ============================================================
   SHOWCASE MOBILE v13 — tabs horizontales, chat primero
   ============================================================ */

@media (max-width: 768px) {

  /* Showcase wrapper: single column, chat arriba, tabs abajo */
  body .showcase-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  /* Chat al tope */
  body .showcase-window {
    order: 1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    align-self: stretch !important;
    border-radius: 20px 20px 0 0 !important;
    border-bottom: none !important;
  }

  /* Left column: sin card, va debajo del chat */
  body .s-left {
    order: 2 !important;
    width: 100% !important;
    align-self: stretch !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    background: rgba(255,255,255,0.03) !important;
    border: none !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 0 0 20px 20px !important;
    padding: 12px 16px 16px !important;
    gap: 0 !important;
  }

  /* Ocultar dropdown de tema en mobile (ya está en el botón del header) */
  body .s-left .theme-picker-compact {
    display: none !important;
  }

  /* Tabs: fila horizontal con scroll */
  body .s-tabs {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    gap: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }
  body .s-tabs::-webkit-scrollbar { display: none !important; }

  /* Tab pill compacto */
  body .s-tab {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
    border-radius: 999px !important;
    gap: 6px !important;
    justify-content: center !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
  }

  body .s-tab svg {
    width: 13px !important;
    height: 13px !important;
  }

  body .showcase-wrapper .s-tab.active {
    background: rgba(50,199,255,0.12) !important;
    border-color: rgba(50,199,255,0.4) !important;
    color: rgba(50,199,255,0.95) !important;
  }

  /* Stat panel: oculto en mobile (ya estaba) */
  body .showcase-stat-panel { display: none !important; }

  /* Palette drawer: flota sobre los mensajes sin empujar el chat */
  body .showcase-window {
    position: relative !important;
  }
  body .sw-palette-drawer {
    position: absolute !important;
    top: 76px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10) !important;
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
  }
  /* Botones del drawer: texto oscuro sobre fondo blanco */
  body .sw-palette-drawer .theme-option-inline {
    color: rgba(30,40,55,0.75) !important;
    background: rgba(0,0,0,0.04) !important;
    border-color: rgba(0,0,0,0.1) !important;
  }
  body .sw-palette-drawer .theme-option-inline.active {
    color: rgba(50,199,255,0.95) !important;
    background: rgba(50,199,255,0.08) !important;
    border-color: rgba(50,199,255,0.45) !important;
  }
}

/* ============================================================
   SECTION PADDING — uniformización final
   Resetea todos los overrides acumulados a 88px consistente
   ============================================================ */
body .outcomes,
body .how,
body .chat-showcase,
body .store-preview,
body .pricing,
body .faq {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}

body .cta-final {
  padding-top: 80px !important;
  padding-bottom: 96px !important;
}

@media (max-width: 768px) {
  body .outcomes,
  body .how,
  body .chat-showcase,
  body .store-preview,
  body .pricing,
  body .faq {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  body .cta-final {
    padding-top: 56px !important;
    padding-bottom: 72px !important;
  }
}

/* ============================================================
   MARQUEE 3 FILAS (estilo Escalify)
   ============================================================ */
.ctr-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 80px;
  margin-bottom: 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 28px, black calc(100% - 28px), transparent);
  mask-image: linear-gradient(to right, transparent, black 28px, black calc(100% - 28px), transparent);
}

.ctr-row {
  overflow: hidden;
}

.ctr-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
}

.ctr-left .ctr-track {
  animation: ctr-scroll-left 38s linear infinite;
}

.ctr-right .ctr-track {
  animation: ctr-scroll-right 44s linear infinite;
}

.ctr-slow .ctr-track {
  animation-duration: 54s;
}

.ctr-row:hover .ctr-track {
  animation-play-state: paused;
}

@keyframes ctr-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes ctr-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Card oscura sobre fondo oscuro */
.ctr-card {
  flex-shrink: 0;
  width: 360px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

/*
  4 tipos  (base 360px)
  A — compacta  300px / 140px
  B — mediana   380px / 170px  (ligeramente más ancha que base)
  C — ancha     440px / 160px
  D — alta      340px / 230px
*/
.ctr-card:nth-child(2),
.ctr-card:nth-child(6),
.ctr-card:nth-child(14) { width: 300px; min-height: 140px; }

.ctr-card:nth-child(3),
.ctr-card:nth-child(8),
.ctr-card:nth-child(13) { width: 440px; min-height: 160px; }

.ctr-card:nth-child(5),
.ctr-card:nth-child(10),
.ctr-card:nth-child(16) { width: 340px; min-height: 230px; }

.ctr-card:nth-child(7),
.ctr-card:nth-child(12) { width: 380px; min-height: 170px; }

.ctr-stars {
  font-size: 13px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin: 0 0 10px;
}

.ctr-text {
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 16px;
  flex: 1;
}

.ctr-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.ctr-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #32c7ff, #18b6ed);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ctr-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.ctr-store {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 1px;
}

/* ============================================================
   S-TABS — label + mobile scroll horizontal
   ============================================================ */
.s-tabs-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 0 0 10px;
}

@media (max-width: 600px) {
  .s-tabs-label {
    text-align: left;
    padding-left: 2px;
  }

  .s-tabs-wrapper {
    position: relative;
  }

  .s-tabs-wrapper::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 48px;
    background: linear-gradient(to right, transparent, var(--showcase-bg, #07131c));
    pointer-events: none;
    border-radius: 0 100px 100px 0;
  }

  .s-tabs {
    display: flex !important;
    overflow-x: auto !important;
    grid-template-columns: none !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    gap: 8px !important;
  }

  .s-tabs::-webkit-scrollbar { display: none; }

  .s-tab {
    flex-shrink: 0 !important;
    scroll-snap-align: start;
    white-space: nowrap !important;
    min-height: 38px !important;
    padding: 8px 14px !important;
    font-size: 12.5px !important;
  }

  .s-tab[data-flow="general"] {
    grid-column: unset !important;
  }
}

@media (max-width: 600px) {
  .ctr-wrap {
    padding-top: 20px !important;
    margin-bottom: 0 !important;
  }
  .cta-box {
    padding-top: 80px !important;
  }
  .ctr-card {
    padding: 16px 18px !important;
    min-height: 0 !important;
  }
  .ctr-card:nth-child(n) {
    min-height: 0 !important;
  }
  .ctr-text {
    font-size: 12.5px !important;
    margin-bottom: 12px !important;
  }
  .ctr-stars {
    font-size: 11px !important;
    margin-bottom: 8px !important;
  }
  .ctr-avatar {
    width: 26px !important;
    height: 26px !important;
    font-size: 9px !important;
  }
  .ctr-name { font-size: 11.5px !important; }
  .ctr-store { font-size: 10.5px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .ctr-track { animation: none !important; }
}
