 *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --white: #FFFFFF;
      --off-white: #F8F9FB;
      --grey-50: #F1F3F6;
      --grey-100: #E3E7ED;
      --grey-200: #C8CED9;
      --grey-300: #9AA3B2;
      --grey-400: #6B7585;
      --grey-500: #4A5265;
      --grey-600: #343B4A;
      --grey-700: #232830;
      --grey-800: #161A22;
      --grey-900: #0D1017;
      --blue: #2563EB;
      --blue-light: #EEF3FD;
      --blue-mid: #DBEAFE;
      --green: #16A34A;
      --green-light: #F0FDF4;
      --amber: #D97706;
      --amber-light: #FFFBEB;
      --purple: #7C3AED;
      --purple-light: #F5F3FF;
      --red: #DC2626;
      --red-light: #FEF2F2;
      --border: #E3E7ED;
      --border-light: #EEF0F4;
      --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
      --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.09), 0 4px 14px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.10), 0 8px 20px rgba(0, 0, 0, 0.06);
      --radius: 12px;
      --radius-lg: 18px;
      --font-head: 'Bricolage Grotesque', sans-serif;
      --font-body: 'Inter', sans-serif;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--grey-700);
      overflow-x: hidden;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale
    }

    /* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP NAV PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6%;
      height: 64px;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-light);
      transition: box-shadow .25s
    }

    nav.scrolled {
      box-shadow: var(--shadow-sm)
    }

    .logo {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1.35rem;
      color: var(--grey-900);
      letter-spacing: -.4px;
      display: flex;
      align-items: center;
      gap: .3rem;
    }

    .nav-links {
      display: flex;
      gap: 1.75rem;
      list-style: none;
     justify-items:flex-end;
    }

    .nav-links a {
      color: #3f4651;
      font-size: .85rem;
      font-weight: 500;
      text-decoration: none;
      transition: color .2s;
      letter-spacing: -.01em;
    }

    .nav-links a:hover {
      color: var(--grey-800);
    }

    .nav-cta {
      display: flex;
      gap: .6rem;
      align-items: center
    }
    .nav-right {
  display: flex;
  align-items: center;
  gap: 7.5rem;
  margin-left: auto; /* THIS pushes it to the right */
}
.nav-links {
  margin-left: auto;
}
.btn-ghost {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--grey-600);
      padding: .46rem 1.1rem;
      border-radius: 8px;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: .83rem;
      font-weight: 600;
      transition: all .18s;
      letter-spacing: -.01em
    }

    .btn-ghost:hover {
      border-color: var(--grey-300);
      background: var(--grey-50);
      color: var(--grey-900)
    }

    .btn-primary {
      background: var(--grey-900);
      border: none;
      color: var(--white);
      padding: .5rem 1.2rem;
      /* border-radius: 8px; */
      cursor: pointer;
      font-family: var(--font-body);
      font-size: .83rem;
      font-weight: 700;
      transition: all .18s;
      letter-spacing: -.01em
    }

    .btn-primary:hover {
      background: var(--grey-700);
      box-shadow: var(--shadow-md);
      transform: translateY(-1px)
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 4.5px;
      cursor: pointer;
      padding: 4px
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--grey-600);
      border-radius: 2px;
      transition: .25s
    }


    .hero {
      min-height: 80vh;
      display: flex;
      align-items: center;
      padding: 60px 6% 40px;
      position: relative;
      background: #D6D9DF;
      overflow: hidden
    }

    .hero-bg-dots {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: radial-gradient(circle, #B0B6C2 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: .5
    }

    .hero-bg-fade {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(125deg, rgba(214, 217, 223, 0.96) 0%, rgba(200, 205, 214, 0.88) 100%)
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center
    }

    .hero-content {
      animation: fadeUp .65s ease both
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--grey-800);
      padding: .32rem 1rem;
      border-radius: 99px;
      font-size: .7rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      box-shadow: 0 1px 4px rgba(0, 0, 0, .15)
    }

    .eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4ADE80;
      flex-shrink: 0;
      animation: blink 1.8s ease-in-out infinite
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2.1rem, 3.8vw, 3.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1.5px;
      margin-bottom: 1.2rem;
      color: var(--grey-900)
    }

    .hero h1 span {
      color: var(--blue)
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--grey-600);
      max-width: 460px;
      margin-bottom: 2rem;
      font-weight: 400;
      line-height: 1.78;
      letter-spacing: -.01em
    }

    .hero-actions {
      display: flex;
      gap: .85rem;
      flex-wrap: wrap;
      margin-bottom: 1.75rem
    }

    .btn-hero-primary {
      background: var(--grey-900);
      border: none;
      color: var(--white);
      padding: .82rem 1.85rem;
      /* border-radius: 10px; */
      cursor: pointer;
      font-family: var(--font-body);
      font-size: .93rem;
      font-weight: 700;
      transition: all .2s;
      letter-spacing: -.01em;
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .18)
    }

    .btn-hero-primary:hover {
      background: var(--grey-700);
      box-shadow: 0 8px 24px rgba(13, 16, 23, .25);
      transform: translateY(-2px)
    }

    .btn-hero-outline {
      background: rgba(255, 255, 255, .75);
      backdrop-filter: blur(8px);
      border: 1.5px solid rgba(255, 255, 255, .9);
      color: var(--grey-800);
      padding: .82rem 1.85rem;
      /* border-radius: 10px; */
      cursor: pointer;
      font-family: var(--font-body);
      font-size: .93rem;
      font-weight: 600;
      transition: all .2s;
      letter-spacing: -.01em;
      display: inline-flex;
      align-items: center;
      gap: .45rem
    }

    .btn-hero-outline:hover {
      background: rgba(255, 255, 255, .95);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md)
    }

    .trust-line {
      display: flex;
      align-items: center;
      gap: .65rem;
      font-size: .81rem;
      color: var(--grey-600);
      font-weight: 500
    }

    .trust-avatars {
      display: flex
    }

    .trust-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid #D6D9DF;
      margin-left: -8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .6rem;
      background: var(--grey-200);
      color: var(--grey-600)
    }

    .trust-avatar:first-child {
      margin-left: 0
    }

    .trust-stars {
      color: #F59E0B;
      font-size: .75rem;
      letter-spacing: .05em
    }

    .hero-dashboard {
      position: relative;
      z-index: 2;
      animation: fadeLeft .75s .15s ease both
    }

    .dash-shell {
      background: var(--grey-900);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 32px 72px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .06);
    }

    /* window chrome bar */
    .dash-topbar {
      background: #1E2330;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      padding: .6rem 1rem;
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .dash-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%
    }

    .dash-dot.r {
      background: #FF5F57
    }

    .dash-dot.y {
      background: #FFBD2E
    }

    .dash-dot.g {
      background: #28C840
    }

    .dash-url {
      flex: 1;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 5px;
      padding: .24rem .8rem;
      font-size: .72rem;
      color: rgba(255, 255, 255, .3);
      margin: 0 .75rem;
      text-align: left;
      letter-spacing: .01em;
    }

    /* portal layout */
    .dash-body {
      display: grid;
      grid-template-columns: 190px 1fr;
      min-height: 320px
    }

    /* sidebar */
    .dash-sidebar {
      background: #161A22;
      border-right: 1px solid rgba(255, 255, 255, .06);
      padding: 1rem .75rem;
      display: flex;
      flex-direction: column;
      gap: .15rem;
    }

    .dash-logo-sm {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: .85rem;
      color: var(--white);
      padding: .35rem .65rem;
      margin-bottom: .9rem;
      letter-spacing: -.3px;
      display: flex;
      align-items: center;
      gap: .3rem;
    }

    .dash-logo-sm .ldot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #3B82F6
    }
