/* Homepage-specific Pearl Rain design, scoped to avoid changing admin/portal/other pages. */

    .pearl-home{
      --blue: #0063a6;
      --blue-700: #004f86;
      --blue-300: #2e9fe0;
      --blue-100: #cfe6f7;
      --ink: #0b2236;
      --ink-600: #33485c;
      --slate: #5c7388;
      --line: #dbe7f1;
      --wash: #f3f8fc;
      --wash-2: #eaf3fa;
      --white: #fff;
      --green: #1aa251;
      --shadow-sm: 0 1px 2px rgba(11, 34, 54, .04), 0 6px 18px rgba(11, 34, 54, .06);
      --shadow-md: 0 14px 38px rgba(11, 34, 54, .12);
      --shadow-blue: 0 18px 40px rgba(0, 99, 166, .22);
      --r: 8px;
      --r-lg: 8px;
      --maxw: 1200px;
      --ease: cubic-bezier(.16, 1, .3, 1);
    }

    .pearl-home *{
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    .pearl-home{
      scroll-behavior: smooth
    }

    .pearl-home{
      font-family: "IBM Plex Sans", system-ui, sans-serif;
      color: var(--ink-600);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

    .pearl-home h1, .pearl-home h2, .pearl-home h3, .pearl-home h4{
      font-family: "Space Grotesk", sans-serif;
      color: var(--ink);
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 600
    }

    .pearl-home a{
      color: inherit;
      text-decoration: none
    }

    .pearl-home svg{
      display: block
    }

    .pearl-home .wrap{
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 24px
    }

    .pearl-home .eyebrow{
      font-family: "IBM Plex Mono", monospace;
      font-size: .74rem;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      gap: .6em
    }

    .pearl-home .eyebrow::before{
      content: "";
      width: 26px;
      height: 1px;
      background: var(--blue);
      opacity: .6
    }

    .pearl-home .section{
      padding: 96px 0;
      position: relative
    }

    .pearl-home .section-head{
      max-width: 680px;
      margin-bottom: 54px
    }

    .pearl-home .section-head h2{
      font-size: 2.9rem;
      margin: 16px 0 14px
    }

    .pearl-home .section-head p{
      font-size: 1.05rem;
      color: var(--slate)
    }

    .pearl-home /* decorative dot grid */
    .dotgrid{
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
      background-size: 24px 24px;
      -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
      mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
      opacity: .6;
      pointer-events: none;
      z-index: 0
    }

    .pearl-home /* BUTTONS */
    .btn{
      display: inline-flex;
      align-items: center;
      gap: .55em;
      font-weight: 600;
      font-size: .95rem;
      padding: 14px 26px;
      border-radius: 999px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
      position: relative;
      overflow: hidden
    }

    .pearl-home .btn svg{
      width: 17px;
      height: 17px;
      transition: transform .35s var(--ease)
    }

    .pearl-home .btn:hover svg{
      transform: translateX(3px)
    }

    .pearl-home .btn-primary{
      background: var(--blue);
      color: #fff;
      box-shadow: var(--shadow-blue)
    }

    .pearl-home .btn-primary:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 48px rgba(0, 99, 166, .32);
      background: var(--blue-700)
    }

    .pearl-home .btn-ghost{
      background: #fff;
      color: var(--ink);
      border-color: var(--line)
    }

    .pearl-home .btn-ghost:hover{
      border-color: var(--blue);
      color: var(--blue);
      transform: translateY(-2px)
    }

    .pearl-home .btn-white{
      background: #fff;
      color: var(--blue)
    }

    .pearl-home .btn-white:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, .18)
    }

    .pearl-home .btn-outline-white{
      background: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, .5)
    }

    .pearl-home .btn-outline-white:hover{
      background: rgba(255, 255, 255, .12);
      border-color: #fff;
      transform: translateY(-2px)
    }

    .pearl-home /* TOP BAR */
    .topbar{
      background: var(--ink);
      color: #cfe0ee;
      font-size: .83rem
    }

    .pearl-home .topbar .wrap{
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 42px;
      gap: 18px
    }

    .pearl-home .topbar a{
      color: #cfe0ee;
      transition: color .2s
    }

    .pearl-home .topbar a:hover{
      color: #fff
    }

    .pearl-home .topbar-left{
      display: flex;
      gap: 22px;
      align-items: center;
      font-family: "IBM Plex Mono", monospace;
      font-size: .78rem
    }

    .pearl-home .topbar-left span{
      display: inline-flex;
      align-items: center;
      gap: 7px
    }

    .pearl-home .topbar-right{
      display: flex;
      gap: 14px;
      align-items: center
    }

    .pearl-home .dot{
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #3ad07f;
      animation: pulse 2.4s infinite
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(58, 208, 127, .5)
      }

      70% {
        box-shadow: 0 0 0 7px rgba(58, 208, 127, 0)
      }

      100% {
        box-shadow: 0 0 0 0 rgba(58, 208, 127, 0)
      }
    }

    .pearl-home .soc{
      display: inline-flex;
      width: 26px;
      height: 26px;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      background: rgba(255, 255, 255, .08)
    }

    .pearl-home .soc:hover{
      background: var(--blue)
    }

    .pearl-home .soc svg{
      width: 13px;
      height: 13px;
      fill: #fff
    }

    .pearl-home /* NAV */
    .nav{
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgba(255, 255, 255, .86);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
      transition: box-shadow .3s
    }

    .pearl-home .nav.scrolled{
      box-shadow: var(--shadow-sm)
    }

    .pearl-home .nav .wrap{
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 84px
    }

    .pearl-home .nav-logo img{
      height: 46px;
      width: auto
    }

    .pearl-home .nav-links{
      display: flex;
      gap: 6px;
      align-items: center
    }

    .pearl-home .nav-links a{
      font-weight: 500;
      font-size: .95rem;
      color: var(--ink);
      padding: 9px 16px;
      border-radius: 999px;
      transition: color .2s, background .2s
    }

    .pearl-home .nav-links a:hover{
      color: var(--blue);
      background: var(--wash)
    }

    .pearl-home .nav-cta{
      display: flex;
      align-items: center;
      gap: 14px
    }

    .pearl-home .nav-phone{
      font-family: "IBM Plex Mono", monospace;
      font-weight: 600;
      font-size: .92rem;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 8px
    }

    .pearl-home .nav-phone svg{
      width: 16px;
      height: 16px;
      fill: var(--blue)
    }

    .pearl-home .burger{
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 8px
    }

    .pearl-home .burger span{
      width: 24px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: .3s
    }

    .pearl-home /* HERO */
    .hero{
      position: relative;
      background: linear-gradient(180deg, #fff, var(--wash));
      overflow: hidden;
      border-bottom: 1px solid var(--line)
    }

    .pearl-home #hero-canvas{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1
    }

    .pearl-home .hero .wrap{
      position: relative;
      z-index: 2;
      padding-top: 90px;
      padding-bottom: 100px
    }

    .pearl-home .hero-grid{
      display: grid;
      grid-template-columns: 1.04fr .96fr;
      gap: 50px;
      align-items: center
    }

    .pearl-home .hero h1{
      font-size: 4rem;
      margin: 20px 0 22px;
      font-weight: 600
    }

    .pearl-home .hero h1 .grad{
      background: linear-gradient(100deg, var(--blue), var(--blue-300));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent
    }

    .pearl-home .hero p.lead{
      font-size: 1.15rem;
      color: var(--ink-600);
      max-width: 540px;
      margin-bottom: 30px
    }

    .pearl-home .hero-actions{
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 34px
    }

    .pearl-home .hero-trust{
      display: flex;
      gap: 14px;
      flex-wrap: wrap
    }

    .pearl-home .chip{
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 9px 15px;
      box-shadow: var(--shadow-sm);
      font-size: .85rem;
      font-weight: 500;
      color: var(--ink)
    }

    .pearl-home .chip svg{
      width: 17px;
      height: 17px;
      stroke: var(--blue);
      fill: none
    }

    .pearl-home /* hero visual panel */
    .hero-visual{
      position: relative
    }

    .pearl-home .panel{
      background: rgba(255, 255, 255, .78);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(8px);
      overflow: hidden
    }

    .pearl-home .panel-head{
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 13px 18px;
      border-bottom: 1px solid var(--line);
      background: var(--wash)
    }

    .pearl-home .pd{
      width: 10px;
      height: 10px;
      border-radius: 50%
    }

    .pearl-home .pd.r{
      background: #ff5f57
    }

    .pearl-home .pd.y{
      background: #febc2e
    }

    .pearl-home .pd.g{
      background: #28c840
    }

    .pearl-home .panel-head .t{
      margin-left: 8px;
      font-family: "IBM Plex Mono";
      font-size: .74rem;
      color: var(--slate);
      letter-spacing: 0
    }

    .pearl-home .panel-head .live{
      margin-left: auto;
      font-family: "IBM Plex Mono";
      font-size: .68rem;
      color: var(--green);
      display: flex;
      align-items: center;
      gap: 6px
    }

    .pearl-home .panel-body{
      padding: 20px
    }

    .pearl-home .gauge-row{
      display: flex;
      gap: 18px;
      align-items: center;
      margin-bottom: 18px
    }

    .pearl-home .gauge{
      width: 108px;
      height: 108px;
      flex: none;
      position: relative
    }

    .pearl-home .gauge .val{
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center
    }

    .pearl-home .gauge .val b{
      font-family: "Space Grotesk";
      font-size: 1.3rem;
      color: var(--ink);
      font-weight: 700;
      line-height: 1
    }

    .pearl-home .gauge .val span{
      font-family: "IBM Plex Mono";
      font-size: .6rem;
      color: var(--slate);
      letter-spacing: 0
    }

    .pearl-home .spark{
      flex: 1
    }

    .pearl-home .spark .lab{
      font-family: "IBM Plex Mono";
      font-size: .7rem;
      color: var(--slate);
      margin-bottom: 6px;
      display: flex;
      justify-content: space-between
    }

    .pearl-home .spark .lab b{
      color: var(--ink);
      font-size: .92rem
    }

    .pearl-home .mini-rows{
      display: flex;
      flex-direction: column;
      gap: 9px
    }

    .pearl-home .mini{
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 11px;
      background: #fff;
      border: 1px solid var(--line)
    }

    .pearl-home .mini .mic{
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: var(--wash-2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex: none
    }

    .pearl-home .mini .mic svg{
      width: 17px;
      height: 17px;
      stroke: var(--blue);
      fill: none
    }

    .pearl-home .mini .mt b{
      display: block;
      font-family: "Space Grotesk";
      font-size: .86rem;
      color: var(--ink);
      font-weight: 600
    }

    .pearl-home .mini .mt span{
      font-size: .72rem;
      color: var(--slate);
      font-family: "IBM Plex Mono"
    }

    .pearl-home .mini .badge{
      margin-left: auto;
      font-family: "IBM Plex Mono";
      font-size: .7rem;
      font-weight: 600;
      color: var(--green);
      background: rgba(26, 162, 81, .1);
      padding: 4px 9px;
      border-radius: 999px
    }

    .pearl-home .float-chip{
      position: absolute;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 13px;
      padding: 11px 14px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: "IBM Plex Mono";
      font-size: .76rem;
      font-weight: 600;
      color: var(--ink);
      z-index: 3;
      animation: floaty 5s ease-in-out infinite
    }

    .pearl-home .float-chip svg{
      width: 18px;
      height: 18px;
      stroke: var(--blue);
      fill: none
    }

    .pearl-home .float-chip.fc1{
      top: -18px;
      right: 30px
    }

    .pearl-home .float-chip.fc2{
      bottom: 30px;
      left: -26px;
      animation-delay: 1.5s
    }

    @keyframes floaty {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-9px)
      }
    }

    .pearl-home /* PARTNERS */
    .partners{
      padding: 40px 0;
      border-bottom: 1px solid var(--line);
      background: #fff
    }

    .pearl-home .partners-lab{
      text-align: center;
      font-family: "IBM Plex Mono";
      font-size: .74rem;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--slate);
      margin-bottom: 24px
    }

    .pearl-home .marquee{
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
    }

    .pearl-home .marquee-track{
      display: flex;
      gap: 18px;
      align-items: center;
      width: max-content;
      animation: scroll 34s linear infinite
    }

    .pearl-home .marquee:hover .marquee-track{
      animation-play-state: paused
    }

    @keyframes scroll {
      to {
        transform: translateX(-50%)
      }
    }

    .pearl-home .plogo{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 20px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--wash);
      font-family: "Space Grotesk";
      font-weight: 600;
      font-size: 1rem;
      color: var(--ink);
      white-space: nowrap;
      transition: .3s
    }

    .pearl-home .plogo:hover{
      border-color: var(--blue);
      background: #fff;
      box-shadow: var(--shadow-sm)
    }

    .pearl-home .plogo .pdot{
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--blue)
    }

    .pearl-home /* STATS BAND */
    .stats{
      background: var(--ink);
      color: #cfe0ee;
      position: relative;
      overflow: hidden;
      padding: 64px 0
    }

    .pearl-home .stats-grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
      z-index: 2
    }

    .pearl-home .stat{
      text-align: center;
      padding: 10px
    }

    .pearl-home .stat .sic{
      width: 50px;
      height: 50px;
      margin: 0 auto 14px;
      border-radius: 13px;
      background: rgba(46, 159, 224, .16);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .pearl-home .stat .sic svg{
      width: 25px;
      height: 25px;
      stroke: var(--blue-300);
      fill: none
    }

    .pearl-home .stat b{
      font-family: "Space Grotesk";
      font-size: 2.6rem;
      font-weight: 700;
      color: #fff;
      display: block;
      line-height: 1
    }

    .pearl-home .stat span{
      font-size: .86rem;
      color: #9fb6cb;
      margin-top: 6px;
      display: block
    }

    .pearl-home .stat+.stat{
      border-left: 1px solid rgba(255, 255, 255, .08)
    }

    .pearl-home /* FEATURES */
    .features{
      background: var(--wash);
      position: relative
    }

    .pearl-home .feat-grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      position: relative;
      z-index: 2
    }

    .pearl-home .feat{
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 30px 26px;
      transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
      position: relative;
      overflow: hidden
    }

    .pearl-home .feat::after{
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--blue), var(--blue-300));
      transition: width .4s var(--ease)
    }

    .pearl-home .feat:hover{
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: transparent
    }

    .pearl-home .feat:hover::after{
      width: 100%
    }

    .pearl-home .feat .num{
      font-family: "IBM Plex Mono";
      font-size: .78rem;
      color: var(--blue);
      font-weight: 600
    }

    .pearl-home .feat .ficon{
      width: 54px;
      height: 54px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--blue), var(--blue-300));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 14px 0 18px;
      box-shadow: var(--shadow-blue);
      position: relative
    }

    .pearl-home .feat .ficon svg{
      width: 26px;
      height: 26px;
      stroke: #fff;
      fill: none
    }

    .pearl-home .feat .ficon::after{
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 14px;
      border: 1.5px solid rgba(255, 255, 255, .25)
    }

    .pearl-home .feat h3{
      font-size: 1.18rem;
      margin-bottom: 10px
    }

    .pearl-home .feat p{
      font-size: .93rem;
      color: var(--slate)
    }

    .pearl-home /* ABOUT */
    .about-grid{
      display: grid;
      grid-template-columns: 1.02fr 1.05fr;
      gap: 56px;
      align-items: center
    }

    .pearl-home .about-illu{
      position: relative
    }

    .pearl-home .about-illu .frame{
      background: linear-gradient(160deg, var(--wash), #fff);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      padding: 18px;
      position: relative;
      overflow: hidden
    }

    .pearl-home .about-badge{
      position: absolute;
      left: -20px;
      bottom: -20px;
      background: var(--blue);
      color: #fff;
      border-radius: 18px;
      padding: 20px 24px;
      box-shadow: var(--shadow-blue);
      text-align: center;
      z-index: 4
    }

    .pearl-home .about-badge b{
      font-family: "Space Grotesk";
      font-size: 2.2rem;
      font-weight: 700;
      display: block;
      line-height: 1
    }

    .pearl-home .about-badge span{
      font-size: .78rem;
      letter-spacing: 0;
      opacity: .92
    }

    .pearl-home .about h2{
      font-size: 2.8rem;
      margin: 16px 0 18px
    }

    .pearl-home .about-sub{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 24px 0
    }

    .pearl-home .about-sub .s{
      display: flex;
      gap: 13px
    }

    .pearl-home .about-sub .s .ic{
      width: 44px;
      height: 44px;
      flex: none;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--wash-2), #fff);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .pearl-home .about-sub .s .ic svg{
      width: 21px;
      height: 21px;
      stroke: var(--blue);
      fill: none
    }

    .pearl-home .about-sub .s h4{
      font-size: 1rem;
      margin-bottom: 4px
    }

    .pearl-home .about-sub .s p{
      font-size: .85rem;
      color: var(--slate)
    }

    .pearl-home .checks{
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 26px
    }

    .pearl-home .checks li{
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      color: var(--ink)
    }

    .pearl-home .checks li svg{
      width: 22px;
      height: 22px;
      flex: none
    }

    .pearl-home /* SERVICES */
    .services{
      background: var(--ink);
      color: #cfe0ee;
      position: relative;
      overflow: hidden
    }

    .pearl-home .services .circuit{
      position: absolute;
      inset: 0;
      opacity: .5;
      z-index: 0
    }

    .pearl-home .services .wrap{
      position: relative;
      z-index: 2
    }

    .pearl-home .services .eyebrow{
      color: var(--blue-300)
    }

    .pearl-home .services .eyebrow::before{
      background: var(--blue-300)
    }

    .pearl-home .services h2{
      color: #fff;
      font-size: 2.9rem;
      margin: 16px 0 14px
    }

    .pearl-home .services .section-head p{
      color: #9fb6cb
    }

    .pearl-home .svc-grid{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px
    }

    .pearl-home .svc{
      display: flex;
      gap: 22px;
      align-items: flex-start;
      padding: 30px;
      border-radius: var(--r);
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .09);
      transition: transform .4s var(--ease), background .3s, border-color .3s;
      position: relative;
      overflow: hidden
    }

    .pearl-home .svc:hover{
      transform: translateY(-5px);
      background: rgba(255, 255, 255, .07);
      border-color: rgba(46, 159, 224, .5)
    }

    .pearl-home .svc .svc-ic{
      width: 62px;
      height: 62px;
      flex: none;
      border-radius: 15px;
      background: linear-gradient(135deg, var(--blue), var(--blue-300));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 26px rgba(0, 99, 166, .4)
    }

    .pearl-home .svc .svc-ic svg{
      width: 29px;
      height: 29px;
      stroke: #fff;
      fill: none
    }

    .pearl-home .svc h3{
      color: #fff;
      font-size: 1.3rem;
      margin-bottom: 9px;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .pearl-home .svc .ar{
      margin-left: auto;
      opacity: 0;
      transform: translateX(-6px);
      transition: .3s;
      color: var(--blue-300)
    }

    .pearl-home .svc:hover .ar{
      opacity: 1;
      transform: translateX(0)
    }

    .pearl-home .svc p{
      font-size: .92rem;
      color: #9fb6cb
    }

    .pearl-home .svc .tags{
      display: flex;
      gap: 7px;
      margin-top: 13px;
      flex-wrap: wrap
    }

    .pearl-home .svc .tags span{
      font-family: "IBM Plex Mono";
      font-size: .68rem;
      color: var(--blue-100);
      background: rgba(46, 159, 224, .12);
      border: 1px solid rgba(46, 159, 224, .25);
      padding: 3px 9px;
      border-radius: 999px
    }

    .pearl-home /* PROTECTION */
    .protect{
      background: linear-gradient(180deg, var(--wash), #fff);
      position: relative;
      overflow: hidden
    }

    .pearl-home .protect-top{
      display: grid;
      grid-template-columns: 1fr .85fr;
      gap: 50px;
      align-items: center;
      margin-bottom: 54px
    }

    .pearl-home .protect-top .lead2{
      font-size: 1.05rem;
      color: var(--slate);
      max-width: 440px;
      margin-top: 8px
    }

    .pearl-home .protect-heading{
      font-size: 2.9rem;
      margin: 16px 0 0
    }

    .pearl-home .radar-wrap{
      display: flex;
      justify-content: center;
      position: relative
    }

    .pearl-home .radar{
      width: 300px;
      height: 300px;
      position: relative
    }

    .pearl-home .radar .sweep{
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: conic-gradient(from 0deg, rgba(0, 99, 166, .28), transparent 28%);
      animation: spin 4.5s linear infinite
    }

    @keyframes spin {
      to {
        transform: rotate(360deg)
      }
    }

    .pearl-home .radar .center{
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column
    }

    .pearl-home .radar .center .sh{
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--blue), var(--blue-300));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-blue)
    }

    .pearl-home .radar .center .sh svg{
      width: 32px;
      height: 32px;
      stroke: #fff;
      fill: none
    }

    .pearl-home .radar .center b{
      font-family: "IBM Plex Mono";
      font-size: .7rem;
      color: var(--blue);
      margin-top: 10px;
      letter-spacing: 0
    }

    .pearl-home .prot-grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      position: relative;
      z-index: 2
    }

    .pearl-home .prot{
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 24px 22px;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s
    }

    .pearl-home .prot:hover{
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--blue)
    }

    .pearl-home .prot .pic{
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--wash-2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      transition: background .3s
    }

    .pearl-home .prot:hover .pic{
      background: var(--blue)
    }

    .pearl-home .prot .pic svg{
      width: 24px;
      height: 24px;
      stroke: var(--blue);
      fill: none;
      transition: stroke .3s
    }

    .pearl-home .prot:hover .pic svg{
      stroke: #fff
    }

    .pearl-home .prot h4{
      font-size: 1.02rem;
      margin-bottom: 6px
    }

    .pearl-home .prot p{
      font-size: .84rem;
      color: var(--slate)
    }

    .pearl-home /* BANNER */
    .banner{
      position: relative;
      background: linear-gradient(120deg, var(--blue-700), var(--blue) 55%, #0a7bc4);
      overflow: hidden
    }

    .pearl-home #banner-canvas{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1
    }

    .pearl-home .banner .wrap{
      position: relative;
      z-index: 2;
      padding: 78px 24px;
      text-align: center
    }

    .pearl-home .banner h2{
      color: #fff;
      font-size: 3rem;
      margin: 14px 0 16px
    }

    .pearl-home .banner p{
      color: rgba(255, 255, 255, .9);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 32px
    }

    .pearl-home .banner-actions{
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap
    }

    .pearl-home /* BLOG */
    .blog{
      background: var(--wash)
    }

    .pearl-home .blog-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px
    }

    .pearl-home .post{
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r);
      overflow: hidden;
      transition: transform .4s var(--ease), box-shadow .4s var(--ease)
    }

    .pearl-home .post:hover{
      transform: translateY(-6px);
      box-shadow: var(--shadow-md)
    }

    .pearl-home .post-cover{
      height: 188px;
      position: relative;
      overflow: hidden
    }

    .pearl-home .post-cover svg{
      width: 100%;
      height: 100%
    }

    .pearl-home .post-tag{
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(255, 255, 255, .95);
      color: var(--blue);
      font-family: "IBM Plex Mono";
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: 0;
      padding: 6px 11px;
      border-radius: 999px;
      text-transform: uppercase;
      z-index: 2
    }

    .pearl-home .post-body{
      padding: 24px
    }

    .pearl-home .post-meta{
      font-family: "IBM Plex Mono";
      font-size: .76rem;
      color: var(--slate);
      margin-bottom: 11px;
      display: flex;
      gap: 12px;
      align-items: center
    }

    .pearl-home .post-meta .who{
      display: flex;
      align-items: center;
      gap: 7px
    }

    .pearl-home .post-meta .who::before{
      content: "";
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--blue-300))
    }

    .pearl-home .post h3{
      font-size: 1.12rem;
      line-height: 1.25;
      margin-bottom: 11px
    }

    .pearl-home .post:hover h3{
      color: var(--blue)
    }

    .pearl-home .post p{
      font-size: .88rem;
      color: var(--slate);
      margin-bottom: 14px
    }

    .pearl-home .read{
      font-family: "IBM Plex Mono";
      font-size: .82rem;
      font-weight: 600;
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      gap: 6px
    }

    .pearl-home .read svg{
      width: 15px;
      height: 15px;
      transition: transform .3s var(--ease)
    }

    .pearl-home .post:hover .read svg{
      transform: translateX(4px)
    }

    .pearl-home /* QUOTE */
    .quote-card{
      background: linear-gradient(135deg, var(--wash), var(--wash-2));
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 56px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 48px;
      align-items: center;
      position: relative;
      overflow: hidden
    }

    .pearl-home .quote-heading{
      font-size: 2.6rem;
      margin: 14px 0
    }

    .pearl-home /* FOOTER */
    .footer{
      background: var(--ink);
      color: #9fb6cb;
      padding: 72px 0 0
    }

    .pearl-home .foot-grid{
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
      padding-bottom: 54px;
      border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .pearl-home .foot-logo{
      background: #fff;
      border-radius: 12px;
      padding: 14px 16px;
      display: inline-block;
      margin-bottom: 20px
    }

    .pearl-home .foot-logo img{
      height: 38px
    }

    .pearl-home .foot-brand p{
      font-size: .92rem;
      max-width: 300px;
      margin-bottom: 22px
    }

    .pearl-home .foot-soc{
      display: flex;
      gap: 10px
    }

    .pearl-home .foot-soc a{
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255, 255, 255, .07);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .25s
    }

    .pearl-home .foot-soc a:hover{
      background: var(--blue);
      transform: translateY(-3px)
    }

    .pearl-home .foot-soc svg{
      width: 16px;
      height: 16px;
      fill: #fff
    }

    .pearl-home .foot-col h5{
      font-family: "Space Grotesk";
      color: #fff;
      font-size: 1rem;
      margin-bottom: 18px;
      font-weight: 600
    }

    .pearl-home .foot-col ul{
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px
    }

    .pearl-home .foot-col a{
      font-size: .9rem;
      transition: color .2s, padding .2s
    }

    .pearl-home .foot-col a:hover{
      color: #fff;
      padding-left: 4px
    }

    .pearl-home .foot-contact li{
      display: flex;
      gap: 11px;
      font-size: .9rem;
      margin-bottom: 14px;
      align-items: flex-start
    }

    .pearl-home .foot-contact svg{
      width: 17px;
      height: 17px;
      stroke: var(--blue-300);
      fill: none;
      flex: none;
      margin-top: 3px
    }

    .pearl-home .foot-bottom{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0;
      flex-wrap: wrap;
      gap: 12px;
      font-size: .84rem;
      font-family: "IBM Plex Mono"
    }

    .pearl-home .foot-bottom a{
      color: #9fb6cb
    }

    .pearl-home .foot-bottom a:hover{
      color: #fff
    }

    .pearl-home /* REVEAL */
    .reveal{
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .8s var(--ease), transform .8s var(--ease)
    }

    .pearl-home .reveal.in{
      opacity: 1;
      transform: none
    }

    .pearl-home .reveal.d1{
      transition-delay: .08s
    }

    .pearl-home .reveal.d2{
      transition-delay: .16s
    }

    .pearl-home .reveal.d3{
      transition-delay: .24s
    }

    .pearl-home .reveal.d4{
      transition-delay: .32s
    }

    @media(max-width:1000px) {

      .pearl-home .section-head h2, .pearl-home .services h2, .pearl-home .protect-heading{
        font-size: 2.4rem
      }

      .pearl-home .hero h1{
        font-size: 3.2rem
      }

      .pearl-home .about h2{
        font-size: 2.35rem
      }

      .pearl-home .banner h2{
        font-size: 2.5rem
      }

      .pearl-home .quote-heading{
        font-size: 2.3rem
      }

      .pearl-home .hero-grid, .pearl-home .about-grid, .pearl-home .protect-top{
        grid-template-columns: 1fr
      }

      .pearl-home .feat-grid, .pearl-home .stats-grid{
        grid-template-columns: repeat(2, 1fr)
      }

      .pearl-home .stat:nth-child(3){
        border-left: none
      }

      .pearl-home .prot-grid{
        grid-template-columns: repeat(2, 1fr)
      }

      .pearl-home .svc-grid, .pearl-home .blog-grid, .pearl-home .quote-card{
        grid-template-columns: 1fr
      }

      .pearl-home .foot-grid{
        grid-template-columns: 1fr 1fr
      }

      .pearl-home .float-chip{
        display: none
      }
    }

    @media(max-width:680px) {

      .pearl-home .section-head h2, .pearl-home .services h2, .pearl-home .protect-heading{
        font-size: 2rem
      }

      .pearl-home .hero h1{
        font-size: 2.45rem
      }

      .pearl-home .about h2, .pearl-home .banner h2, .pearl-home .quote-heading{
        font-size: 2rem
      }

      .pearl-home .nav-links, .pearl-home .nav-phone{
        display: none
      }

      .pearl-home .burger{
        display: flex
      }

      .pearl-home .nav-links.open{
        display: flex;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 16px;
        gap: 6px;
        box-shadow: var(--shadow-md)
      }

      .pearl-home .nav-links.open a{
        width: 100%
      }

      .pearl-home .topbar-left span:nth-child(2), .pearl-home .topbar-left span:nth-child(3){
        display: none
      }

      .pearl-home .feat-grid, .pearl-home .prot-grid, .pearl-home .foot-grid, .pearl-home .about-sub, .pearl-home .stats-grid{
        grid-template-columns: 1fr
      }

      .pearl-home .stat+.stat{
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding-top: 22px
      }

      .pearl-home .section{
        padding: 64px 0
      }

      .pearl-home .quote-card{
        padding: 34px
      }

      .pearl-home .about-badge{
        left: 0
      }
    }

    @media(prefers-reduced-motion:reduce) {
      .pearl-home *{
        animation: none !important;
        transition: none !important
      }

      .pearl-home .reveal{
        opacity: 1;
        transform: none
      }
    }

    .pearl-home /* ===== motion layer ===== */
    .sprog{
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--blue), var(--blue-300));
      z-index: 100;
      transition: width .08s linear
    }

    .pearl-home .hero h1 .grad{
      background: linear-gradient(100deg, var(--blue) 18%, var(--blue-300) 50%, var(--blue) 82%);
      background-size: 220% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shine 5.5s linear infinite
    }

    @keyframes shine {
      to {
        background-position: -220% center
      }
    }

    .pearl-home .hero-visual{
      perspective: 1100px
    }

    .pearl-home .panel{
      transition: transform .25s var(--ease)
    }

    .pearl-home .feat{
      --gx: 50%;
      --gy: 50%;
      --ga: 0;
      background: radial-gradient(220px circle at var(--gx) var(--gy), rgba(0, 99, 166, calc(.10*var(--ga))), transparent 62%), #fff
    }

    .pearl-home .feat:hover{
      --ga: 1
    }

    .pearl-home .prot{
      --gx: 50%;
      --gy: 50%;
      --ga: 0;
      background: radial-gradient(200px circle at var(--gx) var(--gy), rgba(0, 99, 166, calc(.09*var(--ga))), transparent 62%), #fff
    }

    .pearl-home .prot:hover{
      --ga: 1
    }

    .pearl-home .svc{
      --gx: 50%;
      --gy: 50%;
      --ga: 0;
      background: radial-gradient(260px circle at var(--gx) var(--gy), rgba(46, 159, 224, calc(.16*var(--ga))), transparent 60%), rgba(255, 255, 255, .04)
    }

    .pearl-home .svc:hover{
      --ga: 1;
      background: radial-gradient(260px circle at var(--gx) var(--gy), rgba(46, 159, 224, calc(.16*var(--ga))), transparent 60%), rgba(255, 255, 255, .07)
    }

    .pearl-home .about-illu g line{
      stroke-dasharray: 170;
      stroke-dashoffset: 170;
      transition: stroke-dashoffset 1.3s var(--ease)
    }

    .pearl-home .about-illu.in g line{
      stroke-dashoffset: 0
    }

    .pearl-home .ticker{
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 11px;
      background: var(--ink);
      color: #bcd6ea;
      font-family: "IBM Plex Mono";
      font-size: .73rem;
      overflow: hidden
    }

    .pearl-home .ticker .tdot{
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #3ad07f;
      flex: none;
      animation: pulse 2s infinite
    }

    .pearl-home .ticker #tickText{
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: opacity .35s
    }

    .pearl-home .radar-cap{
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      font-family: "IBM Plex Mono";
      font-size: .72rem;
      color: var(--slate);
      white-space: nowrap
    }

    .pearl-home .radar-cap b{
      color: var(--blue)
    }

    .pearl-home .fab{
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 90;
      background: var(--blue);
      color: #fff;
      font-weight: 600;
      font-size: .92rem;
      padding: 14px 22px;
      border-radius: 999px;
      box-shadow: var(--shadow-blue);
      display: inline-flex;
      align-items: center;
      gap: 9px;
      opacity: 0;
      transform: translateY(20px) scale(.9);
      pointer-events: none;
      transition: opacity .4s var(--ease), transform .4s var(--ease)
    }

    .pearl-home .fab.show{
      opacity: 1;
      transform: none;
      pointer-events: auto;
      animation: bob 3s ease-in-out infinite 1s
    }

    .pearl-home .fab:hover{
      background: var(--blue-700)
    }

    .pearl-home .fab svg{
      width: 16px;
      height: 16px;
      stroke: #fff;
      fill: none
    }

    @keyframes bob {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-5px)
      }
    }

    @media(max-width:680px) {
      .pearl-home .fab{
        right: 14px;
        bottom: 14px;
        padding: 12px 18px
      }
    }

    @media(prefers-reduced-motion:reduce) {

      .pearl-home .hero h1 .grad, .pearl-home .fab.show, .pearl-home .ticker .tdot{
        animation: none
      }

      .pearl-home .about-illu g line{
        stroke-dashoffset: 0
      }
    }
  
.pearl-home .blog-keep .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.pearl-home .blog-keep .resources-row a { color: inherit; }
.pearl-home .blog-keep .resource small { color: var(--blue); }
.pearl-home .blog-keep .resource a:last-child { color: var(--blue); font-weight: 700; }
