:root {
      --bg-pearl: #F6F7FB;
      --bg-card: #FFFFFF;
      --ink: #111322;
      --ink-soft: #5C6178;
      --ink-faint: #9DA1B4;
      --coral: #15161F;
      --coral-2: #33364A;
      --peach: #D9DAE2;
      --peach-soft: #F1F1F4;
      --green: #16A34A;
      --pepsi-blue-dark: #003184;
      /* darker Pepsi-blue, ~11.88:1 contrast vs white text */
      --border: rgba(17, 19, 34, 0.08);
      --border-soft: rgba(17, 19, 34, 0.05);
      --glass: rgba(255, 255, 255, 0.72);
      --glass-strong: rgba(255, 255, 255, 0.88);
      --shadow-sm: 0 4px 12px rgba(23, 23, 42, 0.04);
      --shadow-md: 0 20px 40px rgba(23, 23, 42, 0.06);
      --shadow-lg: 0 30px 70px rgba(23, 23, 42, 0.10);
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg-pearl);
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      line-height: 1.5;
    }

    body.menu-open {
      overflow: hidden;
    }

    ::selection {
      background: var(--peach);
      color: var(--ink);
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Instrument Sans', sans-serif;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.08;
      color: var(--ink);
    }

    p {
      color: var(--ink-soft);
      font-weight: 400;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    :focus-visible {
      outline: 2px solid var(--coral);
      outline-offset: 3px;
      border-radius: 8px;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 16px;
      box-sizing: border-box;
    }

    @media (min-width: 768px) {
      .wrap {
        padding: 0 20px;
      }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: clamp(0.66rem, 2.7vw, 0.72rem);
      font-weight: 750;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--coral);
      background: var(--peach-soft);
      border: 1px solid rgba(17, 19, 34, 0.14);
      padding: 5px 12px;
      border-radius: 100px;
      white-space: nowrap;
      max-width: 95vw;
    }

    .eyebrow .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--coral);
      animation: pulse 2s infinite;
      flex-shrink: 0;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.35;
      }
    }

    .grad-text {
      background: linear-gradient(100deg, var(--coral) 10%, var(--coral-2) 55%, #53566E 90%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* ================= Ambient mesh background ================= */
    .mesh-orb {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .mesh-orb span {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.5;
    }

    .mesh-orb .o1 {
      width: 380px;
      height: 380px;
      top: -140px;
      left: -120px;
      background: radial-gradient(circle at 30% 30%, #C7C9D6, transparent 70%);
      animation: drift1 26s ease-in-out infinite;
    }

    .mesh-orb .o2 {
      width: 340px;
      height: 340px;
      top: 80px;
      right: -160px;
      background: radial-gradient(circle at 60% 40%, #E4E5EC, transparent 70%);
      animation: drift2 32s ease-in-out infinite;
    }

    .mesh-orb .o3 {
      width: 320px;
      height: 320px;
      bottom: -160px;
      left: 20%;
      background: radial-gradient(circle at 50% 50%, #111322, transparent 72%);
      opacity: 0.10;
      animation: drift3 38s ease-in-out infinite;
    }

    @keyframes drift1 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(40px, 50px) scale(1.08);
      }
    }

    @keyframes drift2 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(-40px, 30px) scale(0.94);
      }
    }

    @keyframes drift3 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(30px, -40px) scale(1.1);
      }
    }

    @media (min-width:900px) {
      .mesh-orb .o1 {
        width: 640px;
        height: 640px;
        top: -220px;
        left: -160px;
        filter: blur(90px);
      }

      .mesh-orb .o2 {
        width: 560px;
        height: 560px;
        top: 120px;
        right: -220px;
        filter: blur(90px);
      }

      .mesh-orb .o3 {
        width: 480px;
        height: 480px;
        bottom: -200px;
        left: 30%;
        filter: blur(90px);
      }
    }

    @media (prefers-reduced-motion:reduce) {
      .mesh-orb span {
        animation: none;
      }
    }

    /* ================= Fine dot-grid + grain texture ================= */
    /* Subtle product-grid motif (nods to the catalog itself) + a whisper of
     film grain for depth - both pure CSS/SVG, no image requests. */
    .bg-texture {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .bg-texture::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(17, 19, 34, 0.09) 1px, transparent 1.2px);
      background-size: 26px 26px;
      -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, #000 0%, transparent 78%);
      mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, #000 0%, transparent 78%);
      opacity: 0.55;
    }

    .bg-texture::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
      opacity: 0.6;
      mix-blend-mode: overlay;
    }

    @media (min-width:900px) {
      .bg-texture::before {
        background-size: 32px 32px;
      }
    }

    /* ================= Floating commerce-icon backdrop ================= */
    /* Faint cart / bag / tag / box motifs drifting behind the content -
     a quiet nod to the product category, never competing with foreground text. */
    .ecom-icons {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .ecom-icons .ei {
      position: absolute;
      fill: none;
      stroke: var(--coral-2);
      stroke-width: 1.3;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0.1;
    }

    /* Laid out on a loose 3x3 grid (corners + edges + center) so nothing bunches up */
    .ei-1 {
      width: 40px;
      top: 9%;
      left: 7%;
      animation: iconFloat1 24s ease-in-out infinite;
    }

    /* top-left */
    .ei-9 {
      width: 26px;
      top: 7%;
      left: 47%;
      opacity: 0.08;
      animation: iconFloat3 23s ease-in-out infinite;
      animation-delay: 3.4s;
    }

    /* top-center */
    .ei-2 {
      width: 34px;
      top: 13%;
      right: 8%;
      opacity: 0.08;
      animation: iconFloat2 27s ease-in-out infinite;
      animation-delay: 1.2s;
    }

    /* top-right */
    .ei-3 {
      width: 26px;
      top: 47%;
      left: 4%;
      animation: iconFloat3 21s ease-in-out infinite;
      animation-delay: 2s;
    }

    /* mid-left */
    .ei-6 {
      width: 30px;
      top: 48%;
      left: 48%;
      display: none;
      opacity: 0.06;
      animation: iconFloat1 32s ease-in-out infinite;
      animation-delay: 1.6s;
    }

    /* dead-center, faint */
    .ei-7 {
      width: 22px;
      top: 58%;
      right: 5%;
      opacity: 0.09;
      animation: iconFloat1 19s ease-in-out infinite;
      animation-delay: 2.4s;
    }

    /* mid-right */
    .ei-5 {
      width: 28px;
      bottom: 10%;
      left: 11%;
      display: none;
      animation: iconFloat2 25s ease-in-out infinite;
      animation-delay: 0.6s;
    }

    /* bottom-left */
    .ei-8 {
      width: 26px;
      bottom: 7%;
      left: 47%;
      display: none;
      opacity: 0.08;
      animation: iconFloat2 26s ease-in-out infinite;
      animation-delay: 0.4s;
    }

    /* bottom-center */
    .ei-4 {
      width: 42px;
      bottom: 9%;
      right: 7%;
      opacity: 0.07;
      animation: iconFloat1 30s ease-in-out infinite;
      animation-delay: 3s;
    }

    /* bottom-right */
    @media (min-width:900px) {

      .ei-5,
      .ei-6,
      .ei-8 {
        display: block;
      }

      .ei-1 {
        width: 54px;
      }

      .ei-2 {
        width: 46px;
      }

      .ei-3 {
        width: 36px;
      }

      .ei-4 {
        width: 58px;
      }

      .ei-7 {
        width: 30px;
      }

      .ei-5 {
        width: 34px;
      }

      .ei-6 {
        width: 40px;
      }

      .ei-8 {
        width: 34px;
      }

      .ei-9 {
        width: 32px;
      }
    }

    @keyframes iconFloat1 {

      0%,
      100% {
        transform: translateY(0) rotate(-4deg);
      }

      50% {
        transform: translateY(-18px) rotate(3deg);
      }
    }

    @keyframes iconFloat2 {

      0%,
      100% {
        transform: translateY(0) rotate(3deg);
      }

      50% {
        transform: translateY(16px) rotate(-3deg);
      }
    }

    @keyframes iconFloat3 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(10px, -14px) rotate(5deg);
      }
    }

    @media (prefers-reduced-motion:reduce) {
      .ecom-icons .ei {
        animation: none;
      }
    }

    main,
    header,
    footer {
      position: relative;
      z-index: 1;
    }

    /* ================= Nav ================= */
    nav {
      position: sticky;
      top: 0;
      z-index: 2100;
      display: flex;
      justify-content: center;
      padding: 14px 14px 0;
    }

    nav::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 65px;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(to bottom, var(--bg-pearl) 0%, var(--bg-pearl) 55%, rgba(246, 247, 251, 0) 100%);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    }

    .nav-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1180px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 10px 10px 16px;
      background: var(--glass);
      backdrop-filter: blur(22px) saturate(160%);
      -webkit-backdrop-filter: blur(22px) saturate(160%);
      border: 1px solid var(--border);
      border-radius: 100px;
      box-shadow: var(--shadow-sm);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .brand-mark {
      height: 28px;
      width: auto;
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }

    .brand-mark img {
      height: 100%;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .brand-text-lockup {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      line-height: 1;
      width: fit-content;
    }

    .brand-name {
      font-family: 'Instrument Sans', sans-serif;
      font-weight: 850;
      font-size: 1.05rem;
      color: #0f172a;
      letter-spacing: -0.025em;
      line-height: 1;
      display: block;
      white-space: nowrap;
    }

    .brand-sub {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 0.5rem;
      font-weight: 600;
      color: #334155;
      text-transform: uppercase;
      line-height: 1;
      margin-top: 2.5px;
      letter-spacing: 0;
    }

    .brand-sub span {
      display: inline-block;
      line-height: 1;
      text-align: center;
    }

    .foot-brand .brand-mark {
      height: 30px;
    }

    .nav-links {
      display: none;
      align-items: center;
      gap: 28px;
    }

    .nav-links a {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--ink-soft);
      transition: color 0.25s var(--ease-soft);
    }

    .nav-links a:hover {
      color: var(--ink);
    }

    .nav-cta {
      display: none;
      align-items: center;
      gap: 10px;
    }

    .nav-ghost {
      font-size: 0.86rem;
      font-weight: 600;
      color: var(--ink-soft);
      padding: 9px 16px;
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--border);
      flex-shrink: 0;
      cursor: pointer;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      padding: 0;
      position: relative;
      z-index: 2200;
    }

    section[id],
    .hero-pyramid-stage[id] {
      scroll-margin-top: 84px;
    }

    .hamburger span {
      width: 16px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile nav overlay */
    .nav-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(250, 249, 252, 0.92);
      backdrop-filter: blur(26px) saturate(160%);
      -webkit-backdrop-filter: blur(26px) saturate(160%);
      display: flex;
      flex-direction: column;
      padding: 98px 28px calc(28px + env(safe-area-inset-bottom, 0px));
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-soft), visibility 0.4s;
    }

    .nav-overlay.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-overlay-links {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: auto;
    }

    .nav-overlay-links a {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--ink);
      padding: 10px 2px;
      border-bottom: 1px solid var(--border-soft);
    }

    .nav-overlay-foot {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 30px;
      padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
      flex-shrink: 0;
    }

    /* ================= Buttons ================= */
    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 13px 24px;
      border-radius: 100px;
      transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.3s var(--ease-soft);
      white-space: nowrap;
      width: 100%;
    }

    .btn:active {
      transform: scale(0.97);
    }

    @media (min-width:640px) {
      .btn {
        width: auto;
      }
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(155deg, var(--coral) 0%, #24263A 60%, var(--coral-2) 100%);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 -6px 14px rgba(0, 0, 0, 0.12) inset, 0 14px 30px -8px rgba(17, 19, 34, 0.55);
    }

    .btn-primary:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 -6px 14px rgba(0, 0, 0, 0.14) inset, 0 20px 38px -8px rgba(17, 19, 34, 0.62);
    }

    .btn-glass {
      color: var(--ink);
      background: var(--glass-strong);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(11, 13, 20, 0.09);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, var(--shadow-sm);
    }

    .btn-glass:hover {
      transform: translateY(-2px) scale(1.015);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, var(--shadow-md);
    }

    .btn-sm {
      padding: 9px 16px;
      font-size: 0.82rem;
      width: auto;
    }

    /* ================= Hero (Mobile-First) ================= */
    .hero {
      padding: 40px 0 18px;
      text-align: center;
      overflow-x: clip;
    }

    .hero .wrap {
      padding: 0 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: clamp(1.48rem, 5.8vw, 2.35rem);
      letter-spacing: -0.035em;
      max-width: 920px;
      margin: 16px auto 14px;
      line-height: 1.16;
      text-align: center;
      width: 100%;
    }

    .hero-line1 {
      display: block;
      text-align: center;
      white-space: nowrap;
      width: 100%;
    }

    .hero-line2 {
      display: block;
      text-align: center;
      white-space: nowrap;
      width: 100%;
    }

    .hero-line2 .grad-text {
      display: inline-block;
    }

    .hero p.lede {
      max-width: 480px;
      margin: 0 auto 10px;
      font-size: clamp(0.9rem, 3.4vw, 1.02rem);
      line-height: 1.52;
      color: var(--ink-soft);
      text-align: center;
    }

    /* ================= Clean Hero Metric & Action Card ================= */
    .hero-counters-strip {
      display: inline-flex;
      flex-direction: column;
      align-items: stretch;
      margin: 6px auto 4px;
      padding: 0;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 18px;
      box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
      max-width: 100%;
      text-decoration: none !important;
      color: inherit;
      cursor: pointer;
      overflow: hidden;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .hero-counters-strip:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
      border-color: rgba(15, 23, 42, 0.16);
    }

    .hcs-top-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 9px 18px 8px;
    }

    .hcs-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      line-height: 1.15;
    }

    .hcs-num {
      font-size: 0.96rem;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: -0.02em;
    }

    .hcs-label {
      font-size: 0.62rem;
      font-weight: 600;
      color: #64748b;
      white-space: nowrap;
      margin-top: 2px;
      letter-spacing: -0.01em;
    }

    .hcs-sep {
      width: 1px;
      height: 20px;
      background: #e2e8f0;
      flex-shrink: 0;
    }

    .hcs-divider {
      width: 100%;
      height: 1px;
      background: rgba(15, 23, 42, 0.07);
    }

    .hcs-cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 6px 14px 7px;
      background: rgba(248, 250, 252, 0.7);
      transition: background 0.2s ease;
    }

    .hero-counters-strip:hover .hcs-cta-row {
      background: rgba(241, 245, 249, 0.88);
    }

    .hcs-cta-text {
      font-size: 0.76rem;
      font-weight: 700;
      color: #0f172a;
      letter-spacing: -0.01em;
      transition: color 0.2s ease;
    }

    .hero-counters-strip:hover .hcs-cta-text {
      color: #0f172a;
    }

    .hcs-cta-arrow {
      font-size: 0.82rem;
      font-weight: 700;
      color: #0f172a;
      display: inline-block;
      transition: transform 0.2s ease;
    }

    .hero-counters-strip:hover .hcs-cta-arrow {
      transform: translateX(3px);
      color: #0f172a;
    }

    @media (max-width: 640px) {
      .hero-counters-strip {
        margin: 6px auto 2px;
        border-radius: 14px;
      }

      .hcs-top-row {
        gap: 8px;
        padding: 7px 12px 6px;
      }

      .hcs-num {
        font-size: 0.86rem;
      }

      .hcs-label {
        font-size: 0.56rem;
      }

      .hcs-sep {
        height: 16px;
      }

      .hcs-cta-row {
        padding: 5px 10px 6px;
      }

      .hcs-cta-text {
        font-size: 0.70rem;
      }

      .hcs-cta-arrow {
        font-size: 0.76rem;
      }
    }

    /* ================= Premium High-Performance Hero Entrance Animation ================= */
    @keyframes heroSmoothIn {
      0% {
        opacity: 0;
        transform: translateY(16px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-anim {
      opacity: 0;
      animation: heroSmoothIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      will-change: transform, opacity;
    }

    .hero-d1 {
      animation-delay: 0.05s;
    }

    .hero-d2 {
      animation-delay: 0.14s;
    }

    .hero-d3 {
      animation-delay: 0.22s;
    }

    .hero-d4 {
      animation-delay: 0.30s;
    }

    .hero-d5 {
      animation-delay: 0.38s;
    }

    .hero-d6 {
      animation-delay: 0.46s;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-anim {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        will-change: auto !important;
      }
    }

    .pulse-green-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #16a34a;
      border-radius: 50%;
      margin-right: 6px;
      vertical-align: middle;
      box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
      animation: pulseLive 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    }

    @keyframes pulseLive {
      0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
      }

      70% {
        box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
      }
    }

    @media (min-width:640px) {
      .hero {
        padding: 56px 20px 20px;
      }

      .hero h1 {
        font-size: clamp(2.3rem, 5.2vw, 4.4rem);
        margin: 20px auto 16px;
        line-height: 1.12;
      }

      .hero p.lede {
        font-size: 1.02rem;
        margin: 0 auto 20px;
        max-width: 520px;
      }
    }

    /* Floating isometric dashboard card */
    .hero-visual {
      position: relative;
      max-width: 980px;
      margin: 44px auto 0;
      perspective: 1800px;
    }

    .dash-card {
      position: relative;
      background: var(--glass-strong);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 20px;
      box-shadow: var(--shadow-lg), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
      overflow: hidden;
      transform: none;
      transition: transform 0.6s var(--ease);
    }

    @media (min-width:900px) {
      .dash-card {
        transform: rotateX(7deg) rotateY(-9deg) rotateZ(1deg);
        transform-style: preserve-3d;
        animation: float 7s ease-in-out infinite;
      }

      .hero-visual:hover .dash-card {
        transform: rotateX(3deg) rotateY(-4deg) rotateZ(0.5deg);
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: rotateX(7deg) rotateY(-9deg) rotateZ(1deg) translateY(0);
      }

      50% {
        transform: rotateX(7deg) rotateY(-9deg) rotateZ(1deg) translateY(-16px);
      }
    }

    @media (prefers-reduced-motion:reduce) {
      .dash-card {
        animation: none;
      }
    }

    .dash-topbar {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-soft);
      background: rgba(255, 255, 255, 0.5);
    }

    .dash-topbar .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .dash-topbar .dot:nth-child(1) {
      background: #33364A;
    }

    .dash-topbar .dot:nth-child(2) {
      background: #D9DAE2;
    }

    .dash-topbar .dot:nth-child(3) {
      background: #E4E7EC;
    }

    .dash-topbar .url {
      margin-left: 10px;
      font-size: 0.68rem;
      color: var(--ink-faint);
      font-weight: 600;
      background: #fff;
      border: 1px solid var(--border-soft);
      padding: 4px 12px;
      border-radius: 100px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .dash-body {
      display: grid;
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .dash-side {
      display: none;
      padding: 22px 16px;
      border-right: 1px solid var(--border-soft);
    }

    .dash-side .side-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 10px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ink-soft);
      margin-bottom: 4px;
    }

    .dash-side .side-item.active {
      background: var(--peach-soft);
      color: var(--coral);
    }

    .dash-side .side-item .ico {
      width: 16px;
      height: 16px;
      border-radius: 5px;
      background: currentColor;
      opacity: 0.25;
    }

    @media (min-width:768px) {
      .dash-body {
        grid-template-columns: 210px 1fr;
      }

      .dash-side {
        display: block;
      }
    }

    .dash-main {
      padding: 18px 16px;
    }

    .dash-main .row-top {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .dash-main h4 {
      font-size: 0.95rem;
    }

    .dash-main .filter-pill {
      display: flex;
      gap: 6px;
      background: #fff;
      border: 1px solid var(--border-soft);
      padding: 6px;
      border-radius: 100px;
      box-shadow: var(--shadow-sm);
    }

    .dash-main .filter-pill span {
      font-size: 0.68rem;
      font-weight: 700;
      padding: 5px 11px;
      border-radius: 100px;
      color: var(--ink-faint);
    }

    .dash-main .filter-pill span.on {
      background: var(--ink);
      color: #fff;
    }

    .price-slider {
      background: #fff;
      border: 1px solid var(--border-soft);
      border-radius: 16px;
      padding: 14px 16px;
      margin-bottom: 16px;
      box-shadow: var(--shadow-sm);
    }

    .price-slider .lbl {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 4px;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--ink-faint);
      margin-bottom: 12px;
    }

    .price-slider .track {
      position: relative;
      height: 4px;
      background: #EDEFF3;
      border-radius: 4px;
    }

    .price-slider .fill {
      position: absolute;
      left: 22%;
      right: 30%;
      top: 0;
      bottom: 0;
      background: linear-gradient(90deg, var(--coral), var(--coral-2));
      border-radius: 4px;
    }

    .price-slider .thumb {
      position: absolute;
      top: 50%;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid var(--coral);
      transform: translate(-50%, -50%);
      box-shadow: 0 3px 8px rgba(17, 19, 34, 0.35);
    }

    .price-slider .thumb.a {
      left: 22%;
    }

    .price-slider .thumb.b {
      left: 70%;
    }

    .prod-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px;
      border: 1px solid var(--border-soft);
      border-radius: 14px;
      margin-bottom: 9px;
      background: #fff;
    }

    .prod-row .swatch {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      flex-shrink: 0;
    }

    .prod-row .meta {
      flex: 1;
      min-width: 0;
    }

    .prod-row .meta .t {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--ink);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .prod-row .meta .s {
      font-size: 0.7rem;
      color: var(--ink-faint);
    }

    .prod-row .price {
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--ink);
      flex-shrink: 0;
    }

    /* ================= Unified Hero Proof Section (Reviews + Authority Badges) ================= */
    .hero-unified-proof {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      margin: 32px auto 0;
      max-width: 980px;
      width: 100%;
      box-shadow: 0 8px 30px -6px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      position: relative;
      z-index: 5;
    }

    .hero-unified-proof:hover {
      box-shadow: 0 14px 40px -8px rgba(15, 23, 42, 0.10);
    }

    .hup-reviews-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 24px;
      text-decoration: none;
      background: rgba(248, 250, 252, 0.7);
      transition: background 0.2s ease;
      color: inherit;
    }

    .hup-reviews-bar:hover {
      background: rgba(241, 245, 249, 0.95);
    }

    .hup-rev-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .tb-title {
      font-size: 0.92rem;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    .tb-score-pill {
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--ink);
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      padding: 2px 7px;
      border-radius: 6px;
      line-height: 1.2;
    }

    .tb-stars {
      display: flex;
      gap: 3px;
      margin-left: 2px;
    }

    .tb-stars svg {
      width: 16px;
      height: 16px;
      fill: #FBBC04;
    }

    .hup-rev-text {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 0.82rem;
      color: #64748b;
      white-space: nowrap;
    }

    .hup-rev-text b {
      color: #0f172a;
      font-weight: 700;
    }

    .hup-dot-sep {
      color: #cbd5e1;
      font-weight: 700;
    }

    .hup-rev-link {
      font-size: 0.76rem;
      font-weight: 700;
      color: var(--coral);
      white-space: nowrap;
      transition: transform 0.15s ease;
    }

    .hup-reviews-bar:hover .hup-rev-link {
      transform: translateX(2px);
    }

    .hup-divider {
      width: 100%;
      height: 1px;
      background: #eef2f6;
    }

    .hup-badges-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 24px;
      gap: 14px;
    }

    .hup-badges-grid .htb-item {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
    }

    .htb-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      color: var(--coral);
      flex-shrink: 0;
    }

    .htb-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--coral);
    }

    .htb-text {
      display: flex;
      flex-direction: column;
      text-align: left;
      line-height: 1.25;
    }

    .htb-text strong {
      font-size: 0.78rem;
      font-weight: 600;
      color: #1e293b;
      letter-spacing: -0.005em;
    }

    .htb-text span {
      font-size: 0.65rem;
      font-weight: 400;
      color: #64748b;
      margin-top: 1px;
      line-height: 1.3;
    }

    .htb-divider-v {
      width: 1px;
      height: 24px;
      background: #eef2f6;
      flex-shrink: 0;
    }

    .htb-mob {
      display: none !important;
    }

    .htb-full {
      display: block !important;
    }

    @media (max-width: 900px) {
      .hero-unified-proof {
        width: calc(100% - 32px) !important;
        margin: 18px auto 0 !important;
        border-radius: 18px !important;
        max-width: 500px;
      }

      .hup-reviews-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 9px 12px 8px;
        gap: 3px;
      }

      .hup-rev-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex-wrap: nowrap;
      }

      .tb-title {
        font-size: 0.82rem;
      }

      .tb-score-pill {
        font-size: 0.68rem;
        padding: 1px 5px;
      }

      .tb-stars svg {
        width: 13px;
        height: 13px;
      }

      .hup-rev-text {
        font-size: clamp(0.6rem, 2.5vw, 0.72rem);
        gap: 4px;
        white-space: nowrap;
      }

      .hup-rev-link {
        display: none;
      }

      /* Single 4-item horizontal row with small text */
      .hup-badges-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2px !important;
        padding: 8px 3px 9px !important;
        align-items: flex-start;
      }

      .hup-badges-grid .htb-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3px;
        padding: 2px 1px;
        min-width: 0;
      }

      .htb-icon {
        font-size: 0.95rem;
        width: 18px;
        height: 18px;
      }

      .htb-icon svg {
        width: 13px;
        height: 13px;
      }

      .htb-text {
        align-items: center;
        text-align: center;
        line-height: 1.15;
        max-width: 100%;
      }

      .htb-mob {
        display: block !important;
      }

      .htb-full {
        display: none !important;
      }

      .htb-text strong {
        font-size: clamp(0.56rem, 1.9vw, 0.64rem);
        font-weight: 700;
        color: #1e293b;
        letter-spacing: -0.01em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: block;
      }

      .htb-text span {
        font-size: clamp(0.48rem, 1.5vw, 0.54rem);
        color: #64748b;
        white-space: nowrap;
        margin-top: 1px;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: block;
      }

      .htb-divider-v {
        display: none !important;
      }
    }

    @media (max-width: 360px) {
      .hup-pak-text {
        display: none;
      }
    }

    /* ================= Hero Screens Pyramid Showcase ================= */
    .hero-pyramid-wrap {
      position: relative;
      max-width: 1140px;
      margin: 30px auto 0;
      padding: 10px 0 20px;
      perspective: 1600px;
    }

    .hero-pyramid-stage {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      position: relative;
      padding: 20px 10px;
      scroll-margin-top: 110px;
    }

    .mobile-only-phone {
      display: none !important;
    }

    @media (max-width: 900px) {
      .hero-pyramid-wrap {
        margin: 15px auto 0;
        padding: 5px 0 10px;
        overflow: hidden;
        position: relative;
        perspective: 1100px;
      }

      .hero-pyramid-stage {
        display: block !important;
        position: relative !important;
        height: 330px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        overflow: visible !important;
        touch-action: pan-y !important;
        user-select: none !important;
        cursor: grab;
      }

      .hero-pyramid-stage:active {
        cursor: grabbing;
      }

      .mobile-only-phone {
        display: block !important;
      }

      .pyramid-phone {
        position: absolute !important;
        left: 50% !important;
        top: 15px !important;
        margin-left: -72.5px !important;
        width: 145px !important;
        height: 295px !important;
        border-radius: 22px !important;
        padding: 5px !important;
        box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.32), 0 0 0 1.2px rgba(255, 255, 255, 0.15) inset !important;
        flex-shrink: 0;
        transform-origin: center center !important;
        will-change: transform, opacity;
        animation: none !important;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
      }

      .phone-screen {
        border-radius: 17px !important;
      }

      .phone-screen-img {
        border-radius: 17px !important;
        transform: none !important;
        filter: none !important;
      }

      .pyramid-phone:hover .phone-screen-img,
      .pyramid-phone:active .phone-screen-img,
      .pyramid-phone:focus .phone-screen-img {
        transform: none !important;
        filter: none !important;
      }

      .phone-hover-overlay {
        display: none !important;
      }
    }

    .pyramid-wheel-dots {
      display: none;
      justify-content: center;
      align-items: center;
      gap: 7px;
      margin: 14px auto 4px;
    }

    @media (max-width: 900px) {
      .pyramid-wheel-dots {
        display: flex;
      }
    }

    .pyramid-wheel-dots span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(17, 19, 34, 0.18);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
    }

    .pyramid-wheel-dots span.active {
      width: 20px;
      border-radius: 4px;
      background: var(--coral);
      box-shadow: 0 2px 8px rgba(255, 138, 101, 0.35);
    }

    /* Universal Phone Bezel */
    .pyramid-phone {
      width: 236px;
      height: 480px;
      background: #0f172a;
      border-radius: 36px;
      padding: 8px;
      box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.22), 0 0 0 1.5px rgba(255, 255, 255, 0.12) inset;
      position: relative;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, z-index 0.2s ease, opacity 0.3s ease;
      flex-shrink: 0;
      user-select: none;
      text-decoration: none !important;
      color: inherit;
      display: block;
      cursor: default !important;
      pointer-events: auto !important;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      background: #09090b;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      padding: 0;
      pointer-events: none !important;
    }

    .phone-screen-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      border-radius: 28px;
      pointer-events: none !important;
    }

    .psp-brand-avatar {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0;
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .psp-visit-badge {
      font-size: 0.54rem;
      font-weight: 800;
      color: #0284c7;
      background: #e0f2fe;
      border: 1px solid #bae6fd;
      border-radius: 100px;
      padding: 2px 6px;
      display: inline-flex;
      align-items: center;
      gap: 3px;
      margin-left: auto;
    }

    .psp-live-dot {
      width: 4px;
      height: 4px;
      background: #0284c7;
      border-radius: 50%;
    }

    .phone-dynamic-island {
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 68px;
      height: 16px;
      background: #000000;
      border-radius: 20px;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5px;
    }

    .pdi-camera {
      width: 6px;
      height: 6px;
      background: #1e293b;
      border-radius: 50%;
    }

    .pdi-sensor {
      width: 4px;
      height: 4px;
      background: #0f172a;
      border-radius: 50%;
    }

    /* Phone screen content elements */
    .psp-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 20px;
      margin-bottom: 8px;
      padding-bottom: 6px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .psp-brand {
      display: flex;
      align-items: center;
      gap: 6px;
      text-align: left;
    }

    .psp-logo-mark {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      font-size: 0.65rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .psp-name {
      font-size: 0.72rem;
      font-weight: 800;
      line-height: 1.1;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .psp-sub {
      font-size: 0.58rem;
      color: #64748b;
      line-height: 1;
      margin-top: 1px;
    }

    .verified-tick {
      color: #0095f6;
      font-size: 0.68rem;
      font-weight: 900;
    }

    .psp-cart-icon svg,
    .psp-cart-badge-wrap svg {
      width: 14px;
      height: 14px;
    }

    .psp-cart-badge-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .psp-badge-count {
      position: absolute;
      top: -5px;
      right: -6px;
      background: #dc2626;
      color: #fff;
      font-size: 0.52rem;
      font-weight: 800;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .psp-cat-pills {
      display: flex;
      gap: 4px;
      margin-bottom: 8px;
      overflow: hidden;
    }

    .psp-cat-pills span {
      font-size: 0.58rem;
      font-weight: 700;
      padding: 3px 7px;
      border-radius: 100px;
      background: rgba(0, 0, 0, 0.04);
      color: #64748b;
      white-space: nowrap;
    }

    .psp-cat-pills span.active {
      background: #0f172a;
      color: #ffffff;
    }

    .psp-product-card,
    .psp-hero-prod {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      margin-bottom: 8px;
      flex-grow: 1;
    }

    .psp-img-wrap {
      height: 145px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.2rem;
    }

    .hero-art {
      height: 155px !important;
    }

    .psp-tag {
      position: absolute;
      top: 6px;
      left: 6px;
      font-size: 0.55rem;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 4px;
      letter-spacing: 0.04em;
    }

    .psp-tag.live-fire {
      background: #ef4444;
      color: #ffffff;
    }

    .psp-tag-stock {
      position: absolute;
      bottom: 6px;
      right: 6px;
      font-size: 0.52rem;
      font-weight: 700;
      background: rgba(0, 0, 0, 0.65);
      color: #ffffff;
      padding: 2px 6px;
      border-radius: 4px;
    }

    .psp-prod-info {
      padding: 8px;
      text-align: left;
    }

    .psp-prod-title {
      font-size: 0.72rem;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 4px;
      color: #0f172a;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .psp-prod-meta-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 6px;
    }

    .psp-prod-price {
      font-size: 0.8rem;
      font-weight: 800;
      color: #0f172a;
    }

    .psp-prod-price .old-p {
      font-size: 0.62rem;
      color: #94a3b8;
      text-decoration: line-through;
      margin-left: 3px;
    }

    .psp-stars-mini {
      font-size: 0.58rem;
      color: #f59e0b;
      font-weight: 700;
    }

    .psp-swatches {
      display: flex;
      gap: 4px;
      margin-top: 4px;
    }

    .sw-pill {
      font-size: 0.55rem;
      font-weight: 750;
      padding: 2px 6px;
      border-radius: 4px;
      border: 1px solid #cbd5e1;
      color: #475569;
    }

    .sw-pill.active {
      background: #0f172a;
      color: #ffffff;
      border-color: #0f172a;
    }

    .psp-btn {
      border-radius: 10px;
      padding: 8px 10px;
      font-size: 0.68rem;
      font-weight: 800;
      text-align: center;
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .btn-wa-glow {
      background: #16a34a !important;
      color: #ffffff !important;
      box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
    }

    /* Specific Phone Themes */
    .theme-noir .phone-screen {
      background: #09090b !important;
      color: #ffffff !important;
    }

    .theme-noir .psp-header {
      border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .theme-noir .psp-name,
    .theme-noir .psp-prod-title,
    .theme-noir .psp-prod-price {
      color: #ffffff !important;
    }

    .theme-noir .psp-product-card {
      background: #18181b;
      border-color: rgba(255, 255, 255, 0.08);
    }

    .theme-noir .psp-cat-pills span {
      background: rgba(255, 255, 255, 0.08);
      color: #a1a1aa;
    }

    .theme-noir .psp-cat-pills span.active {
      background: #f59e0b;
      color: #000000;
    }

    .theme-hijab .phone-screen {
      background: #fffdfa !important;
    }

    .theme-hijab .psp-cat-pills span.active {
      background: #c28f17;
    }

    .theme-botanica .phone-screen {
      background: #f7fbf8 !important;
    }

    .theme-botanica .psp-cat-pills span.active {
      background: #15803d;
    }

    /* Pyramid 3D Depth Hierarchy (Desktop/Tablet) */
    @media (min-width: 901px) {

      /* Left 2: Far Left */
      .pyramid-phone.pos-far-left {
        transform: translateX(110px) rotateY(16deg) scale(0.80);
        z-index: 2;
        opacity: 0.88;
      }

      .pyramid-phone.pos-far-left:hover {
        transform: translateX(80px) rotateY(4deg) scale(0.92) translateY(-8px) !important;
        opacity: 1 !important;
        z-index: 100 !important;
        box-shadow: 0 35px 80px -10px rgba(15, 23, 42, 0.42), 0 0 0 2px rgba(255, 255, 255, 0.45) inset !important;
      }

      /* Left 1: Mid Left */
      .pyramid-phone.pos-mid-left {
        transform: translateX(48px) rotateY(8deg) scale(0.91);
        z-index: 4;
        opacity: 0.96;
      }

      .pyramid-phone.pos-mid-left:hover {
        transform: translateX(20px) rotateY(2deg) scale(0.98) translateY(-8px) !important;
        opacity: 1 !important;
        z-index: 100 !important;
        box-shadow: 0 35px 80px -10px rgba(15, 23, 42, 0.42), 0 0 0 2px rgba(255, 255, 255, 0.45) inset !important;
      }

      /* Center: The Apex */
      .pyramid-phone.pos-center {
        transform: scale(1.04);
        z-index: 10;
        box-shadow: 0 30px 70px -12px rgba(15, 23, 42, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.25) inset;
        animation: pyramidFloat 6s ease-in-out infinite;
      }

      .pyramid-phone.pos-center:hover {
        transform: scale(1.08) translateY(-8px) !important;
        z-index: 100 !important;
        box-shadow: 0 40px 90px -12px rgba(15, 23, 42, 0.48), 0 0 0 2.5px rgba(255, 255, 255, 0.5) inset !important;
      }

      /* Right 1: Mid Right */
      .pyramid-phone.pos-mid-right {
        transform: translateX(-48px) rotateY(-8deg) scale(0.91);
        z-index: 4;
        opacity: 0.96;
      }

      .pyramid-phone.pos-mid-right:hover {
        transform: translateX(-20px) rotateY(-2deg) scale(0.98) translateY(-8px) !important;
        opacity: 1 !important;
        z-index: 100 !important;
        box-shadow: 0 35px 80px -10px rgba(15, 23, 42, 0.42), 0 0 0 2px rgba(255, 255, 255, 0.45) inset !important;
      }

      /* Right 2: Far Right */
      .pyramid-phone.pos-far-right {
        transform: translateX(-110px) rotateY(-16deg) scale(0.80);
        z-index: 2;
        opacity: 0.88;
      }

      .pyramid-phone.pos-far-right:hover {
        transform: translateX(-80px) rotateY(-4deg) scale(0.92) translateY(-8px) !important;
        opacity: 1 !important;
        z-index: 100 !important;
        box-shadow: 0 35px 80px -10px rgba(15, 23, 42, 0.42), 0 0 0 2px rgba(255, 255, 255, 0.45) inset !important;
      }
    }

    @keyframes pyramidFloat {

      0%,
      100% {
        transform: scale(1.04) translateY(0);
      }

      50% {
        transform: scale(1.04) translateY(-10px);
      }
    }

    /* Floating Order Popups on Center Phone */
    .floating-order-chip {
      position: absolute;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      border: 1px solid #e2e8f0;
      border-radius: 100px;
      padding: 6px 12px;
      display: flex;
      align-items: center;
      gap: 7px;
      box-shadow: 0 10px 26px -4px rgba(0, 0, 0, 0.14);
      z-index: 30;
      white-space: nowrap;
      font-size: 0.72rem;
      color: #1e293b;
      animation: orderPillFloat 4s ease-in-out infinite;
      pointer-events: none !important;
    }

    .foc-left {
      top: 50px;
      left: calc(50% - 275px);
    }

    .foc-right {
      bottom: 75px;
      right: calc(50% - 275px);
      animation-delay: -2s;
    }

    @media (max-width: 900px) {
      .floating-order-chip {
        display: flex !important;
        font-size: 0.58rem !important;
        padding: 4px 10px !important;
        border-radius: 100px !important;
        box-shadow: 0 6px 16px -2px rgba(0, 0, 0, 0.16) !important;
        gap: 5px !important;
        z-index: 35 !important;
      }

      .floating-order-chip b {
        font-weight: 700 !important;
      }

      .foc-left {
        top: 6px !important;
        left: 8px !important;
      }

      .foc-right {
        bottom: 14px !important;
        right: 8px !important;
      }
    }

    @keyframes orderPillFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    .foc-dot {
      width: 7px;
      height: 7px;
      background: #16a34a;
      border-radius: 50%;
    }

    .foc-check {
      background: #ecfdf5;
      color: #059669;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.62rem;
      font-weight: 900;
    }

    .pyramid-footer-tag {
      text-align: center;
      font-size: 0.76rem;
      font-weight: 700;
      color: #64748b;
      margin-top: 10px;
    }

    /* ================= Section shell ================= */
    section {
      padding: 72px 0;
    }

    .sec-head {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .sec-head h2 {
      font-size: clamp(1.5rem, 6vw, 2.9rem);
      margin: 16px 0 12px;
    }

    .h2-line {
      display: block;
      white-space: nowrap;
    }

    .sec-head p {
      font-size: 0.96rem;
    }

    @media (min-width:900px) {
      section {
        padding: 110px 0;
      }

      .sec-head {
        margin-bottom: 60px;
      }
    }

    /* ================= Old vs New ================= */
    .compare {
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 1040px;
      margin: 0 auto;
      align-items: stretch;
    }

    .compare-col {
      position: relative;
      width: 100%;
    }

    @media (min-width:860px) {
      .compare {
        flex-direction: row;
        gap: 48px;
        align-items: stretch;
      }
    }

    /* Old-way panel: chip + bubble stack, boxed to match the new-way panel */
    .old-panel {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 20px 18px 22px;
      height: 100%;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }

    .old-panel .tag-chip.old-chip {
      background: #EDEFF3;
      color: var(--ink-faint);
      flex-shrink: 0;
      align-self: flex-start;
    }

    .old-panel .bubble-stack {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 14px;
    }

    .bubble {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px 16px 16px 4px;
      padding: 9px 14px 9px 36px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--ink);
      box-shadow: 0 4px 14px rgba(15, 15, 20, 0.05);
      position: relative;
    }

    .bubble::before {
      content: '';
      position: absolute;
      left: 12px;
      top: 12px;
      width: 14px;
      height: 14px;
      border-radius: 5px;
      background: var(--ink-faint);
    }

    .bubble.ig::before {
      background: linear-gradient(140deg, #f58529, #dd2a7b, #8134af);
    }

    .bubble.wa::before {
      background: #25D366;
    }

    .bubble b {
      display: block;
      font-size: 0.62rem;
      font-weight: 800;
      color: var(--coral-2);
      margin-bottom: 3px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .bubble.ig b {
      color: #dd2a7b;
    }

    .bubble.wa b {
      color: #1a9e4f;
    }

    .bubble:nth-child(odd) {
      transform: rotate(-1deg);
      align-self: flex-start;
    }

    .bubble:nth-child(even) {
      transform: rotate(1deg);
      align-self: flex-end;
    }

    .bubble.b7 {
      display: none;
    }

    @media (min-width:640px) {
      .bubble.b7 {
        display: block;
      }
    }

    /* New-way panel: chip + checklist + invoice card, grouped */
    .new-panel {
      background: var(--bg-card);
      border: 2px solid var(--ink);
      border-radius: 24px;
      padding: 20px 18px 22px;
      height: 100%;
      box-shadow: var(--shadow-md);
    }

    .new-panel .tag-chip {
      display: inline-block;
      background: var(--ink);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 6px 15px;
      border-radius: 100px;
      margin-bottom: 14px;
    }

    .old-panel .tag-chip {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 6px 15px;
      border-radius: 100px;
    }

    .compare-checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }

    .compare-checklist li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.81rem;
      font-weight: 700;
      color: var(--ink);
    }

    .compare-checklist li svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 1px;
      stroke: var(--ink);
    }

    .compare-video-wrap {
      position: relative;
      max-width: 260px;
      width: 100%;
      margin: 0 auto;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md), 0 8px 20px -4px rgba(15, 23, 42, 0.1);
      background: #0f172a;
    }

    .compare-video {
      width: 100%;
      max-height: 220px;
      height: auto;
      display: block;
      border-radius: 14px;
      object-fit: cover;
    }

    /* Compare section summary callout card */
    .compare-summary-card {
      max-width: 620px;
      margin: 22px auto 0;
      padding: 10px 18px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 100px;
      box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .csc-text {
      font-size: 0.78rem;
      color: var(--ink-soft);
      line-height: 1.45;
      font-weight: 500;
      margin: 0;
      text-align: center;
    }

    .csc-text strong {
      color: var(--ink);
      font-weight: 750;
    }

    @media (max-width: 640px) {
      .compare-summary-card {
        margin: 16px 8px 0;
        padding: 9px 14px;
        border-radius: 16px;
      }

      .csc-text {
        font-size: 0.73rem;
        line-height: 1.4;
      }
    }

    /* ================= Three steps to launch ================= */
    .launch-steps {
      position: relative;
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .launch-step {
      position: relative;
      display: flex;
      gap: 20px;
      padding-bottom: 44px;
    }

    .launch-step:last-child {
      padding-bottom: 0;
    }

    .launch-node {
      position: relative;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .launch-node .num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Instrument Sans', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      color: var(--ink);
      box-shadow: var(--shadow-sm);
      flex-shrink: 0;
      z-index: 2;
    }

    .launch-step.active .launch-node .num {
      background: linear-gradient(150deg, var(--coral), var(--coral-2));
      border-color: transparent;
      color: #fff;
      box-shadow: 0 8px 16px rgba(17, 19, 34, 0.28);
    }

    .launch-node .line {
      flex: 1;
      width: 2px;
      background: repeating-linear-gradient(to bottom, var(--border) 0 6px, transparent 6px 12px);
      margin-top: 8px;
      min-height: 100%;
    }

    .launch-step:last-child .launch-node .line {
      display: none;
    }

    .launch-body {
      flex: 1;
      min-width: 0;
      padding-top: 4px;
    }

    .launch-body .eyebrow-sm {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 4px;
      display: block;
    }

    .launch-body h4 {
      font-size: 1.15rem;
      margin-bottom: 6px;
    }

    .launch-body p {
      font-size: 0.86rem;
      max-width: 420px;
      margin-bottom: 16px;
    }

    /* Mini visual mockups per step */
    .launch-visual {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px;
      box-shadow: var(--shadow-sm);
      max-width: 340px;
    }

    .lv-swatches {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .lv-swatches .lv-logo {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(150deg, var(--coral), var(--coral-2));
      flex-shrink: 0;
      box-shadow: 0 6px 14px rgba(17, 19, 34, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lv-colors {
      display: flex;
      gap: 6px;
    }

    .lv-colors span {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid #fff;
      box-shadow: 0 0 0 1px var(--border-soft);
    }

    .lv-colors span:nth-child(1) {
      background: #64748B;
    }

    .lv-colors span:nth-child(2) {
      background: #111322;
    }

    .lv-colors span:nth-child(3) {
      background: #16A34A;
    }

    .lv-camera {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #fff;
      border: 1.5px dashed var(--ink-faint);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-faint);
      flex-shrink: 0;
    }

    .lv-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-faint);
      flex-shrink: 0;
    }

    .lv-bio {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .lv-bio .lv-meta {
      flex: 1;
      min-width: 0;
    }

    .lv-bio .lv-handle {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--ink);
    }

    .lv-bio .lv-link {
      margin-top: 4px;
      font-size: 0.7rem;
      font-weight: 700;
      color: #fff;
      background: var(--ink);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 10px;
      border-radius: 100px;
      max-width: 100%;
      overflow: hidden;
    }

    .lv-bio .lv-link span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      min-width: 0;
    }

    /* Animated URL Cycler */
    .lv-bio .lv-link {
      overflow: visible !important;
    }

    .url-cycler {
      position: relative;
      height: 1.4em;
      display: inline-block;
      vertical-align: middle;
      overflow: visible;
    }

    .url-cycler .url-slide {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      white-space: nowrap;
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
    }

    .url-cycler .url-slide.active {
      transform: translateY(0);
      opacity: 1;
      position: relative;
    }

    .url-cycler .url-slide.exit-up {
      transform: translateY(-140%);
      opacity: 0;
    }

    .url-cycler .url-slide.enter-below {
      transform: translateY(140%);
      opacity: 0;
    }

    .lv-invoice {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .lv-invoice .lv-wa {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .lv-invoice .lv-txt .t {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--ink);
    }

    .lv-invoice .lv-txt .s {
      font-size: 0.7rem;
      color: var(--green);
      font-weight: 700;
    }

    @media (min-width:900px) {
      .launch-steps {
        flex-direction: row;
        gap: 8px;
        align-items: stretch;
      }

      .launch-step {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0;
        flex: 1;
        padding-right: 16px;
        display: flex;
      }

      .launch-node {
        flex-direction: row;
        width: 100%;
        align-items: center;
        margin-bottom: 18px;
      }

      .launch-node .line {
        width: auto;
        flex: 1;
        height: 2px;
        min-height: 0;
        margin-top: 0;
        margin-left: 8px;
        background: repeating-linear-gradient(to right, var(--border) 0 6px, transparent 6px 12px);
      }

      .launch-step:last-child .launch-node .line {
        display: block;
        visibility: hidden;
      }

      .launch-body {
        display: flex;
        flex-direction: column;
        flex: 1;
        width: 100%;
      }

      .launch-visual {
        margin-top: auto;
        width: 100%;
        max-width: none;
      }
    }

    /* ================= Feature Bento grid ================= */
    .bento {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      max-width: 1180px;
      margin: 0 auto;
    }

    .bento-card {
      position: relative;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 26px 22px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
      display: flex;
      flex-direction: column;
    }

    .bento-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 138, 101, 0.14), transparent 60%);
      opacity: 0;
      transition: opacity 0.4s var(--ease-soft);
    }

    .bento-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(17, 19, 34, 0.18);
    }

    .bento-card:hover::before {
      opacity: 1;
    }

    /* Desktop Bento Grid (min-width: 992px) */
    @media (min-width:992px) {
      .bento {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto auto auto;
        gap: 20px;
        max-width: 1240px;
      }

      .c-span-4 {
        grid-column: span 4;
        grid-row: span 2;
      }

      .c-span-2-half {
        grid-column: span 2;
        grid-row: span 1;
      }

      .c-span-3 {
        grid-column: span 3;
        grid-row: span 2;
      }

      .c-span-2 {
        grid-column: span 2;
        grid-row: span 2;
      }

      /* Explicit Desktop Grid Placement:
         Row 1: 3 Major Feature Cards (Designer, Tracking, Ads)
         Rows 2 & 3: 4 Compact Cards (Shipping, Security, Anti-Spam, Checkout) beside AI Manager */
      #bento-card-builder {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        box-sizing: border-box;
      }

      #bento-card-tracking {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        box-sizing: border-box;
      }

      #bento-card-analytics {
        grid-column: 5 / 7;
        grid-row: 1 / 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        box-sizing: border-box;
      }

      #bento-card-shipping {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        box-sizing: border-box;
        padding: 18px 20px;
      }

      #bento-card-security {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        box-sizing: border-box;
        padding: 18px 20px;
      }

      #bento-card-antispam {
        grid-column: 3 / 5;
        grid-row: 2 / 3;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        box-sizing: border-box;
        padding: 18px 20px;
      }

      #bento-card-checkout {
        grid-column: 3 / 5;
        grid-row: 3 / 4;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        box-sizing: border-box;
        padding: 18px 20px;
      }

      #bento-card-shipping h3,
      #bento-card-antispam h3 {
        font-size: 1.05rem;
        margin-bottom: 4px;
      }

      #bento-card-shipping p,
      #bento-card-antispam p {
        font-size: 0.78rem;
        line-height: 1.35;
        margin-bottom: 0;
      }

      #bento-card-ai {
        grid-column: 5 / 7;
        grid-row: 2 / 4;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        box-sizing: border-box;
      }

      .bento-card.compact .shipping-visual,
      .bento-card.compact .spam-guard-visual {
        margin-top: 10px;
      }

      .bento-card.compact .sec-guard-visual,
      .bento-card.compact .checkout-flow-visual,
      #bento-card-builder .builder-video-wrap,
      #bento-card-ai .ai-chat-visual {
        margin-top: auto;
      }
    }

    /* Tablet Bento Grid (768px to 991px) */
    @media (min-width:768px) and (max-width:991px) {
      .bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 880px;
      }

      #bento-card-builder {
        grid-column: 1;
        grid-row: auto;
        min-height: 380px;
      }

      #bento-card-shipping {
        grid-column: 2;
        grid-row: auto;
        min-height: 190px;
      }

      #bento-card-security {
        grid-column: 2;
        grid-row: auto;
        min-height: 190px;
      }

      #bento-card-antispam {
        grid-column: 1;
        grid-row: auto;
        min-height: 190px;
      }

      #bento-card-checkout {
        grid-column: 2;
        grid-row: auto;
        min-height: 190px;
      }

      #bento-card-tracking {
        grid-column: 1;
        grid-row: auto;
        min-height: 380px;
      }

      #bento-card-analytics {
        grid-column: 2;
        grid-row: auto;
        min-height: 380px;
      }

      #bento-card-ai {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 340px;
      }
    }

    /* ================= Rule-Based Shipping Visual ================= */
    .shipping-visual {
      margin-top: 10px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    @media (min-width:768px) {
      .shipping-visual {
        margin-top: 10px;
        padding-top: 0;
      }
    }

    .ship-rule-badge {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 9px;
      background: rgba(255, 138, 101, 0.08);
      border: 1px dashed rgba(255, 138, 101, 0.4);
      font-size: 0.67rem;
      font-weight: 700;
    }

    .ship-rule-badge.city-rule {
      background: rgba(17, 19, 34, 0.03);
      border: 1px dashed rgba(17, 19, 34, 0.18);
    }

    .rule-city-pill {
      background: #111322;
      color: #fff;
      font-size: 0.6rem;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      white-space: nowrap;
    }

    .rule-cond-tag span.badge-dot.green {
      background: #16a34a;
    }

    .rule-cond-tag {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--ink);
    }

    .rule-cond-tag span.badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--coral);
      animation: shipPulseDot 2s ease-in-out infinite;
    }

    .rule-action-pill {
      background: #16A34A;
      color: #fff;
      font-size: 0.62rem;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      box-shadow: 0 2px 6px rgba(22, 163, 74, 0.25);
      white-space: nowrap;
    }

    .rule-action-pill.deposit {
      background: #2563eb;
      box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
    }

    .rule-cond-tag span.badge-dot.blue {
      background: #2563eb !important;
    }

    .ship-calc-box {
      display: flex;
      flex-direction: column;
      gap: 6px;
      background: rgba(17, 19, 34, 0.03);
      border: 1px solid var(--border-soft);
      border-radius: 12px;
      padding: 8px 11px;
    }

    .ship-calc-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.73rem;
    }

    .ship-calc-row .s-city {
      color: var(--ink-faint);
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: 600;
    }

    .ship-calc-row .s-fee {
      font-weight: 700;
      color: var(--ink);
    }

    .ship-calc-row.active-rule {
      padding-top: 5px;
      border-top: 1px solid var(--border-soft);
    }

    .ship-calc-row.active-rule .s-tag {
      display: flex;
      align-items: center;
      gap: 4px;
      color: #16A34A;
      font-weight: 700;
    }

    .ship-calc-row.active-rule .s-fee-discount {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .ship-calc-row.active-rule del {
      color: var(--ink-faint);
      font-size: 0.68rem;
    }

    .ship-calc-row.active-rule b {
      color: #16A34A;
      font-weight: 800;
    }

    @keyframes shipPulseDot {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.5);
        opacity: 0.5;
      }
    }

    .bento-card.in-view .ship-rule-badge {
      animation: shipRuleSlide 0.6s var(--ease-soft) forwards;
    }

    .bento-card.in-view .ship-calc-row.active-rule .s-tag svg {
      animation: shipCheckPop 0.5s var(--ease-soft) 0.3s forwards;
    }

    @keyframes shipRuleSlide {
      0% {
        transform: translateY(4px);
        opacity: 0.8;
      }

      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes shipCheckPop {
      0% {
        transform: scale(0.7);
      }

      70% {
        transform: scale(1.25);
      }

      100% {
        transform: scale(1);
      }
    }

    .bento-card .icon-badge {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      background: linear-gradient(150deg, var(--coral), var(--coral-2));
      box-shadow: 0 8px 16px rgba(17, 19, 34, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
      flex-shrink: 0;
    }

    .bento-card .icon-badge svg {
      width: 19px;
      height: 19px;
      stroke: #fff;
    }

    .bento-card {
      position: relative;
    }

    .plan-tag {
      position: absolute;
      top: 16px;
      right: 16px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--ink);
      color: #fff;
      font-size: 0.6rem;
      font-weight: 800;
      padding: 5px 11px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      box-shadow: var(--shadow-sm);
      z-index: 2;
    }

    .plan-tag svg {
      width: 10px;
      height: 10px;
      stroke: #fff;
      flex-shrink: 0;
    }

    .ai-card {
      background: #ffffff;
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow-sm);
      width: 100%;
      height: 100%;
    }

    /* Wrapper carries the grid span */
    .ai-card-wrap {
      position: relative;
      z-index: 0;
    }

    .ai-card-wrap::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -8%;
      transform: translateX(-50%);
      width: 110%;
      height: 45%;
      background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
      filter: blur(28px);
      z-index: -1;
      pointer-events: none;
    }

    .ai-card::before {
      display: none;
    }

    .ai-card:hover {
      border-color: rgba(99, 102, 241, 0.4);
    }

    .ai-card h3 {
      color: var(--ink);
    }

    .ai-card p {
      color: var(--ink-muted) !important;
    }

    .ai-card .icon-badge {
      background: linear-gradient(135deg, #6366f1, #a855f7);
      box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
    }

    .ai-card .icon-badge svg {
      stroke: #ffffff;
    }

    .ai-card .plan-tag {
      background: #f1f5f9;
      color: var(--ink);
    }

    .ai-card .plan-tag svg {
      stroke: var(--ink);
    }

    /* Builder Video Preview */
    .builder-video-wrap {
      margin-top: 14px;
      width: 100%;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border-soft);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
      background: #f8fafc;
      aspect-ratio: 1022 / 856;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .builder-preview-video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .ai-chat-visual {
      margin-top: 14px;
      margin-bottom: 4px;
      display: flex;
      flex-direction: column;
      gap: 9px;
      background: #f8fafc;
      border: 1px solid var(--border-soft);
      border-radius: 16px;
      padding: 13px 14px;
      box-sizing: border-box;
      width: 100%;
    }

    .ai-chat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 7px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      margin-bottom: 2px;
    }

    .ai-chat-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.68rem;
      font-weight: 700;
      color: #334155;
    }

    .ai-status-pulse {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 6px rgba(16, 185, 129, 0.7);
      animation: statusPulse 2s ease-in-out infinite;
    }

    .ai-badge-chip {
      font-size: 0.58rem;
      font-weight: 750;
      color: #6366f1;
      background: rgba(99, 102, 241, 0.09);
      padding: 2px 7px;
      border-radius: 100px;
      letter-spacing: 0.02em;
    }

    .ai-msg-row {
      display: flex;
      align-items: flex-end;
      gap: 7px;
      width: 100%;
    }

    .ai-msg-row.q {
      justify-content: flex-start;
    }

    .ai-msg-row.r {
      justify-content: flex-end;
    }

    .ai-avatar {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2px;
    }

    .ai-avatar svg {
      width: 12px;
      height: 12px;
    }

    .ai-avatar.user-avatar {
      background: #e2e8f0;
      color: #64748b;
    }

    .ai-avatar.bot-avatar {
      background: linear-gradient(135deg, #6366f1, #a855f7);
      color: #ffffff;
      box-shadow: 0 2px 6px rgba(99, 102, 241, 0.35);
    }

    .msg-slot {
      display: grid;
      max-width: calc(100% - 32px);
      min-width: 0;
    }

    .msg-slot>* {
      grid-area: 1/1;
      align-self: end;
    }

    .msg-slot.q-slot>* {
      justify-self: start;
    }

    .msg-slot.r-slot>* {
      justify-self: end;
    }

    .ai-chat-visual .ai-bubble {
      padding: 7px 11px;
      border-radius: 13px;
      font-size: 0.7rem;
      line-height: 1.35;
      font-weight: 600;
      box-shadow: none;
      word-break: break-word;
      max-width: 100%;
      box-sizing: border-box;
    }

    .ai-chat-visual .ai-bubble::before {
      content: none;
    }

    .ai-chat-visual .ai-bubble.q {
      background: #ffffff;
      color: var(--ink);
      border: 1px solid var(--border-soft);
      border-radius: 13px 13px 13px 3px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .ai-chat-visual .ai-bubble.r {
      background: #0f172a;
      color: #ffffff;
      border-radius: 13px 13px 3px 13px;
      box-shadow: 0 3px 10px rgba(15, 23, 42, 0.15);
    }

    .ai-order-card {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      background: #ffffff;
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: 11px;
      box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
      box-sizing: border-box;
      width: 100%;
    }

    .ai-order-badge {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #10b981;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .ai-order-badge svg {
      width: 11px;
      height: 11px;
    }

    .ai-order-details {
      display: flex;
      flex-direction: column;
      flex: 1;
      min-width: 0;
    }

    .ai-order-id {
      font-size: 0.67rem;
      font-weight: 800;
      color: #0f172a;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ai-order-meta {
      font-size: 0.58rem;
      font-weight: 600;
      color: #64748b;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ai-order-pill {
      font-size: 0.56rem;
      font-weight: 800;
      color: #16a34a;
      background: #dcfce7;
      padding: 3px 7px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      flex-shrink: 0;
    }

    .ai-typing {
      display: flex;
      gap: 4px;
      padding: 8px 11px;
      border-radius: 12px;
      width: fit-content;
    }

    .ai-typing.q {
      background: #ffffff;
      border: 1px solid var(--border-soft);
      border-radius: 12px 12px 12px 3px;
    }

    .ai-typing.r {
      background: #0f172a;
      border-radius: 12px 12px 3px 12px;
    }

    .ai-typing span {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #94a3b8;
    }

    .ai-typing.r span {
      background: rgba(255, 255, 255, 0.7);
    }

    .ai-typing span:nth-child(2) {
      animation-delay: 0.15s;
    }

    .ai-typing span:nth-child(3) {
      animation-delay: 0.3s;
    }

    /* animation is gated: paused until .ai-card gets .in-view */
    .ai-anim {
      animation-play-state: paused;
    }

    .ai-card.in-view .ai-anim {
      animation-play-state: running;
    }

    .ai-typing span.ai-anim {
      animation: aiDot 0.9s ease-in-out infinite;
    }

    .msg-slot.m1 .ai-typing.ai-anim {
      animation: msg1TypingShow 12s ease-in-out infinite;
    }

    .msg-slot.m1 .ai-bubble.ai-anim {
      animation: msg1BubbleShow 12s ease-in-out infinite;
    }

    .msg-slot.m2 .ai-typing.ai-anim {
      animation: msg2TypingShow 12s ease-in-out infinite;
    }

    .msg-slot.m2 .ai-bubble.ai-anim {
      animation: msg2BubbleShow 12s ease-in-out infinite;
    }

    .msg-slot.m3 .ai-typing.ai-anim {
      animation: msg3TypingShow 12s ease-in-out infinite;
    }

    .msg-slot.m3 .ai-bubble.ai-anim {
      animation: msg3BubbleShow 12s ease-in-out infinite;
    }

    .msg-slot.m4 .ai-typing.ai-anim {
      animation: msg4TypingShow 12s ease-in-out infinite;
    }

    .msg-slot.m4 .ai-bubble.ai-anim {
      animation: msg4BubbleShow 12s ease-in-out infinite;
    }

    .ai-order-card.ai-anim {
      animation: msg5CardShow 12s ease-in-out infinite;
    }

    @keyframes statusPulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.85); }
    }

    @keyframes aiDot {
      0%,
      60%,
      100% {
        transform: translateY(0);
        opacity: 0.35;
      }

      30% {
        transform: translateY(-3px);
        opacity: 1;
      }
    }

    @keyframes msg1TypingShow {
      0% { opacity: 0; }
      2%, 6% { opacity: 1; }
      8%, 100% { opacity: 0; }
    }

    @keyframes msg1BubbleShow {
      0%, 6% { opacity: 0; transform: translateY(4px); }
      8%, 94% { opacity: 1; transform: translateY(0); }
      97%, 100% { opacity: 0; }
    }

    @keyframes msg2TypingShow {
      0%, 12% { opacity: 0; }
      14%, 19% { opacity: 1; }
      21%, 100% { opacity: 0; }
    }

    @keyframes msg2BubbleShow {
      0%, 19% { opacity: 0; transform: translateY(4px); }
      21%, 94% { opacity: 1; transform: translateY(0); }
      97%, 100% { opacity: 0; }
    }

    @keyframes msg3TypingShow {
      0%, 30% { opacity: 0; }
      32%, 37% { opacity: 1; }
      39%, 100% { opacity: 0; }
    }

    @keyframes msg3BubbleShow {
      0%, 37% { opacity: 0; transform: translateY(4px); }
      39%, 94% { opacity: 1; transform: translateY(0); }
      97%, 100% { opacity: 0; }
    }

    @keyframes msg4TypingShow {
      0%, 48% { opacity: 0; }
      50%, 55% { opacity: 1; }
      57%, 100% { opacity: 0; }
    }

    @keyframes msg4BubbleShow {
      0%, 55% { opacity: 0; transform: translateY(4px); }
      57%, 94% { opacity: 1; transform: translateY(0); }
      97%, 100% { opacity: 0; }
    }

    @keyframes msg5CardShow {
      0%, 66% { opacity: 0; transform: translateY(6px) scale(0.97); }
      69%, 94% { opacity: 1; transform: translateY(0) scale(1); }
      97%, 100% { opacity: 0; }
    }

    .ai-card .icon-badge {
      animation: aiPulse 2.6s ease-in-out infinite;
      animation-play-state: paused;
    }

    .ai-card.in-view .icon-badge {
      animation-play-state: running;
    }

    @keyframes aiPulse {

      0%,
      100% {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 0 0 0 rgba(255, 255, 255, 0.35);
      }

      50% {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 0 0 6px rgba(255, 255, 255, 0);
      }
    }

    .fill-card {
      display: flex;
      flex-direction: column;
    }

    .fill-card .stat-row {
      margin-top: auto !important;
      padding-top: 14px !important;
    }

    .fill-card .ai-chat-visual {
      margin-top: auto !important;
      padding-top: 14px;
    }

    .fill-card .cart-recover {
      margin-top: auto !important;
      padding-top: 14px;
    }

    .funnel-label {
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--ink-faint);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: auto;
      padding-top: 20px;
      margin-bottom: 10px;
    }

    .funnel-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      background: rgba(17, 19, 34, 0.025);
      border: 1px solid var(--border-soft);
      border-radius: 14px;
      padding: 12px 10px;
    }

    .funnel-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-width: 0;
    }

    .funnel-step b {
      font-size: 0.92rem;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    .funnel-step span {
      font-size: 0.54rem;
      color: var(--ink-faint);
      font-weight: 600;
      line-height: 1.2;
      margin-top: 2px;
    }

    .funnel-arrow {
      color: var(--ink-faint);
      font-size: 0.85rem;
      font-weight: 700;
      flex-shrink: 0;
      padding-top: 1px;
    }

    .cart-recover {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .cart-row {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--peach-soft);
      border: 1px solid var(--border-soft);
      border-radius: 11px;
      padding: 6px 9px;
    }

    .cart-ico {
      width: 22px;
      height: 22px;
      border-radius: 7px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--ink-soft);
      box-shadow: var(--shadow-sm);
    }

    .cart-ico svg {
      width: 11px;
      height: 11px;
    }

    .cart-info {
      flex: 1;
      min-width: 0;
    }

    .cart-name {
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--ink);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cart-sub {
      font-size: 0.6rem;
      color: var(--ink-faint);
      font-weight: 600;
    }

    .cart-pill {
      font-size: 0.55rem;
      font-weight: 800;
      padding: 3px 7px;
      border-radius: 100px;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .cart-pill.recovered {
      background: rgba(22, 163, 74, 0.12);
      color: var(--green);
    }

    .cart-pill.pending {
      background: rgba(17, 19, 34, 0.07);
      color: var(--ink-soft);
    }

    /* ---- Real-time analytics: cart rows visible immediately ---- */
    .cart-recover .cart-row {
      opacity: 1;
      transform: none;
    }

    @keyframes cartSlideIn {
      0% {
        opacity: 0;
        transform: translateX(-14px);
      }

      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (prefers-reduced-motion:reduce) {
      .cart-recover .cart-row {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }
    }

    /* ---- Real-time analytics: pipeline counters count up once in view (JS-driven) ---- */
    .funnel-step b {
      font-variant-numeric: tabular-nums;
    }

    .bento-card h3 {
      font-size: 1.12rem;
      font-weight: 750;
      letter-spacing: -0.01em;
      margin-bottom: 7px;
      line-height: 1.35;
    }

    .bento-card p {
      font-size: 0.84rem;
      line-height: 1.52;
      color: var(--ink-muted);
    }

    /* Canva-Style Studio Visual */
    .canva-studio-visual {
      margin-top: 14px;
      background: #f8fafc;
      border: 1px solid var(--border-soft);
      border-radius: 16px;
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      overflow: hidden;
    }

    .canva-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      padding: 6px 10px;
      font-size: 0.72rem;
    }

    .canva-tool-theme {
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: 750;
      color: #0f172a;
    }

    .canva-swatches {
      display: flex;
      gap: 4px;
      align-items: center;
    }

    .canva-swatches span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.15);
    }

    .canva-swatches span.active {
      outline: 2px solid #0f172a;
      outline-offset: 1px;
    }

    .canva-view-toggle {
      display: flex;
      gap: 4px;
      background: #f1f5f9;
      padding: 2px;
      border-radius: 6px;
    }

    .canva-view-toggle span {
      font-size: 0.62rem;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 4px;
      color: #64748b;
    }

    .canva-view-toggle span.active {
      background: #ffffff;
      color: #0f172a;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .canva-canvas-preview {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
      position: relative;
    }

    .canva-preview-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #f1f5f9;
      padding-bottom: 6px;
    }

    .canva-preview-store {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .canva-preview-avatar {
      width: 20px;
      height: 20px;
      border-radius: 6px;
      background: #fee2e2;
      color: #ef4444;
      font-size: 0.65rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .canva-preview-name {
      font-size: 0.74rem;
      font-weight: 750;
      color: #0f172a;
    }

    .canva-preview-status {
      font-size: 0.6rem;
      color: #10b981;
      font-weight: 700;
    }

    .canva-product-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .canva-product-img {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .canva-product-details {
      flex: 1;
      min-width: 0;
    }

    .canva-product-title {
      font-size: 0.76rem;
      font-weight: 750;
      color: #0f172a;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .canva-product-price {
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--coral);
      margin-top: 2px;
    }

    .canva-color-chips {
      display: flex;
      gap: 4px;
      margin-top: 3px;
    }

    .canva-color-chips span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .canva-cursor-tag {
      position: absolute;
      right: 10px;
      bottom: 8px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #0f172a;
      color: #ffffff;
      font-size: 0.62rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 6px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    @media (min-width:768px) {
      .canva-studio-visual {
        margin-top: auto;
      }
    }

    .sec-guard-visual {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .sec-status-bar {
      display: flex;
      align-items: center;
      gap: 7px;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      padding: 6px 11px;
      border-radius: 10px;
      font-size: 0.7rem;
      font-weight: 700;
      color: #15803d;
    }

    .sec-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #16a34a;
      flex-shrink: 0;
      animation: secDotPulse 2s infinite ease-in-out;
    }

    @keyframes secDotPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(1.4);
      }
    }

    .sec-pills-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7px;
    }

    .sec-pill-card {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.65rem;
      font-weight: 700;
      color: #1e293b;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      padding: 6px 9px;
      border-radius: 9px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
      min-width: 0;
    }

    .sec-pill-card span.txt {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Meta & TikTok Pixel Live Stream in Analytics */
    .meta-capi-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 9px;
      padding: 6px 9px;
      margin-top: 10px;
      font-size: 0.68rem;
    }

    .meta-capi-title {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 750;
      color: #0f172a;
    }

    .ad-icons-pair {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .ad-icons-pair svg.meta-icon {
      width: 14px;
      height: 14px;
      fill: #0081FB;
    }

    .ad-icons-pair svg.tiktok-icon {
      width: 13px;
      height: 13px;
      fill: #000000;
    }

    .meta-capi-stream-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #eff6ff;
      color: #1d4ed8;
      font-size: 0.62rem;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 100px;
    }

    .meta-capi-stream-tag .dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #2563eb;
      animation: secDotPulse 1.5s infinite;
    }

    .meta-events-row {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
      margin-top: 6px;
      margin-bottom: 8px;
    }

    .meta-evt-chip {
      font-size: 0.58rem;
      font-weight: 750;
      padding: 1px 5px;
      border-radius: 4px;
      background: #f1f5f9;
      color: #475569;
      border: 1px solid #e2e8f0;
    }

    .meta-evt-chip.active {
      background: #ecfdf5;
      color: #047857;
      border-color: #a7f3d0;
    }

    .shield-visual {
      margin-top: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 6px;
      position: relative;
      height: 88px;
    }

    .shield-ring {
      width: 82px;
      height: 82px;
      border-radius: 50%;
      border: 2px dashed rgba(17, 19, 34, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: spin 14s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .shield-ring .inner {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(150deg, var(--coral), var(--coral-2));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 20px rgba(17, 19, 34, 0.3);
      animation: spin-rev 14s linear infinite;
    }

    @keyframes spin-rev {
      to {
        transform: rotate(-360deg);
      }
    }

    .shield-ring .inner svg {
      width: 22px;
      height: 22px;
      stroke: #fff;
    }

    @media (min-width:768px) {
      .shield-visual {
        margin-top: auto;
      }
    }

    /* Horizontal Order Tracking Visual (Clean Light Landing Theme) */
    .horiz-tracking-card {
      margin-top: 14px;
      background: #f8fafc;
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 20px 14px 16px;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-sm);
      position: relative;
    }

    @media (min-width:768px) {
      .horiz-tracking-card {
        margin-top: auto;
      }
    }

    .horiz-stepper {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      width: 100%;
    }

    .horiz-stepper-line {
      position: absolute;
      top: 19px;
      left: 12%;
      right: 12%;
      height: 3px;
      background: #e2e8f0;
      border-radius: 999px;
      z-index: 0;
      overflow: hidden;
    }

    .horiz-stepper-fill {
      height: 100%;
      width: 0%;
      background: #111322;
      border-radius: 999px;
      transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .h-step {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;
    }

    .h-step-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #ffffff;
      border: 2px solid #e2e8f0;
      color: #94a3b8;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .h-step.completed .h-step-icon {
      background: #111322;
      border-color: #111322;
      color: #ffffff;
      box-shadow: 0 2px 8px rgba(17, 19, 34, 0.16);
    }

    .h-step.active .h-step-icon {
      background: #111322;
      border-color: #111322;
      color: #ffffff;
      box-shadow: 0 0 0 4px #ffffff, 0 4px 14px rgba(17, 19, 34, 0.24);
      transform: scale(1.08);
    }

    .h-step.delivered-final.active .h-step-icon,
    .h-step.delivered-final.completed .h-step-icon {
      background: #16a34a !important;
      border-color: #16a34a !important;
      color: #ffffff !important;
      box-shadow: 0 0 0 4px #ffffff, 0 4px 14px rgba(22, 163, 74, 0.3);
    }

    .h-step-label {
      font-size: 0.64rem;
      font-weight: 800;
      color: #94a3b8;
      letter-spacing: 0.04em;
      margin-top: 8px;
      text-transform: uppercase;
      text-align: center;
      transition: color 0.3s ease;
    }

    .h-step.active .h-step-label,
    .h-step.completed .h-step-label {
      color: #111322;
    }

    .h-step-time {
      font-size: 0.52rem;
      font-weight: 600;
      color: #64748b;
      text-align: center;
      margin-top: 2px;
      line-height: 1.15;
      min-height: 1.25rem;
      transition: opacity 0.3s ease;
    }

    .horiz-track-status-pill {
      margin-top: 16px;
      background: #ffffff;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 8px 16px;
      color: #111322;
      font-size: 0.72rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 2px 8px rgba(17, 19, 34, 0.04);
      transition: all 0.3s ease;
    }

    .horiz-track-status-pill.delivered {
      background: #f0fdf4;
      border-color: #bbf7d0;
      color: #15803d;
    }

    .courier-coming-soon {
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      padding: 7px 11px;
      border-radius: 10px;
      font-size: 0.68rem;
    }

    .courier-left {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #334155;
      font-weight: 600;
    }

    .courier-left strong {
      color: #0f172a;
      font-weight: 750;
    }

    .courier-soon-pill {
      background: #eff6ff;
      color: #2563eb;
      font-size: 0.6rem;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      border: 1px solid #bfdbfe;
      white-space: nowrap;
    }

    .wa-rescue-bar {
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 7px;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      padding: 7px 11px;
      border-radius: 10px;
      font-size: 0.68rem;
      color: #166534;
      font-weight: 600;
    }

    .wa-rescue-bar strong {
      color: #14532d;
      font-weight: 750;
    }

    .stat-row {
      display: flex;
      gap: 20px;
      margin-top: 16px;
    }

    .stat-row .stat b {
      display: block;
      font-size: 1.4rem;
      font-weight: 800;
      font-family: 'Instrument Sans', sans-serif;
      letter-spacing: -0.03em;
    }

    .stat-row .stat span {
      font-size: 0.7rem;
      color: var(--ink-faint);
      font-weight: 600;
    }

    @media (min-width:768px) {
      .stat-row {
        margin-top: auto;
        padding-top: 16px;
      }
    }

    /* ================= Mobile bento: swipeable stacked cards, no scroll-lock =================
     Desktop (>=768px) is untouched: the wrapper divs collapse via display:contents so
     .bento-card / .ai-card-wrap remain direct children of the .bento grid exactly as before.
     On mobile (<768px) the cards are stacked visually on top of one another, but the section
     is a normal in-flow block - the page scrolls right past it like anything else. Switching
     cards is a horizontal swipe (or a tap on the dots), entirely separate from page scroll. */
    @media (max-width:767px) {
      .bento-pin-outer {
        position: relative;
        min-width: 0;
      }

      .bento-pin {
        position: relative;
        min-width: 0;
      }

      .bento-track {
        position: relative;
        min-width: 0;
        margin: 0 auto;
        padding: 2px 0 4px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        /* let the browser handle vertical scrolling natively and immediately;
         we only ever intercept horizontal drags ourselves (see the touch
         handlers below), so the page never feels locked or laggy to scroll. */
        touch-action: pan-y;
      }

      /* track height hugs whichever card is currently active (set in JS) instead
       of the tallest card in the set, so the dots sit close beneath every
       card - no dead gap under the shorter ones. Transition is added via the
       .height-anim class once the first layout has happened, so cards don't
       visibly grow-in from 0 on load. */
      .bento-track.height-anim {
        transition: height 0.4s var(--ease-soft);
      }

      /* cards are stacked directly on top of one another - the active card sits at
       translateX(0) and every other card sits one full width to its left/right, so
       swiping slides the next card in from the right (or the previous one back in
       from the left) instead of an instant pop. */
      .bento-track>* {
        position: absolute;
        top: 2px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto !important;
        opacity: 0;
        pointer-events: none;
        will-change: transform;
        transition: transform 0.38s var(--ease-soft), opacity 0.2s linear;
      }

      .bento-track>*.is-active {
        pointer-events: auto;
      }

      /* one-time nudge on first load hinting the card is swipeable */
      .bento-track>*.swipe-hint {
        animation: bentoSwipeHint 1.1s ease-in-out 1;
      }

      @keyframes bentoSwipeHint {

        0%,
        100% {
          transform: translateX(0);
        }

        28% {
          transform: translateX(-16px);
        }

        52% {
          transform: translateX(4px);
        }

        74% {
          transform: translateX(-6px);
        }
      }

      .bento-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 9px;
        margin-top: 16px;
      }

      .bento-dots span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(17, 19, 34, 0.16);
        transition: background 0.3s var(--ease-soft), width 0.3s var(--ease-soft), border-radius 0.3s var(--ease-soft);
        cursor: pointer;
      }

      .bento-dots span.active {
        width: 24px;
        border-radius: 4px;
        background: var(--coral);
        box-shadow: 0 2px 8px rgba(255, 138, 101, 0.35);
      }

      @media (prefers-reduced-motion:reduce) {
        .bento-track>*.swipe-hint {
          animation: none;
        }
      }
    }

    @media (min-width:768px) {

      .bento-pin-outer,
      .bento-pin,
      .bento-track {
        display: contents;
      }

      .bento-dots {
        display: none;
      }
    }

    @media (max-width:767px) and (prefers-reduced-motion:reduce) {
      .bento-track {
        height: auto !important;
        max-width: none;
      }

      .bento-track>* {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
      }
    }

    /* ---- Anti-Spam Shield: minimalistic "locker" animation ---- */
    .spam-lock-visual {
      display: block;
      position: relative;
      height: 104px;
      margin-top: 16px;
    }

    @media (max-width:767px) {
      .spam-lock-visual {
        margin-top: auto;
      }
    }

    .spam-lock {
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      flex-shrink: 0;
      z-index: 2;
      background: linear-gradient(150deg, var(--coral), var(--coral-2));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(17, 19, 34, 0.28);
      animation: lockPulseBottom 1.3s ease infinite;
      animation-play-state: paused;
    }

    .spam-lock svg {
      width: 20px;
      height: 20px;
      stroke: #fff;
    }

    .spam-chip {
      position: absolute;
      left: 50%;
      bottom: 22px;
      font-size: 0.66rem;
      font-weight: 700;
      white-space: nowrap;
      color: #B3261E;
      background: #FDEDEC;
      border: 1px solid rgba(179, 38, 30, 0.25);
      border-radius: 100px;
      padding: 3px 9px;
      opacity: 0;
      z-index: 3;
      animation: spamBlock 3.9s ease-in-out infinite;
      animation-play-state: paused;
    }

    .spam-chip.c1 {
      --fx: -64px;
      --fy: -68px;
      animation-delay: 0s;
    }

    .spam-chip.c2 {
      --fx: 70px;
      --fy: -74px;
      animation-delay: 1.3s;
    }

    .spam-chip.c3 {
      --fx: -8px;
      --fy: -80px;
      animation-delay: 2.6s;
    }

    @keyframes spamBlock {
      0% {
        opacity: 0;
        filter: blur(0);
        transform: translate(calc(-50% + var(--fx)), calc(50% + var(--fy))) scale(0.75) rotate(0deg);
      }

      14% {
        opacity: 1;
        filter: blur(0);
        transform: translate(calc(-50% + var(--fx) * 0.32), calc(50% + var(--fy) * 0.32)) scale(0.92) rotate(0deg);
      }

      33% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, 50%) scale(1) rotate(0deg);
      }

      37% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, 50%) scale(0.5) rotate(0deg);
      }

      42% {
        opacity: 0;
        filter: blur(0.5px);
        transform: translate(-50%, 50%) scale(0.02) rotate(0deg);
      }

      100% {
        opacity: 0;
      }
    }

    @keyframes lockPulse {

      0%,
      30% {
        transform: scale(1);
      }

      36% {
        transform: scale(1.14);
        box-shadow: 0 8px 22px rgba(17, 19, 34, 0.4);
      }

      44% {
        transform: scale(1);
      }

      100% {
        transform: scale(1);
      }
    }

    @keyframes lockPulseBottom {

      0%,
      30% {
        transform: translateX(-50%) scale(1);
      }

      36% {
        transform: translateX(-50%) scale(1.14);
        box-shadow: 0 8px 22px rgba(17, 19, 34, 0.4);
      }

      44% {
        transform: translateX(-50%) scale(1);
      }

      100% {
        transform: translateX(-50%) scale(1);
      }
    }

    .bento-card.in-view .spam-lock,
    .bento-card.in-view .spam-chip {
      animation-play-state: running;
    }

    /* Desktop: chips fly in and land on the card's own icon badge (top-left)
     instead of a separate lock icon, so there's a single focal point */
    @media (min-width:768px) {
      .spam-lock-visual {
        position: absolute;
        top: 26px;
        left: 22px;
        height: 40px;
        width: 40px;
        margin-top: 0;
        transform: none;
        transform-origin: center;
        pointer-events: none;
      }

      .spam-lock-visual .spam-lock {
        display: none;
      }

      .bento-card .icon-badge.spam-badge {
        animation: lockPulse 1.3s ease infinite;
        animation-play-state: paused;
      }

      .bento-card.in-view .icon-badge.spam-badge {
        animation-play-state: running;
      }
    }

    @media (prefers-reduced-motion:reduce) {

      .spam-lock,
      .spam-chip {
        animation: none !important;
      }

      .spam-chip {
        opacity: 0;
      }
    }

    /* ---- One-page checkout: Add to Cart -> Checkout -> Order Placed ---- */
    .checkout-flow-visual {
      display: block;
      margin-top: 16px;
    }

    .flow-btn {
      position: relative;
      height: 42px;
      border-radius: 12px;
      overflow: hidden;
      background: var(--ink);
      animation: flowBg 4.8s ease-in-out infinite;
      animation-play-state: paused;
    }

    .flow-state {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 700;
      color: #fff;
      opacity: 0;
      animation: flowState 4.8s ease-in-out infinite;
      animation-play-state: paused;
    }

    .flow-state.s1 {
      opacity: 1;
      transform: none;
    }

    .flow-state svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      flex-shrink: 0;
    }

    .flow-state.s2 {
      animation-delay: -3.2s;
    }

    .flow-state.s3 {
      animation-delay: -1.6s;
    }

    @keyframes flowState {
      0% {
        opacity: 0;
        transform: translateY(7px);
      }

      8% {
        opacity: 1;
        transform: translateY(0);
      }

      27% {
        opacity: 1;
        transform: translateY(0);
      }

      33% {
        opacity: 0;
        transform: translateY(-7px);
      }

      100% {
        opacity: 0;
      }
    }

    @keyframes flowBg {

      0%,
      27% {
        background: var(--ink);
      }

      33%,
      60% {
        background: var(--pepsi-blue-dark);
      }

      66%,
      100% {
        background: var(--green);
      }
    }

    .bento-card.in-view .flow-btn,
    .bento-card.in-view .flow-state {
      animation-play-state: running;
    }

    /* Desktop: sit at bottom of card */
    @media (min-width:768px) {
      .checkout-flow-visual {
        position: static;
        width: 100%;
        margin-top: auto;
        padding-top: 10px;
        pointer-events: auto;
      }

      .checkout-flow-visual .flow-btn {
        height: 38px;
        border-radius: 10px;
      }

      .checkout-flow-visual .flow-state {
        font-size: 0.72rem;
        gap: 6px;
      }

      .checkout-flow-visual .flow-state svg {
        width: 13px;
        height: 13px;
      }
    }

    /* Spam Guard Visual Widget */
    .spam-guard-visual {
      margin-top: 10px;
      padding-top: 0;
    }

    .spam-status-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.65rem;
      font-weight: 750;
      color: #991b1b;
      background: #fef2f2;
      border: 1px solid #fecaca;
      padding: 5px 8px;
      border-radius: 8px;
      margin-bottom: 5px;
    }

    .spam-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #dc2626;
      box-shadow: 0 0 6px rgba(220, 38, 38, 0.6);
      flex-shrink: 0;
    }

    .spam-pills-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5px;
    }

    .spam-pill-card {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.62rem;
      font-weight: 700;
      color: #1e293b;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      padding: 4px 7px;
      border-radius: 8px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
      min-width: 0;
    }

    .spam-pill-card span.txt {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    @media (prefers-reduced-motion:reduce) {

      .flow-btn,
      .flow-state {
        animation: none !important;
      }

      .flow-state.s1 {
        opacity: 1;
      }

      .flow-btn {
        background: var(--ink);
      }
    }

    /* ================= Horizontal scroll-snap shell (demo + reviews) ================= */
    .snap-row {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 6px 18px 22px;
      margin: 0 -18px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .snap-row::-webkit-scrollbar {
      display: none;
    }

    .snap-row>* {
      scroll-snap-align: center;
      flex-shrink: 0;
    }

    @media (min-width:900px) {
      .snap-row {
        overflow: visible;
        padding: 6px 0 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        max-width: 1180px;
        margin: 0 auto;
      }
    }

    /* ================= Storefront demo cards ================= */
    .demo-card {
      width: 82vw;
      max-width: 320px;
      border-radius: 24px;
      padding: 26px 22px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
      display: flex;
      flex-direction: column;
      min-height: 250px;
    }

    @media (min-width:900px) {
      .demo-card {
        width: auto;
      }
    }

    .demo-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .demo-card.dark {
      background: #101018;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .demo-card.light {
      background: #fff;
      border: 1px solid var(--border);
      color: var(--ink);
    }

    .demo-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .demo-meta {
      flex: 1;
      min-width: 0;
    }

    .demo-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .demo-top h3 {
      font-size: 1.08rem;
      margin: 0;
      letter-spacing: -0.02em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .live-badge-mini {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.62rem;
      font-weight: 800;
      color: #10b981;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.25);
      padding: 2px 7px;
      border-radius: 100px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      flex-shrink: 0;
      line-height: 1.2;
    }

    .live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
      animation: livePulse 2s infinite ease-in-out;
    }

    @keyframes livePulse {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
      }

      70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
      }

      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
      }
    }

    .demo-logo {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Instrument Sans', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      overflow: hidden;
    }

    .demo-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .demo-card.dark .demo-logo {
      background: rgba(255, 138, 101, 0.18);
      border: 1.5px solid var(--coral-2);
      color: var(--coral-2);
    }

    .demo-card.light .demo-logo {
      background: var(--peach-soft);
      border: 1.5px solid var(--coral);
      color: var(--coral);
    }

    .demo-top h3 {
      font-size: 1.15rem;
      margin: 0;
      letter-spacing: -0.02em;
    }

    .demo-card.dark .demo-top h3 {
      color: #fff;
    }

    .demo-top .handle {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--coral-2);
    }

    .demo-card.light .demo-top .handle {
      color: var(--coral);
    }

    .demo-card.dark .demo-top .handle {
      color: #FF9A72;
    }

    .demo-card p {
      font-size: 0.83rem;
      line-height: 1.55;
      margin-bottom: 18px;
    }

    .demo-card.dark p {
      color: #A6ABBD;
    }

    .demo-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.82rem;
      font-weight: 800;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 14px;
      margin-top: auto;
    }

    .demo-card.light .demo-foot {
      border-top-color: var(--border);
    }

    .demo-foot .arrow-circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.14);
      transition: transform 0.3s var(--ease);
    }

    .demo-card.light .demo-foot .arrow-circle {
      background: var(--peach-soft);
      border-color: rgba(17, 19, 34, 0.2);
    }

    .demo-card:hover .arrow-circle {
      transform: translateX(3px);
    }

    .demo-foot .arrow-circle svg {
      width: 13px;
      height: 13px;
    }

    /* ================= Reviews ================= */
    .review-card {
      width: 84vw;
      max-width: 340px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 24px 22px;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      min-height: 280px;
    }

    @media (min-width:900px) {
      .review-card {
        width: auto;
      }
    }

    .review-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      gap: 8px;
    }

    .stars {
      display: flex;
      gap: 3px;
      color: #F5A623;
      flex-shrink: 0;
    }

    .stars svg {
      width: 14px;
      height: 14px;
    }

    .verified-pill {
      font-size: 0.58rem;
      font-weight: 700;
      color: var(--ink-faint);
      background: var(--bg-pearl);
      border: 1px solid var(--border);
      padding: 4px 9px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .review-quote {
      font-size: 0.87rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.55;
      margin-bottom: 16px;
    }

    .review-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      border-top: 1px solid var(--border-soft);
      padding-top: 14px;
      margin-top: auto;
    }

    .review-person {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .review-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.85rem;
      flex-shrink: 0;
      color: #fff;
    }

    .review-person h4 {
      font-size: 0.83rem;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .review-person span {
      font-size: 0.7rem;
      color: var(--ink-faint);
      font-weight: 600;
      white-space: nowrap;
    }

    .review-link {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--bg-pearl);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
    }

    .review-link:hover {
      background: var(--ink);
      transform: translateY(-2px);
    }

    .review-link:hover svg {
      stroke: #fff;
    }

    .review-link svg {
      width: 13px;
      height: 13px;
      stroke: var(--ink);
      transition: stroke 0.3s;
    }

    /* Google Reviews Section - Premium Design */
    /* ================= Google Reviews Section - Speech Bubbles ================= */
    #reviews {
      padding: 44px 0 32px;
      overflow: hidden;
    }

    @media (min-width: 900px) {
      #reviews {
        padding: 52px 0 40px;
      }
    }

    .reviews-bubbles-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 1040px;
      margin: 22px auto 0;
      box-sizing: border-box;
      width: 100%;
    }

    .rev-bubble {
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 16px 16px 16px 4px;
      padding: 12px 14px;
      box-shadow: 0 4px 14px -2px rgba(15, 23, 42, 0.04);
      display: flex;
      flex-direction: column;
      gap: 6px;
      text-decoration: none !important;
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      cursor: pointer;
      position: relative;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }

    .rev-bubble:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 22px -4px rgba(15, 23, 42, 0.1);
      border-color: rgba(66, 133, 244, 0.35);
    }

    .rev-bubble-head {
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: 0;
      width: 100%;
      overflow: hidden;
    }

    .rev-bubble-avatar {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .rev-bubble-meta {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
      min-width: 0;
      flex: 1;
      overflow: hidden;
    }

    .rev-bubble-name {
      font-size: 0.78rem;
      font-weight: 750;
      color: #0f172a;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .rev-bubble-sub {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 0.62rem;
      color: #64748b;
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-top: 1px;
    }

    .rev-bubble-stars {
      color: #FBBC04;
      font-size: 0.68rem;
      letter-spacing: 0.5px;
      flex-shrink: 0;
      line-height: 1;
    }

    .rev-bubble-dot {
      color: #94a3b8;
      font-size: 0.6rem;
      flex-shrink: 0;
    }

    .rev-bubble-role {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .rev-bubble-body {
      font-size: 0.72rem;
      line-height: 1.38;
      color: var(--ink-soft);
      font-weight: 500;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      word-break: break-word;
      overflow-wrap: break-word;
    }

    /* Section bottom button */
    .reviews-footer-action {
      text-align: center;
      margin-top: 20px;
    }

    .reviews-google-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 20px;
      font-size: 0.82rem;
      font-weight: 700;
      border-radius: 100px;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.12);
      box-shadow: var(--shadow-sm);
      color: #0f172a;
      text-decoration: none !important;
      transition: all 0.2s ease;
    }

    .reviews-google-btn:hover {
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
      border-color: #4285F4;
      color: #1d4ed8;
    }

    @media (max-width: 640px) {
      #reviews {
        padding: 24px 0 20px !important;
        overflow: hidden !important;
      }

      #reviews .wrap {
        padding: 0 16px !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        overflow: hidden !important;
      }

      #reviews .sec-head {
        margin-bottom: 12px !important;
      }

      #reviews .sec-head h2 {
        font-size: 1.35rem !important;
        margin: 4px 0 !important;
      }

      #reviews .sec-head p {
        font-size: 0.78rem !important;
        margin: 0 auto !important;
      }

      .reviews-bubbles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        margin-top: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }

      .rev-bubble {
        padding: 8px 9px !important;
        gap: 4px !important;
        border-radius: 14px 14px 14px 4px !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .rev-bubble-head {
        display: flex !important;
        align-items: center !important;
        gap: 7px !important;
        min-width: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
      }

      .rev-bubble-avatar {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
      }

      .rev-bubble-meta {
        display: flex !important;
        flex-direction: column !important;
        min-width: 0 !important;
        flex: 1 !important;
        overflow: hidden !important;
      }

      .rev-bubble-name {
        font-size: 0.68rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
      }

      .rev-bubble-sub {
        font-size: 0.52rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 3px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
      }

      .rev-bubble-stars {
        font-size: 0.55rem !important;
        flex-shrink: 0 !important;
      }

      .rev-bubble-dot {
        font-size: 0.50rem !important;
        flex-shrink: 0 !important;
      }

      .rev-bubble-role {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
      }

      .rev-bubble-body {
        font-size: 0.65rem !important;
        line-height: 1.3 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
      }

      .reviews-footer-action {
        margin-top: 14px !important;
      }

      .reviews-google-btn {
        padding: 8px 16px !important;
        font-size: 0.74rem !important;
      }
    }

    /* ================= FAQ ================= */
    .faq-tabs {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 4px;
      margin-bottom: 24px;
      scrollbar-width: none;
    }

    .faq-tabs::-webkit-scrollbar {
      display: none;
    }

    @media (min-width:900px) {
      .faq-tabs {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
      }
    }

    .faq-tab {
      flex-shrink: 0;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 10px 18px;
      border-radius: 100px;
      background: #fff;
      border: 1px solid var(--border);
      color: var(--ink-soft);
      transition: all 0.3s var(--ease-soft);
    }

    .faq-tab.active {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-panel {
      display: none;
      flex-direction: column;
      gap: 10px;
    }

    .faq-panel.active {
      display: flex;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 16px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary .plus {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--bg-pearl);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.35s var(--ease), background 0.3s;
      font-size: 1rem;
      color: var(--coral);
      font-weight: 700;
    }

    .faq-item[open] summary .plus {
      transform: rotate(45deg);
      background: var(--peach-soft);
    }

    .faq-item .faq-body {
      padding: 0 18px 18px;
      font-size: 0.86rem;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    /* ================= Pricing ================= */
    /* ================= Pricing ================= */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px 22px;
      max-width: 1120px;
      margin: 0 auto;
      align-items: stretch;
      width: 100%;
      box-sizing: border-box;
      padding-top: 14px;
    }

    .price-card {
      position: relative;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 30px 22px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.5s var(--ease);
      display: flex;
      flex-direction: column;
      width: 100%;
      box-sizing: border-box;
      min-width: 0;
    }

    .price-card:hover {
      transform: translateY(-4px);
    }

    .price-card .plan {
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--ink-faint);
      margin-bottom: 10px;
    }

    .price-card .amt {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 6px;
    }

    .price-card .amt .num {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .price-card .amt .per {
      font-size: 0.82rem;
      color: var(--ink-faint);
      font-weight: 600;
    }

    .price-card .desc {
      font-size: 0.85rem;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .price-card .feat-intro {
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--ink-faint);
      margin: 2px 0 13px;
    }

    .price-card .feat {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 26px;
      flex-grow: 1;
    }

    .price-card .feat li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 0.86rem;
      font-weight: 600;
      color: var(--ink);
      white-space: normal;
      word-break: break-word;
    }

    .price-card .feat li svg {
      width: 17px;
      height: 17px;
      flex-shrink: 0;
      stroke: var(--coral);
    }

    .price-card .feat li strong {
      font-weight: 700;
    }

    .price-card .feat li.locked {
      color: var(--ink-faint);
      opacity: 0.62;
    }

    .price-card .feat li.locked svg {
      stroke: var(--ink-faint);
    }

    .price-card .btn {
      margin-top: auto;
    }

    .plan-free-pill {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #10b981;
      color: #fff;
      font-size: 0.7rem;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 100px;
      box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
      letter-spacing: 0.02em;
    }

    /* Address tier chip - sits between desc and features */
    .plan-address-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--peach-soft);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 8px 12px;
      margin-bottom: 18px;
    }

    .plan-address-chip .pac-icon {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      background: var(--bg-pearl);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid var(--border);
    }

    .plan-address-chip .pac-icon svg {
      width: 13px;
      height: 13px;
      stroke: var(--ink-soft);
    }

    .plan-address-chip .pac-text {
      min-width: 0;
    }

    .plan-address-chip .pac-label {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--ink-faint);
      line-height: 1;
      margin-bottom: 2px;
    }

    .plan-address-chip .pac-url {
      font-family: monospace;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--ink);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
    }

    /* Pro chip */
    .plan-address-chip.chip-pro {
      background: #f5f3ff;
      border-color: #ddd6fe;
    }

    .plan-address-chip.chip-pro .pac-icon {
      background: #ede9fe;
      border-color: #c4b5fd;
    }

    .plan-address-chip.chip-pro .pac-icon svg {
      stroke: #7C3AED;
    }

    .plan-address-chip.chip-pro .pac-url {
      color: #5B21B6;
    }

    /* Power Addons CSS (Minimal Merged Verification | AI Card) */
    .addons-wrap {
      max-width: 1060px;
      margin: 18px auto 0;
    }

    .addon-merged-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 18px;
      padding: 20px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      box-shadow: 0 4px 18px -4px rgba(15, 23, 42, 0.03);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .addon-merged-card:hover {
      border-color: #cbd5e1;
      box-shadow: 0 8px 24px -6px rgba(15, 23, 42, 0.06);
    }

    @media (min-width: 768px) {
      .addon-merged-card {
        grid-template-columns: 1fr auto 1fr;
        gap: 24px;
        align-items: stretch;
        padding: 22px 28px;
      }
    }

    .addon-merged-side {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .addon-merged-divider {
      display: none;
    }

    @media (min-width: 768px) {
      .addon-merged-divider {
        display: block;
        width: 1px;
        background: #f1f5f9;
        align-self: stretch;
      }
    }

    @media (max-width: 767px) {
      .addon-merged-side:first-child {
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 16px;
      }
    }

    .addon-side-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
    }

    .addon-icon-box {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .verification-icon-box {
      background: #f0f9ff;
    }

    .ai-icon-box {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      color: #0f172a;
    }

    .addon-eyebrow {
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #64748b;
      line-height: 1;
      margin-bottom: 2px;
    }

    .addon-merged-title {
      font-size: 0.95rem;
      font-weight: 750;
      color: #0f172a;
      margin: 0;
      line-height: 1.25;
    }

    .addon-merged-desc {
      font-size: 0.78rem;
      color: #475569;
      line-height: 1.45;
      margin: 0 0 10px;
    }

    .addon-merged-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: auto;
    }

    .addon-sub-note {
      font-size: 0.7rem;
      font-weight: 600;
      color: #64748b;
    }

    .addon-badge-clean {
      font-size: 0.68rem;
      font-weight: 700;
      color: #334155;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      padding: 3px 8px;
      border-radius: 6px;
      letter-spacing: 0.02em;
    }

    /* ---- info tooltip on select features ---- */
    .info-wrap {
      position: relative;
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .info-btn {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--peach-soft);
      border: 1px solid var(--border);
      color: var(--ink-soft);
      font-size: 0.63rem;
      font-weight: 800;
      font-style: italic;
      font-family: 'Instrument Sans', sans-serif;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background .2s var(--ease-soft), color .2s var(--ease-soft);
    }

    .info-btn:hover,
    .info-wrap.open .info-btn {
      background: var(--coral);
      color: #fff;
      border-color: var(--coral);
    }

    .info-pop {
      position: absolute;
      left: 50%;
      bottom: calc(100% + 10px);
      transform: translateX(-50%) translateY(6px);
      width: 230px;
      max-width: 64vw;
      background: var(--ink);
      color: #fff;
      font-size: 0.74rem;
      font-weight: 500;
      line-height: 1.45;
      white-space: normal;
      text-transform: none;
      letter-spacing: normal;
      padding: 12px 14px;
      border-radius: 12px;
      box-shadow: var(--shadow-lg);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .18s var(--ease-soft), transform .18s var(--ease-soft);
      z-index: 30;
    }

    .info-pop::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 6px solid transparent;
      border-top-color: var(--ink);
    }

    .info-wrap.open .info-pop,
    .info-wrap:hover .info-pop,
    .info-wrap:focus-within .info-pop {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    /* ================= OPTION 2: SPLIT-HERO (LIGHT LUXURY COMPACT) ================= */
    .split-pricing-wrap {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      max-width: 1060px;
      margin: 0 auto;
    }

    @media (min-width: 920px) {
      .split-pricing-wrap {
        grid-template-columns: 1.25fr 1fr;
        gap: 20px;
        align-items: stretch;
      }
    }

    /* Left Hero Card (Free Powerhouse) */
    .split-free-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 22px 18px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 18px -4px rgba(15, 23, 42, 0.04);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    @media (min-width: 768px) {
      .split-free-card {
        padding: 28px 26px;
      }
    }

    .split-free-card:hover {
      transform: translateY(-2px);
      border-color: #cbd5e1;
      box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.08);
    }

    .sfc-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #f8fafc;
      color: #475569;
      border: 1px solid #e2e8f0;
      font-size: 0.68rem;
      font-weight: 750;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 3px 9px;
      border-radius: 6px;
      margin-bottom: 8px;
      width: fit-content;
    }

    @media (max-width: 640px) {
      #pricing {
        padding: 50px 0;
      }

      #pricing .wrap {
        padding: 0 16px;
      }

      .split-free-card,
      .split-pro-card {
        padding: 22px 18px;
        border-radius: 18px;
      }

      .addon-merged-card {
        padding: 18px 16px;
        border-radius: 16px;
      }
    }

    .sfc-header-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 6px;
      width: 100%;
    }

    .sfc-title {
      font-size: clamp(1.1rem, 4.4vw, 1.3rem);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.2;
      margin: 0;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }

    .sfc-price {
      font-family: 'Instrument Sans', sans-serif;
      font-size: clamp(1.25rem, 5vw, 1.55rem);
      font-weight: 800;
      color: #0f172a;
      line-height: 1;
      white-space: nowrap;
      text-align: right;
      margin-left: auto;
    }

    .sfc-price .per {
      font-size: 0.72rem;
      font-weight: 600;
      color: #64748b;
    }

    .sfc-sub {
      font-size: 0.82rem;
      color: #475569;
      line-height: 1.45;
      margin: 0 0 14px;
    }

    /* Compact feature checklist for Free plan */
    .sfc-feat-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 7px;
      margin-bottom: 16px;
      flex-grow: 1;
    }

    @media (min-width: 500px) {
      .sfc-feat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
      }
    }

    .sfc-feat-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #1e293b;
      background: #f8fafc;
      border: 1px solid #f1f5f9;
      padding: 7px 10px;
      border-radius: 8px;
    }

    .sfc-feat-item svg {
      width: 15px;
      height: 15px;
      stroke: #0f172a;
      flex-shrink: 0;
    }

    .sfc-bottom-bar {
      border-top: 1px solid #f1f5f9;
      padding-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: auto;
    }

    .sfc-action {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .sfc-btn {
      padding: 11px 22px !important;
      font-weight: 750 !important;
      font-size: 0.86rem !important;
      white-space: nowrap;
      width: 100%;
    }

    @media (min-width: 540px) {
      .sfc-btn {
        width: auto;
      }
    }

    .sfc-guarantee {
      font-size: 0.72rem;
      font-weight: 600;
      color: #64748b;
    }

    /* Right Card (Light Luxury Pro Pass - Premium Slate Focus) */
    .split-pro-card {
      background: #ffffff;
      border: 1.5px solid #0f172a;
      border-radius: 20px;
      padding: 22px 18px;
      color: #0f172a;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 30px -6px rgba(15, 23, 42, 0.09);
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    @media (min-width: 768px) {
      .split-pro-card {
        padding: 28px 24px;
      }
    }

    .split-pro-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.14);
    }

    .spc-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #0f172a;
      color: #ffffff;
      border: 1px solid #0f172a;
      font-size: 0.68rem;
      font-weight: 750;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 3px 10px;
      border-radius: 6px;
      width: fit-content;
      margin-bottom: 8px;
    }

    .spc-header-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 4px;
      width: 100%;
    }

    .spc-plan {
      font-size: clamp(1.1rem, 4.4vw, 1.3rem);
      font-weight: 800;
      color: #0f172a;
      margin: 0;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }

    .spc-price-wrap {
      display: flex;
      align-items: baseline;
      gap: 4px;
      white-space: nowrap;
      margin-left: auto;
      text-align: right;
      flex-shrink: 0;
    }

    .spc-price {
      font-family: 'Instrument Sans', sans-serif;
      font-size: clamp(1.35rem, 5.5vw, 1.7rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.02em;
      color: #0f172a;
      white-space: nowrap;
    }

    .spc-price .currency {
      font-size: 1.1rem;
    }

    .spc-price .per {
      font-size: 0.72rem;
      font-weight: 600;
      color: #64748b;
    }

    .spc-chai-tag {
      font-size: 0.75rem;
      font-weight: 600;
      color: #64748b;
      margin: 2px 0 10px;
      display: block;
      line-height: 1.4;
    }

    .spc-sub {
      font-size: 0.82rem;
      color: #475569;
      line-height: 1.45;
      margin: 0 0 10px;
    }

    .spc-divider {
      height: 1px;
      background: #f1f5f9;
      margin: 6px 0 10px;
    }

    .spc-label {
      font-size: 0.7rem;
      font-weight: 750;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #64748b;
      margin-bottom: 8px;
    }

    .spc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 16px;
      flex-grow: 1;
      padding: 0;
    }

    .spc-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: #334155;
    }

    .spc-list li svg {
      width: 15px;
      height: 15px;
      stroke: #0f172a;
      flex-shrink: 0;
    }

    .spc-list li strong {
      color: #0f172a;
      font-weight: 700;
    }

    .spc-list li .subtext {
      color: #64748b;
      font-size: 0.74rem;
      font-weight: 400;
      margin-left: 3px;
    }

    .spc-btn {
      background: #0f172a !important;
      color: #ffffff !important;
      text-align: center;
      padding: 11px 20px !important;
      border-radius: 10px !important;
      font-weight: 750 !important;
      font-size: 0.86rem !important;
      text-decoration: none;
      transition: all 0.2s ease;
      width: 100%;
    }

    .spc-btn:hover {
      background: #1e293b !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
    }

    /* ---- crown badge (Pro Plan / Addon) on bento cards ---- */
    .crown-card-wrap,
    .ai-card-wrap {
      position: relative;
      z-index: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .crown-card-wrap>.bento-card,
    .ai-card-wrap>.bento-card {
      flex: 1;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .plan-crown-wrap {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 3;
    }

    .plan-crown-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: none;
      padding: 0;
      cursor: pointer;
      background: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
      transition: transform .2s var(--ease-soft);
    }

    .plan-crown-btn svg {
      width: 15px;
      height: 15px;
      stroke: #fff;
      flex-shrink: 0;
    }

    .plan-crown-wrap:hover .plan-crown-btn,
    .plan-crown-wrap.open .plan-crown-btn {
      transform: scale(1.08);
    }

    .ai-card-wrap .plan-crown-btn {
      background: #fff;
    }

    .ai-card-wrap .plan-crown-btn svg {
      stroke: var(--ink);
    }

    .plan-crown-pop {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      width: 190px;
      max-width: 60vw;
      background: var(--ink);
      color: #fff;
      font-size: 0.74rem;
      font-weight: 600;
      line-height: 1.4;
      white-space: normal;
      text-align: left;
      padding: 9px 13px;
      border-radius: 12px;
      box-shadow: var(--shadow-lg);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-4px);
      transition: opacity .18s var(--ease-soft), transform .18s var(--ease-soft);
      z-index: 30;
    }

    .plan-crown-pop::after {
      content: '';
      position: absolute;
      bottom: 100%;
      right: 11px;
      border: 6px solid transparent;
      border-bottom-color: var(--ink);
    }

    .plan-crown-wrap.open .plan-crown-pop,
    .plan-crown-wrap:hover .plan-crown-pop,
    .plan-crown-wrap:focus-within .plan-crown-pop {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    @media (max-width:899px) {
      .price-card .feat li {
        font-size: 0.78rem;
        gap: 7px;
        letter-spacing: -0.01em;
      }

      .price-card .feat li svg {
        width: 15px;
        height: 15px;
      }

      .info-pop {
        left: auto;
        right: -8px;
        transform: translateY(6px);
      }

      .info-pop::after {
        left: auto;
        right: 14px;
        transform: none;
      }

      .info-wrap.open .info-pop {
        transform: translateY(0);
      }
    }

    .price-card.hero-plan {
      border: 1px solid transparent;
      background: linear-gradient(#fff, #fff) padding-box, linear-gradient(150deg, var(--coral), var(--coral-2), var(--peach)) border-box;
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(17, 19, 34, 0.05);
      animation: glow 3.4s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes glow {

      0%,
      100% {
        box-shadow: var(--shadow-lg), 0 0 24px rgba(17, 19, 34, 0.16);
      }

      50% {
        box-shadow: var(--shadow-lg), 0 0 44px rgba(17, 19, 34, 0.32);
      }
    }

    .price-badge {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--ink);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 800;
      padding: 7px 18px;
      border-radius: 100px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 6px;
      animation: bob 3s ease-in-out infinite;
      white-space: nowrap;
    }

    @keyframes bob {

      0%,
      100% {
        transform: translate(-50%, 0);
      }

      50% {
        transform: translate(-50%, -5px);
      }
    }

    @media (min-width:768px) {
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 820px;
        gap: 26px;
      }

      .price-card.hero-plan {
        transform: scale(1.02);
        order: 0;
      }

      .price-card.hero-plan:hover {
        transform: scale(1.02) translateY(-4px);
      }
    }

    /* ================= Final CTA ================= */
    .final-cta {
      max-width: 920px;
      margin: 0 auto;
      text-align: center;
      background: var(--glass-strong);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 28px;
      padding: 50px 24px;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .final-cta h2 {
      font-size: clamp(1.5rem, 6vw, 2.7rem);
      margin-bottom: 14px;
    }

    .final-cta p {
      max-width: 420px;
      margin: 0 auto 26px;
    }

    .final-cta .btn {
      max-width: 320px;
      margin: 0 auto;
    }

    /* ================= Footer ================= */
    footer {
      padding: 56px 18px 28px;
      border-top: 1px solid var(--border);
    }

    .foot-grid {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .foot-brand p {
      font-size: 0.86rem;
      margin: 14px 0;
      max-width: 280px;
    }

    .foot-contact {
      font-size: 0.84rem;
      color: var(--ink-soft);
      line-height: 1.8;
    }

    .foot-contact a {
      color: var(--ink-soft);
      font-weight: 600;
    }

    .foot-contact a:hover {
      color: var(--coral);
    }

    .foot-col h5 {
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--ink-faint);
      margin-bottom: 16px;
    }

    .foot-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .foot-col a {
      font-size: 0.87rem;
      font-weight: 600;
      color: var(--ink-soft);
    }

    .foot-col a:hover {
      color: var(--coral);
    }

    .foot-bottom {
      max-width: 1180px;
      margin: 0 auto;
      padding-top: 26px;
      border-top: 1px solid var(--border-soft);
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .foot-bottom .copyright {
      font-size: 0.78rem;
      color: var(--ink-faint);
    }

    .foot-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .foot-legal a {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--ink-faint);
    }

    .foot-legal a:hover {
      color: var(--ink);
    }

    @media (min-width:768px) {
      .foot-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 24px;
      }

      .foot-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }

    /* ================= Reveal on scroll ================= */
    .reveal {
      opacity: 1;
      transform: none;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion:reduce) {
      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    /* The mobile carousel controls opacity/transform for each slide via inline
     styles set in JS (see bento-track script below), which always wins over
     class-based CSS for those two properties regardless of what's here. But
     the *transition* property itself isn't set inline, so without this rule
     the base .reveal transition (0.8s, translateY-based - meant for a totally
     different scroll-reveal effect) would win the cascade over the carousel's
     own transform transition on every direct .bento-card, since both rules
     share the same specificity and .reveal is later in the stylesheet. Direct
     bento-card children need it explicitly; the 6th ("AI") slide is nested one
     level deeper inside .ai-card-wrap, so it never carries .reveal at the
     .bento-track > * level and isn't affected either way. */
    /* The mobile carousel controls opacity/transform for each slide via inline
     styles set in JS (see bento-track script below) once on init, which always
     wins over class-based CSS for those two properties regardless of what's
     here. But the *transition* property itself isn't set inline, so without
     this rule the base .reveal transition (0.8s, translateY-based - meant for
     a totally different scroll-reveal effect) would win the cascade over the
     carousel's own transform transition on every direct .bento-card, since
     both rules share the same specificity and .reveal is later in the
     stylesheet. Direct bento-card children need it explicitly; the 6th ("AI")
     slide is nested one level deeper inside .ai-card-wrap, so it never carries
     .reveal at the .bento-track > * level and isn't affected either way. */
    @media (max-width:767px) {
      .bento-track>*.reveal {
        transition: transform 0.38s var(--ease-soft), opacity 0.2s linear;
      }

      .crown-card-wrap>.bento-card,
      .ai-card-wrap>.bento-card {
        opacity: 1;
      }
    }

    /* ================= Enterprise Cloud Infrastructure Section ================= */
    .infra-section {
      padding: 80px 0 50px;
      position: relative;
      z-index: 1;
    }

    .infra-card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: var(--shadow-md);
      overflow: hidden;
      position: relative;
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    }

    .infra-card:hover {
      box-shadow: var(--shadow-lg);
      border-color: rgba(17, 19, 34, 0.14);
    }

    .infra-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 32px;
      background: linear-gradient(180deg, rgba(248, 249, 252, 0.8) 0%, #FFFFFF 100%);
      border-bottom: 1px solid var(--border-soft);
      flex-wrap: wrap;
    }

    .infra-brand-col {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .infra-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, #111322, #2B2E4A);
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(17, 19, 34, 0.18);
      flex-shrink: 0;
    }

    .infra-title {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    .infra-subtitle {
      font-size: 0.78rem;
      color: var(--ink-soft);
      font-weight: 500;
    }

    .infra-status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(22, 163, 74, 0.08);
      border: 1px solid rgba(22, 163, 74, 0.22);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 0.74rem;
      font-weight: 700;
      color: #15803d;
    }

    .infra-live-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #16a34a;
      box-shadow: 0 0 8px rgba(22, 163, 74, 0.8);
      animation: infraPulse 2s infinite ease-in-out;
    }

    @keyframes infraPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(0.85);
      }
    }

    .infra-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border-soft);
    }

    .infra-col {
      background: #FFFFFF;
      padding: 34px 28px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: background 0.2s ease;
    }

    .infra-col:hover {
      background: #FAFAFC;
    }

    .infra-col-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .infra-col h4 {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .infra-col p {
      font-size: 0.86rem;
      color: var(--ink-soft);
      line-height: 1.55;
      margin-bottom: 22px;
      flex: 1;
    }

    .infra-metric {
      display: flex;
      flex-direction: column;
      padding-top: 16px;
      border-top: 1px dashed var(--border);
    }

    .infra-metric-val {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .infra-metric-lbl {
      font-size: 0.72rem;
      color: var(--ink-faint);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 3px;
    }

    .infra-footer {
      padding: 20px 32px;
      background: #FAFBFD;
      border-top: 1px solid var(--border-soft);
    }

    .infra-assurances {
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 16px;
      flex-wrap: wrap;
    }

    .infra-assurance-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--ink-soft);
    }

    .infra-assurance-item svg {
      color: #16a34a;
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .infra-section {
        padding: 60px 0 40px;
      }

      .infra-grid {
        grid-template-columns: 1fr;
      }

      .infra-header {
        padding: 18px 20px;
      }

      .infra-col {
        padding: 24px 20px;
      }

      .infra-footer {
        padding: 16px 20px;
      }

      .infra-assurances {
        justify-content: flex-start;
        gap: 12px 20px;
      }
    }

    /* ================= Desktop nav reveal ================= */
    @media (min-width:900px) {
      nav {
        padding: 18px 24px 0;
      }

      .nav-inner {
        padding: 12px 16px 12px 22px;
      }

      .nav-links {
        display: flex;
      }

      .nav-cta {
        display: flex;
      }

      .hamburger {
        display: none;
      }
    }