.logot{
  color: #0e54b1;
}
    .sidebar-section {
      font-size: .6rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .2);
      text-transform: uppercase;
      letter-spacing: .1em;
      padding: .3rem .65rem;
      margin-top: .5rem;
      margin-bottom: .1rem
    }

    .sidebar-item {
      display: flex;
      align-items: center;
      gap: .55rem;
      padding: .5rem .65rem;
      border-radius: 7px;
      font-size: .73rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .4);
      cursor: pointer;
      transition: all .15s;
      letter-spacing: -.01em;
    }

    .sidebar-item.active {
      background: #2563EB;
      color: var(--white);
      font-weight: 600
    }

    .sidebar-item:hover:not(.active) {
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 255, 255, .75)
    }

    .sidebar-item svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      opacity: .8
    }

    .sidebar-item.active svg {
      opacity: 1
    }

    .sidebar-divider {
      height: 1px;
      background: rgba(255, 255, 255, .06);
      margin: .5rem 0
    }

    /* main content */
    .dash-main {
      padding: 1.1rem 1.1rem 1.1rem;
      background: #F1F3F6;
      display: flex;
      flex-direction: column;
      gap: .85rem;
      overflow: hidden;
    }

    .dash-page-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: .75rem;
      border-bottom: 1px solid var(--border);
    }

    .dash-page-title {
      font-family: var(--font-head);
      font-size: .88rem;
      font-weight: 800;
      color: var(--grey-900);
      letter-spacing: -.3px
    }

    .dash-page-sub {
      font-size: .67rem;
      color: var(--grey-400);
      margin-top: .1rem
    }

    .dash-add-btn {
      background: var(--grey-900);
      color: var(--white);
      font-size: .68rem;
      font-weight: 700;
      padding: .32rem .75rem;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: .3rem;
      cursor: pointer;
      font-family: var(--font-body);
      border: none;
    }

    /* kpi row */
    .dash-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: .65rem
    }

    .stat-chip {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 9px;
      padding: .8rem .85rem;
    }

    .stat-chip-label {
      font-size: .62rem;
      color: var(--grey-400);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: .3rem
    }

    .stat-chip-value {
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--grey-900);
      line-height: 1;
      letter-spacing: -.5px
    }

    .stat-chip-sub {
      font-size: .62rem;
      font-weight: 600;
      margin-top: .22rem;
      display: flex;
      align-items: center;
      gap: .18rem
    }

    .up {
      color: var(--green)
    }

    .dn {
      color: var(--amber)
    }

    /* two-col lower */
    .dash-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .65rem
    }

    .dash-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 9px;
      padding: .85rem
    }

    .dash-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: .6rem
    }

    .dash-card-title {
      font-size: .71rem;
      font-weight: 700;
      color: var(--grey-700);
      letter-spacing: -.1px
    }

    .dash-card-link {
      font-size: .63rem;
      color: var(--blue);
      font-weight: 600;
      cursor: pointer
    }

    /* table rows */
    .portal-row {
      display: flex;
      align-items: center;
      gap: .55rem;
      padding: .42rem .5rem;
      border-radius: 6px;
      margin-bottom: .25rem
    }

    .portal-row:last-child {
      margin-bottom: 0
    }

    .portal-row:hover {
      background: var(--off-white)
    }

    .p-av {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .6rem;
      flex-shrink: 0
    }

    .p-info {
      flex: 1;
      min-width: 0
    }

    .p-name {
      font-size: .71rem;
      font-weight: 600;
      color: var(--grey-800);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      letter-spacing: -.01em
    }

    .p-sub {
      font-size: .63rem;
      color: var(--grey-400)
    }

    .p-badge {
      font-size: .6rem;
      font-weight: 700;
      padding: .14rem .48rem;
      border-radius: 99px;
      flex-shrink: 0;
      letter-spacing: .02em
    }

    .bg {
      background: #DCFCE7;
      color: #15803D
    }

    .ba {
      background: #FEF9C3;
      color: #A16207
    }

    .bb {
      background: #DBEAFE;
      color: #1D4ED8
    }

    /* fee table */
    .fee-tbl {
      width: 100%;
      border-collapse: collapse
    }

    .fee-tbl th {
      font-size: .6rem;
      color: var(--grey-400);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      padding: .28rem .4rem;
      text-align: left;
      border-bottom: 1px solid var(--border)
    }

    .fee-tbl td {
      font-size: .7rem;
      padding: .38rem .4rem;
      border-bottom: 1px solid var(--border-light);
      color: var(--grey-600)
    }

    .fee-tbl tr:last-child td {
      border-bottom: none
    }

    .fee-tbl .amt {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .72rem;
      color: var(--grey-900)
    }

    .fee-tbl .overdue {
      color: var(--red);
      font-weight: 700
    }

    /* badge pill extras */
    .mini-badge {
      font-size: .62rem;
      font-weight: 700;
      padding: .14rem .45rem;
      border-radius: 99px;
      flex-shrink: 0
    }

    .b-green {
      background: var(--green-light);
      color: var(--green)
    }

    .b-amber {
      background: var(--amber-light);
      color: var(--amber)
    }

    .b-blue {
      background: var(--blue-light);
      color: var(--blue)
    }

    .b-red {
      background: var(--red-light);
      color: var(--red)
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(26px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeLeft {
      from {
        opacity: 0;
        transform: translateX(32px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    /* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP TRUST BAR PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP */
    .trust-bar {
      padding: 1.6rem 6%;
      background: var(--grey-900);
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center
    }

    .trust-bar-label {
      font-size: .72rem;
      color: #cad3e6;
      font-weight: 600;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: .09em
    }

    .trust-logos {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center
    }

    .trust-logo {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .88rem;
      color: #a8b2c8;
      letter-spacing: -.1px;
      transition: color .2s;
      cursor: default
    }

    .trust-logo:hover {
      color: var(--grey-300)
    }

    /* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP SECTIONS PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP */
    section {
      padding: 3.5rem 6%
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--blue);
      background: var(--blue-light);
      padding: .28rem .8rem;
      border-radius: 99px;
      margin-bottom: .85rem
    }

    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.85rem, 3.2vw, 2.7rem);
      font-weight: 800;
      letter-spacing: -1.2px;
      line-height: 1.1;
      margin-bottom: .9rem;
      color: var(--grey-900)
    }

    .section-sub {
      font-size: .95rem;
      color: var(--grey-400);
      max-width: 500px;
      font-weight: 400;
      line-height: 1.75;
      letter-spacing: -.01em
    }

    /* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP FEATURES PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP */
    .features-section {
      background: #cfd3dbad;
    }

    .features-header {
      text-align: center;
      margin-bottom: 3rem
    }

    .features-header .section-sub {
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.1rem
    }

    .feature-card {
      background: var(--white);
      border: 1px solid #cecece;
      /* border-radius: var(--radius-lg); */
      padding: 1.5rem 1.25rem;
      transition: all .22s;
      position: relative;
      overflow: hidden
    }

    .feature-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      border-color: var(--grey-200)
    }

    .feature-card-top {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1rem;
    }

    .feature-icon {
      width: 35px;
      height: 35px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      border: 1px solid transparent;
      flex-shrink: 0;
    }

    .fi-grey {
      background: var(--grey-50);
      border-color: var(--border)
    }

    .feature-card h3 {
      font-family: var(--font-head);
      font-size: .98rem;
      font-weight: 700;
      color: var(--grey-800);
      letter-spacing: -.3px
    }

    .feature-card p {
      font-size: .86rem;
      color: var(--grey-400);
      line-height: 1.72;
      letter-spacing: -.01em
    }

    .feature-tag {
      display: inline-flex;
      font-size: .66rem;
      font-weight: 700;
      padding: .18rem .55rem;
      border-radius: 99px;
      letter-spacing: .04em;
      margin-bottom: .5rem;
      text-transform: uppercase
    }

    /* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP HOW IT WORKS PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP */
    .how-section {
      background: var(--white)
    }

    .how-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center
    }

    .steps {
      display: flex;
      flex-direction: column
    }

    .step {
      display: flex;
      gap: 1rem;
      padding: 1.35rem 0;
      border-bottom: 1px solid var(--border-light);
      cursor: pointer
    }

    .step:last-child {
      border-bottom: none
    }

    .step-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid var(--grey-200);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: .76rem;
      flex-shrink: 0;
      color: var(--grey-300);
      transition: .25s;
      background: var(--white)
    }

    .step.active .step-num {
      border-color: var(--grey-900);
      color: var(--white);
      background: var(--grey-900)
    }

    .step-content h3 {
      font-family: var(--font-head);
      font-size: .94rem;
      font-weight: 700;
      margin-bottom: .28rem;
      color: var(--grey-500);
      transition: color .2s;
      letter-spacing: -.3px
    }

    .step.active .step-content h3 {
      color: var(--grey-900)
    }

    .step-content p {
      font-size: .83rem;
      color: var(--grey-300);
      line-height: 1.68;
      letter-spacing: -.01em
    }

    .step.active .step-content p {
      color: var(--grey-400)
    }

    .how-visual {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      min-height: 330px;
      display: flex;
      flex-direction: column;
      gap: .9rem;
      box-shadow: var(--shadow-md)
    }

    .hv-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: .25rem
    }

    .hv-title {
      font-family: var(--font-head);
      font-size: .85rem;
      font-weight: 700;
      color: var(--grey-700);
      letter-spacing: -.2px
    }

    .hv-badge {
      background: var(--grey-900);
      color: var(--white);
      font-size: .65rem;
      font-weight: 700;
      padding: .22rem .65rem;
      border-radius: 99px;
      letter-spacing: .04em
    }

    .fp-label {
      font-size: .68rem;
      color: var(--grey-300);
      font-weight: 700;
      margin-bottom: .28rem;
      text-transform: uppercase;
      letter-spacing: .07em
    }

    .fp-field {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 7px;
      padding: .58rem .85rem;
      font-size: .82rem;
      color: var(--grey-700);
      font-family: var(--font-body)
    }

    .fp-field.af {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
    }

    .fp-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .6rem
    }

    .fp-btn {
      background: var(--grey-900);
      color: var(--white);
      padding: .68rem;
      border-radius: 8px;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .84rem;
      text-align: center;
      cursor: pointer;
      letter-spacing: -.2px
    }

    /* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP PRICING PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP */
    .pricing-section {
      background: var(--off-white)
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 1.1rem;
      margin-top: 2.75rem
    }

    .price-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      /* border-radius: var(--radius-lg); */
      padding: 1.9rem;
      position: relative;
      transition: all .22s
    }

    .price-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg)
    }

    .price-card.featured {
      border-color: var(--grey-900);
      background: var(--grey-900)
    }

    .price-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: #565e6f;
      color: var(--white);
      font-size: .67rem;
      font-weight: 700;
      padding: .26rem .95rem;
      border-radius: 99px;
      letter-spacing: .07em;
      text-transform: uppercase;
      white-space: nowrap;
      font-family: var(--font-body)
    }

    .price-plan {
      font-size: .72rem;
      color: var(--grey-300);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: .45rem
    }

    .price-card.featured .price-plan {
      color: #adb4c3;
    }

    .price-amount {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 2.5rem;
      line-height: 1;
      margin-bottom: .3rem;
      color: var(--grey-900);
      letter-spacing: -1.5px
    }

    .price-card.featured .price-amount {
      color: var(--white);
    }

    .price-amount sup {
      font-size: 1rem;
      vertical-align: super;
      letter-spacing: 0;
      font-weight: 700
    }

    .price-amount sub {
      font-size: .78rem;
      color: var(--grey-300);
      font-weight: 500;
      font-family: var(--font-body);
      vertical-align: baseline;
      letter-spacing: 0
    }

    .price-desc {
      font-size: .82rem;
      color: #adb4c3;
      margin-bottom: 1.35rem;
      line-height: 1.65;
      letter-spacing: -.01em
    }

    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .55rem;
      margin-bottom: 1.65rem
    }

    .price-features li {
      font-size: .83rem;
      display: flex;
      align-items: flex-start;
      gap: .52rem;
      color: var(--grey-500);
      letter-spacing: -.01em;
      line-height: 1.5
    }

    .price-card.featured .price-features li {
      color: var(--grey-400)
    }

    .price-features li::before {
      content: '';
      color: var(--blue);
      font-weight: 800;
      font-size: .76rem;
      flex-shrink: 0;
      margin-top: .1rem
    }

    .price-card.featured .price-features li::before {
      color: #60A5FA
    }

    .btn-dark {
      display: block;
      text-align: center;
      background: var(--grey-900);
      border-radius: 9px;
      padding: .72rem;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: .86rem;
      color: var(--white);
      cursor: pointer;
      border: none;
      transition: all .18s;
      letter-spacing: -.01em
    }

    .btn-dark:hover {
      background: var(--grey-700);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md)
    }

    .btn-white {
      display: block;
      text-align: center;
      background: var(--white);
      /* border-radius: 9px; */
      padding: .72rem;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: .86rem;
      color: var(--grey-900);
      cursor: pointer;
      border: none;
      transition: all .18s;
      letter-spacing: -.01em
    }

    .btn-white:hover {
      background: var(--grey-100)
    }

    .btn-border {
      display: block;
      text-align: center;
      border: 1.5px solid #586271;
      /* border-radius: 9px; */
      padding: .7rem;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: .86rem;
      color: #a1adc1;
      cursor: pointer;
      background: transparent;
      transition: all .18s;
      letter-spacing: -.01em
    }

    .btn-border:hover {
      border-color: var(--grey-300);
      background: var(--grey-50);
   
    }
    .testimonials-section {
      background: var(--white)
    }

    .test-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 1.1rem;
      margin-top: 2.75rem
    }

    .test-card {
      /*background: #d0d4db;*/
      border: 2px solid #e3e3e3;
      /* border-radius: var(--radius-lg); */
      padding: 1.6rem;
      transition: all .22s;
    }

    .test-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      background: var(--white);
    }

    .stars {
      color: #F59E0B;
      font-size: .82rem;
      margin-bottom: .8rem;
      letter-spacing: .1em;
    }

    .test-quote {
      font-size: .88rem;
      color: var(--grey-500);
      line-height: 1.78;
      margin-bottom: 1.2rem;
      font-style: italic;
      letter-spacing: -.01em;
    }

    .test-author {
      display: flex;
      align-items: center;
      gap: .7rem;
    }

    .test-av {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: .78rem;
    }

    .test-name {
      font-family: var(--font-head);
      font-size: .88rem;
      font-weight: 700;
      color: var(--grey-800);
      letter-spacing: -.2px;
    }

    .test-role {
      font-size: .72rem;
      color: var(--grey-400);
    }

    .cta-section {
      text-align: center;
      padding: 3.5rem 6%;
      background: var(--grey-900);
    }

    .cta-section h2 {
      font-family: var(--font-head);
      font-size: clamp(1.9rem, 3.8vw, 3rem);
      font-weight: 800;
      letter-spacing: -1.3px;
      margin-bottom: .9rem;
      color: var(--white);
      line-height: 1.1;
    }

    .cta-section p {
      color: var(--grey-400);
      margin-bottom: 2rem;
      font-size: .97rem;
      letter-spacing: -.01em;
    }

    .cta-actions {
      display: flex;
      gap: .85rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-cta-w {
      background: var(--white);
      color: var(--grey-900);
      padding: .82rem 1.85rem;
      /* border-radius: 10px; */
      font-family: var(--font-body);
      font-size: .95rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all .2s;
      letter-spacing: -.01em;
    }

    .btn-cta-w:hover {
      background: var(--grey-100);
      transform: translateY(-1px);
    }

    .btn-cta-g {
      background: transparent;
      color: #a1adc1;
      padding: .82rem 1.85rem;
      /* border-radius: 10px; */
      font-family: var(--font-body);
      font-size: .95rem;
      font-weight: 600;
      border: 1.5px solid #586271;
      cursor: pointer;
      transition: all .2s;
      letter-spacing: -.01em;
    }

    .btn-cta-g:hover {
      border-color: var(--grey-500);
      color: var(--white);
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 1.1rem 6%;
      background: var(--white);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 1.25rem;
    }

    .footer-brand p {
      font-size: .82rem;
      color: var(--grey-400);
      margin-top: .65rem;
      max-width: 230px;
      line-height: 1.75;
      letter-spacing: -.01em;
    }

    .footer-col h4 {
      font-family: var(--font-head);
      font-size: .8rem;
      font-weight: 700;
      margin-bottom: .85rem;
      color: var(--grey-600);
      letter-spacing: -.1px;
    }

    .footer-col a {
      display: block;
      font-size: .8rem;
      color: var(--grey-400);
      text-decoration: none;
      margin-bottom: .48rem;
      transition: color .18s;
      letter-spacing: -.01em;
    }

    .footer-col a:hover {
      color: var(--grey-800);
    }

    .footer-bottom {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.85rem;
      /* padding-top: 0.85rem; */
      /* border-top: 1px solid var(--border-light) */
    }

    .footer-bottom p {
      font-size: .76rem;
      color: var(--grey-300);
      letter-spacing: -.01em;
    }

    .overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(13, 16, 23, .5);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .28s;
    }

    .overlay.open {
      opacity: 1;
      pointer-events: all
    }

    .modal {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.3rem;
      width: 100%;
      max-width: 550px;
      box-shadow: var(--shadow-xl);
      transform: translateY(16px);
      transition: transform .28s;
      position: relative
    }

    .modall {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.3rem;
      width: 100%;
      max-width: 420px;
      box-shadow: var(--shadow-xl);
      transform: translateY(16px);
      transition: transform .28s;
      position: relative
    }

    .overlay.open .modal {
      transform: translateY(0)
    }

    .modal-close {
      position: absolute;
      top: .95rem;
      right: .95rem;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--grey-50);
      border: 1px solid var(--border);
      color: var(--grey-400);
      font-size: .8rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .18s
    }

    .modal-close:hover {
      background: var(--grey-100);
      color: var(--grey-700)
    }

    .modal-logo {
      margin-bottom: 1.3rem
    }

    .modal h2 {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -.7px;
      margin-bottom: .3rem;
      color: var(--grey-900)
    }

    .modal .modal-sub {
      font-size: .83rem;
      color: var(--grey-400);
      margin-bottom: 1.6rem;
      letter-spacing: -.01em
    }
