    :root {
      --pink: #ff0d5aff;
      --pink-dark: #8B0045;
      --dark: #18181b;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--dark);
      background: #fff;
      overflow-x: hidden;
    }

    /* ── Navbar ── */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 80px;
      background: transparent;
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      border-bottom: 1px solid transparent;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.scrolled {
      height: 64px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .navbar-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .navbar-logo {
      height: 28px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: #444;
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: var(--pink);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links a:hover {
      color: var(--dark);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--dark);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 6px;
      text-decoration: none;
      transition: opacity 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-primary:hover {
      opacity: 0.75;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: transparent;
      color: var(--dark);
      font-size: 14px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 6px;
      border: 1.5px solid #d0d0d0;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
      cursor: pointer;
    }

    .btn-outline:hover {
      border-color: var(--pink);
      color: var(--pink);
    }

    /* ── Hero ── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 64px;
      overflow: hidden;
      background: #fff;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../assets/TopograhpicalMap_full_landingpage.png');
      background-size: cover;
      background-position: center 40%;
      opacity: 0.5;
      pointer-events: none;
      mask-image: linear-gradient(to bottom, black 85%, transparent);
      -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1.4fr 1fr 0.9fr;
      align-items: center;
      gap: 32px;
      min-height: calc(100svh - 64px);
    }

    .hero-text {
      align-self: start;
      margin-top: 10vh;
      /* Pin text confidently to the top-left white space */
      position: relative;
      z-index: 10;
    }

    .hero-text h1 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: var(--dark);
      text-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 16px rgba(255, 255, 255, 0.95), 0 0 24px rgba(255, 255, 255, 0.9), 0 0 32px rgba(255, 255, 255, 0.85), 0 0 48px rgba(255, 255, 255, 0.8);
    }

    .hero-word-group {
      display: flex;
      flex-direction: column;
      color: var(--dark);
      line-height: 1.15;
    }

    .hero-text p {
      margin-top: 16px;
      font-size: 16px;
      font-weight: 400;
      color: #555;
      line-height: 1.6;
      max-width: 440px;
      text-shadow: 0 0 6px rgba(255, 255, 255, 1), 0 0 12px rgba(255, 255, 255, 0.95), 0 0 18px rgba(255, 255, 255, 0.9), 0 0 24px rgba(255, 255, 255, 0.85);
    }

    .hero-ctas {
      margin-top: 32px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* ── Protein Visual ── */
    .hero-protein {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero-protein img {
      width: 100%;
      max-width: 380px;
      filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.12));
    }

    /* ── Chat Mockup ── */
    .chat-mockup {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      max-width: 320px;
      width: 100%;
      font-size: 13px;
      border: 1px solid rgba(0, 0, 0, 0.07);
      pointer-events: none;
      user-select: none;
      margin-top: 20vh;
    }

    .chat-tabs {
      display: flex;
      border-bottom: 1px solid #f0f0f0;
      background: #fafafa;
    }

    .chat-tab {
      padding: 10px 18px;
      font-size: 12px;
      font-weight: 600;
      cursor: default;
      color: #888;
      border-bottom: 2px solid transparent;
    }

    .chat-tab.active {
      color: #fff;
      background: var(--pink);
      border-bottom-color: transparent;
    }

    .chat-tab:not(.active):last-child {
      border-left: 1px solid #e8e8e8;
    }

    .chat-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 220px;
    }

    .chat-msg {
      display: flex;
      justify-content: flex-end;
    }

    .chat-msg-text {
      background: #f5f5f5;
      color: #333;
      padding: 9px 13px;
      border-radius: 10px 10px 2px 10px;
      max-width: 80%;
      line-height: 1.5;
    }

    .chat-msg.agent {
      justify-content: flex-start;
    }

    .chat-msg.agent .chat-msg-text {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 2px 10px 10px 10px;
      font-size: 12.5px;
      color: #333;
    }

    .chat-highlight {
      color: var(--pink);
      font-weight: 600;
    }



    /* Typing indicator dots */
    .chat-typing {
      display: flex;
      justify-content: flex-start;
    }

    .chat-typing-dots {
      display: flex;
      align-items: center;
      gap: 4px;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 2px 10px 10px 10px;
      padding: 11px 16px;
    }

    .chat-typing-dots span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #bbb;
      animation: typingBounce 1.4s ease-in-out infinite;
    }

    .chat-typing-dots span:nth-child(2) {
      animation-delay: 0.15s;
    }

    .chat-typing-dots span:nth-child(3) {
      animation-delay: 0.3s;
    }

    @keyframes typingBounce {

      0%,
      60%,
      100% {
        transform: translateY(0);
        opacity: 0.4;
      }

      30% {
        transform: translateY(-4px);
        opacity: 1;
      }
    }

    /* ── Section Base ── */
    section {
      padding: 96px 48px;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: var(--dark);
    }

    .section-subtitle {
      margin-top: 16px;
      font-size: 16px;
      color: #555;
      line-height: 1.7;
      max-width: 560px;
    }

    /* ── Problem section ── */
    .problem-section {
      background: #fafafa;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .problem-card {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 12px;
      padding: 28px;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .problem-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
    }

    .problem-icon {
      width: 40px;
      height: 40px;
      background: #fff0f7;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .problem-icon svg {
      width: 20px;
      height: 20px;
      color: var(--pink);
    }

    .problem-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .problem-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }

    /* ── Products section ── */
    .products-section {
      background: #fff;
    }

    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 56px;
    }

    .product-card {
      border-radius: 16px;
      padding: 40px;
      border: 1.5px solid #e8e8e8;
      position: relative;
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .product-card:hover {
      border-color: var(--pink);
      box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.06);
    }

    .product-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #fff0f7;
      color: var(--pink);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .product-card h3 {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .product-card p {
      font-size: 15px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .product-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .product-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: #444;
    }

    .product-features li::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--pink);
      flex-shrink: 0;
    }

    /* ── How it works ── */
    .hiw-section {
      background: var(--dark);
      color: #fff;
    }

    .hiw-section .section-eyebrow {
      color: var(--pink);
    }

    .hiw-section .section-title {
      color: #fff;
    }

    .hiw-section .section-subtitle {
      color: #aaa;
    }

    .hiw-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      margin-top: 64px;
      position: relative;
    }



    .hiw-step {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
    }

    .hiw-number {
      width: 56px;
      height: 56px;
      border: 1.5px solid rgba(233, 30, 140, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
      color: var(--pink);
      margin-bottom: 24px;
      background: rgba(233, 30, 140, 0.06);
      position: relative;
      z-index: 1;
    }

    .hiw-step h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hiw-step p {
      font-size: 14px;
      color: #999;
      line-height: 1.7;
    }

    /* ── Use cases ── */
    .usecases-section {
      background: #fafafa;
    }

    .usecases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .usecase-card {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 12px;
      padding: 28px;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .usecase-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
    }

    .usecase-number {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--pink);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .usecase-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .usecase-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.65;
    }

    /* ── CTA section ── */
    .cta-section {
      background: #fff;
      text-align: center;
    }

    .cta-inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .cta-inner .section-title {
      margin-bottom: 16px;
    }

    .cta-inner .section-subtitle {
      margin: 0 auto 36px;
      text-align: center;
      max-width: 480px;
    }

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

    /* ── Footer ── */
    footer {
      background: var(--dark);
      color: #fff;
      padding: 56px 48px 40px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
    }

    .footer-brand p {
      margin-top: 16px;
      font-size: 14px;
      color: #888;
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-logo {
      height: 22px;
      filter: invert(1);
      opacity: 0.9;
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #666;
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      font-size: 14px;
      color: #aaa;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: #fff;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 48px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-bottom p {
      font-size: 13px;
      color: #555;
    }

    /* ── Divider ── */
    .divider {
      height: 1px;
      background: #e8e8e8;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ── Animations ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-up {
      animation: fadeUp 0.7s ease both;
    }

    .delay-1 {
      animation-delay: 0.15s;
    }

    .delay-2 {
      animation-delay: 0.3s;
    }

    .delay-3 {
      animation-delay: 0.45s;
    }

    /* ── Highlighted text ── */
    .gradient-text {
      color: var(--pink);
    }

    /* ── Connector Lines ── */
    .hero-connectors {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: visible;
    }

    .connector-line {
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      opacity: 0.7;
    }

    .connector-line-blue {
      stroke: #4a9aca;
    }

    .connector-line-red {
      stroke: #e84060;
    }

    .connector-dot {
      r: 5;
      opacity: 0.9;
    }

    .connector-dot-blue {
      fill: #4a9aca;
    }

    .connector-dot-red {
      fill: #e84060;
    }

    .connector-dot-glow {
      r: 12;
      opacity: 0;
      animation: dotPulse 2.5s ease-in-out infinite;
    }

    .connector-dot-glow-blue {
      fill: #4a9aca;
    }

    .connector-dot-glow-red {
      fill: #e84060;
    }

    @keyframes dotPulse {

      0%,
      100% {
        opacity: 0;
        r: 5;
      }

      50% {
        opacity: 0.3;
        r: 14;
      }
    }

    .connector-line {
      stroke-dasharray: 8 6;
    }


    /* ── Team ── */
    .team-section {
      background: #fff;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .team-card {
      border: 1px solid #e8e8e8;
      border-radius: 14px;
      padding: 28px 24px;
      text-align: center;
      transition: box-shadow 0.2s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }

    .team-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      transform: translateY(-3px);
    }

    .team-avatar {
      width: 100px;
      height: 100px;
      margin: 0 auto 18px;
      border-radius: 50%;
      display: block;
      object-fit: cover;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
    }

    .team-role {
      display: inline-block;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--pink);
      background: #fff0f7;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 10px;
    }

    .team-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .team-card .team-bio {
      font-size: 13px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .team-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
    }

    .team-tag {
      font-size: 11px;
      color: #888;
      background: #f5f5f5;
      padding: 3px 9px;
      border-radius: 100px;
      font-weight: 500;
    }

    /* ── Mobile Navigation ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1100;
      transition: transform 0.3s ease;
    }

    .hamburger span {
      width: 100%;
      height: 2px;
      background-color: var(--dark);
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: left center;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(0, -2px);
      background-color: var(--pink);
    }

    .hamburger.active span:nth-child(2) {
      width: 0%;
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(0, 2px);
      background-color: var(--pink);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 1050;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 40px;
      transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
    }

    .mobile-menu-links a {
      font-size: 24px;
      font-weight: 700;
      color: var(--dark);
      text-decoration: none;
      transition: color 0.3s;
    }

    .mobile-menu-links a:hover {
      color: var(--pink);
    }

    /* Ensure buttons in mobile menu don't inherit the large link text color */
    .mobile-menu-links .btn-primary {
      color: #fff !important;
      font-size: 16px;
      letter-spacing: normal;
      text-transform: none;
    }

    .mobile-menu-links .btn-primary:hover {
      color: #fff !important;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr 1fr;
        padding-top: 40px;
      }

      .hero-text {
        align-self: center;
        margin-top: 0;
      }

      .hero-protein {
        display: none;
      }

      .problem-grid,
      .usecases-grid,
      .hiw-steps,
      .team-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hiw-steps::before {
        display: none;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
.navbar {
        padding: 0 24px;
      }

      .nav-links,
      .desktop-only {
        display: none !important;
      }

      .hamburger {
        display: flex;
      }

      section {
        padding: 64px 24px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 32px;
        text-align: center;
        min-height: auto;
        padding-bottom: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .hero-text {
        align-self: center;
        margin-top: 5svh;
      }

      .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.1;
      }

      .hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-ctas {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 16px;
      }

      .hero-ctas .btn-primary,
      .hero-ctas .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
      }

      .chat-mockup {
        margin: 0 auto;
        max-width: 320px;
        width: 100%;
        font-size: 12px;
      }

      .chat-body {
        min-height: 180px;
      }

      .hero-connectors {
        display: none;
      }

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

      .problem-grid,
      .usecases-grid,
      .hiw-steps,
      .team-grid {
        grid-template-columns: 1fr;
      }

      .hiw-steps {
        gap: 48px;
        text-align: center;
      }
      
      .hiw-step {
        align-items: center;
        padding: 0;
      }

      .hiw-step:first-child,
      .hiw-step:last-child {
        padding: 0;
      }

      /* Adjust section titles for mobile */
      .section-title {
        font-size: 2rem;
        text-align: center;
      }

      .section-eyebrow,
      .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      .section-subtitle {
        font-size: 15px;
      }

      .problem-card,
      .product-card,
      .usecase-card,
      .team-card {
        text-align: center;
      }

      .problem-icon,
      .product-badge,
      .usecase-number,
      .team-avatar,
      .team-tags {
        margin-left: auto;
        margin-right: auto;
      }

      .product-features {
        align-items: center;
        text-align: left;
        display: inline-flex;
        width: 100%;
      }

      .product-features li {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
      }

      footer {
        padding: 48px 24px 32px;
        text-align: center;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      @media (max-width: 480px) {
        .hero-text h1 {
          font-size: 1.8rem;
        }
        
        .section-title {
          font-size: 1.75rem;
        }

        .hero-text p {
          font-size: 15px;
        }
      }

      body.no-scroll {
        overflow: hidden;
      }
    }