.modall-logo {
      margin-bottom: 1.3rem
    }

    .modall h2 {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -.7px;
      margin-bottom: .3rem;
      color: var(--grey-900);
      text-align:center;
    }

    .modall .modal-sub {
      font-size: .83rem;
      color: var(--grey-400);
      margin-bottom: 1rem;
      letter-spacing: -.01em;
      text-align: center;
    }

    .tabs {
      display: flex;
      background: var(--grey-900);
      border-radius: 9px;
      padding: 3px;
      margin-bottom: 1.35rem;
      border: 1px solid var(--border);
    }

    .tab {
      flex: 1;
      padding: .46rem;
      border-radius: 7px;
      text-align: center;
      font-size: .83rem;
      font-weight: 600;
      cursor: pointer;
      color: #fff;
      transition: all .18s;
      font-family: var(--font-body);
      letter-spacing: -.01em;
    }

    .tab.active {
      background: var(--grey-900);
      color: var(--white);
      box-shadow: var(--shadow-xs);
    }

    .form-group {
      margin-bottom: .35rem;
    }

    .form-label {
      display: block;
      font-size: .7rem;
      font-weight: 700;
      color: var(--grey-400);
      margin-bottom: .35rem;
      text-transform: uppercase;
      letter-spacing: .07em;
    }

    .form-input {
      width: 100%;
      background: var(--off-white);
      border: 1.5px solid var(--border);
      /* border-radius: 8px; */
      padding: .65rem .88rem;
      font-size: .86rem;
      color: var(--grey-800);
      font-family: var(--font-body);
      outline: none;
      transition: all .18s;
      letter-spacing: -.01em;
    }

    .form-input::placeholder {
      color: var(--grey-300)
    }

    .form-input:focus {
      border-color: var(--grey-700);
      box-shadow: 0 0 0 3px rgba(35, 40, 48, .07);
      background: var(--white)
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .7rem
    }

    .forgot {
      font-size: .76rem;
      color: var(--blue);
      cursor: pointer;
      float: right;
      margin-top: .35rem;
      margin-bottom: .95rem;
      font-weight: 500;
      letter-spacing: -.01em
    }

    .modal-submit {
      width: 100%;
      background: var(--grey-900);
      border: none;
      color: var(--white);
      padding: .82rem;
      /* border-radius: 9px; */
      font-family: var(--font-head);
      font-size: .92rem;
      font-weight: 800;
      cursor: pointer;
      transition: all .18s;
      margin-top: .35rem;
      letter-spacing: -.2px
    }

    .modal-submit:hover {
      background: var(--grey-700);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md)
    }

    .modal-divider {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin: 1rem 0
    }

    .modal-divider span {
      font-size: .74rem;
      color: var(--grey-300);
      flex-shrink: 0
    }

    .modal-divider::before,
    .modal-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border)
    }

    .social-btn {
      width: 100%;
      background: var(--off-white);
      border: 1.5px solid var(--border);
      border-radius: 9px;
      padding: .65rem;
      color: var(--grey-700);
      font-family: var(--font-body);
      font-size: .84rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .55rem;
      transition: all .18s;
      letter-spacing: -.01em
    }

    .social-btn:hover {
      background: var(--grey-100);
      border-color: var(--grey-200)
    }

    /* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP MOBILE NAV PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP */
    .mobile-nav {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      z-index: 800;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 1.35rem 6%;
      display: flex;
      flex-direction: column;
      gap: .8rem;
      transform: translateY(-110%);
      transition: transform .28s;
      pointer-events: none;
      box-shadow: var(--shadow-md)
    }

    .mobile-nav.open {
      transform: translateY(0);
      pointer-events: all
    }

    .mobile-nav a {
      color: var(--grey-500);
      text-decoration: none;
      font-size: .95rem;
      font-weight: 500;
      padding: .35rem 0;
      border-bottom: 1px solid var(--border-light);
      letter-spacing: -.01em
    }

    /* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP REVEAL PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .5s ease, transform .5s ease
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP RESPONSIVE PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP */
    @media(max-width:1024px) {
      .dash-sidebar {
        display: none
      }

      .dash-body {
        grid-template-columns: 1fr
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
      }

      .how-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:768px) {
      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }

      .nav-cta .btn-ghost {
        display: none
      }

      .features-grid {
        grid-template-columns: 1fr
      }

      .pricing-grid {
        grid-template-columns: 1fr
      }

      .test-grid {
        grid-template-columns: 1fr
      }

      .footer-grid {
        grid-template-columns: 1fr
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center
      }

      .form-row {
        grid-template-columns: 1fr
      }

      section {
        padding: 4rem 6%
      }

      .dash-stats {
        grid-template-columns: 1fr 1fr
      }

      .dash-row {
        grid-template-columns: 1fr
      }
    }
    .overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.overlay.open {
  display: flex;
}


/* 2-column grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.1rem;       /* row-gap  col-gap */
}

/* Span both columns when needed */
.form-col-full {
  grid-column: 1 / -1;
}

/* Make select look like the rest of your inputs */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

/* Responsive: collapse to 1 col on small screens */
@media (max-width: 520px) {
  .modal--demo {
    width: 95vw;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-col-full {
    grid-column: 1;
  }
}